Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 367 for xBuckets (0.14 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. manifests/addons/dashboards/lib/output.json

                   },
                   "id": 8,
                   "interval": "1m",
                   "options": {
                      "calculate": true,
                      "calculation": {
                         "xBuckets": {
                            "mode": "size",
                            "value": "1min"
                         }
                      },
                      "cellGap": 2,
                      "color": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  3. manifests/addons/dashboards/pilot-dashboard.gen.json

                "w": 8,
                "x": 8,
                "y": 14
             },
             "id": 13,
             "interval": "1m",
             "options": {
                "calculation": {
                   "xBuckets": {
                      "mode": "size",
                      "value": "1min"
                   }
                },
                "cellGap": 0,
                "color": {
                   "mode": "scheme",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  4. src/runtime/mprof.go

    type blockRecord struct {
    	count  float64
    	cycles int64
    }
    
    var (
    	mbuckets atomic.UnsafePointer // *bucket, memory profile buckets
    	bbuckets atomic.UnsafePointer // *bucket, blocking profile buckets
    	xbuckets atomic.UnsafePointer // *bucket, mutex profile buckets
    	buckhash atomic.UnsafePointer // *buckhashArray
    
    	mProfCycle mProfCycleHolder
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  5. .teamcity/test-buckets.json

    [
    	{
    		"buckets":[
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"dependency-management"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"configuration-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"tooling-api"
    				]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  6. 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)
  7. samples/addons/grafana.yaml

    :"datasource","uid":"-- Mixed --"},"description":"Count of active and pending proxies managed by each instance.\nPending is expected to converge to zero.\n","gridPos":{"h":10,"w":8,"x":8,"y":14},"id":13,"interval":"1m","options":{"calculation":{"xBuckets":{"mode":"size","value":"1min"}},"cellGap":0,"color":{"mode":"scheme","scheme":"Spectral","steps":128},"yAxis":{"decimals":0,"unit":"s"}},"pluginVersion":"v11.0.0","targets":[{"datasource":{"type":"prometheus","uid":"$datasource"},"expr":"sum(ra...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 242.3K bytes
    - Viewed (0)
  8. src/runtime/map.go

    		if up != sz {
    			nbuckets = up / t.Bucket.Size_
    		}
    	}
    
    	if dirtyalloc == nil {
    		buckets = newarray(t.Bucket, int(nbuckets))
    	} else {
    		// dirtyalloc was previously generated by
    		// the above newarray(t.Bucket, int(nbuckets))
    		// but may not be empty.
    		buckets = dirtyalloc
    		size := t.Bucket.Size_ * nbuckets
    		if t.Bucket.Pointers() {
    			memclrHasPointers(buckets, size)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  9. src/runtime/map_test.go

    // started in the middle of a grow, when the keys are NaNs.
    func TestMapNanGrowIterator(t *testing.T) {
    	m := make(map[float64]int)
    	nan := math.NaN()
    	const nBuckets = 16
    	// To fill nBuckets buckets takes LOAD * nBuckets keys.
    	nKeys := int(nBuckets * runtime.HashLoad)
    
    	// Get map to full point with nan keys.
    	for i := 0; i < nKeys; i++ {
    		m[nan] = i
    	}
    	// Trigger grow
    	m[1.0] = 1
    	delete(m, 1.0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  10. 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)
Back to top