Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 76 for plural2 (0.14 sec)

  1. cluster/addons/calico-policy-controller/globalnetworkpolicy-crd.yaml

        addonmanager.kubernetes.io/mode: Reconcile
      name: globalnetworkpolicies.crd.projectcalico.org
    spec:
      group: crd.projectcalico.org
      names:
        kind: GlobalNetworkPolicy
        listKind: GlobalNetworkPolicyList
        plural: globalnetworkpolicies
        singular: globalnetworkpolicy
      scope: Cluster
      versions:
      - name: v1
        schema:
          openAPIV3Schema:
            properties:
              apiVersion:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 45.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/cel/library/authz.go

    //
    // resource
    //
    // Returns a ResourceCheck configured to check authorization for a particular API resource.
    // Note that the provided resource string should be a lower case plural name of a Kubernetes API resource.
    //
    //	<GroupCheck>.resource(<string>) <ResourceCheck>
    //
    // Examples:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/etcd.go

    		"Watch cache size settings for some resources (pods, nodes, etc.), comma separated. "+
    		"The individual setting format: resource[.group]#size, where resource is lowercase plural (no version), "+
    		"group is omitted for resources of apiVersion v1 (the legacy core API) and included for others, "+
    		"and size is a number. This option is only meaningful for resources built into the apiserver, "+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 15:02:16 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CachedCustomTaskExecutionIntegrationTest.groovy

            then:
            skipped ":customTask"
            file("build/output.txt").text == "data"
            file("build").listFiles().sort() as List == [file("build/output.txt")]
        }
    
        def "plural output files are only restored when map keys match"() {
            configureCacheForBuildSrc()
            file("input.txt") << "data"
            file("buildSrc/src/main/groovy/CustomTask.groovy") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/flowcontrol/v1alpha1/generated.proto

      // "*" matches all API groups and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string apiGroups = 2;
    
      // `resources` is a list of matching resources (i.e., lowercase
      // and plural) with, if desired, subresource.  For example, [
      // "services", "nodes/status" ].  This list may not be empty.
      // "*" matches all resources and, if present, must be the only entry.
      // Required.
      // +listType=set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/flowcontrol/v1beta2/generated.proto

      // "*" matches all API groups and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string apiGroups = 2;
    
      // `resources` is a list of matching resources (i.e., lowercase
      // and plural) with, if desired, subresource.  For example, [
      // "services", "nodes/status" ].  This list may not be empty.
      // "*" matches all resources and, if present, must be the only entry.
      // Required.
      // +listType=set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. common-protos/k8s.io/api/flowcontrol/v1beta3/generated.proto

      // "*" matches all API groups and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string apiGroups = 2;
    
      // `resources` is a list of matching resources (i.e., lowercase
      // and plural) with, if desired, subresource.  For example, [
      // "services", "nodes/status" ].  This list may not be empty.
      // "*" matches all resources and, if present, must be the only entry.
      // Required.
      // +listType=set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  8. src/runtime/metrics/description.go

    	// characters and hyphens. An example of such a path might be "/memory/heap/free".
    	//
    	// The unit is by convention a series of lowercase English unit names (singular or plural)
    	// without prefixes delimited by '*' or '/'. The unit names may contain any valid Unicode
    	// codepoint that is not a delimiter.
    	// Examples of units might be "seconds", "bytes", "bytes/second", "cpu-seconds",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 06 17:59:12 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/flowcontrol/v1beta1/generated.proto

      // "*" matches all API groups and, if present, must be the only entry.
      // +listType=set
      // Required.
      repeated string apiGroups = 2;
    
      // `resources` is a list of matching resources (i.e., lowercase
      // and plural) with, if desired, subresource.  For example, [
      // "services", "nodes/status" ].  This list may not be empty.
      // "*" matches all resources and, if present, must be the only entry.
      // Required.
      // +listType=set
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/config_test.go

    		if s.Proto() == name {
    			return s, true
    		}
    	}
    	return nil, false
    }
    
    func schemaFor(kind, proto string) resource.Schema {
    	return resource.Builder{
    		Kind:   kind,
    		Plural: kind + "s",
    		Proto:  proto,
    	}.BuildNoValidate()
    }
    
    func TestConfigDescriptor(t *testing.T) {
    	a := schemaFor("a", "proxy.A")
    	schemas := collection.SchemasFor(
    		a,
    		schemaFor("b", "proxy.B"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 20 12:54:10 UTC 2023
    - 19K bytes
    - Viewed (0)
Back to top