- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 748 for token6 (0.05 sec)
-
src/cmd/asm/internal/asm/pseudo_test.go
- // license that can be found in the LICENSE file.
- package asm
- import (
- "strings"
- "testing"
- "cmd/asm/internal/lex"
- )
- func tokenize(s string) [][]lex.Token {
- res := [][]lex.Token{}
- if len(s) == 0 {
- return res
- }
- for _, o := range strings.Split(s, ",") {
- res = append(res, lex.Tokenize(o))
- }
- return res
- }
- func TestErroneous(t *testing.T) {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue Aug 29 07:48:38 UTC 2023 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosRelevantAuthData.java
- private List<KerberosAuthData> authorizations;
- public KerberosRelevantAuthData ( byte[] token, Map<Integer, KerberosKey> keys ) throws PACDecodingException {
- ASN1Sequence authSequence;
- try {
- try ( ASN1InputStream stream = new ASN1InputStream(new ByteArrayInputStream(token)) ) {
- authSequence = ASN1Util.as(ASN1Sequence.class, stream);
- }
- }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/pac/kerberos/KerberosTicket.java
- public KerberosTicket ( byte[] token, byte apOptions, KerberosKey[] keys ) throws PACDecodingException {
- if ( token.length <= 0 )
- throw new PACDecodingException("Empty kerberos ticket");
- ASN1Sequence sequence;
- try {
- try ( ASN1InputStream stream = new ASN1InputStream(new ByteArrayInputStream(token)) ) {
- sequence = ASN1Util.as(ASN1Sequence.class, stream);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Mon Oct 02 12:02:06 UTC 2023 - 5.7K bytes - Viewed (0) -
internal/config/identity/plugin/config.go
- minValidityDurationSeconds int = 900
- maxValidityDurationSeconds int = 365 * 24 * 3600
- )
- // Authenticate authenticates the token with the external hook endpoint and
- // returns a parent user, max expiry duration for the authentication and a set
- // of claims.
- func (o *AuthNPlugin) Authenticate(roleArn arn.ARN, token string) (AuthNResponse, error) {
- if o == nil {
- return AuthNResponse{}, nil
- }
- if roleArn != o.args.RoleARN {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 13.3K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.access_token/access_token.json
- {
- "properties": {
- "name": {
- "type": "keyword"
- },
- "token": {
- "type": "keyword"
- },
- "permissions": {
- "type": "keyword"
- },
- "parameter_name" : {
- "type": "keyword"
- },
- "expiredTime": {
- "type": "long"
- },
- "createdBy": {
- "type": "keyword"
- },
- "createdTime": {
- "type": "long"
- },
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 529 bytes - Viewed (0) -
docs_src/header_params/tutorial003_an_py310.py
- from typing import Annotated
- from fastapi import FastAPI, Header
- app = FastAPI()
- @app.get("/items/")
- async def read_items(x_token: Annotated[list[str] | None, Header()] = None):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 221 bytes - Viewed (0) -
.github/workflows/publish.yml
- release:
- types:
- - created
- jobs:
- publish:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- package:
- - fastapi
- - fastapi-slim
- permissions:
- id-token: write
- steps:
- - name: Dump GitHub context
- env:
- GITHUB_CONTEXT: ${{ toJson(github) }}
- run: echo "$GITHUB_CONTEXT"
- - uses: actions/checkout@v4
- - name: Set up Python
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Nov 01 11:19:50 UTC 2024 - 1K bytes - Viewed (0) -
internal/jwt/parser_test.go
- err = ParseWithStandardClaims(data.tokenString, &StandardClaims{}, []byte("HelloSecret"))
- }
- if data.valid && err != nil {
- t.Errorf("Error while verifying token: %T:%v", err, err)
- }
- if !data.valid && err == nil {
- t.Errorf("Invalid token passed validation")
- }
- if data.errors != 0 {
- _, ok := err.(*jwt.ValidationError)
- if !ok {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Nov 05 19:20:08 UTC 2021 - 6K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/zh-cn/stopwords.txt
- # Punctuation tokens to remove
- ,
- .
- `
- -
- _
- =
- ?
- '
- |
- "
- (
- )
- {
- }
- [
- ]
- <
- >
- *
- #
- &
- ^
- $
- @
- !
- ~
- :
- ;
- +
- /
- \
- 《
- 》
- —
- -
- ,
- 。
- 、
- :
- ;
- !
- ·
- ?
- “
- ”
- )
- (
- 【
- 】
- [
- ]
- ●
- # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
- # English Stop Words
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Jun 17 08:00:22 UTC 2017 - 310 bytes - Viewed (0) -
docs/em/docs/tutorial/security/get-current-user.md
- # 🤚 ⏮️ 👩💻
- ⏮️ 📃 💂♂ ⚙️ (❔ 🧢 🔛 🔗 💉 ⚙️) 🤝 *➡ 🛠️ 🔢* `token` `str`:
- ```Python hl_lines="10"
- {!../../docs_src/security/tutorial001.py!}
- ```
- ✋️ 👈 🚫 👈 ⚠.
- ➡️ ⚒ ⚫️ 🤝 👥 ⏮️ 👩💻.
- ## ✍ 👩💻 🏷
- 🥇, ➡️ ✍ Pydantic 👩💻 🏷.
- 🎏 🌌 👥 ⚙️ Pydantic 📣 💪, 👥 💪 ⚙️ ⚫️ 🙆 🙆:
- //// tab | 🐍 3️⃣.6️⃣ & 🔛
- ```Python hl_lines="5 12-16"
- {!> ../../docs_src/security/tutorial002.py!}
- ```
- ////
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.3K bytes - Viewed (0)