Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 161 for Invert (0.38 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    	SchemaHas(schema, func(s *apiextensions.JSONSchemaProps) bool {
    		for _, v := range s.XValidations {
    			expressions.rules.Insert(v.Rule)
    			if len(v.MessageExpression) > 0 {
    				expressions.messageExpressions.Insert(v.Rule)
    			}
    		}
    		return false
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  2. plugin/pkg/admission/resourcequota/admission_test.go

    	}
    
    	expectedActionSet := sets.NewString(
    		strings.Join([]string{"update", "resourcequotas", "status"}, "-"),
    	)
    	actionSet := sets.NewString()
    	for _, action := range kubeClient.Actions() {
    		actionSet.Insert(strings.Join([]string{action.GetVerb(), action.GetResource().Resource, action.GetSubresource()}, "-"))
    	}
    	if !actionSet.HasAll(expectedActionSet.List()...) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 21:28:42 UTC 2024
    - 84.1K bytes
    - Viewed (0)
  3. pkg/apis/certificates/validation/validation_test.go

    		},
    	}}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			gotErrs := sets.NewString()
    			for _, err := range ValidateCertificateSigningRequestUpdate(tt.newCSR, tt.oldCSR) {
    				gotErrs.Insert(err.Error())
    			}
    			wantErrs := sets.NewString(tt.errs...)
    			for _, missing := range wantErrs.Difference(gotErrs).List() {
    				t.Errorf("missing expected error: %s", missing)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 61K bytes
    - Viewed (0)
  4. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

          /*leave=*/[&guaranteed_const_nodes](const Node* n) {
            // TODO(vinuraja): Doesn't work in the presence of loops.
            if (AreAllParentsGuaranteedConst(*n, guaranteed_const_nodes)) {
              guaranteed_const_nodes.insert(n);
            }
          });
    
      for (auto& src_arg : src_arg_pairs) {
        if (guaranteed_const_nodes.count(src_arg.first) != 0) {
          VLOG(1) << "Guaranteed const found: " << src_arg.first->DebugString();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

            "properties": {
              "apiVersion": {
                "description": "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_test.go

    		have := sets.New[string]()
    		for _, address := range addresses {
    			switch addr := address.Address.Type.(type) {
    			case *workloadapi.Address_Workload:
    				have.Insert(addr.Workload.Name)
    			case *workloadapi.Address_Service:
    				have.Insert(addr.Service.Name)
    			}
    		}
    		return have
    	}, want, retry.Timeout(time.Second*3))
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 70.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/g3doc/_includes/tf_passes.md

    ### `-cluster-tf-ops-by-host`
    
    _Cluster the TensorFlow ops by host so that each function only contains ops placed on the same host_
    
    ### `-constant-op-device-assignment`
    
    _Assign device for tf.Const ops_
    
    ### `-convert-tf-control-flow-to-scf`
    
    _Convert TensorFlow control flow to SCF._
    
    This pass can be used for all direct control flow lowerings from the TensorFlow
    dialect to the SCF dialect.
    ### `-prepare-tpu-computation-for-tf-export`
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 02 02:26:39 UTC 2023
    - 96.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	// CreateStrategy implements resource-specific behavior during creation.
    	CreateStrategy rest.RESTCreateStrategy
    	// BeginCreate is an optional hook that returns a "transaction-like"
    	// commit/revert function which will be called at the end of the operation,
    	// but before AfterCreate and Decorator, indicating via the argument
    	// whether the operation succeeded.  If this returns an error, the function
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  9. pkg/proxy/iptables/proxier.go

    		// then jump to externalPolicyChain.
    		if usesExternalTrafficChain {
    			natChains.Write(utiliptables.MakeChainLine(externalTrafficChain))
    			activeNATChains.Insert(externalTrafficChain)
    
    			if !svcInfo.ExternalPolicyLocal() {
    				// If we are using non-local endpoints we need to masquerade,
    				// in case we cross nodes.
    				natRules.Write(
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 65.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

            array_ops_stack.stack([weight_row, weight_row])
        )
        # Insert fake quant to simulate a QAT model.
        weight = array_ops.fake_quant_with_min_max_args(
            weight, min=-0.1, max=0.2, num_bits=8, narrow_range=False
        )
    
        # shape: (2, 2)
        output_tensor = math_ops.matmul(matmul_input, weight)
        # Insert fake quant to simulate a QAT model.
        output_tensor = array_ops.fake_quant_with_min_max_args(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top