Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 190 for shortNames (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotclasses.yaml

      name: volumesnapshotclasses.snapshot.storage.k8s.io
    spec:
      group: snapshot.storage.k8s.io
      names:
        kind: VolumeSnapshotClass
        listKind: VolumeSnapshotClassList
        plural: volumesnapshotclasses
        shortNames:
          - vsclass
          - vsclasses
        singular: volumesnapshotclass
      scope: Cluster
      versions:
        - additionalPrinterColumns:
            - jsonPath: .driver
              name: Driver
              type: string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 6.7K bytes
    - Viewed (0)
  8. 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)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/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.5K bytes
    - Viewed (0)
  10. tests/integration/pilot/testdata/mcs-serviceimport-crd.yaml

    metadata:
      name: serviceimports.{{ .Group }}
    spec:
      group: {{ .Group }}
      scope: Namespaced
      names:
        plural: serviceimports
        singular: serviceimport
        kind: ServiceImport
        shortNames:
        - svcim
      versions:
      - name: {{ .Version }}
        served: true
        storage: true
        subresources:
          status: {}
        additionalPrinterColumns:
        - name: Type
          type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 00:51:29 UTC 2021
    - 7K bytes
    - Viewed (0)
Back to top