Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 635 for Expired (0.17 sec)

  1. cmd/signature-v2_test.go

    		},
    		// (3) Should give an expired request if it has expired.
    		{
    			queryParams: map[string]string{
    				"Expires":        "60",
    				"Signature":      "badsignature",
    				"AWSAccessKeyId": accessKey,
    			},
    			expected: ErrExpiredPresignRequest,
    		},
    		// (4) Should error when the signature does not match.
    		{
    			queryParams: map[string]string{
    				"Expires":        fmt.Sprintf("%d", now.Unix()+60),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Oct 14 10:08:40 UTC 2022
    - 8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/CachingModuleComponentRepository.java

                    if (expiry.isMustCheck()) {
                        LOGGER.debug("Version listing in dynamic revision cache is expired: will perform fresh resolve of '{}' in '{}'", requested, delegate.getName());
                    } else {
                        // When age == 0, verified since the start of this build, assume listing hasn't changed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 00:21:07 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  3. pkg/kubelet/util/cache/object_cache.go

    import (
    	"time"
    
    	expirationcache "k8s.io/client-go/tools/cache"
    )
    
    // ObjectCache is a simple wrapper of expiration cache that
    // 1. use string type key
    // 2. has an updater to get value directly if it is expired
    // 3. then update the cache
    type ObjectCache struct {
    	cache   expirationcache.Store
    	updater func() (interface{}, error)
    }
    
    // objectEntry is an object with string type key.
    type objectEntry struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 25 04:07:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/cache/lruexpirecache.go

    type realClock struct{}
    
    func (realClock) Now() time.Time { return time.Now() }
    
    // LRUExpireCache is a cache that ensures the mostly recently accessed keys are returned with
    // a ttl beyond which keys are forcibly expired.
    type LRUExpireCache struct {
    	// clock is used to obtain the current time
    	clock Clock
    
    	lock sync.Mutex
    
    	maxSize      int
    	evictionList list.List
    	entries      map[interface{}]*list.Element
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:48 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/test_timeout_stdin.txt

    [short] skip 'runs a test that hangs until its WaitDelay expires'
    
    ! go test -v -timeout=1m .
    
    	# After the test process itself prints PASS and exits,
    	# the kernel closes its stdin pipe to to the orphaned subprocess.
    	# At that point, we expect the subprocess to print 'stdin closed'
    	# and periodically log to stderr until the WaitDelay expires.
    	#
    	# Once the WaitDelay expires, the copying goroutine for 'go test' stops and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 20:23:27 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. pkg/credentialprovider/plugin/plugin_test.go

    						Username: "user2",
    						Password: "pass2",
    					},
    				},
    			},
    		},
    
    		{
    			name:      "It should delete expired credential during purge",
    			step:      18 * time.Minute,
    			keyLength: 0,
    			// while get call for random, cache purge will be called and it will delete expired
    			// image3 credentials. We cannot use image3 as getKey here, as it will get deleted during
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 09 06:11:06 UTC 2022
    - 26.5K bytes
    - Viewed (0)
  7. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolutionStrategy.java

         * and the dynamic version is resolved again.</p>
         * <p>Use this method to provide a custom expiry time after which the cached value for any dynamic version will be expired.</p>
         *
         * @param value The number of time units
         * @param units The units
         * @since 1.0-milestone-6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 13:05:50 UTC 2022
    - 16K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/RemovalCause.java

          return true;
        }
      },
    
      /**
       * The entry's expiration timestamp has passed. This can occur when using {@link
       * CacheBuilder#expireAfterWrite} or {@link CacheBuilder#expireAfterAccess}.
       */
      EXPIRED {
        @Override
        boolean wasEvicted() {
          return true;
        }
      },
    
      /**
       * The entry was evicted due to size constraints. This can occur when using {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 15 18:00:07 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  9. security/pkg/util/certutil.go

    	if certErr != nil {
    		return time.Duration(0), certErr
    	}
    	timeToExpire := cert.NotAfter.Sub(now)
    	if timeToExpire < 0 {
    		return time.Duration(0), fmt.Errorf("certificate already expired at %s, but now is %s",
    			cert.NotAfter, now)
    	}
    	// Note: multiply time.Duration(int64) by an int (gracePeriodPercentage) will cause overflow (e.g.,
    	// when duration is time.Hour * 90000). So float64 is used instead.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 30 19:33:26 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authenticator/token/bootstrap/bootstrap_test.go

    					},
    					Type: "bootstrap.kubernetes.io/token",
    				},
    			},
    			token:        tokenID + "." + tokenSecret,
    			wantNotFound: true,
    		},
    		{
    			name: "expired token",
    			secrets: []*corev1.Secret{
    				{
    					ObjectMeta: metav1.ObjectMeta{
    						Name: bootstrapapi.BootstrapTokenSecretPrefix + tokenID,
    					},
    					Data: map[string][]byte{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 04 18:36:05 UTC 2020
    - 8.3K bytes
    - Viewed (0)
Back to top