Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 129 for xBuckets (0.18 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. 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)
  7. 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)
  8. 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)
  9. cmd/bucket-metadata-sys.go

    				sys.Unlock()
    
    				// Initialize the failed buckets
    				if _, ok := failedBuckets[buckets[i].Name]; ok {
    					globalEventNotifier.set(buckets[i], meta)
    					globalBucketTargetSys.set(buckets[i], meta)
    					delete(failedBuckets, buckets[i].Name)
    				}
    
    				wait() // wait to proceed to next entry.
    			}
    		}
    		t.Reset(bucketMetadataRefresh)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. 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)
Back to top