Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 170 for none_of (0.13 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/tac_filter.proto

      // A list of filters/rules to specify the parts that user wants to run on
      // other hardware.
      repeated TacFilter tac_filters = 1;
    }
    
    // A filter can be used for an op or function.
    message TacFilter {
      oneof filter {
        OpFilter op_filter = 1;
        FunctionFilter function_filter = 2;
      }
    }
    
    // Function filter is to include/exclude a function in the target annotation
    // pass in the TAC tool pipeline.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 19 19:32:06 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    // Next ID: 2
    message TfRecordFile {
      string path = 1;
    }
    
    // Configures a single representative dataset used to calibrate a single
    // function.
    // Next ID: 3
    message RepresentativeDatasetConfig {
      oneof file {
        // Represents representative dataset saved as a .tfrecord file format.
        TfRecordFile tf_record = 1;
      }
    
      // [TF SavedModel] Identifies a SignatureDef which represents a single
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/matcher/metadata_test.go

    					},
    				},
    			},
    			Value: &matcher.ValueMatcher{
    				MatchPattern: &matcher.ValueMatcher_ListMatch{
    					ListMatch: &matcher.ListMatcher{
    						MatchPattern: &matcher.ListMatcher_OneOf{
    							OneOf: &matcher.ValueMatcher{
    								MatchPattern: &matcher.ValueMatcher_StringMatch{
    									StringMatch: &matcher.StringMatcher{
    										MatchPattern: &matcher.StringMatcher_SafeRegex{
    											SafeRegex: &matcher.RegexMatcher{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 20 22:15:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. istioctl/pkg/authz/testdata/configdump.yaml

                                 "key": "iss"
                                }
                               ],
                               "value": {
                                "list_match": {
                                 "one_of": {
                                  "string_match": {
                                   "exact": "https://accounts.google.com"
                                  }
                                 }
                                }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 21 14:20:23 UTC 2023
    - 206.7K bytes
    - Viewed (1)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/client/applyconfiguration/apiextensions/v1beta1/jsonschemaprops.go

    	Items                  *v1beta1.JSONSchemaPropsOrArray              `json:"items,omitempty"`
    	AllOf                  []JSONSchemaPropsApplyConfiguration          `json:"allOf,omitempty"`
    	OneOf                  []JSONSchemaPropsApplyConfiguration          `json:"oneOf,omitempty"`
    	AnyOf                  []JSONSchemaPropsApplyConfiguration          `json:"anyOf,omitempty"`
    	Not                    *JSONSchemaPropsApplyConfiguration           `json:"not,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 12:38:10 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  6. manifests/charts/base/crds/crd-all.gen.yaml

                              type: object
                            loadBalancer:
                              description: Settings controlling the load balancer algorithms.
                              oneOf:
                              - not:
                                  anyOf:
                                  - required:
                                    - simple
                                  - required:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:42 UTC 2024
    - 671.6K bytes
    - Viewed (0)
  7. src/compress/flate/inflate.go

    	}
    	f.step = (*decompressor).nextBlock
    }
    
    // noEOF returns err, unless err == io.EOF, in which case it returns io.ErrUnexpectedEOF.
    func noEOF(e error) error {
    	if e == io.EOF {
    		return io.ErrUnexpectedEOF
    	}
    	return e
    }
    
    func (f *decompressor) moreBits() error {
    	c, err := f.r.ReadByte()
    	if err != nil {
    		return noEOF(err)
    	}
    	f.roffset++
    	f.b |= uint32(c) << f.nb
    	f.nb += 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 23:20:03 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

                "required": [
                  "requiredValue"
                ],
                "items": [
                  {}
                ],
                "allOf": [
                  {}
                ],
                "oneOf": [
                  {}
                ],
                "anyOf": [
                  {}
                ],
                "properties": {
                  "propertiesKey": {}
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. pilot/pkg/security/authz/matcher/metadata.go

    func MetadataListValueMatcher(filter string, keys []string, value *matcher.ValueMatcher, useExtendedJwt bool) *matcher.MetadataMatcher {
    	listMatcher := &matcher.ListMatcher{
    		MatchPattern: &matcher.ListMatcher_OneOf{
    			OneOf: value,
    		},
    	}
    
    	paths := make([]*matcher.MetadataMatcher_PathSegment, 0, len(keys))
    	for _, k := range keys {
    		paths = append(paths, &matcher.MetadataMatcher_PathSegment{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 25 10:39:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

                new TestEnumSetGenerator() {
                  @Override
                  public Set<AnEnum> create(AnEnum[] elements) {
                    return (elements.length == 0)
                        ? EnumSet.noneOf(AnEnum.class)
                        : EnumSet.copyOf(MinimalCollection.of(elements));
                  }
                })
            .named("EnumSet")
            .withFeatures(
                SetFeature.GENERAL_PURPOSE,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top