Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 166 for avevate (0.12 sec)

  1. src/image/gif/writer_test.go

    	if d < 0 {
    		return -d
    	}
    	return d
    }
    
    // averageDelta returns the average delta in RGB space. The two images must
    // have the same bounds.
    func averageDelta(m0, m1 image.Image) int64 {
    	b := m0.Bounds()
    	return averageDeltaBound(m0, m1, b, b)
    }
    
    // averageDeltaBound returns the average delta in RGB space. The average delta is
    // calculated in the specified bounds.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. common-protos/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: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 21K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/autoscaling/v2/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.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. releasenotes/notes/startupProbe.yaml

          
          By using a startup probe, we can poll for the sidecar to start more aggressively, without polling as aggressively throughout
          the entire pod's lifecycle.
          On average, this improves pod startup time by roughly 1s.
          
          If the startup probe does not pass after 10 minutes, the pod will be terminated.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 13 23:27:34 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/least_allocated.go

    )
    
    // leastResourceScorer favors nodes with fewer requested resources.
    // It calculates the percentage of memory, CPU and other resources requested by pods scheduled on the node, and
    // prioritizes based on the minimum of the average of the fraction of requested to capacity.
    //
    // Details:
    // (cpu((capacity-requested)*MaxNodeScore*cpuWeight/capacity) + memory((capacity-requested)*MaxNodeScore*memoryWeight/capacity) + ...)/weightSum
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 12 01:50:09 UTC 2023
    - 2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

      AverageMinMax calibration calculates the average of min and max values.
      average of min = sum of min values / number of samples
      average of max = sum of max values / number of samples
      """
    
      def get_min_max_value(self) -> tuple[float, float]:
        """Calculates the average of min and max values.
    
        Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/service/BadWordService.java

                    } catch (final Exception e) {
                        logger.warn("Failed to read a sugget elevate word: {}", list, e);
                    }
                }
                searchEngineClient.refresh("_all"); // TODO replace _all
            } catch (final IOException e) {
                logger.warn("Failed to read a sugget elevate word.", e);
            }
        }
    
        public void exportCsv(final Writer writer) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. pkg/controller/podautoscaler/metrics/utilization.go

    // GetResourceUtilizationRatio takes in a set of metrics, a set of matching requests,
    // and a target utilization percentage, and calculates the ratio of
    // desired to actual utilization (returning that, the actual utilization, and the raw average value)
    func GetResourceUtilizationRatio(metrics PodMetricsInfo, requests map[string]int64, targetUtilization int32) (utilizationRatio float64, currentUtilization int32, rawAverageValue int64, err error) {
    	metricsTotal := int64(0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 22 08:59:02 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top