Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 70 for patching (0.21 sec)

  1. tensorflow/c/c_api.cc

    // DT_RESOURCE. The string serialization is converted back to a
    // ResourceHandle during Session run where the TF_Tensor is converted to a
    // Tensor.
    // TFv2 does not depend on this conversion. There is no matching
    // TF_TensorFromTensorV1 because the conversion to string is performed by the
    // python side of Session.
    static Status TF_TensorToTensorV1(const TF_Tensor* src, Tensor* dst) {
      Status status = TF_TensorToTensor(src, dst);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  2. pkg/test/framework/features/allowlist.txt

    security_mtlscert_pluginca_securenaming,TestMTLSCertPluginCASecureNaming
    security_mtlscert_pluginca_securenaming,TestMTLSCertPluginCASecureNaming/connection_fails_when_DR_contains_non-matching,_non-existing_SA
    security_mtlscert_pluginca_securenaming,TestMTLSCertPluginCASecureNaming/connection_fails_when_DR_doesn't_match_SA
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 18 18:03:23 UTC 2022
    - 103.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    				t.Fatalf("Unexpected error: %v", err)
    			}
    			milestones = nil
    			registry.Decorator = tc.decorator
    			ttlFailDone = false
    			registry.TTLFunc = tc.ttl
    			// force storage to use a cached object with a non-matching resourceVersion to guarantee a live lookup + retry
    			created.(*example.Pod).ResourceVersion += "0"
    			registry.Storage.Storage = &staleGuaranteedUpdateStorage{Interface: registry.Storage.Storage, cachedObj: created}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. pkg/apis/admissionregistration/validation/validation_test.go

    					{
    						Expression: "true",
    					},
    				},
    			},
    		},
    		expectedError: `spec.variables[0].expression: Invalid value: "114 + '514'": compilation failed: ERROR: <input>:1:5: found no matching overload for '_+_' applied to '(int, string)`,
    	}, {
    		name: "validation referred to non-existing variable",
    		config: &admissionregistration.ValidatingAdmissionPolicy{
    			ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 147.1K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__node.k8s.io__v1_openapi.json

    {
      "components": {
        "schemas": {
          "io.k8s.api.core.v1.Toleration": {
            "description": "The pod this Toleration is attached to tolerates any taint that matches the triple <key,value,effect> using the matching operator <operator>.",
            "properties": {
              "effect": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 122.9K bytes
    - Viewed (0)
  6. pkg/config/validation/validation.go

    				if in.GetProvider() == nil || in.GetProvider().GetName() == "" {
    					errs = appendErrors(errs, fmt.Errorf("`provider.name` must not be empty"))
    				}
    			}
    			// TODO(yangminzhu): Add support for more matching rules.
    			for _, rule := range in.GetRules() {
    				check := func(invalid bool, name string) error {
    					if invalid {
    						return fmt.Errorf("%s is currently not supported with CUSTOM action", name)
    					}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    						},
    						Count: 1,
    						Check: check.And(
    							check.OK(),
    							check.ResponseHeader("Access-Control-Allow-Origin", "cors.com")),
    					}
    				}(),
    			},
    			{
    				// GET without matching origin
    				name: "get no origin match",
    				opts: echo.CallOptions{
    					Port: echo.Port{
    						Name: "http",
    					},
    					Count: 1,
    					Check: check.And(
    						check.OK(),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

                                               data_shape.take_front(index_rank))))
          return op.emitOpError() << "requires shape of data with type " << data_ty
                                  << " to have prefix matching with shape of the "
                                     "corresponding index type "
                                  << index_ty;
    
        ArrayRef<int64_t> item_shape = data_shape.drop_front(index_rank);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/LocalCache.java

           * elements from each bin must either stay at same index, or move with a power of two offset.
           * We eliminate unnecessary node creation by catching cases where old nodes can be reused
           * because their next fields won't change. Statistically, at the default threshold, only about
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

        if (!ShapedType::isDynamic(features_batches) &&
            !ShapedType::isDynamic(labels_batches) &&
            features_batches != labels_batches)
          return op.emitOpError(
              "requires features and labels with matching first dimension");
      }
      return success();
    }
    
    //===----------------------------------------------------------------------===//
    // SplitOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top