Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for singular2 (0.26 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go

    			Spec: apiextensionsv1.CustomResourceDefinitionSpec{
    				Group: "mygroup.example.com",
    				Names: apiextensionsv1.CustomResourceDefinitionNames{
    					Plural:     "noxus",
    					Singular:   "nonenglishnoxu",
    					Kind:       "WishIHadChosenNoxu",
    					ShortNames: []string{"foo", "bar", "abc", "def"},
    					ListKind:   "NoxuItemList",
    				},
    				Scope: apiextensionsv1.NamespaceScoped,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 26 20:48:36 UTC 2021
    - 63.6K bytes
    - Viewed (0)
  2. common/scripts/metallb-native.yaml

      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
        - jsonPath: .spec.transmitInterval
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    		allErrs = append(allErrs, field.Invalid(fldPath.Child("plural"), names.Plural, strings.Join(errs, ",")))
    	}
    	if errs := utilvalidation.IsDNS1035Label(names.Singular); len(names.Singular) > 0 && len(errs) > 0 {
    		allErrs = append(allErrs, field.Invalid(fldPath.Child("singular"), names.Singular, strings.Join(errs, ",")))
    	}
    	if errs := utilvalidation.IsDNS1035Label(strings.ToLower(names.Kind)); len(names.Kind) > 0 && len(errs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    	out.Plural = in.Plural
    	out.Singular = in.Singular
    	out.ShortNames = *(*[]string)(unsafe.Pointer(&in.ShortNames))
    	out.Kind = in.Kind
    	out.ListKind = in.ListKind
    	out.Categories = *(*[]string)(unsafe.Pointer(&in.Categories))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    	out.Plural = in.Plural
    	out.Singular = in.Singular
    	out.ShortNames = *(*[]string)(unsafe.Pointer(&in.ShortNames))
    	out.Kind = in.Kind
    	out.ListKind = in.ListKind
    	out.Categories = *(*[]string)(unsafe.Pointer(&in.Categories))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/testdata/swagger.json

              "type": "array",
              "items": { "type": "string", "default": "" }
            },
            "singular": {
              "description": "singular is the singular name of the resource. It must be all lowercase. Defaults to lowercased `kind`.",
              "type": "string"
            }
          }
        },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 55.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"name":               "name is the plural name of the resource.",
    	"singularName":       "singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.",
    	"namespaced":         "namespaced indicates if a resource is namespaced or not.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              },
              "singularName": {
                "default": "",
                "description": "singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.",
                "type": "string"
              },
              "storageVersionHash": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go

    	}
    	if e.SingularQualifiedResource.Empty() {
    		return fmt.Errorf("store %#v must have a non-empty singular qualified resource", e)
    	}
    	if e.DefaultQualifiedResource.Group != e.SingularQualifiedResource.Group {
    		return fmt.Errorf("store for %#v, singular and plural qualified resource's group name's must match", e)
    	}
    	if e.NewFunc == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 23:22:44 UTC 2024
    - 60.8K bytes
    - Viewed (0)
  10. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message APIResource {
      // name is the plural name of the resource.
      optional string name = 1;
    
      // singularName is the singular name of the resource.  This allows clients to handle plural and singular opaquely.
      // The singularName is more correct for reporting status on a single item and both singular and plural are allowed
      // from the kubectl CLI interface.
      optional string singularName = 6;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top