Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for weights (0.35 sec)

  1. api/openapi-spec/v3/apis__batch__v1_openapi.json

              },
              "weight": {
                "default": 0,
                "description": "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.",
                "format": "int32",
                "type": "integer"
              }
            },
            "required": [
              "weight",
              "preference"
            ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener_waypoint.go

    	weighted := make([]*route.WeightedCluster_ClusterWeight, 0)
    	for _, dst := range in.Route {
    		weight := &wrappers.UInt32Value{Value: uint32(dst.Weight)}
    		if dst.Weight == 0 {
    			// Ignore 0 weighted clusters if there are other clusters in the route.
    			// But if this is the only cluster in the route, then add it as a cluster with weight 100
    			if len(in.Route) == 1 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/plugins/noderesources/fit_test.go

    	{Name: string(v1.ResourceCPU), Weight: 1},
    	{Name: string(v1.ResourceMemory), Weight: 1},
    	{Name: string(v1.ResourcePods), Weight: 1},
    	{Name: string(v1.ResourceStorage), Weight: 1},
    	{Name: string(v1.ResourceEphemeralStorage), Weight: 1},
    	{Name: string(extendedResourceA), Weight: 1},
    	{Name: string(extendedResourceB), Weight: 1},
    	{Name: string(kubernetesIOResourceA), Weight: 1},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 57.4K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/internal/passes/xla_broadcast.cc

        return cluster.emitOpError(
            CreateMissingAttributeMsg(tensorflow::kNumCoresPerReplicaAttr));
      int num_cores_per_replica = num_cores_per_replica_attr.getInt();
    
      // TODO(b/329483850): Support spmd ICI weight distribution so when num of core
      // per replica > 1, it does not need to be skipped.
      if (num_cores_per_replica != 1) return success();
    
      llvm::SetVector<Value> bcasts;
      cluster->walk([&](Operation* op) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 18:52:07 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/types.go

    		if err != nil {
    			// We get here if the label selector failed to process
    			return nil, err
    		}
    		terms = append(terms, WeightedAffinityTerm{AffinityTerm: *t, Weight: v1Terms[i].Weight})
    	}
    	return terms, nil
    }
    
    // NewPodInfo returns a new PodInfo.
    func NewPodInfo(pod *v1.Pod) (*PodInfo, error) {
    	pInfo := &PodInfo{}
    	err := pInfo.Update(pod)
    	return pInfo, err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  6. pkg/generated/openapi/zz_generated.openapi.go

    		Schema: spec.Schema{
    			SchemaProps: spec.SchemaProps{
    				Description: "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"weight": {
    						SchemaProps: spec.SchemaProps{
    							Description: "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  7. api/openapi-spec/swagger.json

          "properties": {
            "preference": {
              "$ref": "#/definitions/io.k8s.api.core.v1.NodeSelectorTerm",
              "description": "A node selector term, associated with the corresponding weight."
            },
            "weight": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3.1M bytes
    - Viewed (0)
  8. pkg/scheduler/schedule_one.go

    				metrics.Goroutines.WithLabelValues(metrics.PrioritizingExtender).Inc()
    				defer func() {
    					metrics.Goroutines.WithLabelValues(metrics.PrioritizingExtender).Dec()
    					wg.Done()
    				}()
    				prioritizedList, weight, err := extenders[extIndex].Prioritize(pod, nodes)
    				if err != nil {
    					// Prioritization errors from extender can be ignored, let k8s/other extenders determine the priorities
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  9. src/runtime/gc_test.go

    		start := time.Now()
    		runtime.ReadMemStats(&ms)
    		latencies = append(latencies, time.Since(start))
    	}
    	// Make sure to stop the timer before we wait! The load created above
    	// is very heavy-weight and not easy to stop, so we could end up
    	// confusing the benchmarking framework for small b.N.
    	b.StopTimer()
    	stop()
    
    	// Disable the default */op metrics.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 05 22:33:52 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listener_test.go

    				Route: []*networking.RouteDestination{
    					{
    						Destination: &networking.Destination{
    							Host: "test.org",
    							Port: &networking.PortSelector{
    								Number: 80,
    							},
    						},
    						Weight: 100,
    					},
    				},
    			},
    		},
    	}
    )
    
    func TestInboundListenerConfig(t *testing.T) {
    	for _, p := range []*model.Proxy{getProxy(), &proxyHTTP10, &dualStackProxy} {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
Back to top