Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 108 for xBuckets (0.59 sec)

  1. manifests/addons/dashboards/lib/panels.libsonnet

        base(title, targets, desc=''):
          heatmap.new(title)
          + heatmap.queryOptions.withTargets(targets)
          + heatmap.queryOptions.withInterval('1m')
          + options.calculation.xBuckets.withMode('size')
          + options.calculation.xBuckets.withValue('1min')
          + options.withCellGap(0)
          + options.color.withMode('scheme')
          + options.color.withScheme('Spectral')
          + options.color.withSteps(128)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. releasenotes/notes/bootstrap-histogram-buckets.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue: []
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 13 21:29:54 UTC 2023
    - 221 bytes
    - Viewed (0)
  3. src/runtime/metrics/histogram.go

    	// Counts contains the weights for each histogram bucket.
    	//
    	// Given N buckets, Count[n] is the weight of the range
    	// [bucket[n], bucket[n+1]), for 0 <= n < N.
    	Counts []uint64
    
    	// Buckets contains the boundaries of the histogram buckets, in increasing order.
    	//
    	// Buckets[0] is the inclusive lower bound of the minimum bucket while
    	// Buckets[len(Buckets)-1] is the exclusive upper bound of the maximum bucket.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 08 03:43:44 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  4. cmd/metacache-manager.go

    // It should never be used directly since buckets are
    // distributed deterministically.
    // Therefore no cluster locks are required.
    var localMetacacheMgr = &metacacheManager{
    	buckets: make(map[string]*bucketMetacache),
    	trash:   make(map[string]metacache),
    }
    
    type metacacheManager struct {
    	mu      sync.RWMutex
    	init    sync.Once
    	buckets map[string]*bucketMetacache
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Oct 25 00:44:15 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  5. src/internal/trace/traceviewer/histogram.go

    		h.Buckets = h.Buckets[:cap(h.Buckets)]
    	}
    	h.Buckets[bucket]++
    	if bucket < h.MinBucket || h.MaxBucket == 0 {
    		h.MinBucket = bucket
    	}
    	if bucket > h.MaxBucket {
    		h.MaxBucket = bucket
    	}
    	h.Count++
    }
    
    // BucketMin returns the minimum duration value for a provided bucket.
    func (h *TimeHistogram) BucketMin(bucket int) time.Duration {
    	return time.Duration(math.Exp(float64(bucket) * logDiv))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 21:28:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

                    testCoverage to buckets
                } else {
                    testCoverage to mergeUnknownSubprojectsIntoFirstAvailableBucket(buckets, model.subprojects.subprojects.filter { subprojectsInModelButNotInBucketJson.contains(it.name) })
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 18 05:14:09 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. src/runtime/histogram.go

    	// Values are placed in buckets based solely on the most
    	// significant set bit. Thus, buckets are power-of-2 sized.
    	// Values are then placed into sub-buckets based on the value of
    	// the next timeHistSubBucketBits most significant bits. Thus,
    	// sub-buckets are linear within a bucket.
    	//
    	// Therefore, the number of sub-buckets (timeHistNumSubBuckets)
    	// defines the error. This error may be computed as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  8. cmd/peer-s3-server.go

    		if vi, ok := deletedBuckets[v.Name]; ok {
    			bi.Deleted = vi.Created
    		}
    		buckets = append(buckets, bi)
    	}
    
    	for _, v := range deletedBuckets {
    		if _, ok := healBuckets[v.Name]; !ok {
    			buckets = append(buckets, BucketInfo{
    				Name:    v.Name,
    				Deleted: v.Created,
    			})
    		}
    	}
    
    	return buckets, nil
    }
    
    func cloneDrives(drives []StorageAPI) []StorageAPI {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. test/fixedbugs/issue62203.go

    func main() {
    	m := map[string]struct{}{}
    
    	// Fill m up to the max for 4 buckets = 48 entries.
    	for i := 0; i < 48; i++ {
    		m[fmt.Sprintf("%d", i)] = struct{}{}
    	}
    
    	// Add a 49th entry, to start a grow to 8 buckets.
    	m["foo"] = struct{}{}
    
    	// Remove that 49th entry. m is still growing to 8 buckets,
    	// but a clone of m will only have 4 buckets because it
    	// only needs to fit 48 entries.
    	delete(m, "foo")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 16:10:03 UTC 2023
    - 688 bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/timing_ratio_histogram_test.go

    	testHistogramName := "vec_element_simple"
    	t0 := time.Now()
    	clk := testclock.NewFakePassiveClock(t0)
    	buckets := []float64{0, 1}
    	vec := NewTestableTimingRatioHistogramVec(clk.Now,
    		&compbasemetrics.TimingHistogramOpts{Name: testHistogramName, Buckets: buckets},
    		"alabel",
    	)
    	toRegister := vec.metrics()
    	registry := compbasemetrics.NewKubeRegistry()
    	for _, reg := range toRegister {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 13 16:03:06 UTC 2022
    - 8.7K bytes
    - Viewed (0)
Back to top