Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,972 for tolen (0.04 sec)

  1. src/syscall/syscall_windows.go

    //sys	CreateProcessAsUser(token Token, appName *uint16, commandLine *uint16, procSecurity *SecurityAttributes, threadSecurity *SecurityAttributes, inheritHandles bool, creationFlags uint32, env *uint16, currentDir *uint16, startupInfo *StartupInfo, outProcInfo *ProcessInformation) (err...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/cmd/token.go

    				TTL:         token.TTL,
    				Expires:     token.Expires,
    				Usages:      token.Usages,
    				Groups:      token.Groups,
    			},
    		}
    
    		if err := printer.PrintObj(&outputToken, out); err != nil {
    			return errors.Wrapf(err, "unable to print token %s", token.Token)
    		}
    	}
    	return nil
    }
    
    // RunDeleteTokens removes a bootstrap tokens from the server.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 05:47:48 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/registry/core/serviceaccount/storage/token.go

    	// Tweak expiration for safe transition of projected service account token.
    	// Warn (instead of fail) after requested expiration time.
    	// Fail after hard-coded extended expiration time.
    	// Only perform the extension when token is pod-bound.
    	var warnAfter int64
    	exp := req.Spec.ExpirationSeconds
    	if r.extendExpiration && pod != nil && req.Spec.ExpirationSeconds == token.WarnOnlyBoundTokenExpirationSeconds && r.isKubeAudiences(req.Spec.Audiences) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 10:24:31 UTC 2024
    - 10K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top