Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 463 for LookUp (0.09 sec)

  1. src/net/conf_test.go

    				goos: "openbsd",
    			},
    			resolv: &dnsConfig{lookup: []string{"bind", "file"}},
    			hostTests: []nssHostTest{
    				{"google.com", "myhostname", hostLookupDNSFiles},
    				{"foo.local", "myhostname", hostLookupDNSFiles},
    			},
    		},
    		{
    			name: "openbsd_lookup_file_bind",
    			c: &conf{
    				goos: "openbsd",
    			},
    			resolv:    &dnsConfig{lookup: []string{"file", "bind"}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:46:36 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector_test.go

    				dialer, lookupErr := cs.Lookup(networkContext)
    				if lookupErr == nil && service.lookupError != nil {
    					t.Errorf("calling Lookup expected error: %s, did not get it", *service.lookupError)
    				}
    				if lookupErr != nil && service.lookupError == nil {
    					t.Errorf("unexpected error calling Lookup got: %#v", lookupErr)
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 26 22:41:29 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    // Any call to SetTileHeight must happen before the first call to [Client.Lookup].
    // If SetTileHeight is not called, the Client defaults to tile height 8.
    // SetTileHeight can be called at most once,
    // and if so it must be called before the first call to Lookup.
    func (c *Client) SetTileHeight(height int) {
    	if atomic.LoadUint32(&c.didLookup) != 0 {
    		panic("SetTileHeight used after Lookup")
    	}
    	if height <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/ReactorReader.java

         */
        @Named
        @Singleton
        @SuppressWarnings("unused")
        static class ReactorReaderSpy implements EventSpy {
    
            private final Lookup lookup;
    
            @Inject
            ReactorReaderSpy(Lookup lookup) {
                this.lookup = lookup;
            }
    
            @Override
            public void init(Context context) throws Exception {}
    
            @Override
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 16:33:18 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  5. docs/sts/ldap.md

    ```
    
    If you set an empty lookup bind password, the lookup bind will use the unauthenticated authentication mechanism, as described in [RFC 4513 Section 5.1.2](https://tools.ietf.org/html/rfc4513#section-5.1.2).
    
    ### User lookup
    
    When a user provides their LDAP credentials, MinIO runs a lookup query to find the user's Distinguished Name (DN). The search filter and base DN used in this lookup query are configured via the following variables:
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  6. src/net/lookup_test.go

    	ctx = withUnexpiredValuesPreserved(ctx)
    
    	// Lookup before expiry.
    	if g, w := ctx.Value(key), value; g != w {
    		t.Errorf("Lookup before expiry: Got %v Want %v", g, w)
    	}
    
    	// Cancel the context.
    	cancel()
    
    	// Lookup after expiry should return nil
    	if g := ctx.Value(key); g != nil {
    		t.Errorf("Lookup after expiry: Got %v want nil", g)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top