Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 961 - 970 of 1,866 for toen (0.02 seconds)

  1. docs/fr/docs/project-generation.md

      - ๐Ÿฆ‡ Prise en charge du mode sombre.
    - ๐Ÿ‹ [Docker Compose](https://www.docker.com) pour le dรฉveloppement et la production.
    - ๐Ÿ”’ Hachage sรฉcurisรฉ des mots de passe par dรฉfaut.
    - ๐Ÿ”‘ Authentification JWT (JSON Web Token).
    - ๐Ÿ“ซ Rรฉcupรฉration de mot de passe par e-mail.
    - โœ… Tests avec [Pytest](https://pytest.org).
    - ๐Ÿ“ž [Traefik](https://traefik.io) comme proxy inverse / rรฉpartiteur de charge.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 2.2K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/Ordering.java

     * then reverse that result.
     *
     * <h3>Additional notes</h3>
     *
     * <p>Except as noted, the orderings returned by the factory methods of this class are serializable
     * if and only if the provided instances that back them are. For example, if {@code ordering} and
     * {@code function} can themselves be serialized, then {@code ordering.onResultOf(function)} can as
     * well.
     *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Feb 23 19:19:10 GMT 2026
    - 39.4K bytes
    - Click Count (0)
  3. docs/ko/docs/tutorial/security/simple-oauth2.md

    )
    ```
    
    /// info | ์ •๋ณด
    
    `**user_dict`์— ๋Œ€ํ•œ ์ž์„ธํ•œ ์„ค๋ช…์€ [**์ถ”๊ฐ€ ๋ชจ๋ธ** ๋ฌธ์„œ](../extra-models.md#about-user-in-dict)๋ฅผ ๋‹ค์‹œ ํ™•์ธํ•ด๋ณด์„ธ์š”.
    
    ///
    
    ## ํ† ํฐ ๋ฐ˜ํ™˜ํ•˜๊ธฐ { #return-the-token }
    
    `token` ์—”๋“œํฌ์ธํŠธ์˜ ์‘๋‹ต์€ JSON ๊ฐ์ฒด์—ฌ์•ผ ํ•ฉ๋‹ˆ๋‹ค.
    
    `token_type`์ด ์žˆ์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค. ์—ฌ๊ธฐ์„œ๋Š” "Bearer" ํ† ํฐ์„ ์‚ฌ์šฉํ•˜๋ฏ€๋กœ ํ† ํฐ ์œ ํ˜•์€ "`bearer`"์—ฌ์•ผ ํ•ฉ๋‹ˆ๋‹ค.
    
    ๊ทธ๋ฆฌ๊ณ  ์•ก์„ธ์Šค ํ† ํฐ์„ ํฌํ•จํ•˜๋Š” ๋ฌธ์ž์—ด๊ณผ ํ•จ๊ป˜ `access_token`์ด ์žˆ์–ด์•ผ ํ•ฉ๋‹ˆ๋‹ค.
    
    ์ด ๊ฐ„๋‹จํ•œ ์˜ˆ์ œ์—์„œ๋Š” ์™„์ „ํžˆ ์•ˆ์ „ํ•˜์ง€ ์•Š๊ณ , ๋™์ผํ•œ `username`์„ ํ† ํฐ์œผ๋กœ ๋ฐ˜ํ™˜ํ•ฉ๋‹ˆ๋‹ค.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

        }
    
        @Test
        public void test_constructor_withMessageAndCause() {
            // Test constructor with message and Exception cause
            String message = "SSO token validation error";
            Exception cause = new RuntimeException("Invalid token format");
            SsoProcessException exception = new SsoProcessException(message, cause);
    
            assertEquals(message, exception.getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  5. docs/docker/README.md

      -e "MINIO_ROOT_PASSWORD=wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY" \
      quay.io/minio/minio server /data --console-address ":9001"
    ```
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 8.2K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/transform/headers/InjectHeaders.java

        /**
         * @param headers The headers to inject
         * @param applyConditions a set of conditions that has to be satisfied in order to apply headers
         *                        If the Set is empty then headers are always applied.
         */
        public InjectHeaders(Map<String, String> headers, Set<Function<ObjectNode, Boolean>> applyConditions) {
            this.headers = headers;
            this.applyConditions = applyConditions;
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Jul 07 15:48:06 GMT 2021
    - 3K bytes
    - Click Count (0)
  7. cmd/api-errors.go

    	},
    	ErrInvalidToken: {
    		Code:           "InvalidTokenId",
    		Description:    "The security token included in the request is invalid",
    		HTTPStatusCode: http.StatusForbidden,
    	},
    	ErrNoTokenRevokeType: {
    		Code:           "InvalidArgument",
    		Description:    "No token revoke type specified and one could not be inferred from the request",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Apr 16 07:34:24 GMT 2025
    - 93K bytes
    - Click Count (3)
  8. LICENSES/vendor/cyphar.com/go-pathrs/LICENSE

    attempt to alter or restrict the recipients' rights in the Source Code
    Form.
    
    3.2. Distribution of Executable Form
    
    If You distribute Covered Software in Executable Form then:
    
    (a) such Covered Software must also be made available in Source Code
        Form, as described in Section 3.1, and You must inform recipients of
        the Executable Form how they can obtain a copy of such Source Code
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Nov 12 14:46:31 GMT 2025
    - 16.5K bytes
    - Click Count (0)
  9. docs/ko/docs/advanced/websockets.md

    ```
    
    </div>
    
    ๋ธŒ๋ผ์šฐ์ €์—์„œ [http://127.0.0.1:8000](http://127.0.0.1:8000)์„ ์—ฌ์„ธ์š”.
    
    ์—ฌ๊ธฐ์—์„œ ๋‹ค์Œ์„ ์„ค์ •ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    * ๊ฒฝ๋กœ์— ์‚ฌ์šฉ๋œ "Item ID".
    * ์ฟผ๋ฆฌ ๋งค๊ฐœ๋ณ€์ˆ˜๋กœ ์‚ฌ์šฉ๋œ "Token".
    
    /// tip | ํŒ
    
    ์ฟผ๋ฆฌ `token`์€ ์ข…์†์„ฑ์— ์˜ํ•ด ์ฒ˜๋ฆฌ๋ฉ๋‹ˆ๋‹ค.
    
    ///
    
    ์ด๋ ‡๊ฒŒ ํ•˜๋ฉด WebSocket์— ์—ฐ๊ฒฐํ•˜๊ณ  ๋ฉ”์‹œ์ง€๋ฅผ ์ „์†ก ๋ฐ ์ˆ˜์‹ ํ•  ์ˆ˜ ์žˆ์Šต๋‹ˆ๋‹ค:
    
    <img src="/img/tutorial/websockets/image05.png">
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  10. src/main/resources/fess_indices/fess/no/stopwords.txt

    ved
    fra
    du
    ut
    sin
    dem
    oss
    opp
    man
    kan
    hans
    hvor
    eller
    hva
    skal
    selv
    sjรธl
    her
    alle
    vil
    bli
    ble
    blei
    blitt
    kunne
    inn
    nรฅr
    vรฆre
    kom
    noen
    noe
    ville
    dere
    som
    deres
    kun
    ja
    etter
    ned
    skulle
    denne
    for
    deg
    si
    sine
    sitt
    mot
    รฅ
    meget
    hvorfor
    dette
    disse
    uten
    hvordan
    ingen
    din
    ditt
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 994 bytes
    - Click Count (0)
Back to Top