Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 42 for short_name (0.13 sec)

  1. staging/src/k8s.io/apiserver/pkg/apis/apidiscovery/v2/conversion.go

    	out.Scope = v2.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 = *(*[]v2.APISubresourceDiscovery)(unsafe.Pointer(&in.Subresources))
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. pkg/dns/client/dns.go

    	for hostname, ni := range nt.Table {
    		// Given a host
    		// if its a non-k8s host, store the host+. as the key with the pre-computed DNS RR records
    		// if its a k8s host, store all variants (i.e. shortname+., shortname+namespace+., fqdn+., etc.)
    		// shortname+. is only for hosts in current namespace
    		var altHosts sets.String
    		if ni.Registry == string(provider.Kubernetes) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  3. pkg/dns/client/dns_test.go

    				Ips:       []string{"9.9.9.9"},
    				Registry:  "Kubernetes",
    				Namespace: "ns1",
    				Shortname: "productpage",
    			},
    			"example.ns2.svc.cluster.local": {
    				Ips:       []string{"10.10.10.10"},
    				Registry:  "Kubernetes",
    				Namespace: "ns2",
    				Shortname: "example",
    			},
    			"details.ns2.svc.cluster.remote": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/types.go

    	// 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
    	ShortNames []string `json:"shortNames,omitempty" protobuf:"bytes,3,opt,name=shortNames"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/openapi/controller_test.go

    	},
    	Spec: v1.CustomResourceDefinitionSpec{
    		Group: "stable.example.com",
    		Names: v1.CustomResourceDefinitionNames{
    			Plural:     "coolfoos",
    			Singular:   "coolfoo",
    			ShortNames: []string{"foo"},
    			Kind:       "CoolFoo",
    			ListKind:   "CoolFooList",
    		},
    		Scope: v1.ClusterScoped,
    		Versions: []v1.CustomResourceDefinitionVersion{
    			{
    				Name:       "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 17:10:53 UTC 2023
    - 12.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// 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
    	ShortNames []string `json:"shortNames,omitempty" protobuf:"bytes,3,opt,name=shortNames"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/script/cmds.go

    	var (
    		shortName    string
    		summary      string
    		lookPathOnce sync.Once
    		path         string
    		pathErr      error
    	)
    	if filepath.IsAbs(name) {
    		lookPathOnce.Do(func() { path = filepath.Clean(name) })
    		shortName = strings.TrimSuffix(filepath.Base(path), ".exe")
    		summary = "run the '" + shortName + "' program provided by the script host"
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 28.5K bytes
    - Viewed (0)
Back to top