Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 748 for token6 (0.05 sec)

  1. src/cmd/asm/internal/asm/pseudo_test.go

    1. // license that can be found in the LICENSE file.
    2.  
    3. package asm
    4.  
    5. import (
    6. "strings"
    7. "testing"
    8.  
    9. "cmd/asm/internal/lex"
    10. )
    11.  
    12. func tokenize(s string) [][]lex.Token {
    13. res := [][]lex.Token{}
    14. if len(s) == 0 {
    15. return res
    16. }
    17. for _, o := range strings.Split(s, ",") {
    18. res = append(res, lex.Tokenize(o))
    19. }
    20. return res
    21. }
    22.  
    23. 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)
  2. src/main/java/jcifs/pac/kerberos/KerberosRelevantAuthData.java

    1. private List<KerberosAuthData> authorizations;
    2.  
    3.  
    4. public KerberosRelevantAuthData ( byte[] token, Map<Integer, KerberosKey> keys ) throws PACDecodingException {
    5. ASN1Sequence authSequence;
    6. try {
    7. try ( ASN1InputStream stream = new ASN1InputStream(new ByteArrayInputStream(token)) ) {
    8. authSequence = ASN1Util.as(ASN1Sequence.class, stream);
    9. }
    10. }
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Mon Oct 02 12:02:06 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/pac/kerberos/KerberosTicket.java

    1.  
    2. public KerberosTicket ( byte[] token, byte apOptions, KerberosKey[] keys ) throws PACDecodingException {
    3. if ( token.length <= 0 )
    4. throw new PACDecodingException("Empty kerberos ticket");
    5.  
    6. ASN1Sequence sequence;
    7. try {
    8. try ( ASN1InputStream stream = new ASN1InputStream(new ByteArrayInputStream(token)) ) {
    9. 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)
  4. internal/config/identity/plugin/config.go

    1. minValidityDurationSeconds int = 900
    2. maxValidityDurationSeconds int = 365 * 24 * 3600
    3. )
    4.  
    5. // Authenticate authenticates the token with the external hook endpoint and
    6. // returns a parent user, max expiry duration for the authentication and a set
    7. // of claims.
    8. func (o *AuthNPlugin) Authenticate(roleArn arn.ARN, token string) (AuthNResponse, error) {
    9. if o == nil {
    10. return AuthNResponse{}, nil
    11. }
    12.  
    13. 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)
  5. src/main/resources/fess_indices/fess_config.access_token/access_token.json

    1. {
    2. "properties": {
    3. "name": {
    4. "type": "keyword"
    5. },
    6. "token": {
    7. "type": "keyword"
    8. },
    9. "permissions": {
    10. "type": "keyword"
    11. },
    12. "parameter_name" : {
    13. "type": "keyword"
    14. },
    15. "expiredTime": {
    16. "type": "long"
    17. },
    18. "createdBy": {
    19. "type": "keyword"
    20. },
    21. "createdTime": {
    22. "type": "long"
    23. },
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 529 bytes
    - Viewed (0)
  6. docs_src/header_params/tutorial003_an_py310.py

    1. from typing import Annotated
    2.  
    3. from fastapi import FastAPI, Header
    4.  
    5. app = FastAPI()
    6.  
    7.  
    8. @app.get("/items/")
    9. 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)
  7. .github/workflows/publish.yml

    1. release:
    2. types:
    3. - created
    4.  
    5. jobs:
    6. publish:
    7. runs-on: ubuntu-latest
    8. strategy:
    9. matrix:
    10. package:
    11. - fastapi
    12. - fastapi-slim
    13. permissions:
    14. id-token: write
    15. steps:
    16. - name: Dump GitHub context
    17. env:
    18. GITHUB_CONTEXT: ${{ toJson(github) }}
    19. run: echo "$GITHUB_CONTEXT"
    20. - uses: actions/checkout@v4
    21. - 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)
  8. internal/jwt/parser_test.go

    1. err = ParseWithStandardClaims(data.tokenString, &StandardClaims{}, []byte("HelloSecret"))
    2. }
    3.  
    4. if data.valid && err != nil {
    5. t.Errorf("Error while verifying token: %T:%v", err, err)
    6. }
    7.  
    8. if !data.valid && err == nil {
    9. t.Errorf("Invalid token passed validation")
    10. }
    11.  
    12. if data.errors != 0 {
    13. _, ok := err.(*jwt.ValidationError)
    14. 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)
  9. src/main/resources/fess_indices/fess/zh-cn/stopwords.txt

    1. # Punctuation tokens to remove
    2. ,
    3. .
    4. `
    5. -
    6. _
    7. =
    8. ?
    9. '
    10. |
    11. "
    12. (
    13. )
    14. {
    15. }
    16. [
    17. ]
    18. <
    19. >
    20. *
    21. #
    22. &
    23. ^
    24. $
    25. @
    26. !
    27. ~
    28. :
    29. ;
    30. +
    31. /
    32. \
    33. ·
    34. # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
    35.  
    36.  
    37. # 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)
  10. docs/em/docs/tutorial/security/get-current-user.md

    1. # 🤚 ⏮️ 👩‍💻
    2.  
    3. ⏮️ 📃 💂‍♂ ⚙️ (❔ 🧢 🔛 🔗 💉 ⚙️) 🤝 *➡ 🛠️ 🔢* `token` `str`:
    4.  
    5. ```Python hl_lines="10"
    6. {!../../docs_src/security/tutorial001.py!}
    7. ```
    8.  
    9. ✋️ 👈 🚫 👈 ⚠.
    10.  
    11. ➡️ ⚫️ 🤝 👥 ⏮️ 👩‍💻.
    12.  
    13. ## ✍ 👩‍💻 🏷
    14.  
    15. 🥇, ➡️ Pydantic 👩‍💻 🏷.
    16.  
    17. 🎏 🌌 👥 ⚙️ Pydantic 📣 💪, 👥 💪 ⚙️ ⚫️ 🙆 🙆:
    18.  
    19. //// tab | 🐍 3️⃣.6️⃣ &amp; 🔛
    20.  
    21. ```Python hl_lines="5 12-16"
    22. {!> ../../docs_src/security/tutorial002.py!}
    23. ```
    24.  
    25. ////
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 4.3K bytes
    - Viewed (0)
Back to top