Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,216 for LookUp (0.15 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/state/DefaultManagedFactoryRegistry.java

                register(factory);
            }
            return this;
        }
    
        @Override
        @Nullable
        public ManagedFactory lookup(int id) {
            ManagedFactory factory = managedFactoryCache.getIfPresent(id);
            if (factory == null && parent != null) {
                factory = parent.lookup(id);
            }
            return factory;
        }
    
        private void register(ManagedFactory factory) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/configuration/internal/EnhancedConverterLookup.java

    import org.codehaus.plexus.component.configurator.converters.composite.ObjectWithFieldsConverter;
    import org.codehaus.plexus.component.configurator.converters.lookup.ConverterLookup;
    import org.codehaus.plexus.component.configurator.converters.lookup.DefaultConverterLookup;
    
    class EnhancedConverterLookup implements ConverterLookup {
        private final ConverterLookup delegate = new DefaultConverterLookup();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 12 19:39:23 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. okhttp/src/main/kotlin/okhttp3/internal/connection/FailedPlan.kt

     *
     *  * A DNS lookup failed
     *  * The configuration is incapable of carrying the request, such as when the client is configured
     *    to use `H2_PRIOR_KNOWLEDGE` but the URL's scheme is `https:`.
     *  * Preemptive proxy authentication failed.
     *
     * Planning failures are not necessarily fatal. For example, even if we can't DNS lookup the first
     * proxy in a list, looking up a subsequent one may succeed.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. src/go/types/methodset_test.go

    	}
    
    	check := func(src string, methods []method, generic bool) {
    		pkg := mustTypecheck("package p;"+src, nil, nil)
    
    		scope := pkg.Scope()
    		if generic {
    			fn := pkg.Scope().Lookup("g").(*Func)
    			scope = fn.Scope()
    		}
    		obj := scope.Lookup("a")
    		if obj == nil {
    			t.Errorf("%s: incorrect test case - no object a", src)
    			return
    		}
    
    		ms := NewMethodSet(obj.Type())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 08 15:27:57 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/resource/suffix.go

    	}
    	return nil, false
    }
    
    func (sh *suffixHandler) interpret(suffix suffix) (base, exponent int32, fmt Format, ok bool) {
    	// Try lookup tables first
    	if b, e, ok := sh.decSuffixes.lookup(suffix); ok {
    		return b, e, DecimalSI, true
    	}
    	if b, e, ok := sh.binSuffixes.lookup(suffix); ok {
    		return b, e, BinarySI, true
    	}
    
    	if len(suffix) > 1 && (suffix[0] == 'E' || suffix[0] == 'e') {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 03:17:50 UTC 2022
    - 5.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/audit/log/backend_test.go

    	}{
    		{
    			&auditinternal.Event{
    				AuditID: types.UID(uuid.New().String()),
    			},
    			`[\d\:\-\.\+TZ]+ AUDIT: id="[\w-]+" stage="" ip="<unknown>" method="" user="<none>" groups="<none>" as="<self>" asgroups="<lookup>" user-agent="" namespace="<none>" uri="" response="<deferred>"`,
    		},
    		{
    			&auditinternal.Event{
    				ResponseStatus: &metav1.Status{
    					Code: 200,
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 08 06:37:26 UTC 2022
    - 5K bytes
    - Viewed (0)
  7. 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)
  8. src/html/template/clone_test.go

    		t.Error(`t0.Clone(): got nil err want non-nil`)
    	}
    
    	// Similarly, cloning sub-templates should fail.
    	if _, err := t0.Lookup("a").Clone(); err == nil {
    		t.Error(`t0.Lookup("a").Clone(): got nil err want non-nil`)
    	}
    	if _, err := t0.Lookup("lhs").Clone(); err == nil {
    		t.Error(`t0.Lookup("lhs").Clone(): got nil err want non-nil`)
    	}
    
    	// Execute t3.
    	b.Reset()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:48:16 UTC 2022
    - 8K bytes
    - Viewed (0)
  9. src/testing/flag_test.go

    			}
    			if err != nil {
    				t.Error(err)
    			}
    		})
    	}
    }
    
    // testFlagHelper is called by the TestFlagHelper subprocess.
    func testFlagHelper(t *testing.T) {
    	f := flag.Lookup("test.v")
    	if f == nil {
    		t.Fatal(`flag.Lookup("test.v") failed`)
    	}
    
    	bf, ok := f.Value.(interface{ IsBoolFlag() bool })
    	if !ok {
    		t.Errorf("test.v flag (type %T) does not have IsBoolFlag method", f)
    	} else if !bf.IsBoolFlag() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 05 23:35:29 UTC 2023
    - 2K bytes
    - Viewed (0)
  10. 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)
Back to top