Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 166 for avevate (0.14 sec)

  1. cmd/metrics-v3-system-network.go

    	internodeDialedErrorsTotalMD = NewCounterMD(internodeDialErrorsTotal,
    		"Total number of internode TCP dial timeouts and errors")
    	internodeDialAvgTimeNanosMD = NewGaugeMD(internodeDialAvgTimeNanos,
    		"Average dial time of internode TCP calls in nanoseconds")
    	internodeSentBytesTotalMD = NewCounterMD(internodeSentBytesTotal,
    		"Total number of bytes sent to other peer nodes")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 10 09:15:15 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. pkg/scheduler/framework/plugins/noderesources/most_allocated.go

    )
    
    // mostResourceScorer favors nodes with most requested resources.
    // It calculates the percentage of memory and CPU requested by pods scheduled on the node, and prioritizes
    // based on the maximum of the average of the fraction of requested to capacity.
    //
    // Details:
    // (cpu(MaxNodeScore * requested * cpuWeight / capacity) + memory(MaxNodeScore * requested * memoryWeight / capacity) + ...) / weightSum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 15:23:47 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java

        @Execute
        public StreamResponse get$download(final DownloadBody body) {
            validateApi(body, messages -> {});
            return asStream("elevate.csv").contentTypeOctetStream().stream(out -> {
                final Path tempFile = ComponentUtil.getSystemHelper().createTempFile("fess-elevate-", ".csv").toPath();
                try {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/autoscaling/v2beta2/types.go

    	// +optional
    	Selector *metav1.LabelSelector `json:"selector,omitempty" protobuf:"bytes,2,name=selector"`
    }
    
    // MetricTarget defines the target value, average value, or average utilization of a specific metric
    type MetricTarget struct {
    	// type represents whether the metric type is Utilization, Value, or AverageValue
    	Type MetricTargetType `json:"type" protobuf:"bytes,1,name=type"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:27 UTC 2023
    - 28.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_message_de.properties

    errors.failed_to_upload_kuromoji_file=Upload der Kuromoji-Datei fehlgeschlagen.
    errors.failed_to_download_elevate_file=Download der Elevate-Datei fehlgeschlagen.
    errors.failed_to_upload_elevate_file=Upload der Elevate-Datei fehlgeschlagen.
    errors.failed_to_download_badword_file=Download der Badword-Datei fehlgeschlagen.
    errors.failed_to_upload_badword_file=Upload der Badword-Datei fehlgeschlagen.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Tue Oct 29 15:01:03 UTC 2019
    - 11.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/autoscaling/v2/types.go

    	// +optional
    	Selector *metav1.LabelSelector `json:"selector,omitempty" protobuf:"bytes,2,name=selector"`
    }
    
    // MetricTarget defines the target value, average value, or average utilization of a specific metric
    type MetricTarget struct {
    	// type represents whether the metric type is Utilization, Value, or AverageValue
    	Type MetricTargetType `json:"type" protobuf:"bytes,1,name=type"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    		}
    
    		if gotFair != expectFair {
    			uss.t.Errorf("%s client %d last=%v expectFair=%v margin=%v got an Average of %v but the expected average was %v", uss.name, i, last, expectFair, margin, averages[i], expectedAverage)
    		} else {
    			uss.t.Logf("%s client %d last=%v expectFair=%v margin=%v got an Average of %v and the expected average was %v", uss.name, i, last, expectFair, margin, averages[i], expectedAverage)
    		}
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/topologymanager/numa_info_test.go

    					0: {10, 10, 10, 10},
    					1: {10, 10, 10, 10},
    					2: {10, 10, 10, 10},
    					3: {10, 10, 10, 10},
    				},
    			},
    		},
    		{
    			description: "current and candidate length is the same, candidate average distance is smaller",
    			current:     NewTestBitMask(0, 3),
    			candidate:   NewTestBitMask(0, 1),
    			expected:    "candidate",
    			numaInfo: &NUMAInfo{
    				NUMADistances: NUMADistances{
    					0: {10, 11, 12, 12},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  9. src/runtime/pprof/protomem.go

    // each collected sample by its probability of appearing in the
    // profile. heap profiles rely on a poisson process to determine
    // which samples to collect, based on the desired average collection
    // rate R. The probability of a sample of size S to appear in that
    // profile is 1-exp(-S/R).
    func scaleHeapSample(count, size, rate int64) (int64, int64) {
    	if count == 0 || size == 0 {
    		return 0, 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 14:38:45 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     *       <ul>
     *         <li>2 levels: average of 64ns per lock()/unlock()
     *         <li>3 levels: average of 77ns per lock()/unlock()
     *         <li>4 levels: average of 99ns per lock()/unlock()
     *         <li>5 levels: average of 103ns per lock()/unlock()
     *         <li>10 levels: average of 184ns per lock()/unlock()
     *         <li>20 levels: average of 393ns per lock()/unlock()
     *       </ul>
     * </ul>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Dec 15 19:31:54 UTC 2023
    - 35.9K bytes
    - Viewed (0)
Back to top