Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 59 for Expired (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. cmd/iam.go

    	parentUserToCredsMap := make(map[string][]auth.Credentials)
    	// DN to ldap username mapping for each LDAP user
    	parentUserToLDAPUsernameMap := make(map[string]string)
    	for _, cred := range allCreds {
    		// Expired credentials don't need parent user updates.
    		if cred.IsExpired() {
    			continue
    		}
    
    		if !sys.LDAPConfig.IsLDAPUserDN(cred.ParentUser) {
    			continue
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    // If configForClient has explicitly set keys, those will
    // be returned. Otherwise, the keys on c will be used and
    // may be rotated if auto-managed.
    // During rotation, any expired session ticket keys are deleted from
    // c.sessionTicketKeys. If the session ticket key that is currently
    // encrypting tickets (ie. the first ticketKey in c.sessionTicketKeys)
    // is not fresh, then a new session ticket key will be
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    - A good signature doesn't mean that the signatory was legit
    
    As a consequence, signature verification will often be used alongside checksum verification.
    
    .About expired keys
    --
    It's very common to find artifacts which are signed with an expired key.
    This is not a problem for _verification_: key expiry is mostly used to avoid signing with a stolen key.
    If an artifact was signed before expiry, it's still valid.
    --
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  9. cmd/batch-handlers.go

    	Started   time.Time            `yaml:"-" json:"started"`
    	Replicate *BatchJobReplicateV1 `yaml:"replicate" json:"replicate"`
    	KeyRotate *BatchJobKeyRotateV1 `yaml:"keyrotate" json:"keyrotate"`
    	Expire    *BatchJobExpire      `yaml:"expire" json:"expire"`
    	ctx       context.Context      `msg:"-"`
    }
    
    func notifyEndpoint(ctx context.Context, ri *batchJobInfo, endpoint, token string) error {
    	if endpoint == "" {
    		return nil
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  10. pkg/controller/disruption/disruption_test.go

    	pdb.Status.DisruptedPods = map[string]metav1.Time{
    		"p1":       {Time: currentTime},                       // Should be removed, pod deletion started.
    		"p2":       {Time: currentTime.Add(-3 * time.Minute)}, // Should be removed, expired.
    		"p3":       {Time: currentTime.Add(-time.Minute)},     // Should remain, pod untouched.
    		"notthere": {Time: currentTime},                       // Should be removed, pod deleted.
    	}
    	add(t, dc.pdbStore, pdb)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top