Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for kindOf (0.17 sec)

  1. cluster/addons/calico-policy-controller/clusterinformations-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: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

          namespaces:
            from: All
          kinds:
          - kind: HTTPRoute
      - name: same-namespace
        hostname: "*.same-namespace.example"
        port: 80
        protocol: HTTP
      - name: scope-route
        hostname: "*.scope-route.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
          kinds:
          - kind: TCPRoute
      - name: slctr-labels
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. pkg/apis/rbac/v1alpha1/conversion.go

    	}
    
    	// specifically set the APIGroup for the three subjects recognized in v1alpha1
    	switch {
    	case in.Kind == rbacv1alpha1.ServiceAccountKind:
    		out.APIGroup = ""
    	case in.Kind == rbacv1alpha1.UserKind:
    		out.APIGroup = GroupName
    	case in.Kind == rbacv1alpha1.GroupKind:
    		out.APIGroup = GroupName
    	default:
    		// For unrecognized kinds, use the group portion of the APIVersion if we can get it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 18:30:51 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalJvmTestDescriptor.java

        String KIND_SUITE = "SUITE";
        String KIND_ATOMIC = "ATOMIC";
    
        /**
         * Returns the kind of test this is. See the constants on this interface for the supported kinds.
         *
         * @return The test kind (test suite, atomic test, etc.).
         */
        String getTestKind();
    
        /**
         * Returns the name of the test suite, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis_openapi.json

                "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"
              },
              "name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top