Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for shortNames (0.18 sec)

  1. staging/src/k8s.io/api/apidiscovery/v2/generated.pb.go

    			i--
    			dAtA[i] = 0x3a
    		}
    	}
    	if len(m.ShortNames) > 0 {
    		for iNdEx := len(m.ShortNames) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.ShortNames[iNdEx])
    			copy(dAtA[i:], m.ShortNames[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.ShortNames[iNdEx])))
    			i--
    			dAtA[i] = 0x32
    		}
    	}
    	if len(m.Verbs) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller_test.go

    	},
    	Spec: v1.CustomResourceDefinitionSpec{
    		Group: "stable.example.com",
    		Names: v1.CustomResourceDefinitionNames{
    			Plural:     "coolfoos",
    			Singular:   "coolfoo",
    			ShortNames: []string{"foo"},
    			Kind:       "CoolFoo",
    			ListKind:   "CoolFooList",
    		},
    		Scope: v1.ClusterScoped,
    		Versions: []v1.CustomResourceDefinitionVersion{
    			{
    				Name:       "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/zz_generated.deepcopy.go

    func (in *CustomResourceDefinitionNames) DeepCopyInto(out *CustomResourceDefinitionNames) {
    	*out = *in
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Categories != nil {
    		in, out := &in.Categories, &out.Categories
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    				Schema:  AllowAllSchema(),
    			}},
    			Names: apiextensionsv1.CustomResourceDefinitionNames{
    				Plural:     "noxus",
    				Singular:   "nonenglishnoxu",
    				Kind:       "WishIHadChosenNoxu",
    				ShortNames: []string{"foo", "bar", "abc", "def"},
    				ListKind:   "NoxuItemList",
    				Categories: []string{"all"},
    			},
    			Scope: scope,
    		},
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  5. pkg/registry/core/replicationcontroller/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"rc"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12K bytes
    - Viewed (0)
  6. pkg/registry/core/namespace/storage/storage.go

    	return e.store.ConvertToTable(ctx, object, tableOptions)
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"ns"}
    }
    
    var _ rest.StorageVersionProvider = &REST{}
    
    func (r *REST) StorageVersion() runtime.GroupVersioner {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 13.4K bytes
    - Viewed (0)
  7. pkg/registry/apps/replicaset/storage/storage.go

    	return &REST{store}, &StatusREST{store: &statusStore}, nil
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"rs"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. pkg/registry/core/pod/storage/storage.go

    	return registrypod.ResourceLocation(ctx, r, r.proxyTransport, name)
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"po"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 20 14:29:25 UTC 2023
    - 13.7K bytes
    - Viewed (0)
  9. pkg/registry/apps/statefulset/storage/storage.go

    	return r.store.ConvertToTable(ctx, object, tableOptions)
    }
    
    // Implement ShortNamesProvider
    var _ rest.ShortNamesProvider = &REST{}
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"sts"}
    }
    
    // ScaleREST implements a Scale for Deployment.
    type ScaleREST struct {
    	store *genericregistry.Store
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.deepcopy.go

    func (in *CustomResourceDefinitionNames) DeepCopyInto(out *CustomResourceDefinitionNames) {
    	*out = *in
    	if in.ShortNames != nil {
    		in, out := &in.ShortNames, &out.ShortNames
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    	}
    	if in.Categories != nil {
    		in, out := &in.Categories, &out.Categories
    		*out = make([]string, len(*in))
    		copy(*out, *in)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.7K bytes
    - Viewed (0)
Back to top