- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 518 for Buckets (0.12 sec)
-
cmd/admin-bucket-handlers.go
if err != nil { rpt.SetStatus(bucket, fileName, err) continue } v, _ := globalBucketMetadataSys.Get(bucket) bucketMap[bucket] = &v } bucketMap[bucket].ObjectLockConfigXML = configData bucketMap[bucket].ObjectLockConfigUpdatedAt = updatedAt rpt.SetStatus(bucket, fileName, nil) } } // import versioning metadata
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 28 15:32:18 UTC 2024 - 33.2K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
assertCorrectParameters(it.key, it.value) } } fun assertProjectAreSplitByGradleVersionCorrectly(buckets: List<List<String>>, testType: TestType, functionalTests: List<BaseGradleBuildType>) { buckets.forEachIndexed { index: Int, startEndVersion: List<String> ->
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 13.4K bytes - Viewed (0) -
.teamcity/src/main/kotlin/model/PerformanceTestBucketProvider.kt
val buckets = splitBucketsByScenarios( scenarios, testProjectToScenarioDurations, testProjectScenarioDurationsFallback, performanceTestCoverage.numberOfBuckets ) return buckets.mapIndexed { bucketIndex: Int, bucket: PerformanceTestBucket ->
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Feb 19 11:22:56 UTC 2024 - 15.3K bytes - Viewed (0) -
cmd/metrics-v3.go
// // Per-bucket metrics endpoints always start with /bucket and the bucket name is // appended to the path. e.g. if the collector path is /bucket/api, the endpoint // for the bucket "mybucket" would be /minio/metrics/v3/bucket/api/mybucket const ( apiRequestsCollectorPath collectorPath = "/api/requests" bucketAPICollectorPath collectorPath = "/bucket/api"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 02 00:55:27 UTC 2024 - 13.6K bytes - Viewed (0) -
docs/bucket/quota/README.md
## Set bucket quota configuration ### Set a hard quota of 1GB for a bucket `mybucket` on MinIO object storage ```sh mc admin bucket quota myminio/mybucket --hard 1gb ``` ### Verify the quota configured on `mybucket` on MinIO ```sh mc admin bucket quota myminio/mybucket ``` ### Clear bucket quota configuration for `mybucket` on MinIO ```sh
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 25 00:44:15 UTC 2022 - 1.1K bytes - Viewed (0) -
cmd/http-stats.go
func (s *bucketConnStats) getBucketS3InOutBytes(buckets []string) map[string]inOutBytes { s.RLock() defer s.RUnlock() if len(s.stats) == 0 || len(buckets) == 0 { return nil } bucketStats := make(map[string]inOutBytes, len(buckets)) for _, bucket := range buckets { if stats, ok := s.stats[bucket]; ok { bucketStats[bucket] = inOutBytes{ In: stats.s3InputBytes,
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 17:13:00 UTC 2024 - 11.4K bytes - Viewed (0) -
cmd/event-notification.go
if !strings.HasPrefix(targetID.ID, "httpclient+") { arns = append(arns, targetID.ToARN(region).String()) } } return arns } // Loads notification policies for all buckets into EventNotifier. func (evnot *EventNotifier) set(bucket string, meta BucketMetadata) { config := meta.notificationConfig if config == nil { return } region := globalSite.Region() config.SetRegion(region)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Jun 21 22:22:24 UTC 2024 - 7.7K bytes - Viewed (0) -
helm-releases/minio-3.5.6.tgz
true ]; then if checkBucketExists $BUCKET ; then echo "Purging bucket '$BUCKET'." set +e ; # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET set -e ; # reset `e` as active else echo "Bucket '$BUCKET' does not exist, skipping purge." fi fi # Create the bucket if it does not exist if ! checkBucketExists $BUCKET ; then echo "Creating bucket '$BUCKET'" ${MC} mb myminio/$BUCKET else echo "Bucket '$BUCKET' already exists." fi # set versioning for bucket if [ ! -z $VERSIONING ] ; then if [...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat Feb 19 20:34:14 UTC 2022 - 17.6K bytes - Viewed (0) -
helm-releases/minio-3.5.9.tgz
true ]; then if checkBucketExists $BUCKET ; then echo "Purging bucket '$BUCKET'." set +e ; # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET set -e ; # reset `e` as active else echo "Bucket '$BUCKET' does not exist, skipping purge." fi fi # Create the bucket if it does not exist if ! checkBucketExists $BUCKET ; then echo "Creating bucket '$BUCKET'" ${MC} mb myminio/$BUCKET else echo "Bucket '$BUCKET' already exists." fi # set versioning for bucket if [ ! -z $VERSIONING ] ; then if [...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 03 23:29:03 UTC 2022 - 17.7K bytes - Viewed (0) -
helm-releases/minio-3.6.3.tgz
true ]; then if checkBucketExists $BUCKET ; then echo "Purging bucket '$BUCKET'." set +e ; # don't exit if this fails ${MC} rm -r --force myminio/$BUCKET set -e ; # reset `e` as active else echo "Bucket '$BUCKET' does not exist, skipping purge." fi fi # Create the bucket if it does not exist if ! checkBucketExists $BUCKET ; then echo "Creating bucket '$BUCKET'" ${MC} mb myminio/$BUCKET else echo "Bucket '$BUCKET' already exists." fi # set versioning for bucket if [ ! -z $VERSIONING ] ; then if [...
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 24 04:07:15 UTC 2022 - 17.9K bytes - Viewed (0)