Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 421 for Expired (0.18 sec)

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

    	// substitute all references to {{.URL}} in appropriate places.
    	// Use {{.Expired}} to handle the token expiry date string with correct timezone handling.
    	v := struct {
    		URL     string
    		Expired string
    	}{
    		URL:     ts.URL,
    		Expired: fmt.Sprintf("%v", time.Unix(expired.Unix(), 0)),
    	}
    	c.claims = replace(c.claims, &v)
    	c.openIDConfig = replace(c.openIDConfig, &v)
    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. pilot/pkg/credentials/kube/secrets.go

    }
    
    func (s *CredentialsController) HasSynced() bool {
    	return s.secrets.HasSynced()
    }
    
    const cacheTTL = time.Minute
    
    // clearExpiredCache iterates through the cache and removes all expired entries. Should be called with mutex held.
    func (s *CredentialsController) clearExpiredCache() {
    	for k, v := range s.authorizationCache {
    		if v.expiration.Before(time.Now()) {
    			delete(s.authorizationCache, k)
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 10K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    			User:  CommonNameUserConversion,
    
    			ExpectUserName: "My Client",
    			ExpectOK:       true,
    			ExpectErr:      false,
    		},
    		"multi-level, expired": {
    			Opts:  multilevelOpts,
    			Certs: getCertsFromFile(t, "client-expired", "intermediate"),
    			User:  CommonNameUserConversion,
    
    			ExpectOK:  false,
    			ExpectErr: true,
    		},
    	}
    
    	for k, testCase := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/upload/Doc.txt

    If the upload succeeds, move the file to the uploaded directory.
    
    
    There are various error conditions.
    1. Several processes could look at localdir and see work to do.
    1A. They could see different sets of expired count files for some day.
        This could happen if another process is removing count files. In this
        case there is already a YYYY-MM-DD.json file either in localdir
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go

    	{22, "SIGTTOU", "stopped (tty output)"},
    	{23, "SIGIO", "I/O possible"},
    	{24, "SIGXCPU", "CPU time limit exceeded"},
    	{25, "SIGXFSZ", "file size limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGLOST", "power failure"},
    	{30, "SIGUSR1", "user defined signal 1"},
    	{31, "SIGUSR2", "user defined signal 2"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 38.7K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go

    	{23, "SIGURG", "urgent I/O condition"},
    	{24, "SIGXCPU", "CPU time limit exceeded"},
    	{25, "SIGXFSZ", "file size limit exceeded"},
    	{26, "SIGVTALRM", "virtual timer expired"},
    	{27, "SIGPROF", "profiling timer expired"},
    	{28, "SIGWINCH", "window changed"},
    	{29, "SIGIO", "I/O possible"},
    	{30, "SIGPWR", "power failure"},
    	{31, "SIGSYS", "bad system call"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  7. src/syscall/syscall_wasip1.go

    		return "urgent I/O condition"
    	case SIGXCPU:
    		return "CPU time limit exceeded"
    	case SIGXFSZ:
    		return "file size limit exceeded"
    	case SIGVTARLM:
    		return "virtual timer expired"
    	case SIGPROF:
    		return "profiling timer expired"
    	case SIGWINCH:
    		return "window changed"
    	case SIGPOLL:
    		return "I/O possible"
    	case SIGPWR:
    		return "power failure"
    	case SIGSYS:
    		return "bad system call"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/cache_test.go

    		k := fmt.Sprintf("key-%d", i)
    		if cache.get([]byte(k)) != transformer {
    			t.Fatalf("Expected to get the transformer for key %v", k)
    		}
    	}
    
    	// Wait for the cache to expire
    	fakeClock.Step(6 * time.Second)
    
    	// expired reads still work until GC runs on write
    	for i := 0; i < 10; i++ {
    		k := fmt.Sprintf("key-%d", i)
    		if cache.get([]byte(k)) != transformer {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 31 20:26:58 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

          // (Or it's a weird case like a LinkedList in a Cache<ArrayList, ...>, but *shrug*.)
          @SuppressWarnings("unchecked")
          K castKey = (K) key;
          alertListenerIfPresent(castKey, value.getValue(), RemovalCause.EXPIRED);
          cachingHashMap.remove(key);
          return null;
        }
      }
    
      @CanIgnoreReturnValue
      @Override
      public V put(K key, V value) {
        checkNotNull(key);
        checkNotNull(value);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Feb 27 19:19:19 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  10. pkg/test/framework/components/istio/ca.go

    	san := san(ns, sa)
    
    	if got, f := cachedTokens.Load(san); f {
    		t := got.(token)
    		if t.expiration.After(time.Now().Add(time.Minute)) {
    			return t.token, nil
    		}
    		// Otherwise, its expired, load a new one
    	}
    	rt, err := c.CoreV1().ServiceAccounts(ns).CreateToken(context.Background(), sa,
    		&authenticationv1.TokenRequest{
    			Spec: authenticationv1.TokenRequestSpec{
    				Audiences:         []string{aud},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top