Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 108 for plural2 (0.21 sec)

  1. 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)
  2. pilot/pkg/config/aggregate/config_test.go

    			t.Fatal(err)
    		}
    
    		retry.UntilOrFail(t, handled.Load, retry.Timeout(time.Second))
    	})
    }
    
    func schemaFor(kind, proto string) resource.Schema {
    	return resource.Builder{
    		Kind:   kind,
    		Plural: strings.ToLower(kind) + "s",
    		Proto:  proto,
    	}.BuildNoValidate()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 17:36:47 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. hack/update-codegen.sh

            --output-dir "${KUBE_ROOT}/staging/src/k8s.io/client-go" \
            --output-pkg="k8s.io/client-go" \
            --clientset-name="kubernetes" \
            --input-base="k8s.io/api" \
            --plural-exceptions "${PLURAL_EXCEPTIONS}" \
            --apply-configuration-package "${APPLYCONFIG_PKG}" \
            $(printf -- " --input %s" "${gv_dirs[@]}") \
            "$@"
    
        if [[ "${DBG_CODEGEN}" == 1 ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 15:15:31 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. pkg/scheduler/eventhandlers.go

    				continue
    			}
    			// GVK is expected to be at least 3-folded, separated by dots.
    			// <kind in plural>.<version>.<group>
    			// Valid examples:
    			// - foos.v1.example.com
    			// - bars.v1beta1.a.b.c
    			// Invalid examples:
    			// - foos.v1 (2 sections)
    			// - foo.v1.example.com (the first section should be plural)
    			if strings.Count(string(gvk), ".") < 2 {
    				logger.Error(nil, "incorrect event registration", "gvk", gvk)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:21:04 UTC 2024
    - 24K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    }
    
    func autoConvert_v1_CustomResourceDefinitionNames_To_apiextensions_CustomResourceDefinitionNames(in *CustomResourceDefinitionNames, out *apiextensions.CustomResourceDefinitionNames, s conversion.Scope) error {
    	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))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    }
    
    func autoConvert_v1beta1_CustomResourceDefinitionNames_To_apiextensions_CustomResourceDefinitionNames(in *CustomResourceDefinitionNames, out *apiextensions.CustomResourceDefinitionNames, s conversion.Scope) error {
    	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))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "plural": {
                "default": "",
                "description": "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.",
                "type": "string"
              },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    					Version:  "v1",
    					Versions: []apiextensions.CustomResourceDefinitionVersion{{Name: "v1", Storage: true, Served: true}},
    					Names:    apiextensions.CustomResourceDefinitionNames{Plural: "foos", Singular: "foo", Kind: "Foo", ListKind: "FooList"},
    					Validation: &apiextensions.CustomResourceValidation{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go

    				Type:        []string{"object"},
    				Properties: map[string]spec.Schema{
    					"plural": {
    						SchemaProps: spec.SchemaProps{
    							Description: "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.",
    							Default:     "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:17 UTC 2024
    - 329.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    		resource := schema.GroupVersionResource{Group: crd.Spec.Group, Version: v.Name, Resource: crd.Status.AcceptedNames.Plural}
    		if len(resource.Resource) == 0 {
    			utilruntime.HandleError(fmt.Errorf("CustomResourceDefinition %s has unexpected empty status.acceptedNames.plural", crd.Name))
    			return nil, fmt.Errorf("the server could not properly serve the resource")
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
Back to top