Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 386 for token3 (0.06 sec)

  1. src/main/java/org/codelibs/fess/api/engine/SearchEngineApiManager.java

         * Gets the server path with access token for API requests.
         *
         * @return the complete server path including the access token
         * @throws FessSystemException if no access token is available
         */
        public String getServerPath() {
            return getSessionManager().getAttribute(Constants.SEARCH_ENGINE_API_ACCESS_TOKEN, String.class)
                    .map(token -> ADMIN_SERVER + token)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/pac/kerberos/KerberosRelevantAuthData.java

        /**
         * Constructs KerberosRelevantAuthData from token bytes.
         *
         * @param token the authorization data token
         * @param keys map of Kerberos keys indexed by key type
         * @throws PACDecodingException if decoding fails
         */
        public KerberosRelevantAuthData(byte[] token, Map<Integer, KerberosKey> keys) throws PACDecodingException {
            ASN1Sequence authSequence;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 3K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java

            int byteCountValue = 16 + 10; // guid + token
            setByteCount(response, byteCountValue);
            byte[] buffer = new byte[byteCountValue];
            byte[] guid = new byte[16];
            for (int i = 0; i < 16; i++) {
                guid[i] = (byte) i;
            }
            System.arraycopy(guid, 0, buffer, 0, 16);
            byte[] token = new byte[10];
            for (int i = 0; i < 10; i++) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  4. docs/ko/docs/tutorial/header-params.md

    타입 정의에서 리스트를 사용하여 이러한 케이스를 정의할 수 있습니다.
    
    중복 헤더의 모든 값을 파이썬 `list`로 수신합니다.
    
    예를 들어, 두 번 이상 나타날 수 있는 `X-Token`헤더를 선언하려면, 다음과 같이 작성합니다:
    
    {* ../../docs_src/header_params/tutorial003.py hl[9] *}
    
    다음과 같은 두 개의 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.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/kerberos/KerberosEncData.java

        /**
         * Constructs KerberosEncData from encrypted token bytes.
         *
         * @param token the encrypted Kerberos token
         * @param keys map of encryption keys indexed by key type
         * @throws PACDecodingException if decoding fails
         */
        public KerberosEncData(byte[] token, Map<Integer, KerberosKey> keys) throws PACDecodingException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 12.5K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/dict/kuromoji/admin_dict_kuromoji_edit.jsp

                                        <label for="token" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.dict_kuromoji_token"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="token"/>
                                            <la:text styleId="token" property="token" styleClass="form-control"/>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Wed Feb 12 20:25:27 UTC 2020
    - 8.6K bytes
    - Viewed (0)
  7. .github/workflows/latest-changes.yml

            env:
              GITHUB_CONTEXT: ${{ toJson(github) }}
            run: echo "$GITHUB_CONTEXT"
          - uses: actions/checkout@v5
            with:
              # To allow latest-changes to commit to the main branch
              token: ${{ secrets.FASTAPI_LATEST_CHANGES }}
          # Allow debugging with tmate
          - name: Setup tmate session
            uses: mxschmitt/action-tmate@v3
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Aug 15 21:44:06 UTC 2025
    - 1.3K bytes
    - Viewed (1)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/accesstoken/EditBody.java

    import org.codelibs.fess.app.web.admin.accesstoken.EditForm;
    
    /**
     * Request body class for access token edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for access token management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
        public EditBody() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  9. src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java

        }
    
        @Test
        @DisplayName("createContext: no Kerberos in initial token and no fallback -> throws")
        void createContext_noKerberosNoFallback_throws() throws CIFSException {
            Kerb5Authenticator auth = new Kerb5Authenticator((Subject) null);
    
            // Build a token with an arbitrary non-kerberos mechanism OID
            ASN1ObjectIdentifier unsupported = new ASN1ObjectIdentifier("1.2.3.4.5");
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  10. 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)
Back to top