Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 660 for tolen (0.25 sec)

  1. src/syscall/security_windows.go

    // process executed on behalf of the user has a copy of the token.
    // The token identifies the user, the user's groups, and the user's
    // privileges. The system uses the token to control access to securable
    // objects and to control the ability of the user to perform various
    // system-related operations on the local computer.
    type Token Handle
    
    // OpenCurrentProcessToken opens the access token
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/authenticator/config.go

    	tokencache "k8s.io/apiserver/pkg/authentication/token/cache"
    	"k8s.io/apiserver/pkg/authentication/token/tokenfile"
    	tokenunion "k8s.io/apiserver/pkg/authentication/token/union"
    	"k8s.io/apiserver/pkg/server/dynamiccertificates"
    	webhookutil "k8s.io/apiserver/pkg/util/webhook"
    	"k8s.io/apiserver/plugin/pkg/authenticator/token/oidc"
    	"k8s.io/apiserver/plugin/pkg/authenticator/token/webhook"
    	typedv1core "k8s.io/client-go/kubernetes/typed/core/v1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 19:29:33 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. src/go/printer/printer.go

    			switch x {
    			case token.BREAK, token.CONTINUE, token.FALLTHROUGH, token.RETURN,
    				token.INC, token.DEC, token.RPAREN, token.RBRACK, token.RBRACE:
    				impliedSemi = true
    			}
    			p.lastTok = x
    
    		case string:
    			// incorrect AST - print error message
    			data = x
    			isLit = true
    			impliedSemi = true
    			p.lastTok = token.STRING
    
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 41.6K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/discovery/token/token_test.go

        server: https://127.0.0.1
      name: somecluster
    contexts:
    - context:
        cluster: somecluster
        user: token-bootstrap-client
      name: token-bootstrap-client@somecluster
    current-context: token-bootstrap-client@somecluster
    kind: Config
    preferences: {}
    users: null
    `
    	)
    
    	tests := []struct {
    		name                     string
    		tokenID                  string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/join.go

    	// if a token is provided, use this value for both discovery-token and tls-bootstrap-token when those values are not provided
    	if len(opt.token) > 0 {
    		if len(opt.externalcfg.Discovery.TLSBootstrapToken) == 0 {
    			opt.externalcfg.Discovery.TLSBootstrapToken = opt.token
    		}
    		if len(opt.externalcfg.Discovery.BootstrapToken.Token) == 0 {
    			opt.externalcfg.Discovery.BootstrapToken.Token = opt.token
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 16 15:33:38 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/Combinators.kt

            token(LPAR) * parser * token(RPAR)
    
    
        internal
        inline fun <T> bracket(crossinline parser: Parser<T>): Parser<T> =
            token(LBRACKET) * parser * token(RBRACKET)
    
    
        internal
        inline fun <T> brace(crossinline parser: Parser<T>): Parser<T> =
            token(LBRACE) * parser * token(RBRACE)
    
    
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/security/first-steps.md

    * Die API überprüft den `username` und das `password` und antwortet mit einem „Token“ (wir haben davon noch nichts implementiert).
        * Ein „Token“ ist lediglich ein String mit einem Inhalt, den wir später verwenden können, um diesen Benutzer zu verifizieren.
        * Normalerweise läuft ein Token nach einiger Zeit ab.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:08 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/serviceaccount/claims.go

    	case jwt.ErrIssuedInTheFuture:
    		return nil, errors.New("service account token is issued in the future")
    
    	// our current use of jwt.Expected above should make these cases impossible to hit
    	case jwt.ErrInvalidAudience, jwt.ErrInvalidID, jwt.ErrInvalidIssuer, jwt.ErrInvalidSubject:
    		klog.Errorf("service account token claim validation got unexpected validation failure: %v", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 21:15:10 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  9. pilot/pkg/model/typed_xds_cache.go

    	// It will not overflow until year 2262
    	token := CacheToken(pushReq.Start.UnixNano())
    	l.mu.Lock()
    	defer l.mu.Unlock()
    	if token < l.token {
    		// entry may be stale, we need to drop it. This can happen when the cache is invalidated
    		// after we call Clear or ClearAll.
    		return
    	}
    	cur, f := l.store.Get(k)
    	if f {
    		// This is the stale or same resource
    		if token <= cur.token {
    			return
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Mar 30 05:26:03 UTC 2024
    - 11K bytes
    - Viewed (0)
  10. cmd/auth-handler.go

    	token := getSessionToken(r)
    	if token != "" && cred.AccessKey == "" {
    		// x-amz-security-token is not allowed for anonymous access.
    		return nil, ErrNoAccessKey
    	}
    
    	if token == "" && cred.IsTemp() && !cred.IsServiceAccount() {
    		// Temporary credentials should always have x-amz-security-token
    		return nil, ErrInvalidToken
    	}
    
    	if token != "" && !cred.IsTemp() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top