- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 167 for bucketsse (0.09 seconds)
-
cmd/bucket-metadata.go
"context" "crypto/rand" "encoding/binary" "encoding/json" "encoding/xml" "errors" "fmt" "path" "time" "github.com/minio/madmin-go/v3" "github.com/minio/minio-go/v7/pkg/tags" bucketsse "github.com/minio/minio/internal/bucket/encryption" "github.com/minio/minio/internal/bucket/lifecycle" objectlock "github.com/minio/minio/internal/bucket/object/lock" "github.com/minio/minio/internal/bucket/replication"
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 18.2K bytes - Click Count (0) -
cmd/bucket-metadata-sys.go
return sys.initialized } // Loads bucket metadata for all buckets into BucketMetadataSys. func (sys *BucketMetadataSys) init(ctx context.Context, buckets []string) { count := globalEndpoints.ESCount() * 10 for { if len(buckets) < count { sys.concurrentLoad(ctx, buckets) break } sys.concurrentLoad(ctx, buckets[:count]) buckets = buckets[count:] } sys.Lock() sys.initialized = true
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 20.4K bytes - Click Count (0) -
.github/workflows/update-test-buckets.yml
commit-message: Update test buckets branch: devprod/update-test-buckets branch-suffix: timestamp delete-branch: true title: 'Update test buckets' signoff: true sign-commits: true labels: | in:building-gradle @dev-productivity body: | This PR updates the test buckets based on the latest test class data.Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Dec 09 22:14:16 GMT 2025 - 2.4K bytes - Click Count (0) -
.teamcity/test-buckets.json
[ { "testCoverageUuid": 1, "buckets": [ { "subprojects": [ "configuration-cache" ], "parallelizationMethod": { "name": "TestDistribution" } }, { "subprojects": [ "tooling-api" ], "parallelizationMethod": { "name": "TestDistribution" } }, { "subprojects": [Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Aug 01 00:23:04 GMT 2025 - 119.4K bytes - Click Count (0) -
.github/workflows/update-perf-test-buckets.yml
on: schedule: - cron: '53 3 * * 1' workflow_dispatch: permissions: contents: write id-token: write pull-requests: write jobs: update-perf-test-buckets: runs-on: ubuntu-latest if: github.repository == 'gradle/gradle' steps: - name: Checkout repository uses: actions/checkout@v6 - name: configure aws credentialsCreated: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Dec 09 22:14:16 GMT 2025 - 1.9K bytes - Click Count (0) -
internal/bucket/bandwidth/monitor.go
} // SelectionFunction for buckets type SelectionFunction func(bucket string) bool // SelectBuckets will select all the buckets passed in. func SelectBuckets(buckets ...string) SelectionFunction { if len(buckets) == 0 { return func(bucket string) bool { return true } } return func(bucket string) bool { return slices.Contains(buckets, bucket) } }
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 6K bytes - Click Count (0) -
docs/bucket/replication/README.md
## Highlights - Supports source and destination buckets to have the same name unlike AWS S3, addresses variety of use-cases such as *Splunk*, *Veeam* site to site DR. - Supports object locking/retention across source and destination buckets natively out of the box, unlike AWS S3.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Aug 12 18:20:36 GMT 2025 - 18.3K bytes - Click Count (0) -
cmd/bucket-handlers.go
func initFederatorBackend(buckets []string, objLayer ObjectLayer) { if len(buckets) == 0 { return } // Get buckets in the DNS dnsBuckets, err := globalDNSConfig.List() if err != nil && !IsErrIgnored(err, dns.ErrNoEntriesFound, dns.ErrNotImplemented, dns.ErrDomainMissing) { dnsLogIf(GlobalContext, err) return } bucketsSet := set.NewStringSet()
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 63.9K bytes - Click Count (0) -
cmd/site-replication.go
} return info, errSRBackendIssue(err) } buckets = append(buckets, bi) } else { buckets, err = objAPI.ListBuckets(ctx, BucketOptions{Deleted: opts.ShowDeleted}) if err != nil { return info, errSRBackendIssue(err) } } info.Buckets = make(map[string]madmin.SRBucketInfo, len(buckets)) for _, bucketInfo := range buckets { bucket := bucketInfo.Name
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 184.8K bytes - Click Count (1) -
.teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt
crossVersionBuckets: List<List<String>>, private val model: CIBuildModel, ) : FunctionalTestBucketProvider { private val buckets: List<BuildTypeBucket> = crossVersionBuckets.map { GradleVersionRangeCrossVersionTestBucket(it[0], it[1]) } // For quickFeedbackCrossVersion and allVersionsCrossVersion, the buckets are split by Gradle version // By default, split them by CROSS_VERSION_BUCKETS override fun createFunctionalTestsFor(
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Wed Sep 24 08:38:33 GMT 2025 - 8.2K bytes - Click Count (0)