Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 145 for plural2 (0.16 sec)

  1. samples/security/spire/spire-quickstart.yaml

      creationTimestamp: null
      name: clusterfederatedtrustdomains.spire.spiffe.io
    spec:
      group: spire.spiffe.io
      names:
        kind: ClusterFederatedTrustDomain
        listKind: ClusterFederatedTrustDomainList
        plural: clusterfederatedtrustdomains
        singular: clusterfederatedtrustdomain
      scope: Cluster
      versions:
      - additionalPrinterColumns:
        - jsonPath: .spec.trustDomain
          name: Trust Domain
          type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  2. operator/pkg/verifier/k8s_util.go

    	s, f := collections.All.FindByGroupVersionAliasesKind(config.GroupVersionKind{
    		Group:   gvk.Group,
    		Version: gvk.Version,
    		Kind:    gvk.Kind,
    	})
    	if !f {
    		return ""
    	}
    	return s.Plural()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 28 16:26:13 UTC 2023
    - 4K bytes
    - Viewed (0)
  3. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

            return s.toLowerCase(Locale.ENGLISH);
        }
    
        /**
         * This method returns the plural ending for an english word for trivial cases depending on the number of elements a list has.
         *
         * @param collection which size is used to determine the plural ending
         * @return "s" if the collection has more than one element, an empty string otherwise
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    // CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition
    type CustomResourceDefinitionNames struct {
    	// Plural is the plural name of the resource to serve.  It must match the name of the CustomResourceDefinition-registration
    	// too: plural.group and it must be all lowercase.
    	Plural string
    	// Singular is the singular name of the resource.  It must be all lowercase  Defaults to lowercased <kind>
    	Singular string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/buildevents/BuildExceptionReporter.java

                if (suppressedDuplicateBranchCount > 0) {
                    LinePrefixingStyledTextOutput output = getLinePrefixingStyledTextOutput(failureDetails);
                    boolean plural = suppressedDuplicateBranchCount > 1;
                    if (plural) {
                        output.append(String.format("There are %d more failures with identical causes.", suppressedDuplicateBranchCount));
                    } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 09:45:59 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

    message CustomResourceDefinitionNames {
      // plural is the plural name of the resource to serve.
      // The custom resources are served under `/apis/<group>/<version>/.../<plural>`.
      // Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).
      // Must be all lowercase.
      optional string plural = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/crdclient/client.go

    	schemasByCRDName := map[string]resource.Schema{}
    	for _, s := range schemas.All() {
    		// From the spec: "Its name MUST be in the format <.spec.name>.<.spec.group>."
    		name := fmt.Sprintf("%s.%s", s.Plural(), s.Group())
    		schemasByCRDName[name] = s
    	}
    	out := &Client{
    		domainSuffix:     opts.DomainSuffix,
    		schemas:          schemas,
    		schemasByCRDName: schemasByCRDName,
    		revision:         opts.Revision,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  8. common/scripts/metallb-native.yaml

        controller-gen.kubebuilder.io/version: v0.11.1
      creationTimestamp: null
      name: bfdprofiles.metallb.io
    spec:
      group: metallb.io
      names:
        kind: BFDProfile
        listKind: BFDProfileList
        plural: bfdprofiles
        singular: bfdprofile
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - jsonPath: .spec.passiveMode
          name: Passive Mode
          type: boolean
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

    message CustomResourceDefinitionNames {
      // plural is the plural name of the resource to serve.
      // The custom resources are served under `/apis/<group>/<version>/.../<plural>`.
      // Must match the name of the CustomResourceDefinition (in the form `<names.plural>.<group>`).
      // Must be all lowercase.
      optional string plural = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modload/query.go

    	}
    
    	plural := ""
    	mainModulePaths := make([]string, len(e.MainModules))
    	for i := range e.MainModules {
    		mainModulePaths[i] = e.MainModules[i].Path
    	}
    	if len(e.MainModules) > 1 {
    		plural = "s"
    	}
    	return fmt.Sprintf("can't request version %q of pattern %q that includes the main module%s (%s)", e.Query, e.Pattern, plural, strings.Join(mainModulePaths, ", "))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
Back to top