Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for short_name (0.16 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    	}
    
    	s := []string{"foo", "bar", "abc", "def"}
    	if !reflect.DeepEqual(r.ShortNames, s) {
    		t.Fatalf("Expected exactly the shortnames `foo, bar, abc, def` in group version %v/%v via discovery, got: %v", group, version, r.ShortNames)
    	}
    
    	sort.Strings(r.Verbs)
    	expectedVerbs := []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      // +optional
      optional string singular = 2;
    
      // shortNames are short names for the resource, exposed in API discovery documents,
      // and used by clients to support invocations like `kubectl get <shortname>`.
      // It must be all lowercase.
      // +optional
      // +listType=atomic
      repeated string shortNames = 3;
    
      // kind is the serialized kind of the resource. It is normally CamelCase and singular.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.proto

      // +optional
      optional string singular = 2;
    
      // shortNames are short names for the resource, exposed in API discovery documents,
      // and used by clients to support invocations like `kubectl get <shortname>`.
      // It must be all lowercase.
      // +optional
      // +listType=atomic
      repeated string shortNames = 3;
    
      // kind is the serialized kind of the resource. It is normally CamelCase and singular.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  4. pkg/registry/core/service/storage/storage.go

    	}
    	return api.IPv4Protocol
    }
    
    var (
    	_ rest.ShortNamesProvider = &REST{}
    	_ rest.CategoriesProvider = &REST{}
    )
    
    // ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
    func (r *REST) ShortNames() []string {
    	return []string{"svc"}
    }
    
    // Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 13:09:33 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	Plural string
    	// Singular is the singular name of the resource.  It must be all lowercase  Defaults to lowercased <kind>
    	Singular string
    	// ShortNames are short names for the resource.  It must be all lowercase.
    	ShortNames []string
    	// Kind is the serialized kind of the resource.  It is normally CamelCase and singular.
    	Kind string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authentication.k8s.io__v1alpha1_openapi.json

                "default": false,
                "description": "namespaced indicates if a resource is namespaced or not.",
                "type": "boolean"
              },
              "shortNames": {
                "description": "shortNames is a list of suggested short names of the resource.",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__authentication.k8s.io__v1beta1_openapi.json

                "default": false,
                "description": "namespaced indicates if a resource is namespaced or not.",
                "type": "boolean"
              },
              "shortNames": {
                "description": "shortNames is a list of suggested short names of the resource.",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  8. istioctl/pkg/workload/workload_test.go

    			expectedException: false,
    			expectedOutput:    customYAML,
    		},
    		{
    			description: "valid case - create full workload group with shortnames",
    			args: strings.Split("group create --name foo -n bar -l app=foo,bar=baz -p grpc=3550,http=8080"+
    				" -a annotation=foobar --serviceAccount test", " "),
    			expectedException: false,
    			expectedOutput:    customYAML,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__authentication.k8s.io__v1_openapi.json

                "default": false,
                "description": "namespaced indicates if a resource is namespaced or not.",
                "type": "boolean"
              },
              "shortNames": {
                "description": "shortNames is a list of suggested short names of the resource.",
                "items": {
                  "default": "",
                  "type": "string"
                },
                "type": "array",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 41.5K bytes
    - Viewed (0)
  10. pilot/pkg/model/virtualservice.go

    	return importedVirtualServices
    }
    
    func resolveVirtualServiceShortnames(rule *networking.VirtualService, meta config.Meta) {
    	// Kubernetes Gateway API semantics support shortnames
    	if UseGatewaySemantics(config.Config{Meta: meta}) {
    		return
    	}
    
    	// resolve top level hosts
    	for i, h := range rule.Hosts {
    		rule.Hosts[i] = string(ResolveShortnameToFQDN(h, meta))
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 11:17:03 UTC 2024
    - 17.4K bytes
    - Viewed (0)
Back to top