Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,087 for tolen (0.67 sec)

  1. pkg/ctrlz/assets/static/css/dark_syntax-1.14.0.css

    }
    
    .token.property,
    .token.class-name,
    .token.constant,
    .token.symbol {
        color: #f8c555;
    }
    
    .token.selector,
    .token.important,
    .token.atrule,
    .token.keyword,
    .token.builtin {
        color: #cc99cd;
    }
    
    .token.string,
    .token.char,
    .token.attr-value,
    .token.regex,
    .token.variable {
        color: #7ec699;
    }
    
    .token.operator,
    .token.entity,
    .token.url {
        color: #67cdcc;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/javaapplication/multi/utilities/SplitUtils.java.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
    - 980 bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/scalaapplication/multi/utilities/SplitUtils.scala.template

            while (currentFind != -1) {
                var token = source.substring(lastFind)
                if (currentFind != -1) {
                    token = token.substring(0, currentFind - lastFind)
                }
    
                addIfValid(token, result)
                lastFind = currentFind + 1
                currentFind = source.indexOf(" ", lastFind)
            }
    
            val token = source.substring(lastFind)
            addIfValid(token, result)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 982 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/templates/java-utilities-library/src/main/java/org/gradle/sample/utilities/SplitUtils.java

                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
    - 952 bytes
    - Viewed (0)
  5. plugin/pkg/auth/authenticator/token/bootstrap/bootstrap_test.go

    					},
    					Type: "bootstrap.kubernetes.io/token",
    				},
    			},
    			// Token ID must be 6 characters.
    			token:        "foo" + "." + tokenSecret,
    			wantNotFound: true,
    		},
    	}
    
    	for _, test := range tests {
    		func() {
    			a := NewTokenAuthenticator(&lister{test.secrets})
    			resp, found, err := a.AuthenticateToken(context.Background(), test.token)
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 04 18:36:05 UTC 2020
    - 8.3K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/authentication/token/union/union.go

    	if len(authTokenHandlers) == 1 {
    		return authTokenHandlers[0]
    	}
    	return &unionAuthTokenHandler{Handlers: authTokenHandlers, FailOnError: true}
    }
    
    // AuthenticateToken authenticates the token using a chain of authenticator.Token objects.
    func (authHandler *unionAuthTokenHandler) AuthenticateToken(ctx context.Context, token string) (*authenticator.Response, bool, error) {
    	var errlist []error
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 22 17:16:59 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top