Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 229 for Expired (0.26 sec)

  1. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			if err != nil {
    				logger.Error(err, "Cannot trigger detach because it fails to set detach request time with error")
    				continue
    			}
    			// Check whether the umount drain timer expired
    			maxWaitForUnmountDurationExpired := elapsedTime > rc.maxWaitForUnmountDuration
    
    			isHealthy, err := rc.nodeIsHealthy(attachedVolume.NodeName)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  2. cmd/local-locker_test.go

    					}
    
    					// Expire 50%
    					expired := time.Now().Add(-time.Hour * 2)
    					for _, v := range l.lockMap {
    						for i := range v {
    							if rng.Intn(2) == 0 {
    								v[i].TimeLastRefresh = expired
    							}
    						}
    					}
    					start = time.Now()
    					l.expireOldLocks(time.Hour)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. pkg/xds/server.go

    		if features.EnableUnsafeAssertions && previousInfo.NonceSent == "" {
    			// Assert we do not end up in an invalid state
    			log.Fatalf("ADS:%s: REQ %s Expired nonce received %s, but we never sent any nonce", stype,
    				id, request.ResponseNonce)
    		}
    		log.Debugf("ADS:%s: REQ %s Expired nonce received %s, sent %s", stype,
    			id, request.ResponseNonce, previousInfo.NonceSent)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/envelope/kmsv2/envelope_test.go

    		},
    		{
    			desc:                     "cache entry expired should not withstand plugin failure",
    			cacheTTL:                 1 * time.Millisecond,
    			simulateKMSPluginFailure: true,
    			expectedError:            "failed to decrypt DEK, error: Envelope service was disabled",
    			expectedDecryptCalls:     10, // should hit KMS plugin for each read after cache entry expired and fail
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:50:20 UTC 2023
    - 47.2K bytes
    - Viewed (0)
  5. cmd/bucket-object-lock.go

    	days := int(math.Ceil(math.Abs(objRetention.RetainUntilDate.Sub(t).Hours()) / 24))
    
    	ret := objectlock.GetObjectRetentionMeta(oi.UserDefined)
    	if ret.Mode.Valid() {
    		// Retention has expired you may change whatever you like.
    		if ret.RetainUntilDate.Before(t) {
    			apiErr := isPutRetentionAllowed(oi.Bucket, oi.Name,
    				days, objRetention.RetainUntilDate.Time,
    				objRetention.Mode, byPassSet, r, cred,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. cmd/global-heal.go

    			objInfo := fi.ToObjectInfo(bucket, object, versioned)
    
    			evt := evalActionFromLifecycle(ctx, *lc, lr, rcfg, objInfo)
    			switch {
    			case evt.Action.DeleteRestored(): // if restored copy has expired,delete it synchronously
    				applyExpiryOnTransitionedObject(ctx, newObjectLayerFn(), objInfo, evt, lcEventSrc_Heal)
    				return false
    			case evt.Action.Delete():
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 31 14:48:50 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  7. src/net/http/cookiejar/jar.go

    	}
    
    	// MaxAge takes precedence over Expires.
    	if c.MaxAge < 0 {
    		return e, true, nil
    	} else if c.MaxAge > 0 {
    		e.Expires = now.Add(time.Duration(c.MaxAge) * time.Second)
    		e.Persistent = true
    	} else {
    		if c.Expires.IsZero() {
    			e.Expires = endOfTime
    			e.Persistent = false
    		} else {
    			if !c.Expires.After(now) {
    				return e, true, nil
    			}
    			e.Expires = c.Expires
    			e.Persistent = true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. cmd/metacache-server-pool.go

    	if allAtEOF {
    		return io.EOF
    	}
    	return nil
    }
    
    // triggerExpiryAndRepl applies lifecycle and replication actions on the listing
    // It returns true if the listing is non-versioned and the given object is expired.
    func triggerExpiryAndRepl(ctx context.Context, o listPathOptions, obj metaCacheEntry) (skip bool) {
    	versioned := o.Versioning != nil && o.Versioning.Versioned(obj.name)
    
    	// skip latest object from listing only for regular
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:23 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  9. pilot/pkg/xds/sds.go

    	if err != nil {
    		return err
    	}
    	now := time.Now()
    	for _, cert := range certs {
    		// check if the certificate has expired
    		if now.After(cert.NotAfter) || now.Before(cert.NotBefore) {
    			return fmt.Errorf("certificate is expired or not yet valid")
    		}
    	}
    	return nil
    }
    
    func recordInvalidCertificate(name string, err error) {
    	pilotSDSCertificateErrors.Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. src/syscall/tables_js.go

    	EBFONT          Errno = 59      /* Bad font file fmt */
    	ENOSTR          Errno = 60      /* Device not a stream */
    	ENODATA         Errno = 61      /* No data (for no delay io) */
    	ETIME           Errno = 62      /* Timer expired */
    	ENOSR           Errno = 63      /* Out of streams resources */
    	ENONET          Errno = 64      /* Machine is not on the network */
    	ENOPKG          Errno = 65      /* Package not installed */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 19.2K bytes
    - Viewed (0)
Back to top