Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for qsub (0.02 sec)

  1. cmd/iam.go

    		if err := saveIAMFormat(retryCtx, sys.store); err != nil {
    			if configRetriableErrors(err) {
    				logger.Info("Waiting for all MinIO IAM sub-system to be initialized.. possible cause (%v)", err)
    				time.Sleep(time.Duration(r.Float64() * float64(time.Second)))
    				continue
    			}
    			iamLogIf(ctx, fmt.Errorf("IAM sub-system is partially initialized, unable to write the IAM format: %w", err), logger.WarningKind)
    			return
    		}
    
    		break
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  2. src/crypto/tls/handshake_server_test.go

    		t.Error("cloned hash generated a different sum")
    	}
    }
    
    func expectError(t *testing.T, err error, sub string) {
    	if err == nil {
    		t.Errorf(`expected error %q, got nil`, sub)
    	} else if !strings.Contains(err.Error(), sub) {
    		t.Errorf(`expected error %q, got %q`, sub, err)
    	}
    }
    
    func TestKeyTooSmallForRSAPSS(t *testing.T) {
    	cert, err := X509KeyPair([]byte(`-----BEGIN CERTIFICATE-----
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 64.7K bytes
    - Viewed (0)
  3. cmd/iam-store.go

    	if accessKey == "" || !cred.IsTemp() || cred.IsExpired() || cred.ParentUser == "" {
    		return time.Time{}, errInvalidArgument
    	}
    
    	ttl := int64(cred.Expiration.Sub(UTCNow()).Seconds())
    
    	cache := store.lock()
    	defer store.unlock()
    
    	if policyName != "" {
    		mp := newMappedPolicy(policyName)
    		_, combinedPolicyStmt := filterPolicies(cache, mp.Policies, "")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
Back to top