Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 167 for averages (0.16 sec)

  1. staging/src/k8s.io/api/autoscaling/v2/types_swagger_doc_generated.go

    	"":                   "MetricTarget defines the target value, average value, or average utilization of a specific metric",
    	"type":               "type represents whether the metric type is Utilization, Value, or AverageValue",
    	"value":              "value is the target value of the metric (as a quantity).",
    	"averageValue":       "averageValue is the target value of the average of the metric across all relevant pods (as a quantity)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 21.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/autoscaling/v2beta2/generated.proto

      // QPS from loadbalancer running outside of cluster).
      // +optional
      optional ExternalMetricStatus external = 5;
    }
    
    // MetricTarget defines the target value, average value, or average utilization of a specific metric
    message MetricTarget {
      // type represents whether the metric type is Utilization, Value, or AverageValue
      optional string type = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. pkg/apis/autoscaling/types.go

    }
    
    // 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
    	// Value is the target value of the metric (as a quantity).
    	Value *resource.Quantity
    	// TargetAverageValue is the target value of the average of the
    	// metric across all relevant pods (as a quantity)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 23:13:24 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  6. testing/internal-performance-testing/src/test/groovy/org/gradle/performance/measure/DataSeriesTest.groovy

            expect:
            series.size() == 3
            series.average == v2
            series.average == v2
            series.min == v1
            series.max == v3
        }
    
        def "can be empty"() {
            def series = new DataSeries([null, null])
    
            expect:
            series.empty
            series.average == null
            series.median == null
            series.min == null
            series.max == null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/integrator.go

    	return x == y || x != nil && y != nil && x.Duration == y.Duration && x.Min == y.Min && x.Max == y.Max && (x.Average == y.Average || math.IsNaN(x.Average) && math.IsNaN(y.Average)) && (x.Deviation == y.Deviation || math.IsNaN(x.Deviation) && math.IsNaN(y.Deviation))
    }
    
    type integrator struct {
    	name  string
    	clock clock.PassiveClock
    	sync.Mutex
    	lastTime time.Time
    	x        float64
    	moments  Moments
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 03 17:37:20 UTC 2022
    - 5K bytes
    - Viewed (0)
  8. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/measure/DataSeries.java

            median = medianLeft.plus(medianRight).div(2);
            average = total.div(size());
            this.min = min;
            this.max = max;
    
            BigDecimal sumSquares = BigDecimal.ZERO;
            Units<Q> baseUnits = average.getUnits().getBaseUnits();
            BigDecimal averageValue = average.toUnits(baseUnits).getValue();
            for (Amount<Q> amount : this) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/integrator_test.go

    	rToo := igr.Reset()
    	if e := (IntegratorResults{Duration: time.Second.Seconds(), Average: 3, Deviation: 0, Min: 0, Max: 3}); !e.Equal(&results) {
    		t.Errorf("expected %#+v, got %#+v", e, results)
    	}
    	if !results.Equal(&rToo) {
    		t.Errorf("expected %#+v, got %#+v", results, rToo)
    	}
    	igr.Set(2)
    	results = igr.GetResults()
    	if e := (IntegratorResults{Duration: 0, Average: math.NaN(), Deviation: math.NaN(), Min: 2, Max: 3}); !e.Equal(&results) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 27 21:11:44 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/borrowing_test.go

    			}
    			if results0.Average < 15.5 || results0.Average > 16.1 {
    				t.Errorf("Flow 0 got average concurrency of %v but expected about 16", results0.Average)
    			} else {
    				t.Logf("Flow 0 got average concurrency of %v and expected about 16", results0.Average)
    			}
    			if results1.Average < 5.5 || results1.Average > 6.1 {
    				t.Errorf("Flow 1 got average concurrency of %v but expected about 6", results1.Average)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:40 UTC 2023
    - 9K bytes
    - Viewed (0)
Back to top