Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 358 for weights (0.12 sec)

  1. pkg/scheduler/apis/config/v1/defaults_test.go

    									{Name: names.VolumeZone},
    									{Name: names.PodTopologySpread, Weight: ptr.To[int32](2)},
    									{Name: names.InterPodAffinity, Weight: ptr.To[int32](2)},
    									{Name: names.DefaultPreemption},
    									{Name: names.NodeResourcesBalancedAllocation, Weight: ptr.To[int32](1)},
    									{Name: names.ImageLocality, Weight: ptr.To[int32](1)},
    									{Name: names.DefaultBinder},
    								},
    							},
    							Bind: configv1.PluginSet{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:03:04 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  2. src/cmd/internal/pgo/serialize.go

    //
    //      GO PREPROFILE V1
    //      caller_name
    //      callee_name
    //      "call site offset" "call edge weight"
    //      ...
    //      caller_name
    //      callee_name
    //      "call site offset" "call edge weight"
    //
    // Entries are sorted by "call edge weight", from highest to lowest.
    
    const serializationHeader = "GO PREPROFILE V1\n"
    
    // WriteTo writes a serialized representation of Profile to w.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/cmd/internal/pgo/deserialize.go

    		edge := NamedCallEdge{
    			CallerName:     callerName,
    			CalleeName:     calleeName,
    			CallSiteOffset: co,
    		}
    
    		weight, err := strconv.ParseInt(split[1], 10, 64)
    		if err != nil {
    			return nil, fmt.Errorf("preprocessed profile error processing call weight: %w", err)
    		}
    
    		if _, ok := d.NamedEdgeMap.Weight[edge]; ok {
    			return nil, fmt.Errorf("preprocessed profile contains duplicate edge %+v", edge)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. istioctl/pkg/describe/describe_test.go

    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
       Route to host "productpage3" with weight 50%
       Match: /prefix*
    --------------------
    Exposed on Ingress Gateway http://1.1.1.1
    Exposed on Ingress Gateway http://2.2.2.2
    VirtualService: bookinfo
       Route to host "productpage" with weight 30%
       Route to host "productpage2" with weight 20%
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 09:54:01 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  5. pkg/scheduler/apis/config/v1/default_plugins.go

    				{Name: names.TaintToleration, Weight: ptr.To[int32](3)},
    				{Name: names.NodeAffinity, Weight: ptr.To[int32](2)},
    				{Name: names.NodePorts},
    				{Name: names.NodeResourcesFit, Weight: ptr.To[int32](1)},
    				{Name: names.VolumeRestrictions},
    				{Name: names.NodeVolumeLimits},
    				{Name: names.VolumeBinding},
    				{Name: names.VolumeZone},
    				{Name: names.PodTopologySpread, Weight: ptr.To[int32](2)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/net/dnsclient.go

    	Port     uint16
    	Priority uint16
    	Weight   uint16
    }
    
    // byPriorityWeight sorts SRV records by ascending priority and weight.
    type byPriorityWeight []*SRV
    
    // shuffleByWeight shuffles SRV records by weight using the algorithm
    // described in RFC 2782.
    func (addrs byPriorityWeight) shuffleByWeight() {
    	sum := 0
    	for _, addr := range addrs {
    		sum += int(addr.Weight)
    	}
    	for sum > 0 && len(addrs) > 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  7. pkg/test/datasets/validation/dataset/networking-v1beta1-VirtualService.yaml

    metadata:
      name: valid-virtual-service
    spec:
      hosts:
        - c
      http:
        - route:
          - destination:
              host: c
              subset: v1
            weight: 75
          - destination:
              host: c
              subset: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 303 bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/weight_only_ptq.h

    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace mlir::quant::stablehlo {
    
    // Performs int8 weight-only quantization on dot_general ops.
    //
    // The resulting `ModuleOp` contains quantized StableHLO ops serialized in
    // `TF::XlaCallModuleOp`s. They are quantized using the weight constants, not
    // relying on calibration.
    class WeightOnlyPtqComponent : public Component {
     public:
      // Used for debugging purposes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 12:18:22 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. pkg/test/datasets/validation/dataset/networking-v1-VirtualService.yaml

    metadata:
      name: valid-virtual-service
    spec:
      hosts:
        - c
      http:
        - route:
          - destination:
              host: c
              subset: v1
            weight: 75
          - destination:
              host: c
              subset: v2
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 01 14:30:05 UTC 2024
    - 298 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/css/base.css

    .docs-navigation > ul ul ul {
        display: none;
        height: 0;
        margin-left: 1rem;
    }
    
    .docs-navigation > ul ul:target,
    .docs-navigation > ul ul:target ul,
    .docs-navigation > ul .nav-dropdown.expanded ~ ul {
        display: block;
        height: auto;
    }
    
    .docs-navigation h3 {
        font-size: .95rem;
        font-weight: 600;
        line-height: 1.5;
        margin: 1.5em 0 0;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top