Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 194 for expiresIn (0.2 sec)

  1. android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java

        // 0 expires
        ticker.advance(1, MILLISECONDS);
        assertThat(keySet).containsExactly(1, 2, 3, 4, 5, 6, 7, 8, 9);
    
        // reorder
        getAll(cache, asList(0, 1, 2));
        CacheTesting.drainRecencyQueues(cache);
        ticker.advance(2, MILLISECONDS);
        assertThat(keySet).containsExactly(3, 4, 5, 6, 7, 8, 9, 0, 1, 2);
    
        // 3 expires
        ticker.advance(1, MILLISECONDS);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 18.7K bytes
    - Viewed (0)
  2. src/vendor/golang.org/x/net/http2/hpack/static_table.go

    		"content-type":                31,
    		"cookie":                      32,
    		"date":                        33,
    		"etag":                        34,
    		"expect":                      35,
    		"expires":                     36,
    		"from":                        37,
    		"host":                        38,
    		"if-match":                    39,
    		"if-modified-since":           40,
    		"if-none-match":               41,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 22:32:44 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  3. pkg/backoff/exponential.go

    	NextBackOff() time.Duration
    	// Reset to initial state.
    	Reset()
    	// RetryWithContext tries the operation until it does not return error,
    	// or when the context expires, whichever happens first.
    	RetryWithContext(ctx context.Context, operation func() error) error
    }
    
    type Option struct {
    	InitialInterval time.Duration
    	MaxInterval     time.Duration
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 25 01:53:48 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/bootstraptoken/v1/utils_test.go

    		bt     *BootstrapToken
    		secret *v1.Secret
    	}{
    		{
    			&BootstrapToken{ // all together
    				Token:       &BootstrapTokenString{ID: "abcdef", Secret: "abcdef0123456789"},
    				Description: "foo",
    				Expires: &metav1.Time{
    					Time: refTime,
    				},
    				Usages: []string{"signing", "authentication"},
    				Groups: []string{"system:bootstrappers", "system:bootstrappers:foo"},
    			},
    			&v1.Secret{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/CrawlingInfoHelper.java

            } else {
                crawlingInfo.setName(Constants.CRAWLING_INFO_SYSTEM_NAME);
            }
            if (dayForCleanup >= 0) {
                final long expires = getExpiredTime(dayForCleanup);
                crawlingInfo.setExpiredTime(expires);
                documentExpires = expires;
            }
            try {
                getCrawlingInfoService().store(crawlingInfo);
            } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CacheCorruptionTest.kt

                formatDate(-1, TimeUnit.HOURS)!!,
                "Expires",
                formatDate(1, TimeUnit.HOURS)!!,
              ),
            body = "ABC.1",
          ),
        )
        server.enqueue(
          MockResponse(
            headers =
              headersOf(
                "Last-Modified",
                formatDate(-1, TimeUnit.HOURS)!!,
                "Expires",
                formatDate(1, TimeUnit.HOURS)!!,
              ),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/server/health/gc/GarbageCollectionMonitoringIntegrationTest.groovy

            when:
            run "injectEvents", "-D${HealthExpirationStrategy.ENABLE_PERFORMANCE_MONITORING}=false"
    
            then:
            !daemons.daemon.log.contains(DAEMON_WILL_STOP_MESSAGE)
        }
    
        def "expires daemon when heap leaks slowly"() {
            given:
            configureGarbageCollectionHeapEventsFor(256, 512, 35, garbageCollector.monitoringStrategy.gcRateThreshold + 0.2)
    
            when:
            run "injectEvents"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 14.2K bytes
    - Viewed (0)
  8. cmd/api-headers.go

    		w.Header().Set(xhttp.ContentType, objInfo.ContentType)
    	}
    
    	if objInfo.ContentEncoding != "" {
    		w.Header().Set(xhttp.ContentEncoding, objInfo.ContentEncoding)
    	}
    
    	if !objInfo.Expires.IsZero() {
    		w.Header().Set(xhttp.Expires, objInfo.Expires.UTC().Format(http.TimeFormat))
    	}
    
    	// Set tag count if object has tags
    	if len(objInfo.UserTags) > 0 {
    		tags, _ := tags.ParseObjectTags(objInfo.UserTags)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 04:44:00 UTC 2024
    - 7K bytes
    - Viewed (0)
  9. pkg/controller/ttlafterfinished/ttlafterfinished_controller.go

    	// The latest Job may have a different UID, but it's fine because the checks will be run again.
    	fresh, err := tc.client.BatchV1().Jobs(namespace).Get(ctx, name, metav1.GetOptions{})
    	if errors.IsNotFound(err) {
    		return nil
    	}
    	if err != nil {
    		return err
    	}
    	// Use the latest Job TTL to see if the TTL truly expires.
    	expiredAt, err := tc.processTTL(logger, fresh)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 23:59:28 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. internal/http/headers.go

    	LastModified       = "Last-Modified"
    	Date               = "Date"
    	ETag               = "ETag"
    	ContentType        = "Content-Type"
    	ContentMD5         = "Content-Md5"
    	ContentEncoding    = "Content-Encoding"
    	Expires            = "Expires"
    	ContentLength      = "Content-Length"
    	ContentLanguage    = "Content-Language"
    	ContentRange       = "Content-Range"
    	Connection         = "Connection"
    	AcceptRanges       = "Accept-Ranges"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top