Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for kindOf (0.14 sec)

  1. pkg/config/schema/collection/schemas.go

    			}
    		}
    		if shouldAdd {
    			b.MustAdd(s)
    		}
    	}
    
    	return b.Build()
    }
    
    // Kinds returns all known resource kinds.
    func (s Schemas) Kinds() []string {
    	kinds := sets.NewWithLength[string](len(s.byAddOrder))
    	for _, s := range s.byAddOrder {
    		kinds.Insert(s.Kind())
    	}
    
    	out := kinds.UnsortedList()
    	return slices.Sort(out)
    }
    
    // Validate the schemas. Returns error if there is a problem.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 01 08:10:15 UTC 2023
    - 6K bytes
    - Viewed (0)
  2. pkg/registry/admissionregistration/resolver/resolver.go

    	resources, err := d.client.ServerResourcesForGroupVersion(gv.String())
    	if err != nil {
    		return schema.GroupVersionResource{}, err
    	}
    	for _, resource := range resources.APIResources {
    		if resource.Kind != gvk.Kind {
    			// ignore unrelated kinds
    			continue
    		}
    		if strings.Contains(resource.Name, "/") {
    			// ignore subresources
    			continue
    		}
    		if resource.Group != "" && resource.Group != gvk.Group {
    			// group didn't match
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 07 21:29:56 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/ModuleSource.java

     * of module sources:
     *
     * <ul>
     *     <li>sources which can be reconstructed from the caches, for example, the repository source</li>
     *     <li>sources which can't be reconstructed because the cache format loses information, for example a descriptor converted to binary</li>
     * </ul>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. tensorflow/c/eager/abstract_operation.h

        kGraph,
        kMlir,
        kEager,
        kTfrt,
        kTape,
        kOpHandler
      };
      explicit AbstractOperation(AbstractOperationKind kind) : kind_(kind) {}
      virtual ~AbstractOperation() {}
    
     public:
      AbstractOperationKind getKind() const { return kind_; }
    
      // Release any underlying resources, including the interface object.
      //
      // WARNING: The destructor of this class is marked as protected to disallow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jul 14 16:20:41 UTC 2021
    - 6.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/suggest/constants/FieldNames.java

        public static final String QUERY_FREQ = "queryFreq";
        public static final String DOC_FREQ = "docFreq";
        public static final String USER_BOOST = "userBoost";
        public static final String KINDS = "kinds";
        public static final String TIMESTAMP = "@timestamp";
        public static final String TAGS = "tags";
        public static final String ROLES = "roles";
        public static final String FIELDS = "fields";
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/roundtrip_test.go

    		},
    	}
    
    	opts.Complete(t)
    
    	// limit to types in apiextensions.k8s.io
    	filteredKinds := []schema.GroupVersionKind{}
    	for _, gvk := range opts.Kinds {
    		if gvk.Group == apiextensionv1.SchemeGroupVersion.Group {
    			filteredKinds = append(filteredKinds, gvk)
    		}
    	}
    	opts.Kinds = filteredKinds
    
    	opts.Run(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 27 19:12:59 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/alg.go

    	ASTRING
    	AINTER
    	ANILINTER
    	AFLOAT32
    	AFLOAT64
    	ACPLX64
    	ACPLX128
    	ASPECIAL // Type needs special comparison/hashing functions.
    )
    
    // Most kinds are priority 0. Higher numbers are higher priority, in that
    // the higher priority kinds override lower priority kinds.
    var algPriority = [ASPECIAL + 1]int8{ASPECIAL: 1, ANOEQ: 2, ANOALG: 3, AMEM: -1}
    
    // setAlg sets the algorithm type of t to a, if it is of higher
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 15:30:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/mcs-serviceexport-crd.yaml

                  type: string
                kind:
                  description: 'Kind is a string value representing the REST resource this
                  object represents. Servers may infer this from the endpoint the client
                  submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
                  type: string
                metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 4K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

            }
    
            if (!fields.isEmpty()) {
                filterList.add(buildFilterQuery(FieldNames.FIELDS, fields));
            }
    
            if (!kinds.isEmpty()) {
                filterList.add(buildFilterQuery(FieldNames.KINDS, kinds));
            }
    
            if (filterList.size() > 0) {
                final BoolQueryBuilder boolQueryBuilder = QueryBuilders.boolQuery();
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/operator/output/operator-remove.yaml

              type: string
            kind:
              description: 'Kind is a string value representing the REST resource this
                object represents. Servers may infer this from the endpoint the client
                submits requests to. Cannot be updated. In CamelCase.
                More info: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
              type: string
            spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 21 01:45:21 UTC 2020
    - 5.4K bytes
    - Viewed (0)
Back to top