Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 595 for weights (0.17 sec)

  1. 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)
  2. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

          "description": "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)",
          "properties": {
            "podAffinityTerm": {
              "$ref": "#/definitions/io.k8s.api.core.v1.PodAffinityTerm",
              "description": "Required. A pod affinity term, associated with the corresponding weight."
            },
            "weight": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass_test.cc

      Output weights_0 = ops::VarHandleOp(scope.WithOpName("weights_0"), DT_FLOAT,
                                          TensorShape({1000}));
      Output weights_1 = ops::VarHandleOp(scope.WithOpName("weights_1"), DT_FLOAT,
                                          TensorShape({1000}));
    
      // We update the weights by adding delta to them (to "simulate" a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 14 10:11:10 UTC 2024
    - 79.6K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    additionalProperties: type: integer description: Set of ports associated with the endpoint. type: object serviceAccount: description: The service account associated with the workload if a sidecar is present in the workload. type: string weight: description: The load balancing weight associated with the endpoint. type: integer type: object type: array exportTo: description: A list of namespaces to which this service is exported. items: type: string type: array hosts: description: The hosts associated with the...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/proxier.go

    			Address: netutils.ParseIPSloppy(ip),
    			Port:    uint16(portNum),
    			Weight:  1,
    		}
    
    		if curEndpoints.Has(ep) {
    			// if we are syncing for the first time, loop through all current destinations and
    			// reset their weight.
    			if proxier.initialSync {
    				for _, dest := range curDests {
    					if dest.Weight != newDest.Weight {
    						err = proxier.ipvs.UpdateRealServer(appliedVirtualServer, newDest)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. tensorflow/compiler/mlir/lite/stablehlo/transforms/uniform_quantized_stablehlo_to_tfl_pass.cc

            /*input=*/new_filter);
        rewriter.replaceAllUsesExcept(filter_op->getResult(0), dq.getOutput(), dq);
      }
    
     private:
      // Returns new quantized type for weights after transpose.
      Type GetNewWeightQuantizedType(MLIRContext* context, Location location,
                                     ArrayRef<int64_t> new_shape, Type filter_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 22 09:00:19 UTC 2024
    - 99.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize.cc

            // This filter goes through quantize and dequantize ops. Then we just
            // need to update the weight to the quantize op.
            filter.replaceAllUsesWith(new_filter_op);
          } else {
            // This filter doesn't go through quantize and dequantize ops, Then
            // we update the weight of the affine op directly.
            fc_op.setOperand(1, new_filter_op);
          }
        } else {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
Back to top