Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 152 for haverace (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/metrics-v3-cluster-iam.go

    	pluginAuthnServiceSuccAvgRttMsMinuteMD   = NewCounterMD(pluginAuthnServiceSuccAvgRttMsMinute, "When plugin authentication is configured, returns average round-trip-time of successful requests in the last full minute")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 02 08:20:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/mvs/mvs.go

    		}
    		return nil
    	}
    	// First walk the base modules that must be listed.
    	var min []module.Version
    	haveBase := map[string]bool{}
    	for _, path := range base {
    		if haveBase[path] {
    			continue
    		}
    		m := module.Version{Path: path, Version: max[path]}
    		min = append(min, m)
    		walk(m)
    		haveBase[path] = true
    	}
    	// Now the reverse postorder to bring in anything else.
    	for i := len(postorder) - 1; i >= 0; i-- {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  9. android/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)
  10. pkg/controller/podautoscaler/metrics/utilization_test.go

    	assert.Equal(t, tc.expectedCurrentUtilization, actualCurrentUtilization, "the current utilization should be as expected")
    	assert.Equal(t, tc.expectedRawAverageValue, actualRawAverageValue, "the raw average value should be as expected")
    }
    
    type metricUsageRatioTestCase struct {
    	metrics     PodMetricsInfo
    	targetUsage int64
    
    	expectedUsageRatio   float64
    	expectedCurrentUsage int64
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 22 08:59:02 UTC 2022
    - 4.5K bytes
    - Viewed (0)
Back to top