Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 635 for Expired (0.14 sec)

  1. test/typeparam/issue50109.go

    		Object: x,
    	}
    }
    
    // Get gets an item from the cache. Returns the item or nil, and a bool indicating
    // whether the key was found.
    func (c *anyCache[T]) Get(k string) (T, bool) {
    	// "Inlining" of get and Expired
    	item, found := c.items[k]
    	if !found {
    		var ret T
    		return ret, false
    	}
    
    	return item.Object, true
    }
    
    type janitor[T any] struct {
    	stop chan bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/service/AccessTokenService.java

                            && expiredTime.longValue() < ComponentUtil.getSystemHelper().getCurrentTimeAsLong()) {
                        throw new InvalidAccessTokenException("invalid_token",
                                "The token is expired(" + FessFunctions.formatDate(FessFunctions.date(expiredTime)) + ").");
                    }
                    stream(accessToken.getPermissions()).of(stream -> stream.forEach(permissionSet::add));
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.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: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. pkg/controller/certificates/cleaner/cleaner.go

    // CSR is denied and is old enough to be past the GC denied deadline, the CSR
    // is Pending and is old enough to be past the GC pending deadline, the CSR is
    // approved with a certificate and the certificate is expired.
    type CSRCleanerController struct {
    	csrClient csrclient.CertificateSigningRequestInterface
    	csrLister certificateslisters.CertificateSigningRequestLister
    }
    
    // NewCSRCleanerController creates a new CSRCleanerController.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 15 03:26:08 UTC 2023
    - 8K bytes
    - Viewed (0)
  5. cmd/signature-v4_test.go

    			},
    			region:   region,
    			expected: ErrUnsignedHeaders,
    		},
    		// (4) Should give an expired request if it has expired.
    		{
    			queryParams: map[string]string{
    				"X-Amz-Algorithm":      signV4Algorithm,
    				"X-Amz-Date":           now.AddDate(0, 0, -2).Format(iso8601Format),
    				"X-Amz-Expires":        "60",
    				"X-Amz-Signature":      "badsignature",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  6. src/crypto/x509/root_windows.go

    	if chainCtx.TrustStatus.ErrorStatus != syscall.CERT_TRUST_NO_ERROR {
    		status := chainCtx.TrustStatus.ErrorStatus
    		switch status {
    		case syscall.CERT_TRUST_IS_NOT_TIME_VALID:
    			return CertificateInvalidError{c, Expired, ""}
    		case syscall.CERT_TRUST_IS_NOT_VALID_FOR_USAGE:
    			return CertificateInvalidError{c, IncompatibleUsage, ""}
    		// TODO(filippo): surface more error statuses.
    		default:
    			return UnknownAuthorityError{c, nil, nil}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  7. pkg/credentialprovider/plugin/plugin.go

    	p.Lock()
    	if p.clock.Now().After(p.lastCachePurge.Add(cachePurgeInterval)) {
    		// NewExpirationCache purges expired entries when List() is called
    		// The expired entry in the cache is removed only when Get or List called on it.
    		// List() is called on some interval to remove those expired entries on which Get is never called.
    		_ = p.cache.List()
    		p.lastCachePurge = p.clock.Now()
    	}
    	p.Unlock()
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 05 05:07:28 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/lifecycle.go

    				// if set to false the policy takes no action. This cannot be specified with Days or
    				// Date in a Lifecycle Expiration Policy.
    				events = append(events, Event{
    					Action: DeleteVersionAction,
    					RuleID: rule.ID,
    					Due:    now,
    				})
    				// No other conflicting actions apply to an expired object delete marker
    				break
    			}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. pkg/util/goroutinemap/exponentialbackoff/exponential_backoff.go

    	lastError           error
    	lastErrorTime       time.Time
    	durationBeforeRetry time.Duration
    }
    
    // SafeToRetry returns an error if the durationBeforeRetry period for the given
    // lastErrorTime has not yet expired. Otherwise it returns nil.
    func (expBackoff *ExponentialBackoff) SafeToRetry(operationName string) error {
    	if time.Since(expBackoff.lastErrorTime) <= expBackoff.durationBeforeRetry {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 19 03:30:46 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. src/crypto/x509/root_darwin.go

    	// using TLS or OCSP for that.
    
    	if ret, err := macOS.SecTrustEvaluateWithError(trustObj); err != nil {
    		switch ret {
    		case macOS.ErrSecCertificateExpired:
    			return nil, CertificateInvalidError{c, Expired, err.Error()}
    		case macOS.ErrSecHostNameMismatch:
    			return nil, HostnameError{c, opts.DNSName}
    		case macOS.ErrSecNotTrusted:
    			return nil, UnknownAuthorityError{Cert: c}
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 01 00:36:38 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top