Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 71 for ShortNames (0.18 sec)

  1. pkg/registry/networking/networkpolicy/storage/storage.go

    		return nil, err
    	}
    
    	return &REST{store}, 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{"netpol"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.yaml

          - conversionReviewVersionsValue
      group: groupValue
      names:
        categories:
        - categoriesValue
        kind: kindValue
        listKind: listKindValue
        plural: pluralValue
        shortNames:
        - shortNamesValue
        singular: singularValue
      preserveUnknownFields: true
      scope: scopeValue
      versions:
      - additionalPrinterColumns:
        - description: descriptionValue
          format: formatValue
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/testdata/HEAD/apiextensions.k8s.io.v1.CustomResourceDefinition.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  4. pkg/registry/storage/storageclass/storage/storage.go

    		return nil, err
    	}
    
    	return &REST{store}, 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{"sc"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:13 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  5. pkg/registry/networking/ipaddress/storage/storage.go

    		return nil, err
    	}
    	return &REST{store}, 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{"ip"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 22:58:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. api/discovery/apis__events.k8s.io__v1.json

    {
      "apiVersion": "v1",
      "groupVersion": "events.k8s.io/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "Event",
          "name": "events",
          "namespaced": true,
          "shortNames": [
            "ev"
          ],
          "singularName": "event",
          "storageVersionHash": "r2yiGXH7wu8=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
            "list",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 489 bytes
    - Viewed (0)
  7. api/discovery/apis__storage.k8s.io__v1alpha1.json

      "groupVersion": "storage.k8s.io/v1alpha1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "VolumeAttributesClass",
          "name": "volumeattributesclasses",
          "namespaced": false,
          "shortNames": [
            "vac"
          ],
          "singularName": "volumeattributesclass",
          "storageVersionHash": "HPC8kMG1ukQ=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 03:26:35 UTC 2023
    - 547 bytes
    - Viewed (0)
  8. api/discovery/apis__scheduling.k8s.io__v1.json

    {
      "apiVersion": "v1",
      "groupVersion": "scheduling.k8s.io/v1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "PriorityClass",
          "name": "priorityclasses",
          "namespaced": false,
          "shortNames": [
            "pc"
          ],
          "singularName": "priorityclass",
          "storageVersionHash": "1QwjyaZjj3Y=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 519 bytes
    - Viewed (0)
  9. api/discovery/apis__autoscaling__v2.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 15 18:18:19 UTC 2023
    - 816 bytes
    - Viewed (0)
  10. pkg/apis/apidiscovery/zz_generated.deepcopy.go

    		*out = new(v1.GroupVersionKind)
    		**out = **in
    	}
    	if in.Verbs != nil {
    		in, out := &in.Verbs, &out.Verbs
    		*out = make([]string, len(*in))
    		copy(*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 Oct 19 17:27:25 UTC 2022
    - 5.4K bytes
    - Viewed (0)
Back to top