Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,840 for rparenth (0.12 sec)

  1. platforms/core-runtime/daemon-protocol/src/main/java/org/gradle/tooling/internal/provider/serialization/ClassLoaderDetails.java

        public final List<ClassLoaderDetails> parents = new ArrayList<ClassLoaderDetails>();
    
        public ClassLoaderDetails(UUID uuid, ClassLoaderSpec spec) {
            this.uuid = uuid;
            this.spec = spec;
        }
    
        @Override
        public String toString() {
            return "{" + getClass().getSimpleName() + " uuid: " + uuid + " spec: " + spec + " parents: " + parents + "}";
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:53:31 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/text/internal/language/compact/compact.go

    		return cci <= coreTags[i]
    	})
    	if i == len(coreTags) || coreTags[i] != cci {
    		return 0, false
    	}
    	return ID(i), true
    }
    
    // Parent returns the ID of the parent or the root ID if id is already the root.
    func (id ID) Parent() ID {
    	return parents[id]
    }
    
    // Tag converts id to an internal language Tag.
    func (id ID) Tag() language.Tag {
    	if int(id) >= len(coreTags) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. pkg/util/iptree/iptree_test.go

    	}
    
    	expected := []string{
    		"10.0.0.0/8",
    		"192.168.0.0/20",
    		"172.16.0.0/12",
    	}
    	parents := r.TopLevelPrefixes(false)
    	if len(parents) != len(expected) {
    		t.Fatalf("bad len: %v %v", len(parents), len(expected))
    	}
    
    	for _, k := range expected {
    		v, ok := parents[k]
    		if !ok {
    			t.Errorf("key %s not found", k)
    		}
    		if v != k {
    			t.Errorf("value expected %s got %s", k, v)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:04 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    			routeKey = obj.Namespace
    			if parent.OriginalReference.Port != nil {
    				routes = augmentPortMatch(routes, *parent.OriginalReference.Port)
    				routeKey += fmt.Sprintf("/%d", *parent.OriginalReference.Port)
    			}
    			if parent.InternalKind == gvk.ServiceEntry {
    				vsHosts = serviceEntryHosts(ctx.ServiceEntry,
    					string(parent.OriginalReference.Name),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. subprojects/core/src/test/groovy/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCacheTest.groovy

        }
    
        def "parents are respected"() {
            expect:
            def root1 = classLoader(classPath("root1"))
            def root2 = classLoader(classPath("root2"))
            cache.get(id1, classPath("c1"), root1, null) != cache.get(id2, classPath("c1"), root2, null)
        }
    
        def "null parents are respected"() {
            expect:
            def root = classLoader(classPath("root"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 23 19:34:48 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/internal/impl/Graph.java

            final List<Vertex> parents = new ArrayList<>();
    
            Vertex(String label) {
                this.label = label;
            }
    
            String getLabel() {
                return label;
            }
    
            List<Vertex> getChildren() {
                return children;
            }
    
            List<Vertex> getParents() {
                return parents;
            }
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  7. pilot/pkg/config/kube/gateway/testdata/mcs.yaml.golden

    kind: Gateway
    metadata:
      annotations:
        internal.istio.io/gateway-semantics: gateway
        internal.istio.io/gateway-service: istio-ingressgateway.istio-system.svc.domain.suffix
        internal.istio.io/parents: Gateway/gateway/default.istio-system
      creationTimestamp: null
      name: gateway-istio-autogenerated-k8s-gateway-default
      namespace: istio-system
    spec:
      servers:
      - hosts:
        - istio-system/*
        port:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultClassLoaderScope.java

                numParents += 1;
            }
            List<ClassLoader> parents = new ArrayList<>(numParents);
            parents.add(parent);
            if (additionalLoaders != null) {
                parents.addAll(additionalLoaders);
            }
            if (!classPath.isEmpty()) {
                parents.add(loader(id, parent, classPath));
            }
            return new MultiParentClassLoader(parents);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 20:19:43 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirPsiTypeProvider.kt

        // or containing declaration is inside the local type, e.g., a member of the local class
        return localPsi == context ||
                localPsi.parents.any { it == context } ||
                context.parents.any { it == localPsi }
    }
    
    private fun ConeKotlinType.asPsiTypeElement(
        session: FirSession,
        mode: TypeMappingMode,
        useSitePosition: PsiElement,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/sumdb/tlog/tile.go

    		}
    
    		// Walk back down recording child tiles after parents.
    		// This loop ends by revisiting the tile for this index
    		// (tileParent(tile, 0, r.tree.N)) unless k == 0, in which
    		// case the previous loop did it.
    		for k--; k >= 0; k-- {
    			p := tileParent(tile, k, r.tree.N)
    			if p.W != 1<<uint(p.H) {
    				// Only full tiles have parents.
    				// This tile has a parent, so it must be full.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top