Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 463 for LookUp (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    	s.RequestHeader.AddFlags(fs)
    
    	fs.BoolVar(&s.SkipInClusterLookup, "authentication-skip-lookup", s.SkipInClusterLookup, ""+
    		"If false, the authentication-kubeconfig will be used to lookup missing authentication "+
    		"configuration from the cluster.")
    	fs.BoolVar(&s.TolerateInClusterLookupFailure, "authentication-tolerate-lookup-failure", s.TolerateInClusterLookupFailure, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

    process-classes org.apache.maven.plugin.coreit.DMojo java per-lookup once-per-session java Does nothing. false true false false false true generate-sources org.apache.maven.plugin.coreit.AMojo java per-lookup once-per-session models java.lang.String[] false true version java.lang.String false true ${version} generate-test-metadata Does nothing. test false true false false false true process-test-classes org.apache.maven.plugin.coreit.EMojo java per-lookup once-per-session it Does nothing. compile false true...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. src/index/suffixarray/suffixarray_test.go

    		if r < 0 || len(tc.source) <= r {
    			t.Errorf("test %q, lookup %q, result %d (n = %d): index %d out of range [0, %d[", tc.name, s, i, n, r, len(tc.source))
    		} else if !strings.HasPrefix(tc.source[r:], s) {
    			t.Errorf("test %q, lookup %q, result %d (n = %d): index %d not a match", tc.name, s, i, n, r)
    		}
    		if i > 0 && res[i-1] == r {
    			t.Errorf("test %q, lookup %q, result %d (n = %d): found duplicate index %d", tc.name, s, i, n, r)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    	// EgressSelectionName is the unique name of the
    	// EgressSelectorConfiguration which determines
    	// the network we route the traffic to.
    	EgressSelectionName EgressType
    }
    
    // Lookup is the interface to get the dialer function for the network context.
    type Lookup func(networkContext NetworkContext) (utilnet.DialFunc, error)
    
    // String returns the canonical string representation of the egress type
    func (s EgressType) String() string {
    	switch s {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. src/text/template/multi_test.go

    func TestTemplateLookUp(t *testing.T) {
    	t1 := New("foo")
    	if t1.Lookup("foo") != nil {
    		t.Error("Lookup returned non-nil value for undefined template foo")
    	}
    	t1.New("bar")
    	if t1.Lookup("bar") != nil {
    		t.Error("Lookup returned non-nil value for undefined template bar")
    	}
    	t1.Parse(`{{define "foo"}}test{{end}}`)
    	if t1.Lookup("foo") == nil {
    		t.Error("Lookup returned nil value for defined template")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
Back to top