Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 486 for LookUp (0.12 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/plugins/DefaultPluginRegistry.java

        }
    
        @Nullable
        @Override
        public PluginImplementation<?> lookup(PluginId pluginId) {
            PluginImplementation<?> lookup;
            if (parent != null) {
                lookup = parent.lookup(pluginId);
                if (lookup != null) {
                    return lookup;
                }
            }
    
            return lookup(pluginId, classLoaderScope.getLocalClassLoader());
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:06 UTC 2021
    - 10.4K bytes
    - Viewed (0)
  2. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

            private Instant startTime = Instant.now();
    
            DefaultSession(RepositorySystemSession session, RepositorySystem repositorySystem, Lookup lookup) {
                this(session, repositorySystem, Collections.emptyList(), null, lookup);
            }
    
            protected DefaultSession(
                    RepositorySystemSession session,
                    RepositorySystem repositorySystem,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. src/cmd/internal/objfile/disasm.go

    type disasmFunc func(code []byte, pc uint64, lookup lookupFunc, ord binary.ByteOrder, _ bool) (text string, size int)
    
    func disasm_386(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder, gnuAsm bool) (string, int) {
    	return disasm_x86(code, pc, lookup, 32, gnuAsm)
    }
    
    func disasm_amd64(code []byte, pc uint64, lookup lookupFunc, _ binary.ByteOrder, gnuAsm bool) (string, int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 10.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top