Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 486 for LookUp (0.18 sec)

  1. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

            @Inject
            private PlexusContainer lookup;
    
            private final String name;
    
            BaseLifecycleProvider(String name) {
                this.name = name;
            }
    
            @Override
            public org.apache.maven.lifecycle.Lifecycle get() {
                try {
                    LifecycleRegistry registry = lookup.lookup(LifecycleRegistry.class);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    public abstract PlexusContainer getChildContainer(String); public abstract Object lookup(String) throws component.repository.exception.ComponentLookupExcep; public abstract Object lookup(String, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public abstract Object lookup(String, String) throws component.repository.exception.ComponentLookupExcep; public abstract Object lookup(String, String, classworlds.realm.ClassRealm) throws component.repository.except...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 32.4K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/telemetry/internal/counter/file.go

    // containing the counter data.
    // If the file has not been opened yet, lookup returns nil.
    func (f *file) lookup(name string) counterPtr {
    	current := f.current.Load()
    	if current == nil {
    		debugPrintf("lookup %s - no mapped file\n", name)
    		return counterPtr{}
    	}
    	ptr := f.newCounter(name)
    	if ptr == nil {
    		return counterPtr{}
    	}
    	return counterPtr{current, ptr}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/staticdata/data.go

    	// but also the package lookup of the func sym name,
    	// since this function gets called concurrently from the backend.
    	// There are no other concurrent package lookups in the backend,
    	// except for the types package, which is protected separately.
    	// Reusing funcsymsmu to also cover this package lookup
    	// avoids a general, broader, expensive package lookup mutex.
    	funcsymsmu.Lock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 01 15:08:50 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  5. cmd/kube-apiserver/app/server.go

    	}
    
    	if config.ControlPlane.Generic.EgressSelector != nil {
    		// Use the config.ControlPlane.Generic.EgressSelector lookup to find the dialer to connect to the kubelet
    		config.Extra.KubeletClientConfig.Lookup = config.ControlPlane.Generic.EgressSelector.Lookup
    
    		// Use the config.ControlPlane.Generic.EgressSelector lookup as the transport used by the "proxy" subresources.
    		networkContext := egressselector.Cluster.AsNetworkContext()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 17:44:20 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/AbstractSession.java

                List<org.eclipse.aether.repository.RemoteRepository> resolverRepositories,
                Lookup lookup) {
            this.session = nonNull(session, "session");
            this.repositorySystem = repositorySystem;
            this.repositories = getRepositories(repositories, resolverRepositories);
            this.lookup = lookup;
        }
    
        @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratedManagedStateTest.groovy

            def copy = managedFactoryRegistry.lookup(bean.getFactoryId()).fromState(BeanWithAbstractProperty, state)
            !copy.is(bean)
            copy.name == null
    
            bean.setName("name")
            copy.name == null
    
            def state2 = bean.unpackState()
            state2.length == 1
            state2[0] == "name"
    
            def copy2 = managedFactoryRegistry.lookup(bean.getFactoryId()).fromState(BeanWithAbstractProperty, state2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-component-api/1.0-alpha-16/plexus-component-api-1.0-alpha-16.jar

    public abstract PlexusContainer getChildContainer(String); public abstract Object lookup(String) throws component.repository.exception.ComponentLookupExcep; public abstract Object lookup(String, classworlds.realm.ClassRealm) throws component.repository.exception.ComponentLookupExcep; public abstract Object lookup(String, String) throws component.repository.exception.ComponentLookupExcep; public abstract Object lookup(String, String, classworlds.realm.ClassRealm) throws component.repository.except...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 32.4K bytes
    - Viewed (0)
  9. src/cmd/link/internal/wasm/asm.go

    	sections := []*sym.Section{
    		ldr.SymSect(ldr.Lookup("runtime.rodata", 0)),
    		ldr.SymSect(ldr.Lookup("runtime.typelink", 0)),
    		ldr.SymSect(ldr.Lookup("runtime.itablink", 0)),
    		ldr.SymSect(ldr.Lookup("runtime.symtab", 0)),
    		ldr.SymSect(ldr.Lookup("runtime.pclntab", 0)),
    		ldr.SymSect(ldr.Lookup("runtime.noptrdata", 0)),
    		ldr.SymSect(ldr.Lookup("runtime.data", 0)),
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:17:48 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  10. src/strings/replace.go

    	// root node always uses a table for lookup efficiency.
    
    	// prefix is the difference in keys between this trie node and the next.
    	// In the example above, node n4 has prefix "cbc" and n4's next node is n5.
    	// Node n5 has no children and so has zero prefix, next and table fields.
    	prefix string
    	next   *trieNode
    
    	// table is a lookup table indexed by the next byte in the key, after
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top