Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for short_name (0.17 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/controller/status/naming_controller.go

    	}
    	if !reflect.DeepEqual(requestedNames.ShortNames, acceptedNames.ShortNames) {
    		errs := []error{}
    		existingShortNames := sets.NewString(acceptedNames.ShortNames...)
    		for _, shortName := range requestedNames.ShortNames {
    			// if the shortname is already ours, then we're fine
    			if existingShortNames.Has(shortName) {
    				continue
    			}
    			if err := equalToAcceptedOrFresh(shortName, "", allResources); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  2. pkg/dns/server/name_table_test.go

    						Ips:       []string{"1.2.3.4"},
    						Registry:  "Kubernetes",
    						Shortname: "pod1.headless-svc",
    						Namespace: "testns",
    					},
    					"pod2.headless-svc.testns.svc.cluster.local": {
    						Ips:       []string{"9.6.7.8"},
    						Registry:  "Kubernetes",
    						Shortname: "pod2.headless-svc",
    						Namespace: "testns",
    					},
    					"pod3.headless-svc.testns.svc.cluster.local": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 25 04:26:03 UTC 2024
    - 16K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    					Version:    "v1",
    					ShortNames: []string{"cj"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    				{
    					Name:       "cronjobs/status",
    					Namespaced: true,
    					Kind:       "CronJob",
    					Group:      "batch",
    					Version:    "v1",
    					ShortNames: []string{"cj"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/KDocReferenceResolver.kt

        }
    
        private fun KaScope.getAllSymbolsFromScopeByShortName(fqName: FqName): Collection<KaDeclarationSymbol> {
            val shortName = fqName.shortName()
            return buildSet {
                addAll(getCallableSymbols(shortName))
                addAll(getClassifierSymbols(shortName))
            }
        }
    
        /**
         * Tries to resolve [fqName] into available extension callables (functions or properties)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 08:26:19 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  5. pilot/pkg/model/config.go

    		// BUG this will break non kubernetes environments if they use shortnames in the
    		// rules.
    		if meta.Domain != "" {
    			out = out + ".svc." + meta.Domain
    		}
    	}
    
    	return host.Name(out)
    }
    
    // resolveGatewayName uses metadata information to resolve a reference
    // to shortname of the gateway to FQDN
    func resolveGatewayName(gwname string, meta config.Meta) string {
    	out := gwname
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 08:51:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. pkg/dns/proto/nds.pb.go

    	Registry string `protobuf:"bytes,2,opt,name=registry,proto3" json:"registry,omitempty"`
    	// The k8s service name. Only applies when registry=`Kubernetes`
    	Shortname string `protobuf:"bytes,3,opt,name=shortname,proto3" json:"shortname,omitempty"`
    	// The k8s namespace for the service. Only applies when registry=`Kubernetes`
    	Namespace string `protobuf:"bytes,4,opt,name=namespace,proto3" json:"namespace,omitempty"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. 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)
  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/v2/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: Fri Jan 19 16:40:14 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  10. pkg/adsc/delta.go

    	keys := slices.SortFunc(roots.UnsortedList(), func(a, b resourceKey) int {
    		return strings.Compare(a.shortName(), b.shortName())
    	})
    	for _, key := range keys {
    		c.dumpNode(&sb, key, "")
    	}
    	return sb.String()
    }
    
    func (c *Client) dumpNode(sb *strings.Builder, key resourceKey, indent string) {
    	sb.WriteString(indent + key.shortName() + ":\n")
    	if len(indent) > 10 {
    		return
    	}
    	node := c.tree[key]
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 02 09:32:41 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top