Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for Expired (0.19 sec)

  1. guava/src/com/google/common/cache/CacheBuilder.java

       * useful in testing, or to disable caching temporarily without a code change.
       *
       * <p>Expired entries may be counted in {@link Cache#size}, but will never be visible to read or
       * write operations. Expired entries are cleaned up as part of the routine maintenance described
       * in the class javadoc.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  2. src/syscall/zerrors_solaris_amd64.go

    	22: "pollable Event",
    	23: "stopped (signal)",
    	24: "stopped (user)",
    	25: "continued",
    	26: "stopped (tty input)",
    	27: "stopped (tty output)",
    	28: "virtual Timer Expired",
    	29: "profiling Timer Expired",
    	30: "cpu Limit Exceeded",
    	31: "file Size Limit Exceeded",
    	32: "no runnable lwp",
    	33: "inter-lwp signal",
    	34: "checkpoint Freeze",
    	35: "checkpoint Thaw",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle_test.go

    			objectTags:     "tag1=value1",
    			objectModTime:  time.Now().UTC().Add(-24 * time.Hour), // Created 1 day ago
    			expectedAction: DeleteAction,
    		},
    		// Should remove - empty prefix, tags match, object is expired based on specified Days
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_client_test.go

    	}
    
    	// Once the session master secret is expired, a full handshake should occur.
    	ticket = getTicket()
    	serverConfig.Time = func() time.Time { return time.Now().Add(24*8*time.Hour + time.Minute) }
    	testResumeState("ResumeWithExpiredTicket", false)
    	if bytes.Equal(ticket, getTicket()) {
    		t.Fatal("expired first ticket matches the fresh one")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// Note that this field when accessed MUST be protected by the Cacher.lock.
    	bookmarkWatchers *watcherBookmarkTimeBuckets
    	// expiredBookmarkWatchers is a list of watchers that were expired and need to be schedule for a next bookmark event
    	expiredBookmarkWatchers []*cacheWatcher
    }
    
    func (c *Cacher) RequestWatchProgress(ctx context.Context) error {
    	return c.storage.RequestWatchProgress(ctx)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. cmd/kubelet/app/server.go

    		// 3. If the client provides both and the kubeconfig is valid, we must ignore the bootstrap
    		//    kubeconfig.
    		// 4. If the client provides both and the kubeconfig is expired or otherwise invalid, we must
    		//    replace the kubeconfig with a new file that points to the cert dir
    		//
    		// The desired configuration for bootstrapping is to use a bootstrap kubeconfig and to have
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    				ExpirationTimestamp: now.Add(3 * time.Minute),
    			},
    			wantEncryptCalls: 0,
    			wantLogs:         nil,
    			wantErr:          "",
    		},
    		{
    			name:        "previous state expired but key ID matches",
    			service:     &testKMSv2EnvelopeService{err: fmt.Errorf("broken")}, // not called
    			state:       validState(t, "3", now.Add(-time.Hour), false),
    			statusKeyID: "3",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // then we know it must have given a pending toString value earlier. If not, then the future
        // completed after the timeout expired, and the message might be success.
        if (isDone()) {
          throw new TimeoutException(message + " but future completed as timeout expired");
        }
        throw new TimeoutException(message + " for " + futureToString);
      }
    
      /**
       * {@inheritDoc}
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        // then we know it must have given a pending toString value earlier. If not, then the future
        // completed after the timeout expired, and the message might be success.
        if (isDone()) {
          throw new TimeoutException(message + " but future completed as timeout expired");
        }
        throw new TimeoutException(message + " for " + futureToString);
      }
    
      /**
       * {@inheritDoc}
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. cmd/iam-store.go

    			if !pset.Contains(policy) {
    				return true
    			}
    			if store.getUsersSysType() == MinIOUsersSysType {
    				_, ok := cache.iamUsersMap[u]
    				if !ok {
    					// happens when account is deleted or
    					// expired.
    					cache.iamUserPolicyMap.Delete(u)
    					return true
    				}
    			}
    			pset.Remove(policy)
    			cache.iamUserPolicyMap.Store(u, newMappedPolicy(strings.Join(pset.ToSlice(), ",")))
    			return true
    		})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top