Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 75 for LookUp (0.24 sec)

  1. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/service/DefaultServiceRegistryTest.groovy

            when:
            registry.getAll(Integer)
            registry.add(String, "foo")
    
            then:
            thrown IllegalStateException
        }
    
        def "cannot lookup services while closing"() {
            given:
            registry.add(Closeable, { registry.get(String) } as Closeable)
    
            when:
            registry.close()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:53:25 UTC 2024
    - 59.8K bytes
    - Viewed (0)
  2. cmd/kube-controller-manager/app/options/options_test.go

    	s, _ := NewKubeControllerManagerOptions()
    	for _, f := range s.Flags([]string{""}, []string{""}, nil).FlagSets {
    		fs.AddFlagSet(f)
    	}
    
    	fgFlagName := "feature-gates"
    	fg := fs.Lookup(fgFlagName)
    	if fg == nil {
    		t.Fatalf("didn't find %q flag", fgFlagName)
    	}
    
    	expectedWatchListClientString := "WatchListClient=true|false (BETA - default=false)"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/text/cases/tables9.0.0.go

    	"stSTSt\x12\x12stSTSt\x14$մնՄՆՄն\x14$մեՄԵՄե\x14$միՄԻՄի\x14$վնՎՆՎն\x14$մխՄ" +
    	"ԽՄխ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 92.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/cases/tables10.0.0.go

    	"stSTSt\x12\x12stSTSt\x14$մնՄՆՄն\x14$մեՄԵՄե\x14$միՄԻՄի\x14$վնՎՆՎն\x14$մխՄ" +
    	"ԽՄխ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/cases/tables11.0.0.go

    	"ն\x14$մեՄԵՄե\x14$միՄԻՄի\x14$վնՎՆՎն\x14$մխՄԽՄխ"
    
    // lookup returns the trie value for the first UTF-8 encoding in s and
    // the width in bytes of this encoding. The size will be 0 if s does not
    // hold enough bytes to complete the encoding. len(s) must be greater than 0.
    func (t *caseTrie) lookup(s []byte) (v uint16, sz int) {
    	c0 := s[0]
    	switch {
    	case c0 < 0x80: // is ASCII
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 97.5K bytes
    - Viewed (0)
  6. tests/integration/security/authz_test.go

    							if !c.allow {
    								wantCode = http.StatusForbidden
    								body = "RBAC: access denied"
    							}
    
    							opts := echo.CallOptions{
    								// Use a fake IP address to bypass DNS lookup (which will fail). The host
    								// header will be used for routing decisions.
    								Address: "10.4.4.4",
    								Port: echo.Port{
    									Name:        ports.HTTP.Name,
    									Protocol:    protocol.HTTP,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    	}
    
    	// Second, update using the outdated originalPod as the suggestion. Return a conflict error when
    	// passed originalPod, and make sure that SimpleUpdate is called a second time after a live lookup
    	// with the value of updatedPod.
    	sawConflict := false
    	updatedPod2 := &example.Pod{}
    	err = store.GuaranteedUpdate(ctx, key, updatedPod2, false, nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    				fmt.Fprintf(os.Stderr, "testcache: caching disabled for test argument: %s\n", arg)
    			}
    			c.disableCache = true
    			return false
    		}
    	}
    
    	// The test cache result fetch is a two-level lookup.
    	//
    	// First, we use the content hash of the test binary
    	// and its command-line arguments to find the
    	// list of environment variables and files consulted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. hack/local-up-cluster.sh

          --kubelet-client-certificate="${CERT_DIR}/client-kube-apiserver.crt" \
          --kubelet-client-key="${CERT_DIR}/client-kube-apiserver.key" \
          --service-account-key-file="${SERVICE_ACCOUNT_KEY}" \
          --service-account-lookup="${SERVICE_ACCOUNT_LOOKUP}" \
          --service-account-issuer="https://kubernetes.default.svc" \
          --service-account-jwks-uri="https://kubernetes.default.svc/openid/v1/jwks" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. pkg/volume/csi/csi_mounter_test.go

    	if err != nil {
    		t.Fatalf("failed to make a new Unmounter: %v", err)
    	}
    
    	csiUnmounter := unmounter.(*csiMountMgr)
    
    	// Clear out the cached client
    	// The lookup to generate a new client will fail when it tries to query a driver with an unknown name
    	csiUnmounter.csiClientGetter.csiClient = nil
    	// Note that registerFakePlugin above will create a driver with a name of "test-driver"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top