Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,972 for tolen (0.22 sec)

  1. src/text/template/parse/parse.go

    	return t.token[0]
    }
    
    // nextNonSpace returns the next non-space token.
    func (t *Tree) nextNonSpace() (token item) {
    	for {
    		token = t.next()
    		if token.typ != itemSpace {
    			break
    		}
    	}
    	return token
    }
    
    // peekNonSpace returns but does not consume the next non-space token.
    func (t *Tree) peekNonSpace() item {
    	token := t.nextNonSpace()
    	t.backup()
    	return token
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/authentication/request/websocket/protocol.go

    var errInvalidToken = errors.New("invalid bearer token")
    
    // ProtocolAuthenticator allows a websocket connection to provide a bearer token as a subprotocol
    // in the format "base64url.bearer.authorization.<base64url-without-padding(bearer-token)>"
    type ProtocolAuthenticator struct {
    	// auth is the token authenticator to use to validate the token
    	auth authenticator.Token
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/authentication/v1/generated.proto

    }
    
    // TokenReviewSpec is a description of the token authentication request.
    message TokenReviewSpec {
      // Token is the opaque bearer token.
      // +optional
      optional string token = 1;
    
      // Audiences is a list of the identifiers that the resource server presented
      // with the token identifies as. Audience-aware token authenticators will
      // verify that the token was intended for at least one of the audiences in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    func encodeTokenSecretData(token *BootstrapToken, now time.Time) map[string][]byte {
    	data := map[string][]byte{
    		bootstrapapi.BootstrapTokenIDKey:     []byte(token.Token.ID),
    		bootstrapapi.BootstrapTokenSecretKey: []byte(token.Token.Secret),
    	}
    
    	if len(token.Description) > 0 {
    		data[bootstrapapi.BootstrapTokenDescriptionKey] = []byte(token.Description)
    	}
    
    	// If for some strange reason both token.TTL and token.Expires would be set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/templates/groovy-utilities-library/src/main/groovy/org/gradle/sample/utilities/SplitUtils.groovy

                String token = source.substring(lastFind)
                if (currentFind != -1) {
                    token = token.substring(0, currentFind - lastFind)
                }
    
                addIfValid(token, result)
                lastFind = currentFind + 1
            }
    
            String token = source.substring(lastFind)
            addIfValid(token, result)
    
            return result
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 982 bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtCompilerPluginDiagnosticImpl.kt

        firDiagnostic: KtPsiSimpleDiagnostic,
        token: KaLifetimeToken
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaCompilerPluginDiagnostic0
    
    internal class KaCompilerPluginDiagnostic1Impl(
        firDiagnostic: KtPsiDiagnosticWithParameters1<*>,
        token: KaLifetimeToken,
        override val parameter1: Any?
    ) : KaAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KaCompilerPluginDiagnostic1
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_bigger_applications/test_main_an_py39.py

        response = client.get("/users?token=monica")
        assert response.status_code == 400
        assert response.json() == {"detail": "No Jessica token provided"}
    
    
    @needs_py39
    def test_items_token_jessica(client: TestClient):
        response = client.get(
            "/items?token=jessica", headers={"X-Token": "fake-super-secret-token"}
        )
        assert response.status_code == 200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 24.9K bytes
    - Viewed (0)
  8. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/groovyapplication/multi/utilities/SplitUtils.groovy.template

                String token = source.substring(lastFind)
                if (currentFind != -1) {
                    token = token.substring(0, currentFind - lastFind)
                }
    
                addIfValid(token, result)
                lastFind = currentFind + 1
            }
    
            String token = source.substring(lastFind)
            addIfValid(token, result)
    
            return result
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1007 bytes
    - Viewed (0)
  9. src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java

            SMBUtil.writeInt2(this.token != null ? this.token.length : 0, dst, dstIndex);
            dstIndex += 2;
            SMBUtil.writeInt8(this.previousSessionId, dst, dstIndex);
            dstIndex += 8;
            SMBUtil.writeInt2(dstIndex - getHeaderStart(), dst, offsetOffset);
    
            dstIndex += pad8(dstIndex);
    
            if ( this.token != null ) {
                System.arraycopy(this.token, 0, dst, dstIndex, this.token.length);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.2K bytes
    - Viewed (0)
  10. src/go/parser/parser.go

    	token.GO:          true,
    	token.GOTO:        true,
    	token.IF:          true,
    	token.RETURN:      true,
    	token.SELECT:      true,
    	token.SWITCH:      true,
    	token.TYPE:        true,
    	token.VAR:         true,
    }
    
    var declStart = map[token.Token]bool{
    	token.IMPORT: true,
    	token.CONST:  true,
    	token.TYPE:   true,
    	token.VAR:    true,
    }
    
    var exprEnd = map[token.Token]bool{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
Back to top