Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,000 for tolen (0.33 sec)

  1. src/go/parser/error_test.go

    	errors := make(map[token.Pos]string)
    
    	var s scanner.Scanner
    	// file was parsed already - do not add it again to the file
    	// set otherwise the position information returned here will
    	// not match the position information collected by the parser
    	s.Init(getFile(fset, filename), src, nil, scanner.ScanComments)
    	var prev token.Pos // position of last non-comment, non-semicolon token
    	var here token.Pos // position immediately after the token at position prev
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 19:47:49 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  2. src/go/parser/resolver_test.go

    // name->position(s) for uses.
    func positionMarkers(handle *token.File, src []byte) (decls map[string]token.Pos, uses map[string][]token.Pos) {
    	var s scanner.Scanner
    	s.Init(handle, src, nil, scanner.ScanComments)
    	decls = make(map[string]token.Pos)
    	uses = make(map[string][]token.Pos)
    	var prev token.Pos // position of last non-comment, non-semicolon token
    
    scanFile:
    	for {
    		pos, tok, lit := s.Scan()
    		switch tok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 17:46:07 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/webhook/authentication_test.go

    					"*.two.three.com:8443": {Token: "first-with-port"},
    					"one.two.three.com":    {Token: "first-without-port"},
    					"*.two.three.com":      {Token: "first"},
    					"*.three.com":          {Token: "second"},
    					"*.com":                {Token: "third"},
    					"*":                    {Token: "fallback"},
    				},
    			},
    			expected: rest.Config{BearerToken: "first-with-port"},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  4. tests/test_tutorial/test_websockets/test_tutorial002.py

        with pytest.raises(WebSocketDisconnect):
            with client.websocket_connect("/items/bar/ws?token=some-token") as websocket:
                message = "Message one"
                websocket.send_text(message)
                data = websocket.receive_text()
                assert data == "Session cookie or query token value is: some-token"
                data = websocket.receive_text()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Nov 13 14:26:09 UTC 2022
    - 3.6K bytes
    - Viewed (0)
  5. tests/test_tutorial/test_dependencies/test_tutorial012_an_py39.py

            "/users/", headers={"X-Token": "fake-super-secret-token", "X-Key": "invalid"}
        )
        assert response.status_code == 400, response.text
        assert response.json() == {"detail": "X-Key header invalid"}
    
    
    @needs_py39
    def test_get_valid_headers_items(client: TestClient):
        response = client.get(
            "/items/",
            headers={
                "X-Token": "fake-super-secret-token",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/KtFirAnalysisSession.kt

        override val psiTypeProviderImpl = KaFirPsiTypeProvider(this, token)
    
        override val jvmTypeMapperImpl = KaFirJvmTypeMapper(this, token)
    
        override val typeProviderImpl = KaFirTypeProvider(this, token)
    
        override val typeInfoProviderImpl = KaFirTypeInfoProvider(this, token)
    
        override val subtypingComponentImpl = KaFirSubtypingComponent(this, token)
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  7. tests/test_tutorial/test_websockets/test_tutorial002_py310.py

        with pytest.raises(WebSocketDisconnect):
            with client.websocket_connect("/items/bar/ws?token=some-token") as websocket:
                message = "Message one"
                websocket.send_text(message)
                data = websocket.receive_text()
                assert data == "Session cookie or query token value is: some-token"
                data = websocket.receive_text()
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 18 12:29:59 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top