Search Options

Results per page
Sort
Preferred Languages
Advance

Results 381 - 390 of 513 for dictId (0.08 sec)

  1. docs/en/docs/advanced/templates.md

    ```
    
    ### Template Context Values
    
    In the HTML that contains:
    
    {% raw %}
    
    ```jinja
    Item ID: {{ id }}
    ```
    
    {% endraw %}
    
    ...it will show the `id` taken from the "context" `dict` you passed:
    
    ```Python
    {"id": id}
    ```
    
    For example, with an ID of `42`, this would render:
    
    ```html
    Item ID: 42
    ```
    
    ### Template `url_for` Arguments
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. docs_src/security/tutorial005_py39.py

        user = get_user(fake_db, username)
        if not user:
            return False
        if not verify_password(password, user.hashed_password):
            return False
        return user
    
    
    def create_access_token(data: dict, expires_delta: Union[timedelta, None] = None):
        to_encode = data.copy()
        if expires_delta:
            expire = datetime.now(timezone.utc) + expires_delta
        else:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/opensearch/extension/kuromoji/index/analysis/KuromojiTokenizerFactory.java

    import java.util.Set;
    
    import org.apache.lucene.analysis.Tokenizer;
    import org.apache.lucene.analysis.ja.JapaneseTokenizer;
    import org.apache.lucene.analysis.ja.JapaneseTokenizer.Mode;
    import org.apache.lucene.analysis.ja.dict.UserDictionary;
    import org.apache.lucene.analysis.util.CSVUtil;
    import org.opensearch.OpenSearchException;
    import org.opensearch.common.settings.Settings;
    import org.opensearch.env.Environment;
    Registered: Fri Nov 08 09:08:12 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  4. docs_src/security/tutorial004_an.py

        user = get_user(fake_db, username)
        if not user:
            return False
        if not verify_password(password, user.hashed_password):
            return False
        return user
    
    
    def create_access_token(data: dict, expires_delta: Union[timedelta, None] = None):
        to_encode = data.copy()
        if expires_delta:
            expire = datetime.now(timezone.utc) + expires_delta
        else:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/ResourceUtil.java

            return getPath("WEB-INF/", "view", names);
        }
    
        public static Path getDictionaryPath(final String... names) {
            return getPath("WEB-INF/", "dict", names);
        }
    
        public static Path getThumbnailPath(final String... names) {
            return getPath("WEB-INF/", "thumbnails", names);
        }
    
        public static Path getSitePath(final String... names) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Oct 24 08:52:32 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. docs/em/docs/features.md

    ### ๐Ÿ“
    
    โšซ๏ธ โœ”๏ธ ๐Ÿค” **๐Ÿ”ข** ๐ŸŒ, โฎ๏ธ ๐Ÿ“ฆ ๐Ÿ“ณ ๐ŸŒ. ๐ŸŒ ๐Ÿ”ข ๐Ÿ’ช ๐Ÿ‘Œ-๐ŸŽง โšซ๏ธโ” ๐Ÿ‘† ๐Ÿ’ช & ๐Ÿ”ฌ ๐Ÿ› ๏ธ ๐Ÿ‘† ๐Ÿ’ช.
    
    โœ‹๏ธ ๐Ÿ”ข, โšซ๏ธ ๐ŸŒ **"๐Ÿ‘ท"**.
    
    ### ๐Ÿ”ฌ
    
    * ๐Ÿ”ฌ ๐ŸŒ… (โš–๏ธ ๐ŸŒ โ“) ๐Ÿ **๐Ÿ’ฝ ๐Ÿ†Ž**, ๐Ÿ”Œ:
        * ๐ŸŽป ๐ŸŽš (`dict`).
        * ๐ŸŽป ๐ŸŽป (`list`) โš– ๐Ÿฌ ๐Ÿ†Ž.
        * ๐ŸŽป (`str`) ๐Ÿ‘, ๐Ÿ”ฌ ๐Ÿ•™ & ๐Ÿ‘Ÿ ๐Ÿ“.
        * ๐Ÿ”ข (`int`, `float`) โฎ๏ธ ๐Ÿ•™ & ๐Ÿ‘Ÿ ๐Ÿ’ฒ, โ™’๏ธ.
    
    * ๐Ÿ”ฌ ๐ŸŒ… ๐Ÿ˜ ๐Ÿ†Ž, ๐Ÿ’–:
        * ๐Ÿ“›.
        * ๐Ÿ“ง.
        * ๐Ÿ†”.
        * ...& ๐ŸŽ.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 8K bytes
    - Viewed (0)
  7. docs_src/security/tutorial005_py310.py

        user = get_user(fake_db, username)
        if not user:
            return False
        if not verify_password(password, user.hashed_password):
            return False
        return user
    
    
    def create_access_token(data: dict, expires_delta: timedelta | None = None):
        to_encode = data.copy()
        if expires_delta:
            expire = datetime.now(timezone.utc) + expires_delta
        else:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. docs/ko/docs/advanced/events.md

    ///
    
    ## `startup` ์ด๋ฒคํŠธ
    
    ์‘์šฉ ํ”„๋กœ๊ทธ๋žจ์„ ์‹œ์ž‘ํ•˜๊ธฐ ์ „์— ์‹คํ–‰ํ•˜๋ ค๋Š” ํ•จ์ˆ˜๋ฅผ "startup" ์ด๋ฒคํŠธ๋กœ ์„ ์–ธํ•ฉ๋‹ˆ๋‹ค:
    
    ```Python hl_lines="8"
    {!../../docs_src/events/tutorial001.py!}
    ```
    
    ์ด ๊ฒฝ์šฐ `startup` ์ด๋ฒคํŠธ ํ•ธ๋“ค๋Ÿฌ ํ•จ์ˆ˜๋Š” ๋‹จ์ˆœํžˆ ๋ช‡ ๊ฐ€์ง€ ๊ฐ’์œผ๋กœ ๊ตฌ์„ฑ๋œ `dict` ํ˜•์‹์˜ "๋ฐ์ดํ„ฐ๋ฒ ์ด์Šค"๋ฅผ ์ดˆ๊ธฐํ™”ํ•ฉ๋‹ˆ๋‹ค.
    
    ํ•˜๋‚˜ ์ด์ƒ์˜ ์ด๋ฒคํŠธ ํ•ธ๋“ค๋Ÿฌ ํ•จ์ˆ˜๋ฅผ ์ถ”๊ฐ€ํ•  ์ˆ˜๋„ ์žˆ์Šต๋‹ˆ๋‹ค.
    
    ๊ทธ๋ฆฌ๊ณ  ์‘์šฉ ํ”„๋กœ๊ทธ๋žจ์€ ๋ชจ๋“  `startup` ์ด๋ฒคํŠธ ํ•ธ๋“ค๋Ÿฌ๊ฐ€ ์™„๋ฃŒ๋  ๋•Œ๊นŒ์ง€ ์š”์ฒญ์„ ๋ฐ›์ง€ ์•Š์Šต๋‹ˆ๋‹ค.
    
    ## `shutdown` ์ด๋ฒคํŠธ
    
    ์‘์šฉ ํ”„๋กœ๊ทธ๋žจ์ด ์ข…๋ฃŒ๋  ๋•Œ ์‹คํ–‰ํ•˜๋ ค๋Š” ํ•จ์ˆ˜๋ฅผ ์ถ”๊ฐ€ํ•˜๋ ค๋ฉด `"shutdown"` ์ด๋ฒคํŠธ๋กœ ์„ ์–ธํ•ฉ๋‹ˆ๋‹ค:
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. docs/de/docs/advanced/settings.md

    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  10. docs/zh/docs/advanced/response-cookies.md

    # ๅ“ๅบ”Cookies
    
    ## ไฝฟ็”จ `Response` ๅ‚ๆ•ฐ
    
    ไฝ ๅฏไปฅๅœจ *่ทฏๅพ„ๅ‡ฝๆ•ฐ* ไธญๅฎšไน‰ไธ€ไธช็ฑปๅž‹ไธบ `Response`็š„ๅ‚ๆ•ฐ๏ผŒ่ฟ™ๆ ทไฝ ๅฐฑๅฏไปฅๅœจ่ฟ™ไธชไธดๆ—ถๅ“ๅบ”ๅฏน่ฑกไธญ่ฎพ็ฝฎcookieไบ†ใ€‚
    
    ```Python hl_lines="1  8-9"
    {!../../docs_src/response_cookies/tutorial002.py!}
    ```
    
    ่€Œไธ”ไฝ ่ฟ˜ๅฏไปฅๆ นๆฎไฝ ็š„้œ€่ฆๅ“ๅบ”ไธๅŒ็š„ๅฏน่ฑก๏ผŒๆฏ”ๅฆ‚ๅธธ็”จ็š„ `dict`๏ผŒๆ•ฐๆฎๅบ“model็ญ‰ใ€‚
    
    ๅฆ‚ๆžœไฝ ๅฎšไน‰ไบ† `response_model`๏ผŒ็จ‹ๅบไผš่‡ชๅŠจๆ นๆฎ`response_model`ๆฅ่ฟ‡ๆปคๅ’Œ่ฝฌๆขไฝ ๅ“ๅบ”็š„ๅฏน่ฑกใ€‚
    
    **FastAPI** ไผšไฝฟ็”จ่ฟ™ไธช *ไธดๆ—ถ* ๅ“ๅบ”ๅฏน่ฑกๅŽป่ฃ…ๅœจ่ฟ™ไบ›cookiesไฟกๆฏ (ๅŒๆ ท่ฟ˜ๆœ‰headersๅ’Œ็Šถๆ€็ ็ญ‰ไฟกๆฏ), ๆœ€็ปˆไผšๅฐ†่ฟ™ไบ›ไฟกๆฏๅ’Œ้€š่ฟ‡`response_model`่ฝฌๅŒ–่ฟ‡็š„ๆ•ฐๆฎๅˆๅนถๅˆฐๆœ€็ปˆ็š„ๅ“ๅบ”้‡Œใ€‚
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top