Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for hectogram (0.26 sec)

  1. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsRequestHeaderCA.java

            }
        }
    
        public void setCreatedTime_Histogram() {
            setCreatedTime_Histogram(null);
        }
    
        public void setCreatedTime_Histogram(ConditionOptionCall<HistogramAggregationBuilder> opLambda) {
            setCreatedTime_Histogram("createdTime", opLambda, null);
        }
    
        public void setCreatedTime_Histogram(ConditionOptionCall<HistogramAggregationBuilder> opLambda,
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 46.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsWebAuthenticationCA.java

            }
        }
    
        public void setCreatedTime_Histogram() {
            setCreatedTime_Histogram(null);
        }
    
        public void setCreatedTime_Histogram(ConditionOptionCall<HistogramAggregationBuilder> opLambda) {
            setCreatedTime_Histogram("createdTime", opLambda, null);
        }
    
        public void setCreatedTime_Histogram(ConditionOptionCall<HistogramAggregationBuilder> opLambda,
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 76.1K bytes
    - Viewed (0)
  3. cmd/data-usage-utils.go

    	ReplicatedCount         uint64 `json:"objectsReplicatedCount"`
    }
    
    // BucketUsageInfo - bucket usage info provides
    // - total size of the bucket
    // - total objects in a bucket
    // - object size histogram per bucket
    type BucketUsageInfo struct {
    	Size uint64 `json:"size"`
    	// Following five fields suffixed with V1 are here for backward compatibility
    	// Total Size for objects that have not yet been replicated
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  4. cmd/tier.go

    	sync.RWMutex  // protects requestsCount only
    	requestsCount map[string]struct {
    		success int64
    		failure int64
    	}
    	histogram *prometheus.HistogramVec
    }
    
    var globalTierMetrics = tierMetrics{
    	requestsCount: make(map[string]struct {
    		success int64
    		failure int64
    	}),
    	histogram: prometheus.NewHistogramVec(prometheus.HistogramOpts{
    		Name:    "tier_ttlb_seconds",
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 17 05:09:58 GMT 2024
    - 15.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionAggregation.java

    import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  6. cmd/data-usage-cache.go

    // dataUsageHash is the hash type used.
    type dataUsageHash string
    
    // sizeHistogramV1 is size histogram V1, which has fewer intervals esp. between
    // 1024B and 1MiB.
    type sizeHistogramV1 [dataUsageBucketLenV1]uint64
    
    // sizeHistogram is a size histogram.
    type sizeHistogram [dataUsageBucketLen]uint64
    
    // versionsHistogram is a histogram of number of versions in an object.
    type versionsHistogram [dataUsageVersionLen]uint64
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 41.4K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/es/log/allcommon/EsAbstractConditionAggregation.java

    import org.opensearch.search.aggregations.bucket.global.GlobalAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.DateHistogramAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.histogram.HistogramAggregationBuilder;
    import org.opensearch.search.aggregations.bucket.missing.MissingAggregationBuilder;
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.4K bytes
    - Viewed (0)
  8. cmd/data-usage_test.go

    				t.Error("got objects", e.Objects, "want", w.objs)
    			}
    			if e.Versions != uint64(w.objs) {
    				t.Error("got versions", e.Versions, "want", w.objs)
    			}
    			if e.ObjSizes != w.oSizes {
    				t.Error("got histogram", e.ObjSizes, "want", w.oSizes)
    			}
    		})
    	}
    
    	files = []usageTestFile{
    		{
    			name: "newfolder/afile",
    			size: 4,
    		},
    		{
    			name: "newfolder/anotherone",
    			size: 1,
    		},
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Mar 27 15:10:40 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  9. cmd/http-stats.go

    }
    
    func (bh *bucketHTTPStats) updateHTTPStats(bucket, api string, w *xhttp.ResponseRecorder) {
    	if bh == nil {
    		return
    	}
    
    	if w != nil {
    		// Increment the prometheus http request response histogram with API, Bucket
    		bucketHTTPRequestsDuration.With(prometheus.Labels{
    			"api":    api,
    			"bucket": bucket,
    		}).Observe(w.TimeToFirstByte.Seconds())
    	}
    
    	bh.Lock()
    	defer bh.Unlock()
    
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Mar 10 09:15:15 GMT 2024
    - 11.4K bytes
    - Viewed (0)
  10. cmd/metrics-v2_test.go

    		case <-ticker.C:
    			ttfbHist.With(prometheus.Labels{"api": obs.label}).Observe(obs.val)
    		}
    	}
    
    	metrics := getHistogramMetrics(ttfbHist, getBucketTTFBDistributionMD(), false)
    	// additional labels for +Inf for all histogram metrics
    	if expPoints := len(labels) * (len(histBuckets) + 1); expPoints != len(metrics) {
    		t.Fatalf("Expected %v data points but got %v", expPoints, len(metrics))
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Mar 04 18:05:56 GMT 2024
    - 2.3K bytes
    - Viewed (0)
Back to top