Search Options

Results per page
Sort
Preferred Languages
Advance

Results 171 - 180 of 201 for shortNames (0.2 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/invocation/GradleLifecycleUnsupportedTypesIntegrationTest.groovy

        }
    
        private static executorServiceTypeOnCurrentJvm() {
            def shortName = Jvm.current().javaVersion.isCompatibleWith(JavaVersion.VERSION_21) ? 'AutoShutdownDelegatedExecutorService' : 'FinalizableDelegatedExecutorService'
            return 'java.util.concurrent.Executors$' + shortName
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:15:52 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  2. 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)
  3. pkg/dns/proto/nds.proto

            // The name of the service registry containing the service (e.g. 'Kubernetes').
            string registry = 2;
    
            // The k8s service name. Only applies when registry=`Kubernetes`
            string shortname = 3;
    
            // The k8s namespace for the service. Only applies when registry=`Kubernetes`
            string namespace = 4;
    
            // Deprecated. Was added for experimentation only.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 01 20:40:32 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__rbac.authorization.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: Fri Mar 08 04:18:56 UTC 2024
    - 352.2K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/scopes/KtFirNonStarImportingScope.kt

        }
    
        override fun getPossibleClassifierNames(): Set<Name> = withValidityAssertion {
            imports.flatMapTo((hashSetOf())) { listOfNotNull(it.relativeClassName?.shortName(), it.aliasName) }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/AdditionalKDocResolutionProvider.kt

     *     override fun resolveKdocFqName(analysisSession: KaSession, fqName: FqName, contextElement: KtElement): Collection<KaSymbol> =
     *       contextElement.containingKtFile.declarations.filter { it.name == fqName.shortName().asString() }.map { it.getSymbol() }
     *   }
     * ```
     */
    public interface AdditionalKDocResolutionProvider {
        /**
         * This function must return additional symbols for [contextElement] in KDoc.
         */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.6.md

    * CRI: use more gogoprotobuf plugins ([#40397](https://github.com/kubernetes/kubernetes/pull/40397), [@yujuhong](https://github.com/yujuhong))
    * Adds `shortNames` to the `APIResource` from discovery which is a list of recommended shortNames for clients like `kubectl`. ([#40312](https://github.com/kubernetes/kubernetes/pull/40312), [@p0lyn0mial](https://github.com/p0lyn0mial))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 304K bytes
    - Viewed (1)
Back to top