Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 201 for shortNames (0.27 sec)

  1. staging/src/k8s.io/api/testdata/HEAD/apidiscovery.k8s.io.v2.APIGroupDiscovery.yaml

      resources:
      - categories:
        - categoriesValue
        resource: resourceValue
        responseKind:
          group: groupValue
          kind: kindValue
          version: versionValue
        scope: scopeValue
        shortNames:
        - shortNamesValue
        singularResource: singularResourceValue
        subresources:
        - acceptedTypes:
          - group: groupValue
            kind: kindValue
            version: versionValue
          responseKind:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:26:04 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apidiscovery.k8s.io.v2.APIGroupDiscovery.yaml

      resources:
      - categories:
        - categoriesValue
        resource: resourceValue
        responseKind:
          group: groupValue
          kind: kindValue
          version: versionValue
        scope: scopeValue
        shortNames:
        - shortNamesValue
        singularResource: singularResourceValue
        subresources:
        - acceptedTypes:
          - group: groupValue
            kind: kindValue
            version: versionValue
          responseKind:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/testdata/v1.30.0/apidiscovery.k8s.io.v2beta1.APIGroupDiscovery.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 08:52:25 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. pkg/registry/core/resourcequota/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{"quota"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a resourcequota.
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  5. pkg/registry/core/persistentvolume/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{"pv"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a persistentvolume.
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  6. pkg/registry/registrytest/shortNamesProvider.go

    package registrytest
    
    import (
    	"reflect"
    	"testing"
    
    	"k8s.io/apiserver/pkg/registry/rest"
    )
    
    func AssertShortNames(t *testing.T, storage rest.ShortNamesProvider, expected []string) {
    	actual := storage.ShortNames()
    	ok := reflect.DeepEqual(actual, expected)
    	if !ok {
    		t.Errorf("short names not equal. expected = %v actual = %v", expected, actual)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 06 22:35:07 UTC 2017
    - 927 bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apidiscovery/v2beta1/types.go

    	// delete, deletecollection, and proxy).
    	// +listType=set
    	Verbs []string `json:"verbs" protobuf:"bytes,5,opt,name=verbs"`
    	// shortNames is a list of suggested short names of the resource.
    	// +listType=set
    	ShortNames []string `json:"shortNames,omitempty" protobuf:"bytes,6,rep,name=shortNames"`
    	// categories is a list of the grouped resources this resource belongs to (e.g. 'all').
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  8. pkg/registry/core/componentstatus/rest.go

    	}
    	retVal.Name = name
    
    	return retVal
    }
    
    // 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{"cs"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 13 08:10:29 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. pkg/registry/certificates/certificates/storage/storage.go

    }
    
    // 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{"csr"}
    }
    
    // StatusREST implements the REST endpoint for changing the status of a CSR.
    type StatusREST struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  10. 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)
Back to top