Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 167 for averages (0.19 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  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. 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. 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)
Back to top