Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,097 for LookUp (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. docs/federation/lookup/README.md

    ## Architecture
    
    ![bucket-lookup](https://github.com/minio/minio/blob/master/docs/federation/lookup/bucket-lookup.png?raw=true)
    
    ### Environment variables
    
    #### MINIO_ETCD_ENDPOINTS
    
    This is comma separated list of etcd servers that you want to use as the MinIO federation back-end. This should
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 4K bytes
    - Viewed (0)
  7. src/plugin/plugin.go

    func Open(path string) (*Plugin, error) {
    	return open(path)
    }
    
    // Lookup searches for a symbol named symName in plugin p.
    // A symbol is any exported variable or function.
    // It reports an error if the symbol is not found.
    // It is safe for concurrent use by multiple goroutines.
    func (p *Plugin) Lookup(symName string) (Symbol, error) {
    	return lookup(p, symName)
    }
    
    // A Symbol is a pointer to a variable or function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 19:46:10 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-container-default/1.0-alpha-16/plexus-container-default-1.0-alpha-16.jar

    ROLE; public abstract void setContainer(MutablePlexusContain); 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
    - 205.7K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/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: Fri Apr 28 17:58:07 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/resource/transfer/DefaultCacheAwareExternalResourceAccessorTest.groovy

            when:
            def result = cache.getResource(location, null, fileStore, localCandidates)
    
            then:
            result == null
    
            and:
            1 * index.lookup("thing") >> null
            1 * localCandidates.isNone() >> true
            1 * repository.withProgressLogging() >> progressLoggingRepo
            1 * progressLoggingRepo.resource(location) >> resource
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 17:19:47 UTC 2024
    - 19.1K bytes
    - Viewed (0)
Back to top