Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 216 for short_name (0.3 sec)

  1. 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)
  2. 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)
  3. pilot/pkg/networking/grpcgen/lds.go

    	// no "." - assuming this is a shortname "foo" -> "foo.ns.svc.cluster.local"
    	if !strings.Contains(name, ".") {
    		return fmt.Sprintf("%s.%s", name, node.DNSDomain)
    	}
    	for _, suffix := range []string{
    		node.Metadata.Namespace,
    		node.Metadata.Namespace + ".svc",
    	} {
    		shortname := strings.TrimSuffix(name, "."+suffix)
    		if shortname != name && strings.HasPrefix(node.DNSDomain, suffix) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller_test.go

    		Name: "coolfoo.stable.example.com",
    	},
    	Spec: v1.CustomResourceDefinitionSpec{
    		Group: "stable.example.com",
    		Names: v1.CustomResourceDefinitionNames{
    			Plural:     "coolfoos",
    			Singular:   "coolfoo",
    			ShortNames: []string{"foo"},
    			Kind:       "CoolFoo",
    			ListKind:   "CoolFooList",
    			Categories: []string{"cool"},
    		},
    		Scope: v1.ClusterScoped,
    		Versions: []v1.CustomResourceDefinitionVersion{
    			{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12K bytes
    - Viewed (0)
  9. 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)
  10. staging/src/k8s.io/api/apidiscovery/v2beta1/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