Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 201 for shortNames (0.34 sec)

  1. staging/src/k8s.io/api/testdata/v1.30.0/apidiscovery.k8s.io.v2.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)
  2. staging/src/k8s.io/api/testdata/v1.30.0/apidiscovery.k8s.io.v2beta1.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. api/discovery/apis__networking.k8s.io__v1alpha1.json

    {
      "apiVersion": "v1",
      "groupVersion": "networking.k8s.io/v1alpha1",
      "kind": "APIResourceList",
      "resources": [
        {
          "kind": "IPAddress",
          "name": "ipaddresses",
          "namespaced": false,
          "shortNames": [
            "ip"
          ],
          "singularName": "ipaddress",
          "storageVersionHash": "3APLM23DOxw=",
          "verbs": [
            "create",
            "delete",
            "deletecollection",
            "get",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:05 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. pkg/apis/apidiscovery/v2beta1/zz_generated.conversion.go

    	out.Scope = apidiscovery.ResourceScope(in.Scope)
    	out.SingularResource = in.SingularResource
    	out.Verbs = *(*[]string)(unsafe.Pointer(&in.Verbs))
    	out.ShortNames = *(*[]string)(unsafe.Pointer(&in.ShortNames))
    	out.Categories = *(*[]string)(unsafe.Pointer(&in.Categories))
    	out.Subresources = *(*[]apidiscovery.APISubresourceDiscovery)(unsafe.Pointer(&in.Subresources))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 17:27:25 UTC 2022
    - 12.9K bytes
    - Viewed (0)
  5. pkg/registry/autoscaling/horizontalpodautoscaler/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{"hpa"}
    }
    
    // Implement CategoriesProvider
    var _ rest.CategoriesProvider = &REST{}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 4.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    			Namespaced:         crd.Spec.Scope == apiextensionsv1.NamespaceScoped,
    			Kind:               crd.Status.AcceptedNames.Kind,
    			Verbs:              verbs,
    			ShortNames:         crd.Status.AcceptedNames.ShortNames,
    			Categories:         crd.Status.AcceptedNames.Categories,
    			StorageVersionHash: storageVersionHash,
    		})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. manifests/charts/istio-operator/crds/crd-operator.yaml

    spec:
      conversion:
        strategy: None
      group: install.istio.io
      names:
        kind: IstioOperator
        listKind: IstioOperatorList
        plural: istiooperators
        singular: istiooperator
        shortNames:
        - iop
        - io
      scope: Namespaced
      versions:
      - additionalPrinterColumns:
        - description: Istio control plane revision
          jsonPath: .spec.revision
          name: Revision
          type: string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 27 03:38:21 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/apidiscovery/v2beta1/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)
  9. pkg/registry/core/persistentvolumeclaim/storage/storage.go

    	return rest, &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{"pvc"}
    }
    
    // defaultOnRead sets interlinked fields that were not previously set on read.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 18 09:21:19 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/testdata/HEAD/apidiscovery.k8s.io.v2.APIGroupDiscovery.json

    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:26:04 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top