Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 170 for none_of (0.2 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

      auto predicate = [](const Graph& graph) {
        const std::string kStatefulPartitionedCallOp = "StatefulPartitionedCall";
        for (const Node* node : graph.nodes()) {
          auto node_op = node->type_string();
          if (node_op == kStatefulPartitionedCallOp) {
            // Functions called by StatefulfulPartitionedCall ops with
            // _XlaMustCompile=true are compiled by XLA.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                    - key: payload
                    - key: aud
                    value:
                      orMatch:
                        valueMatchers:
                        - listMatch:
                            oneOf:
                              orMatch:
                                valueMatchers:
                                - stringMatch:
                                    exact: audiences
                                - stringMatch:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/complete.go

    		allErrs = append(allErrs, validateNestedValueValidationCompleteness(&v.AnyOf[i], s, sPath, vPath.Child("anyOf").Index(i), opts)...)
    	}
    	for i := range v.OneOf {
    		allErrs = append(allErrs, validateNestedValueValidationCompleteness(&v.OneOf[i], s, sPath, vPath.Child("oneOf").Index(i), opts)...)
    	}
    
    	return allErrs
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 18:20:00 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/EnumMultisetTest.java

        assertEquals(0, ms.count(Color.BLUE));
        assertEquals(1, ms.count(Color.YELLOW));
        assertEquals(2, ms.count(Color.RED));
      }
    
      public void testIllegalCreate() {
        Collection<Color> empty = EnumSet.noneOf(Color.class);
        try {
          EnumMultiset.create(empty);
          fail();
        } catch (IllegalArgumentException expected) {
        }
      }
    
      public void testCreateEmptyWithClass() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 16:35:21 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

        private boolean useNativeIntegrations;
        private File userHomeDir;
        private File nativeBaseDir;
        private final EnumSet<NativeFeatures> initializedFeatures = EnumSet.noneOf(NativeFeatures.class);
        private final EnumSet<NativeFeatures> enabledFeatures = EnumSet.noneOf(NativeFeatures.class);
    
        public enum NativeFeatures {
            FILE_SYSTEM_WATCHING {
                @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/quantization/quantization_info.proto

      message AffineParams {
        float scale = 1;
        int32 zero_point = 2;
      }
    
      // Params to quantize the axis. Only one of the field can be used.
      message PerAxisParams {
        oneof params_oneof {
          // min/max of the ranges.
          MinMax min_max = 1;
    
          // affine parameters to quantize the per axis value.
          AffineParams affine_params = 2;
        }
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 08 03:45:04 UTC 2019
    - 2.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/v2/conversion_test.go

    		},
    		{
    			name: "oneOf",
    			in: &apiextensions.JSONSchemaProps{
    				OneOf: []apiextensions.JSONSchemaProps{
    					{Type: "boolean"},
    					{Type: "string"},
    				},
    			},
    			expected: new(spec.Schema),
    			// not supported by openapi v2
    			// expected: &spec.Schema{
    			// 	SchemaProps: spec.SchemaProps{
    			// 		OneOf: []spec.Schema{
    			// 			*spec.BooleanProperty(),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 02 14:34:26 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  8. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelProblemCollector.java

        private List<ModelProblem> problems;
    
        private String source;
    
        private Model sourceModel;
    
        private Model rootModel;
    
        private Set<ModelProblem.Severity> severities = EnumSet.noneOf(ModelProblem.Severity.class);
    
        DefaultModelProblemCollector(ModelBuildingResult result) {
            this.result = result;
            this.problems = result.getProblems();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/deepcopy.go

    	if in.AllOf != nil {
    		in, out := &in.AllOf, &out.AllOf
    		*out = make([]JSONSchemaProps, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    
    	if in.OneOf != nil {
    		in, out := &in.OneOf, &out.OneOf
    		*out = make([]JSONSchemaProps, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	if in.AnyOf != nil {
    		in, out := &in.AnyOf, &out.AnyOf
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 17:55:23 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  10. pkg/zdsapi/zds.proto

    */
    
    // Sent from CNI to ztunnel
    message WorkloadRequest {
      oneof payload {
        AddWorkload add = 1;
        KeepWorkload keep = 5;
        DelWorkload del = 2;
        SnapshotSent snapshot_sent = 3;
      }
    }
    
    // Sent from ztunnel to CNI
    message WorkloadResponse {
      oneof payload {
        Ack ack = 1;
      }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 22:07:03 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top