Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 127 for ensure (0.13 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    				"username": "jane",
    				"groups": null,
    				"exp": %d,
    				"uid": "1234",
    				"baz": "qux"
    			}`, valid.Unix()),
    			want: &user.DefaultInfo{
    				Name: "jane",
    			},
    		},
    		// test to ensure omitempty fields not included in user info
    		// are set and accessible for CEL evaluation.
    		{
    			name: "test user validation rule doesn't fail when user info is empty except username",
    			options: Options{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.5.md

    ## Changelog since v1.5.5
    
    ### Other notable changes
    
    * kube-up (with gce/gci and gce/coreos providers) now ensures the authentication token file contains correct tokens for the control plane components, even if the file already exists (ensures upgrades and downgrades work successfully) ([#43676](https://github.com/kubernetes/kubernetes/pull/43676), [@liggitt](https://github.com/liggitt))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    	defer ts.Close()
    
    	c := ts.Client()
    
    	// Issue was caused by the timeout handler starting the timer when
    	// was created, not when the request. So wait for more than the timeout
    	// to ensure that's not the case.
    	time.Sleep(2 * timeout)
    	res, err := c.Get(ts.URL)
    	if err != nil {
    		t.Fatal(err)
    	}
    	defer res.Body.Close()
    	if res.StatusCode != StatusNoContent {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    	klog.V(4).InfoS("Got phase for pod", "pod", klog.KObj(pod), "oldPhase", oldPodStatus.Phase, "phase", s.Phase)
    
    	// Perform a three-way merge between the statuses from the status manager,
    	// runtime, and generated status to ensure terminal status is correctly set.
    	if s.Phase != v1.PodFailed && s.Phase != v1.PodSucceeded {
    		switch {
    		case oldPodStatus.Phase == v1.PodFailed || oldPodStatus.Phase == v1.PodSucceeded:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * build</a>.)
         *
         * <p>Be careful when targeting an older SDK than you are building against (most commonly when
         * building for Android): Ensure that any object you pass implements the interface not just in
         * your current SDK version but also at the oldest version you support. For example, <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * build</a>.)
         *
         * <p>Be careful when targeting an older SDK than you are building against (most commonly when
         * building for Android): Ensure that any object you pass implements the interface not just in
         * your current SDK version but also at the oldest version you support. For example, <a
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    		if errors.Is(err, errConfigNotFound) {
    			c.Lock()
    			defer c.Unlock()
    			c.state = srState{}
    			c.enabled = false
    		}
    		return err
    	}
    
    	// attempt to read just the version key in the state file to ensure we
    	// are reading a compatible version.
    	var ver struct {
    		Version int `json:"version"`
    	}
    	err = json.Unmarshal(buf, &ver)
    	if err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. docs/screenshots/erasure-code.png

    erasure-code.png...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Feb 21 04:12:21 UTC 2017
    - 220.7K bytes
    - Viewed (0)
  9. docs/screenshots/erasure-code.jpg

    erasure-code.jpg...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 29 16:10:47 UTC 2017
    - 105.7K bytes
    - Viewed (0)
  10. src/cmd/go/internal/work/exec.go

    	// work does not matter much to overall execution time,
    	// but when running "go test std" it is nice to see each test
    	// results as soon as possible. The priorities assigned
    	// ensure that, all else being equal, the execution prefers
    	// to do what it would have done first in a simple depth-first
    	// dependency order traversal.
    	all := actionList(root)
    	for i, a := range all {
    		a.priority = i
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top