Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for xBuckets (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/main/java/org/codelibs/fess/app/service/SearchLogService.java

                });
                final Terms agg = list.getAggregations().get(SearchLogPager.LOG_TYPE_CLICK_COUNT);
                final List<? extends Terms.Bucket> buckets = agg.getBuckets();
                updatePagerByAgg(pager, buckets.size());
                return buckets.stream().map(e -> {
                    final Map<String, Object> map = new HashMap<>();
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 28.4K bytes
    - Viewed (0)
  6. src/runtime/map_fast64.go

    	var b *bmap
    	if h.B == 0 {
    		// One-bucket table. No need to hash.
    		b = (*bmap)(h.buckets)
    	} else {
    		hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
    		m := bucketMask(h.B)
    		b = (*bmap)(add(h.buckets, (hash&m)*uintptr(t.BucketSize)))
    		if c := h.oldbuckets; c != nil {
    			if !h.sameSizeGrow() {
    				// There used to be half as many buckets; mask down one more power of two.
    				m >>= 1
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/runtime/map_fast32.go

    	var b *bmap
    	if h.B == 0 {
    		// One-bucket table. No need to hash.
    		b = (*bmap)(h.buckets)
    	} else {
    		hash := t.Hasher(noescape(unsafe.Pointer(&key)), uintptr(h.hash0))
    		m := bucketMask(h.B)
    		b = (*bmap)(add(h.buckets, (hash&m)*uintptr(t.BucketSize)))
    		if c := h.oldbuckets; c != nil {
    			if !h.sameSizeGrow() {
    				// There used to be half as many buckets; mask down one more power of two.
    				m >>= 1
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  8. cmd/metrics-v3-types.go

    		mg.ExtraLabels)
    	for _, metric := range promMetrics {
    		ch <- metric
    	}
    }
    
    // LockAndSetBuckets - locks the buckets and sets the given buckets. It returns
    // a function to unlock the buckets.
    func (mg *MetricsGroup) LockAndSetBuckets(buckets []string) func() {
    	mg.bucketsLock.Lock()
    	mg.buckets = buckets
    	return func() {
    		mg.bucketsLock.Unlock()
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 07:41:18 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  9. src/runtime/map_faststr.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_faststr(t, h, bucket)
    	}
    	b := (*bmap)(add(h.buckets, bucket*uintptr(t.BucketSize)))
    	top := tophash(hash)
    
    	var insertb *bmap
    	var inserti uintptr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:17:26 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. cmd/peer-s3-client.go

    					resultMap[bi.Name] = bi
    				}
    			}
    		}
    		// loop through buckets and see if some with lost quorum
    		// these could be stale buckets lying around, queue a heal
    		// of such a bucket. This is needed here as we identify such
    		// buckets here while listing buckets. As part of regular
    		// globalBucketMetadataSys.Init() call would get a valid
    		// buckets only and not the quourum lost ones like this, so
    		// explicit call
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.3K bytes
    - Viewed (0)
Back to top