Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 463 for LookUp (0.11 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_workloadentry_test.go

    	assert.Equal(t,
    		s.lookup(s.wleXdsName("emptyaddr1"))[0].GetWorkload().GetName(),
    		"emptyaddr1") // can lookup this workload by name
    	assert.Equal(t,
    		s.lookup(s.wleXdsName("emptyaddr2"))[0].GetWorkload().GetName(),
    		"emptyaddr2") // can lookup this workload by name
    
    	assert.Equal(t,
    		len(s.lookup(s.addrXdsName(""))),
    		0) // cannot lookup these workloads by address
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 01:04:50 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/catalog/LibrariesSourceGeneratorTest.groovy

                def lookup = "public Provider<String> $methodName() {"
                def result = Lookup.find(lines, lookup)
                assert result.match
                if (javadoc) {
                    assert result.javadocContains(javadoc)
                }
            }
    
            void hasPlugin(String name, String methodName = "get${toJavaName(name)}", String javadoc = null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:24 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/ambientindex_serviceentry_test.go

    	// workload entry is included in the result until pod1 with the same address below is added
    	s.assertWorkloads(t, "", workloadapi.WorkloadStatus_HEALTHY, "name0")
    	// lookup by address should return the workload entry's address info
    	assert.Equal(t, s.lookup(s.addrXdsName("140.140.0.10")), []model.AddressInfo{{
    		Address: &workloadapi.Address{
    			Type: &workloadapi.Address_Workload{
    				Workload: &workloadapi.Workload{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 03:01:04 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  4. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/btree/BTreePersistentIndexedCache.java

            }
    
            public DataBlock get(K key) throws Exception {
                Lookup lookup = find(key);
                if (lookup.entry == null) {
                    return null;
                }
    
                return store.read(lookup.entry.dataBlock, DataBlock.class);
            }
    
            public Lookup find(K key) throws Exception {
                long checksum = keyHasher.getHashCode(key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/symtab.go

    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.ebss", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.noptrbss", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.enoptrbss", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.covctrs", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.ecovctrs", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.end", 0))
    	moduledata.AddAddr(ctxt.Arch, ldr.Lookup("runtime.gcdata", 0))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 16:29:40 UTC 2023
    - 29.2K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

                }
    
                validateOptionalProfiles(session, request.getProfileActivation());
    
                LifecycleStarter lifecycleStarter = lookup.lookupOptional(LifecycleStarter.class, request.getBuilderId())
                        .orElseGet(() -> lookup.lookup(LifecycleStarter.class));
    
                lifecycleStarter.execute(session);
    
                validateOptionalProjects(request, session);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/repo.go

    // name that can be updated as code moves from one service to another.)
    //
    // All of this is important background for the lookup APIs defined in this
    // file.
    //
    // The Lookup function takes a module path and returns a Repo representing
    // that module path. Lookup can do only a little with the path alone.
    // It can check that the path is well-formed (see semver.CheckPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  8. src/net/conf.go

    		// non-existent resolv.conf means "lookup" defaults
    		// to only "files", without DNS lookups.
    		if errors.Is(dnsConf.err, fs.ErrNotExist) {
    			return hostLookupFiles, dnsConf
    		}
    
    		lookup := dnsConf.lookup
    		if len(lookup) == 0 {
    			// https://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man5/resolv.conf.5
    			// "If the lookup keyword is not used in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 03:13:26 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            ProjectBuildingResult result = getContainer()
                    .lookup(org.apache.maven.project.ProjectBuilder.class)
                    .build(pomFile, configuration);
            assertEquals(1, result.getProject().getArtifacts().size());
            // multi projects build entry point
            List<ProjectBuildingResult> results = getContainer()
                    .lookup(org.apache.maven.project.ProjectBuilder.class)
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 09:06:12 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/cache/CacheStats.java

     *
     * <p>Cache statistics are incremented according to the following rules:
     *
     * <ul>
     *   <li>When a cache lookup encounters an existing cache entry {@code hitCount} is incremented.
     *   <li>When a cache lookup first encounters a missing cache entry, a new entry is loaded.
     *       <ul>
     *         <li>After successfully loading an entry {@code missCount} and {@code loadSuccessCount}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Aug 07 02:38:22 UTC 2022
    - 12.6K bytes
    - Viewed (0)
Back to top