Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for short_name (0.5 sec)

  1. pilot/pkg/model/gateway.go

    		port := name[len("http."):]
    		portNumber, _ = strconv.Atoi(port)
    		return
    	} else if strings.HasPrefix(name, "https.") && strings.Count(name, ".") == 4 {
    		name = name[len("https."):]
    		// format: https.<port>.<port_name>.<gw name>.<gw namespace>
    		portNums, rest, ok := strings.Cut(name, ".")
    		if !ok {
    			return
    		}
    		portNumber, _ = strconv.Atoi(portNums)
    		portName, rest, ok = strings.Cut(rest, ".")
    		if !ok {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 26K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/subresources_test.go

    				Group: "mygroup.example.com",
    				Names: apiextensionsv1.CustomResourceDefinitionNames{
    					Plural:     "noxus",
    					Singular:   "nonenglishnoxu",
    					Kind:       "WishIHadChosenNoxu",
    					ShortNames: []string{"foo", "bar", "abc", "def"},
    					ListKind:   "NoxuItemList",
    				},
    				Scope: scope,
    				Versions: []apiextensionsv1.CustomResourceDefinitionVersion{
    					{
    						Name:    "v1beta1",
    						Served:  true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 12 17:35:34 UTC 2024
    - 33.2K bytes
    - Viewed (0)
Back to top