Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 701 for LookUp (0.26 sec)

  1. src/internal/coverage/encodemeta/encode.go

    	}
    	x := &CoverageMetaDataBuilder{
    		tmp: make([]byte, 0, 256),
    		h:   md5.New(),
    	}
    	x.stab.InitWriter()
    	x.stab.Lookup("")
    	x.pkgpath = x.stab.Lookup(pkgpath)
    	x.pkgname = x.stab.Lookup(pkgname)
    	x.modpath = x.stab.Lookup(modulepath)
    	io.WriteString(x.h, pkgpath)
    	io.WriteString(x.h, pkgname)
    	io.WriteString(x.h, modulepath)
    	return x, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 29 17:16:10 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConfigurationConverter.java

                }
                final Object bean = instantiateObject(implType);
                if (null == value) {
                    processConfiguration(lookup, bean, loader, configuration, evaluator, listener);
                } else {
                    new CompositeBeanHelper(lookup, loader, evaluator, listener).setDefault(bean, value, configuration);
                }
                return bean;
            } catch (final ComponentConfigurationException e) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 07:40:37 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. internal/config/identity/ldap/ldap.go

    	conn, err := l.LDAP.Connect()
    	if err != nil {
    		return nil, nil, err
    	}
    	defer conn.Close()
    
    	// Bind to the lookup user account
    	if err = l.LDAP.LookupBind(conn); err != nil {
    		return nil, nil, err
    	}
    
    	// Lookup user DN
    	lookupRes, err := l.LDAP.LookupUsername(conn, username)
    	if err != nil {
    		errRet := fmt.Errorf("Unable to find user DN: %w", err)
    		return nil, nil, errRet
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 25 13:43:06 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  4. src/go/types/errsupport.go

    	// If selector and object are in the same package (==), export doesn't matter, otherwise (!=) it does.
    	// Messages depend on whether it's a general lookup or a field lookup in a struct literal.
    	//
    	// case           sel     pkg   have   message (examples for general lookup)
    	// ---------------------------------------------------------------------------------------------------------
    	// ok             x.Foo   ==    Foo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/go/types/instantiate_test.go

    		pkg := mustTypecheck(test.src, nil, nil)
    
    		t.Run(pkg.Name(), func(t *testing.T) {
    			ctxt := NewContext()
    
    			T1 := pkg.Scope().Lookup(test.name1).Type()
    			res1, err := Instantiate(ctxt, T1, test.targs1, false)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    			T2 := pkg.Scope().Lookup(test.name2).Type()
    			res2, err := Instantiate(ctxt, T2, test.targs2, false)
    			if err != nil {
    				t.Fatal(err)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/go/types/context_test.go

    	// instantiated with identical type arguments.
    	if got := ctxt.lookup("", unaryP, []Type{Typ[Int]}); got != nil {
    		t.Error("bad")
    	}
    
    	// nullaryQ is identical to nullaryP, so we *should* get inst when
    	// instantiated with identical type arguments.
    	if got := ctxt.lookup("", nullaryQ, []Type{Typ[Int]}); got != inst {
    		t.Error("bad")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. src/net/dnsconfig.go

    	timeout       time.Duration // wait before giving up on a query, including retries
    	attempts      int           // lost packets before giving up on server
    	rotate        bool          // round robin among servers
    	unknownOpt    bool          // anything unknown was encountered
    	lookup        []string      // OpenBSD top-level database "lookup" order
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/MavenScope.groovy

            dep.exclusions.contains(exclusion)
        }
    
        MavenDependency expectDependency(String key, Map<String, MavenDependency> lookup = dependencies) {
            final dependency = lookup[key]
            if (dependency == null) {
                throw new AssertionError("Could not find expected dependency $key. Actual: ${lookup.values()}")
            }
            return dependency
        }
    
        MavenDependency expectDependencyManagement(String key) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/scope.go

    func (s *Scope) Child(i int) *Scope { return s.children[i] }
    
    // Lookup returns the object in scope s with the given name if such an
    // object exists; otherwise the result is nil.
    func (s *Scope) Lookup(name string) Object {
    	obj := resolve(name, s.elems[name])
    	// Hijack Lookup for "any": with gotypesalias=1, we want the Universe to
    	// return an Alias for "any", and with gotypesalias=0 we want to return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/go/types/scope.go

    func (s *Scope) Child(i int) *Scope { return s.children[i] }
    
    // Lookup returns the object in scope s with the given name if such an
    // object exists; otherwise the result is nil.
    func (s *Scope) Lookup(name string) Object {
    	obj := resolve(name, s.elems[name])
    	// Hijack Lookup for "any": with gotypesalias=1, we want the Universe to
    	// return an Alias for "any", and with gotypesalias=0 we want to return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top