Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,087 for tolen (0.06 sec)

  1. src/compress/flate/token.go

    }
    
    type token uint32
    
    // Convert a literal into a literal token.
    func literalToken(literal uint32) token { return token(literalType + literal) }
    
    // Convert a < xlength, xoffset > pair into a match token.
    func matchToken(xlength uint32, xoffset uint32) token {
    	return token(matchType + xlength<<lengthShift + xoffset)
    }
    
    // Returns the literal of a literal token.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  2. src/go/token/token.go

    // String returns the string corresponding to the token tok.
    // For operators, delimiters, and keywords the string is the actual
    // token character sequence (e.g., for the token [ADD], the string is
    // "+"). For all other tokens the string corresponds to the token
    // constant name (e.g. for the token [IDENT], the string is "IDENT").
    func (tok Token) String() string {
    	s := ""
    	if 0 <= tok && tok < Token(len(tokens)) {
    		s = tokens[tok]
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/phases/bootstraptoken/node/token.go

    }
    
    // UpdateOrCreateTokens attempts to update a token with the given ID, or create if it does not already exist.
    func UpdateOrCreateTokens(client clientset.Interface, failIfExists bool, tokens []bootstraptokenv1.BootstrapToken) error {
    
    	for _, token := range tokens {
    
    		secretName := bootstraputil.BootstrapTokenSecretName(token.Token.ID)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/options/token.go

    }
    
    // AddTTLFlagWithName adds the --token-ttl flag with a custom flag name given flagset
    func (bto *BootstrapTokenOptions) AddTTLFlagWithName(fs *pflag.FlagSet, flagName string) {
    	fs.DurationVar(
    		&bto.TTL.Duration, flagName, bto.TTL.Duration,
    		"The duration before the token is automatically deleted (e.g. 1s, 2m, 3h). If set to '0', the token will never expire",
    	)
    }
    
    // AddUsagesFlag adds the --usages flag to the given flagset
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. security/pkg/credentialfetcher/plugin/token.go

    	}
    }
    
    func (t KubernetesTokenPlugin) GetPlatformCredential() (string, error) {
    	if t.path == "" {
    		return "", nil
    	}
    	tok, err := os.ReadFile(t.path)
    	if err != nil {
    		log.Warnf("failed to fetch token from file: %v", err)
    		return "", nil
    	}
    	return strings.TrimSpace(string(tok)), nil
    }
    
    func (t KubernetesTokenPlugin) GetIdentityProvider() string {
    	return ""
    }
    
    func (t KubernetesTokenPlugin) Stop() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. security/pkg/nodeagent/caclient/providers/citadel/testdata/token

    Zhonghu Xu <******@****.***> 1660661797 +0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 16 14:56:37 UTC 2022
    - 5 bytes
    - Viewed (0)
  7. cni/test/testdata/k8s_svcacct/token

    John Howard <******@****.***> 1605827959 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 19 23:19:19 UTC 2020
    - 860 bytes
    - Viewed (0)
  8. pkg/istio-agent/testdata/token

    John Howard <******@****.***> 1610044937 -0800
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jan 07 18:42:17 UTC 2021
    - 4 bytes
    - Viewed (0)
  9. docs/sts/custom-token-identity.go

    	"net/url"
    	"time"
    
    	"github.com/minio/minio-go/v7"
    	cr "github.com/minio/minio-go/v7/pkg/credentials"
    )
    
    var (
    	// LDAP integrated Minio endpoint
    	stsEndpoint string
    
    	// token to use with AssumeRoleWithCustomToken
    	token string
    
    	// Role ARN to use
    	roleArn string
    
    	// Display credentials flag
    	displayCreds bool
    
    	// Credential expiry duration
    	expiryDuration time.Duration
    
    	// Bucket to list
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3.4K bytes
    - Viewed (0)
  10. docs/sts/custom-token-identity.md

    | Version         | String  | Yes      | Value must be `2011-06-15`                                           |
    | Token           | String  | Yes      | Token to be authenticated by identity plugin                         |
    | RoleArn         | String  | Yes      | Must match the Role ARN generated for the identity plugin            |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top