Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 744 for tolen (0.04 sec)

  1. 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)
  2. 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)
  3. docs/en/docs/tutorial/security/first-steps.md

    !!! tip
        Here `tokenUrl="token"` refers to a relative URL `token` that we haven't created yet. As it's a relative URL, it's equivalent to `./token`.
    
        Because we are using a relative URL, if your API was located at `https://example.com/`, then it would refer to `https://example.com/token`. But if your API was located at `https://example.com/api/v1/`, then it would refer to `https://example.com/api/v1/token`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. docs/de/docs/tutorial/security/get-current-user.md

        ```Python hl_lines="25"
        {!> ../../../docs_src/security/tutorial002.py!}
        ```
    
    ## Den Benutzer holen
    
    `get_current_user` wird eine von uns erstellte (gefakte) Hilfsfunktion verwenden, welche einen Token vom Typ `str` entgegennimmt und unser Pydantic-`User`-Modell zurückgibt:
    
    === "Python 3.10+"
    
        ```Python hl_lines="19-22  26-27"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:08:05 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/execution/KotlinGrammar.kt

        val annotationMarker = token(AT) * notWhiteSpace()
    
        val simpleIdentifier by debug {
            symbol()
        }
    
        val label by debug {
            simpleIdentifier * token(AT)
        }
    
        val comparisonOperator by debug {
            token(LT) + token(GT) + token(LTEQ) + token(GTEQ)
        }
    
        val equalityOperator by debug {
            token(EXCLEQ) + token(EXCLEQEQEQ) + token(EQEQ) + token(EQEQEQ)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top