Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 680 for LookUp (0.19 sec)

  1. 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)
  2. 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)
  3. src/go/types/object_test.go

    		if got := obj.IsAlias(); got != want {
    			t.Errorf("%v: got IsAlias = %v; want %v", obj, got, want)
    		}
    	}
    
    	// predeclared types
    	check(Unsafe.Scope().Lookup("Pointer").(*TypeName), false)
    	for _, name := range Universe.Names() {
    		if obj, _ := Universe.Lookup(name).(*TypeName); obj != nil {
    			check(obj, name == "any" || name == "byte" || name == "rune")
    		}
    	}
    
    	// various other types
    	pkg := NewPackage("p", "p")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/object_test.go

    		if got := obj.IsAlias(); got != want {
    			t.Errorf("%v: got IsAlias = %v; want %v", obj, got, want)
    		}
    	}
    
    	// predeclared types
    	check(Unsafe.Scope().Lookup("Pointer").(*TypeName), false)
    	for _, name := range Universe.Names() {
    		if obj, _ := Universe.Lookup(name).(*TypeName); obj != nil {
    			check(obj, name == "any" || name == "byte" || name == "rune")
    		}
    	}
    
    	// various other types
    	pkg := NewPackage("p", "p")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/admission/plugin/resourcequota/resource_access.go

    	lister corev1listers.ResourceQuotaLister
    
    	// liveLookups holds the last few live lookups we've done to help ammortize cost on repeated lookup failures.
    	// This lets us handle the case of latent caches, by looking up actual results for a namespace on cache miss/no results.
    	// We track the lookup result here so that for repeated requests, we don't look it up very often.
    	liveLookupCache *lru.Cache
    	group           singleflight.Group
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 10 13:54:56 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. src/go/types/api_test.go

    		{"concreteMethod", lookup("t").(*Named).Method(0)},
    		{"recv", lookup("t").(*Named).Method(0).Signature().Recv()},
    		{"mParam", lookup("t").(*Named).Method(0).Signature().Params().At(0)},
    		{"mResult", lookup("t").(*Named).Method(0).Signature().Results().At(0)},
    
    		// Interface methods
    		{"interfaceMethod", lookup("i").Underlying().(*Interface).Method(0)},
    
    		// Function type fields
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 94.2K bytes
    - Viewed (0)
  10. src/cmd/go/internal/base/base.go

    	// Commands initialized in package main
    }
    
    // Lookup returns the subcommand with the given name, if any.
    // Otherwise it returns nil.
    //
    // Lookup ignores subcommands that have len(c.Commands) == 0 and c.Run == nil.
    // Such subcommands are only for use as arguments to "help".
    func (c *Command) Lookup(name string) *Command {
    	for _, sub := range c.Commands {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 5.3K bytes
    - Viewed (0)
Back to top