Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for KeyPath (0.14 sec)

  1. cmd/iam.go

    	usersPrefix := strings.HasPrefix(event.keyPath, iamConfigUsersPrefix)
    	groupsPrefix := strings.HasPrefix(event.keyPath, iamConfigGroupsPrefix)
    	stsPrefix := strings.HasPrefix(event.keyPath, iamConfigSTSPrefix)
    	svcPrefix := strings.HasPrefix(event.keyPath, iamConfigServiceAccountsPrefix)
    	policyPrefix := strings.HasPrefix(event.keyPath, iamConfigPoliciesPrefix)
    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

    		})
    	})
    }
    
    func TestClientAuth(t *testing.T) {
    	var certPath, keyPath, ecdsaCertPath, ecdsaKeyPath, ed25519CertPath, ed25519KeyPath string
    
    	if *update {
    		certPath = tempFile(clientCertificatePEM)
    		defer os.Remove(certPath)
    		keyPath = tempFile(clientKeyPEM)
    		defer os.Remove(keyPath)
    		ecdsaCertPath = tempFile(clientECDSACertificatePEM)
    		defer os.Remove(ecdsaCertPath)
    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. src/crypto/tls/handshake_client_test.go

    	pem.Encode(&pemOut, &pem.Block{Type: "PRIVATE KEY", Bytes: derBytes})
    
    	keyPath := tempFile(pemOut.String())
    	defer os.Remove(keyPath)
    
    	var command []string
    	command = append(command, serverCommand...)
    	command = append(command, test.args...)
    	command = append(command, "-cert", certPath, "-certform", "DER", "-key", keyPath)
    	// serverPort contains the port that OpenSSL will listen on. OpenSSL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. cmd/iam-store.go

    	}
    	*d = doc
    	return nil
    }
    
    // key options
    type options struct {
    	ttl int64 // expiry in seconds
    }
    
    type iamWatchEvent struct {
    	isCreated bool // !isCreated implies a delete event.
    	keyPath   string
    }
    
    // iamCache contains in-memory cache of IAM data.
    type iamCache struct {
    	updatedAt time.Time
    
    	// map of policy names to policy definitions
    	iamPolicyDocsMap map[string]PolicyDoc
    
    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