Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 22 for unweighted (0.44 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/metrics.go

    	apiserverSeatDemandAverages = compbasemetrics.NewGaugeVec(
    		&compbasemetrics.GaugeOpts{
    			Namespace:      namespace,
    			Subsystem:      subsystem,
    			Name:           "demand_seats_average",
    			Help:           "Time-weighted average, over last adjustment period, of demand_seats",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{priorityLevel},
    	)
    	apiserverSeatDemandStandardDeviations = compbasemetrics.NewGaugeVec(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 19:40:05 UTC 2023
    - 25.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/math/Quantiles.java

     * Double#POSITIVE_INFINITY POSITIVE_INFINITY} sort to the beginning and the end of the dataset, as
     * you would expect.
     *
     * <p>If required to do a weighted average between an infinity and a finite value, or between an
     * infinite value and itself, the infinite value is returned. If required to do a weighted average
     * between {@link Double#NEGATIVE_INFINITY NEGATIVE_INFINITY} and {@link Double#POSITIVE_INFINITY
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/math/Quantiles.java

     * Double#POSITIVE_INFINITY POSITIVE_INFINITY} sort to the beginning and the end of the dataset, as
     * you would expect.
     *
     * <p>If required to do a weighted average between an infinity and a finite value, or between an
     * infinite value and itself, the infinite value is returned. If required to do a weighted average
     * between {@link Double#NEGATIVE_INFINITY NEGATIVE_INFINITY} and {@link Double#POSITIVE_INFINITY
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 29.9K bytes
    - Viewed (0)
  4. pkg/kubelet/preemption/preemption.go

    // distance returns distance of the pods requests from the admissionRequirements.
    // The distance is measured by the fraction of the requirement satisfied by the pod,
    // so that each requirement is weighted equally, regardless of absolute magnitude.
    func (a admissionRequirementList) distance(pod *v1.Pod) float64 {
    	dist := float64(0)
    	for _, req := range a {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 16:53:19 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. src/crypto/internal/edwards25519/field/fe_test.go

    		rand.Uint64() & maskLow52Bits,
    		rand.Uint64() & maskLow52Bits,
    	}
    }
    
    // weirdLimbs can be combined to generate a range of edge-case field elements.
    // 0 and -1 are intentionally more weighted, as they combine well.
    var (
    	weirdLimbs51 = []uint64{
    		0, 0, 0, 0,
    		1,
    		19 - 1,
    		19,
    		0x2aaaaaaaaaaaa,
    		0x5555555555555,
    		(1 << 51) - 20,
    		(1 << 51) - 19,
    		(1 << 51) - 1, (1 << 51) - 1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 17:26:17 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/calibrator/calibration_algorithm.py

            value.
          quant_max: The maximum real value that can be represented by a quantized
            value.
    
        Returns:
          (error, quant_min, quant_max): Tuple of weighted mean squared error.
          error = (hist_mids - dequantized_hist_mids)**2 * hist_freq
        """
        dequantized_hist_mids = self._get_dequantized_hist_mids_after_quantize(
            quant_min, quant_max
        )
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 11 19:29:56 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  7. pkg/config/validation/virtualservice_test.go

    			}},
    		}, valid: true},
    		{name: "no destination", route: &networking.HTTPRoute{
    			Route: []*networking.HTTPRouteDestination{{
    				Destination: nil,
    			}},
    		}, valid: false},
    		{name: "weighted", route: &networking.HTTPRoute{
    			Route: []*networking.HTTPRouteDestination{{
    				Destination: &networking.Destination{Host: "foo.baz.south"},
    				Weight:      25,
    			}, {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 15:33:55 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  8. pilot/pkg/networking/core/networkfilter_test.go

    							IdleTimeout: durationpb.New(1 * time.Minute),
    						},
    					},
    				},
    			},
    			routes: singleDestination,
    		},
    		{
    			name:                 "weighted routes, valid ISTIO_META_IDLE_TIMEOUT ignored, because destination rule with idle timeout exists",
    			istioMetaIdleTimeout: "30s",
    			expected:             durationpb.New(1 * time.Minute),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. pkg/proxy/ipvs/README.md

    1. IPVS provides better scalability and performance for large clusters.
    
    2. IPVS supports more sophisticated load balancing algorithms than IPTABLES (least load, least connections, locality, weighted, etc.).
    
    3. IPVS supports server health checking and connection retries, etc.
    
    ### When IPVS falls back to IPTABLES
    IPVS proxier will employ IPTABLES in doing packet filtering, SNAT or masquerade.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/cluster_builder.go

    	}
    	// clusters with discovery type STATIC, STRICT_DNS rely on cluster.LoadAssignment field.
    	// ServiceEntry's need to filter hosts based on subset.labels in order to perform weighted routing
    	var lbEndpoints []*endpoint.LocalityLbEndpoints
    
    	isPassthrough := subset.GetTrafficPolicy().GetLoadBalancer().GetSimple() == networking.LoadBalancerSettings_PASSTHROUGH
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top