Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 378 for bucketOf (0.2 sec)

  1. cmd/generic-handlers.go

    			}
    			return
    		}
    		h.ServeHTTP(w, r)
    	})
    }
    
    // setBucketForwardingMiddleware middleware forwards the path style requests
    // on a bucket to the right bucket location, bucket to IP configuration
    // is obtained from centralized etcd configuration service.
    func setBucketForwardingMiddleware(h http.Handler) http.Handler {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 06 01:01:15 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/list.md

    | `minio_bucket_objects_version_distribution` | Distribution of object sizes in a bucket, by number of versions                 |
    
    ## Replication Metrics
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  3. cmd/bucket-replication-metrics_gen.go

    Krishnan Parthasarathi <******@****.***> 1711041695 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  4. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/DependencyInsightReportTask.java

                for (Attribute<?> attribute : buckets.providedAttributes) {
                    rows.add(createProvidedRow(attributes, selected, attribute));
                }
                for (Map.Entry<Attribute<?>, AttributeMatchDetails> entry : buckets.bothAttributes.entrySet()) {
                    rows.add(createMatchBasedRow(attributes, selected, entry));
                }
                for (Attribute<?> attribute : buckets.requestedAttributes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:29:40 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/customize_metrics_test.go

    			util.ValidateMetric(t, cluster, promInst, grpcDestinationQuery, 1)
    			// By default, envoy histogram has 20 buckets, annotation changes it to 10
    			if err := ValidateBucket(cluster, promInst, "a", "destination", 10); err != nil {
    				t.Errorf("failed to validate bucket: %v", err)
    			}
    		})
    }
    
    func setupWasmExtension(t framework.TestContext) {
    	proxySHA := "359dcd3a19f109c50e97517fe6b1e2676e870c4d"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. cmd/object-api-utils_test.go

    	testCases := []struct {
    		bucket string
    		result bool
    	}{
    		// MinIO meta bucket.
    		{
    			bucket: minioMetaBucket,
    			result: true,
    		},
    		// MinIO meta bucket.
    		{
    			bucket: minioMetaMultipartBucket,
    			result: true,
    		},
    		// MinIO meta bucket.
    		{
    			bucket: minioMetaTmpBucket,
    			result: true,
    		},
    		// Normal bucket
    		{
    			bucket: "mybucket",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. cmd/object-handlers.go

    	"github.com/minio/minio/internal/amztime"
    	"github.com/minio/minio/internal/auth"
    	sse "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"
    	"github.com/minio/minio/internal/config/cache"
    	"github.com/minio/minio/internal/config/dns"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  8. src/runtime/map_fast32.go

    	// Set hashWriting after calling t.hasher for consistency with mapassign.
    	h.flags ^= hashWriting
    
    	if h.buckets == nil {
    		h.buckets = newobject(t.Bucket) // newarray(t.bucket, 1)
    	}
    
    again:
    	bucket := hash & bucketMask(h.B)
    	if h.growing() {
    		growWork_fast32(t, h, bucket)
    	}
    	b := (*bmap)(add(h.buckets, bucket*uintptr(t.BucketSize)))
    
    	var insertb *bmap
    	var inserti uintptr
    	var insertk unsafe.Pointer
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  9. src/runtime/metrics.go

    		v.pointer = unsafe.Pointer(hist)
    	}
    	hist.buckets = buckets
    	if len(hist.counts) != len(hist.buckets)-1 {
    		hist.counts = make([]uint64, len(buckets)-1)
    	}
    	return hist
    }
    
    // metricFloat64Histogram is a runtime copy of runtime/metrics.Float64Histogram
    // and must be kept structurally identical to that type.
    type metricFloat64Histogram struct {
    	counts  []uint64
    	buckets []float64
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 26K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/collect/CompactHashSet.java

      int allocArrays() {
        Preconditions.checkState(needsAllocArrays(), "Arrays already allocated");
    
        int expectedSize = metadata;
        int buckets = CompactHashing.tableSize(expectedSize);
        this.table = CompactHashing.createTable(buckets);
        setHashTableMask(buckets - 1);
    
        this.entries = new int[expectedSize];
        this.elements = new Object[expectedSize];
    
        return expectedSize;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top