Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for LookUp (0.14 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

            this.cache = cache
          }
    
        internal fun taskRunner(taskRunner: TaskRunner) =
          apply {
            this.taskRunner = taskRunner
          }
    
        /**
         * Sets the DNS service used to lookup IP addresses for hostnames.
         *
         * If unset, the [system-wide default][Dns.SYSTEM] DNS will be used.
         */
        fun dns(dns: Dns) =
          apply {
            if (dns != this.dns) {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go

    	description string
    	gvr         schema.GroupVersionResource
    	name        string
    	patch       interface{}
    }
    
    func (a applyPatchOperation) Do(ctx *ratchetingTestContext) error {
    	// Lookup GVK from discovery
    	kind, ok := fakeRESTMapper[a.gvr]
    	if !ok {
    		return fmt.Errorf("no mapping found for Gvr %v, add entry to fakeRESTMapper", a.gvr)
    	}
    
    	patch := &unstructured.Unstructured{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 59.5K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_attacher_test.go

    				if err != nil && !tc.shouldFail {
    					t.Fatalf("Failed to create PV: %v", err)
    				}
    			}
    			// Clear out the client if specified
    			// The lookup to generate a new client will fail
    			if tc.unsetClient {
    				csiAttacher.csiClient = nil
    			}
    
    			// Run
    			err := csiAttacher.UnmountDevice(tc.deviceMountPath)
    			// Verify
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  8. src/html/template/escape_test.go

    			t.Errorf("error parsing %q: %v", source, err)
    			continue
    		}
    		var b strings.Builder
    
    		if err := tmpl.ExecuteTemplate(&b, "main", data); err != nil {
    			t.Errorf("%q executing %v", err.Error(), tmpl.Lookup("main"))
    			continue
    		}
    		if got := b.String(); test.want != got {
    			t.Errorf("want\n\t%q\ngot\n\t%q", test.want, got)
    		}
    	}
    
    }
    
    func TestErrors(t *testing.T) {
    	tests := []struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 16 03:29:27 UTC 2023
    - 56.2K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/listener.go

    		}
    		listenerMapKey = listenerKey{listenerOpts.bind.Primary(), listenerOpts.port.Port}
    
    	case istionetworking.ListenerProtocolHTTP:
    		// first identify the bind if its not set. Then construct the key
    		// used to lookup the listener in the conflict map.
    		if len(listenerOpts.bind.Primary()) == 0 { // no user specified bind. Use 0.0.0.0:Port or [::]:Port
    			listenerOpts.bind.binds = actualWildcards
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * that makes `java.net.URL` unusable for many things. It shouldn't be used as a [Map] key or in a
     * [Set]. Doing so is both inefficient because equality may require a DNS lookup, and incorrect
     * because unequal URLs may be equal because of how they are hosted.
     *
     * ### Equal URLs should be equal
     *
     * These two URLs are semantically identical, but `java.net.URI` disagrees:
     *
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
Back to top