Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for weights (0.25 sec)

  1. tensorflow/compiler/mlir/lite/tests/optimize.mlir

      // NoFusing-LABEL: FuseMulWithFullyConnectedNoBias
      // NoFusing-DAG: %[[MWEIGHTS:.*]] = arith.constant dense<2.000000e+00> : tensor<512xf32>
      // NoFusing-DAG: %[[WEIGHTS:.*]] = arith.constant dense<3.000000e+00> : tensor<1024x512xf32>
      // NoFusing-DAG: %[[BIAS:.*]] = "tfl.no_value"() <{value}> : () -> none
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                                type: integer
                              weight:
                                default: 1
                                description: "Weight specifies the proportion of requests
                                  forwarded to the referenced backend. This is computed
                                  as weight/(sum of all weights in this BackendRefs list).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  3. pkg/apis/core/types.go

    }
    
    // WeightedPodAffinityTerm represents the weights of all of the matched WeightedPodAffinityTerm
    // fields are added per-node to find the most preferred node(s)
    type WeightedPodAffinityTerm struct {
    	// weight associated with matching the corresponding podAffinityTerm,
    	// in the range 1-100.
    	Weight int32
    	// Required. A pod affinity term, associated with the corresponding weight.
    	PodAffinityTerm PodAffinityTerm
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/core/v1/generated.proto

    }
    
    // The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)
    message WeightedPodAffinityTerm {
      // weight associated with matching the corresponding podAffinityTerm,
      // in the range 1-100.
      optional int32 weight = 1;
    
      // Required. A pod affinity term, associated with the corresponding weight.
      optional PodAffinityTerm podAffinityTerm = 2;
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    var map_WeightedPodAffinityTerm = map[string]string{
    	"":                "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
    	"weight":          "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.",
    	"podAffinityTerm": "Required. A pod affinity term, associated with the corresponding weight.",
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.proto

    }
    
    // The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)
    message WeightedPodAffinityTerm {
      // weight associated with matching the corresponding podAffinityTerm,
      // in the range 1-100.
      optional int32 weight = 1;
    
      // Required. A pod affinity term, associated with the corresponding weight.
      optional PodAffinityTerm podAffinityTerm = 2;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    }
    
    // The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)
    type WeightedPodAffinityTerm struct {
    	// weight associated with matching the corresponding podAffinityTerm,
    	// in the range 1-100.
    	Weight int32 `json:"weight" protobuf:"varint,1,opt,name=weight"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. 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)
  9. src/net/http/h2_bundle.go

    	}
    
    	// Common case: only one kid or all kids have the same weight.
    	// Some clients don't use weights; other clients (like web browsers)
    	// use mostly-linear priority trees.
    	w := n.kids.weight
    	needSort := false
    	for k := n.kids.next; k != nil; k = k.next {
    		if k.weight != w {
    			needSort = true
    			break
    		}
    	}
    	if !needSort {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.16.md

    - Updates the `requestedToCapacityRatioArguments` to add resources parameter that allows the users to specify the resource name along with weights for each resource to score nodes based on the request to capacity ratio. ([#77688](https://github.com/kubernetes/kubernetes/pull/77688), [@sudeshsh](https://github.com/sudeshsh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 11 10:00:57 UTC 2021
    - 345.2K bytes
    - Viewed (0)
Back to top