Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 486 for LookUp (0.18 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/options/authentication.go

    	s.RequestHeader.AddFlags(fs)
    
    	fs.BoolVar(&s.SkipInClusterLookup, "authentication-skip-lookup", s.SkipInClusterLookup, ""+
    		"If false, the authentication-kubeconfig will be used to lookup missing authentication "+
    		"configuration from the cluster.")
    	fs.BoolVar(&s.TolerateInClusterLookupFailure, "authentication-tolerate-lookup-failure", s.TolerateInClusterLookupFailure, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 21 14:51:22 UTC 2023
    - 19.9K bytes
    - Viewed (0)
  2. test/map.go

    			panic(fmt.Sprintln("float32 map does not treat -0 and +0 as equal for write"))
    		}
    		if _, ok := m[nana]; ok {
    			panic(fmt.Sprintln("float32 map allows NaN lookup (a)"))
    		}
    		if _, ok := m[nanb]; ok {
    			panic(fmt.Sprintln("float32 map allows NaN lookup (b)"))
    		}
    		if len(m) != 3 {
    			panic(fmt.Sprintln("float32 map should have 3 entries:", m))
    		}
    		m[nana] = "NaN"
    		m[nanb] = "NaN"
    		if len(m) != 5 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 06 21:02:55 UTC 2014
    - 14.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

    process-classes org.apache.maven.plugin.coreit.DMojo java per-lookup once-per-session java Does nothing. false true false false false true generate-sources org.apache.maven.plugin.coreit.AMojo java per-lookup once-per-session models java.lang.String[] false true version java.lang.String false true ${version} generate-test-metadata Does nothing. test false true false false false true process-test-classes org.apache.maven.plugin.coreit.EMojo java per-lookup once-per-session it Does nothing. compile false true...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  4. src/index/suffixarray/suffixarray_test.go

    		if r < 0 || len(tc.source) <= r {
    			t.Errorf("test %q, lookup %q, result %d (n = %d): index %d out of range [0, %d[", tc.name, s, i, n, r, len(tc.source))
    		} else if !strings.HasPrefix(tc.source[r:], s) {
    			t.Errorf("test %q, lookup %q, result %d (n = %d): index %d not a match", tc.name, s, i, n, r)
    		}
    		if i > 0 && res[i-1] == r {
    			t.Errorf("test %q, lookup %q, result %d (n = %d): found duplicate index %d", tc.name, s, i, n, r)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/egressselector/egress_selector.go

    	// EgressSelectionName is the unique name of the
    	// EgressSelectorConfiguration which determines
    	// the network we route the traffic to.
    	EgressSelectionName EgressType
    }
    
    // Lookup is the interface to get the dialer function for the network context.
    type Lookup func(networkContext NetworkContext) (utilnet.DialFunc, error)
    
    // String returns the canonical string representation of the egress type
    func (s EgressType) String() string {
    	switch s {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  6. maven-core/src/test/remote-repo/org/apache/maven/its/plugins/maven-it-plugin/0.1/maven-it-plugin-0.1.jar

    process-classes org.apache.maven.plugin.coreit.DMojo java per-lookup once-per-session java Does nothing. false true false false false true generate-sources org.apache.maven.plugin.coreit.AMojo java per-lookup once-per-session models java.lang.String[] false true version java.lang.String false true ${version} generate-test-metadata Does nothing. test false true false false false true process-test-classes org.apache.maven.plugin.coreit.EMojo java per-lookup once-per-session it Does nothing. compile false true...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 13.2K bytes
    - Viewed (0)
  7. src/text/template/multi_test.go

    func TestTemplateLookUp(t *testing.T) {
    	t1 := New("foo")
    	if t1.Lookup("foo") != nil {
    		t.Error("Lookup returned non-nil value for undefined template foo")
    	}
    	t1.New("bar")
    	if t1.Lookup("bar") != nil {
    		t.Error("Lookup returned non-nil value for undefined template bar")
    	}
    	t1.Parse(`{{define "foo"}}test{{end}}`)
    	if t1.Lookup("foo") == nil {
    		t.Error("Lookup returned nil value for defined template")
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 08 10:48:29 UTC 2022
    - 11.7K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/poset.go

    		}
    		po.values[n.ID] = i
    		po.upushnew(n.ID, i)
    	} else {
    		po.upushnew(0, i)
    	}
    	return i
    }
    
    // lookup searches for a SSA value into the forest of DAGS, and return its node.
    // Constants are materialized on the fly during lookup.
    func (po *poset) lookup(n *Value) (uint32, bool) {
    	i, f := po.values[n.ID]
    	if !f && n.isGenericIntConst() {
    		po.newconst(n)
    		i, f = po.values[n.ID]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 04 17:23:05 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  9. internal/jwt/parser.go

    	if err != nil {
    		return err
    	}
    
    	var ok bool
    	claims.AccessKey, ok = claims.Lookup("accessKey")
    	if !ok {
    		claims.AccessKey, ok = claims.Lookup("sub")
    		if !ok {
    			return jwtgo.NewValidationError("accessKey/sub missing",
    				jwtgo.ValidationErrorClaimsInvalid)
    		}
    	}
    
    	// Lookup key from claims, claims may not be valid and may return
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission_test.go

    	}
    	if getCalls != 1 {
    		t.Errorf("Expected a live lookup of the namespace at t=forceLiveLookupTTL, got %d", getCalls)
    	}
    	getCalls = 0
    
    	// Ensure the live lookup expires
    	fakeClock.Step(time.Millisecond)
    
    	// verify create operations in the namespace don't force a live lookup after the timeout
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 14.2K bytes
    - Viewed (0)
Back to top