Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 660 for weights (0.81 sec)

  1. pilot/pkg/config/kube/gateway/testdata/weighted.yaml.golden

        name: default.http.0
        route:
        - destination:
            host: httpbin.default.svc.domain.suffix
            port:
              number: 80
          weight: 2
        - destination:
            host: httpbin-other.default.svc.domain.suffix
            port:
              number: 8080
          weight: 3
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: VirtualService
    metadata:
      annotations:
        internal.istio.io/parents: TCPRoute/tcp.default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

    format which contains three 1D tensors.
      }];
    
      let arguments = (ins
        TF_Int32Tensor:$indices_or_row_splits,
        TF_Int32Tensor:$values,
        TF_Float32Tensor:$weights,
    
        ConfinedAttr<I64Attr, [IntMinValue<1>]>:$sample_count,
        StrAttr:$combiner
      );
    
      let results = (outs
        TF_Int32Tensor:$row_ids,
        TF_Int32Tensor:$col_ids,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_weights.mlir

    // RUN: tf-quant-opt %s -split-input-file -quant-quantize-weights | FileCheck %s
    
    module {
      func.func @not_quantize_const() -> (tensor<2x1024xf32>) {
        // Nothing happens if not connected wiht quantizable op.
        %cst_0 = "tf.Const"() {value = dense<2.000000e+00> : tensor<2x1024xf32>} : () -> tensor<2x1024xf32>
        func.return %cst_0: tensor<2x1024xf32>
      }
    
    // CHECK-LABEL: func @not_quantize_const
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 42K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/ir/tf_generated_ops.td

      }];
    
      let description = [{
    Outputs a vector with length `size` and the same dtype as `weights`. If
    `weights` are empty, then index `i` stores the number of times the value `i` is
    counted in `arr`. If `weights` are non-empty, then index `i` stores the sum of
    the value in `weights` at each index where the corresponding value in `arr` is
    `i`.
    
    Values in `arr` outside of the range [0, size) are ignored.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 793K bytes
    - Viewed (0)
  5. tests/testdata/config/static-weighted-se.yaml

    kind: ServiceEntry
    metadata:
      name: httpbin
    spec:
      hosts:
        - weighted.static.svc.cluster.local
      ports:
        - number: 80
          name: http
          protocol: HTTP
      resolution: STATIC
      endpoints:
        - address: 3.3.3.3
          locality: a
        - address: 2.2.2.2
          locality: a
          weight: 8
        - address: 1.1.1.1
          locality: b
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 18 01:09:21 UTC 2019
    - 394 bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. guava-tests/test/com/google/common/cache/CacheEvictionTest.java

        assertThat(keySet).containsExactly(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
    
        // add an at-the-maximum-weight entry
        getAll(cache, asList(45));
        CacheTesting.drainRecencyQueues(cache);
        assertThat(keySet).containsExactly(0, 45);
    
        // add an over-the-maximum-weight entry
        getAll(cache, asList(46));
        CacheTesting.drainRecencyQueues(cache);
        assertThat(keySet).contains(0);
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 14.9K bytes
    - Viewed (0)
Back to top