Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for plural2 (0.2 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    				ObjectMeta: metav1.ObjectMeta{Name: "plural.group.com"},
    				Spec: apiextensions.CustomResourceDefinitionSpec{
    					Group: "group.com",
    					Scope: apiextensions.ResourceScope("Cluster"),
    					Names: apiextensions.CustomResourceDefinitionNames{
    						Plural:   "plural",
    						Singular: "singular",
    						Kind:     "Plural",
    						ListKind: "PluralList",
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      // For many clients the singular form of the resource will be more understandable to users reading messages and should be used when integrating the name of the resource into a sentence.
      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // For many clients the singular form of the resource will be more understandable to users reading messages and should be used when integrating the name of the resource into a sentence.
      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  4. pkg/config/schema/metadata.yaml

        plural: "pods"
        version: "v1"
        builtin: true
        proto: "k8s.io.api.core.v1.PodSpec"
        protoPackage: "k8s.io/api/core/v1"
    
      - kind: "DaemonSet"
        plural: "daemonsets"
        group: "apps"
        version: "v1"
        builtin: true
        proto: "k8s.io.api.apps.v1.DaemonSetSpec"
        protoPackage: "k8s.io/api/apps/v1"
    
      - kind: "StatefulSet"
        plural: "statefulsets"
        group: "apps"
        version: "v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 17:37:32 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  5. pkg/config/schema/collections/collections.gen.go

    	"istio.io/istio/pkg/config/validation/envoyfilter"
    )
    
    var (
    	AuthorizationPolicy = resource.Builder{
    		Identifier: "AuthorizationPolicy",
    		Group:      "security.istio.io",
    		Kind:       "AuthorizationPolicy",
    		Plural:     "authorizationpolicies",
    		Version:    "v1beta1",
    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.security.v1beta1.AuthorizationPolicy", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // For many clients the singular form of the resource will be more understandable to users reading messages and should be used when integrating the name of the resource into a sentence.
      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. pkg/config/schema/collections/collections.agent.gen.go

    )
    
    var (
    	AuthorizationPolicy = resource.Builder{
    		Identifier: "AuthorizationPolicy",
    		Group:      "security.istio.io",
    		Kind:       "AuthorizationPolicy",
    		Plural:     "authorizationpolicies",
    		Version:    "v1beta1",
    		VersionAliases: []string{
    			"v1",
    		},
    		Proto: "istio.security.v1beta1.AuthorizationPolicy", StatusProto: "istio.meta.v1alpha1.IstioStatus",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2/types.go

    	// For many clients the singular form of the resource will be more understandable to users reading messages and should be used when integrating the name of the resource into a sentence.
    	// The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/VersionConflictException.java

        }
    
        private static String buildMessage(Collection<Conflict> conflicts) {
            TreeFormatter formatter = new TreeFormatter();
    
            String plural = getPluralEnding(conflicts);
            formatter.node("Conflict" + plural + " found for the following module" + plural);
            formatter.startChildren();
    
            conflicts.stream().limit(MAX_SEEN_MODULE_COUNT)
                .forEach(conflict -> formatter.node(conflict.getMessage()));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/DefaultCleanupProgressMonitor.java

                + optionalNumber(", ", skipped, " skipped"));
        }
    
        private String mandatoryNumber(long value, String singular, String plural) {
            return value == 1 ? value + singular : value + plural;
        }
    
        private String optionalNumber(String separator, long value, String description) {
            return value == 0 ? "" : separator + value + description;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 20:26:37 UTC 2024
    - 2K bytes
    - Viewed (0)
Back to top