Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 386 for token2 (0.13 sec)

  1. docs/ja/docs/tutorial/header-params.md

    これらの場合、リストの型宣言を使用して定義することができます。
    
    重複したヘッダーのすべての値をPythonの`list`として受け取ることができます。
    
    例えば、複数回出現する可能性のある`X-Token`のヘッダを定義するには、以下のように書くことができます:
    
    {* ../../docs_src/header_params/tutorial003.py hl[9] *}
    
    もし、その*path operation*で通信する場合は、次のように2つのHTTPヘッダーを送信します:
    
    ```
    X-Token: foo
    X-Token: bar
    ```
    
    このレスポンスは以下のようになります:
    
    ```JSON
    {
        "X-Token values": [
            "bar",
            "foo"
        ]
    }
    ```
    
    ## まとめ
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. docs/ja/docs/tutorial/security/first-steps.md

    {* ../../docs_src/security/tutorial001.py hl[6] *}
    
    /// tip | 豆知識
    
    ここで、`tokenUrl="token"`は、まだ作成していない相対URL`token`を指します。相対URLなので、`./token`と同じです。
    
    相対URLを使っているので、APIが`https://example.com/`にある場合、`https://example.com/token`を参照します。しかし、APIが`https://example.com/api/v1/`にある場合は`https://example.com/api/v1/token`を参照することになります。
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/smb1/SmbSession.java

                                state = 0;
                                break;
                            }
    
                            try {
                                token = nctx.initSecContext(token, 0, token.length);
                            } catch (final SmbException se) {
                                /* We must close the transport or the server will be expecting a
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 20.7K bytes
    - Viewed (0)
  4. src/test/java/jcifs/spnego/SpnegoTokenTest.java

                return tok == null ? new byte[0] : tok;
            }
    
            @Override
            protected void parse(byte[] token) throws IOException {
                if (token == null) {
                    throw new IOException("token is null");
                }
                setMechanismToken(token);
                this.parsed = true;
            }
    
            boolean isParsed() {
                return parsed;
            }
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/AccessTokenDbm.java

                false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnToken = cci("token", "token", null, null, String.class, "token", null, false, false, false, "keyword",
                0, 0, null, null, false, null, null, null, null, null, false);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  6. 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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Dec 02 13:14:56 UTC 2021
    - 529 bytes
    - Viewed (0)
  7. src/main/resources/fess_indices/fess/zh-tw/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 Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 17 08:00:22 UTC 2017
    - 310 bytes
    - Viewed (0)
  8. .github/workflows/scorecard.yml

        runs-on: ubuntu-latest
        permissions:
          # Needed to upload the results to code-scanning dashboard.
          security-events: write
          # Needed to publish results and get a badge (see publish_results below).
          id-token: write
          # Uncomment the permissions below if installing in a private repository.
          # contents: read
          # actions: read
    
        steps:
          - name: "Checkout code"
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Sep 03 19:19:31 UTC 2025
    - 2.9K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/security/get-current-user.md

    {* ../../docs_src/security/tutorial002_an_py310.py hl[25] *}
    
    ## Get the user { #get-the-user }
    
    `get_current_user` will use a (fake) utility function we created, that takes a token as a `str` and returns our Pydantic `User` model:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 4K bytes
    - Viewed (0)
  10. docs/pt/docs/tutorial/security/get-current-user.md

    {* ../../docs_src/security/tutorial002_an_py310.py hl[19:22,26:27]...
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Jan 10 13:33:35 UTC 2025
    - 4.5K bytes
    - Viewed (0)
Back to top