Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 4311 - 4320 of 4,385 for cOm (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/en/docs/tutorial/bigger-applications.md

    Additionally, other tools might not be able to find it, for example the [VS Code Extension](../editor-support.md) or [FastAPI Cloud](https://fastapicloud.com), so it is recommended to use the `entrypoint` in `pyproject.toml`.
    
    ///
    
    ## Check the automatic API docs { #check-the-automatic-api-docs }
    
    Now, run your app:
    
    <div class="termy">
    
    ```console
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 07 09:29:03 GMT 2026
    - 19.2K bytes
    - Click Count (0)
  2. docs/ja/docs/advanced/advanced-dependencies.md

    このようにすると、セッションはデータベース接続を解放するため、他のリクエストがそれを使えるようになります。
    
    `yield` を持つ依存関係で早期終了が必要な別のユースケースがある場合は、あなたの具体的なユースケースと、なぜ `yield` を持つ依存関係の早期クローズが有益かを説明して、[GitHub Discussion の質問](https://github.com/fastapi/fastapi/discussions/new?category=questions)を作成してください。
    
    `yield` を持つ依存関係の早期クローズに納得できるユースケースがある場合は、早期クローズにオプトインする新しい方法を追加することを検討します。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  3. docs/ja/docs/advanced/custom-response.md

    この場合、*path operation* 関数からファイルパスを直接返せます。
    
    ## カスタムレスポンスクラス { #custom-response-class }
    
    `Response` を継承して、独自のカスタムレスポンスクラスを作成し、使用できます。
    
    例えば、[`orjson`](https://github.com/ijl/orjson) を特定の設定で使いたいとします。
    
    インデントされた整形済みJSONを返したいので、orjson のオプション `orjson.OPT_INDENT_2` を使いたいとします。
    
    `CustomORJSONResponse` を作成できます。主に必要なのは、`bytes` を返す `Response.render(content)` メソッドを作ることです:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 13.5K bytes
    - Click Count (0)
  4. src/test/java/jcifs/internal/TreeConnectResponseTest.java

    import org.junit.jupiter.api.Test;
    import org.mockito.Mock;
    import org.mockito.MockitoAnnotations;
    
    import jcifs.Configuration;
    import jcifs.internal.smb1.ServerMessageBlock;
    import jcifs.internal.smb1.com.SmbComTreeConnectAndXResponse;
    import jcifs.internal.smb2.tree.Smb2TreeConnectResponse;
    
    /**
     * Test class for TreeConnectResponse interface and its implementations.
     * Tests both SMB1 and SMB2 protocol implementations.
     */
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 24.9K bytes
    - Click Count (0)
  5. docs/fr/docs/advanced/security/oauth2-scopes.md

    * `users:read` ou `users:write` sont des exemples courants.
    * `instagram_basic` est utilisé par Facebook / Instagram.
    * `https://www.googleapis.com/auth/drive` est utilisé par Google.
    
    /// info
    
    Dans OAuth2, un « scope » est simplement une chaîne qui déclare une permission spécifique requise.
    
    Peu importe s’il contient d’autres caractères comme `:` ou si c’est une URL.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 15.5K bytes
    - Click Count (0)
  6. src/main/webapp/css/font-awesome.min.css

    /*!
     * Font Awesome Free 5.12.0 by @fontawesome - https://fontawesome.com
     * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 14 21:22:25 GMT 2019
    - 55.8K bytes
    - Click Count (2)
  7. src/main/webapp/js/admin/adminlte.min.js

    /*!
     * AdminLTE v3.2.0 (https://adminlte.io)
     * Copyright 2014-2022 Colorlib <https://colorlib.com>
     * Licensed under MIT (https://github.com/ColorlibHQ/AdminLTE/blob/master/LICENSE)
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 45.3K bytes
    - Click Count (0)
  8. src/main/webapp/js/admin/bootstrap.min.js

    /*!
      * Bootstrap v4.6.2 (https://getbootstrap.com/)
      * Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
      * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
      */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 61.1K bytes
    - Click Count (0)
  9. docs/fr/docs/tutorial/response-model.md

    {* ../../docs_src/response_model/tutorial002_py310.py hl[7,9] *}
    
    /// info | Info
    
    Pour utiliser `EmailStr`, installez d'abord [`email-validator`](https://github.com/JoshData/python-email-validator).
    
    Assurez-vous de créer un [environnement virtuel](../virtual-environments.md), de l'activer, puis de l'installer, par exemple :
    
    ```console
    $ pip install email-validator
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 18.1K bytes
    - Click Count (0)
  10. docs/zh-hant/docs/tutorial/query-params-str-validations.md

    若不使用 `Annotated`、改用「(舊式)預設值」寫法,你在沒有 FastAPI 的「其他地方」呼叫該函式時,就得「記得」傳入正確參數,否則值會和預期不同(例如會得到 `QueryInfo` 或類似的東西,而不是 `str`)。你的編輯器不會提示,Python 執行該函式時也不會抱怨,只有在內部操作失敗時才會出錯。
    
    因為 `Annotated` 可以有多個中繼資料註解,你甚至可以用同一個函式配合其他工具,例如 [Typer](https://typer.tiangolo.com/)。🚀
    
    ## 加入更多驗證 { #add-more-validations }
    
    你也可以加入 `min_length` 參數:
    
    {* ../../docs_src/query_params_str_validations/tutorial003_an_py310.py hl[10] *}
    
    ## 加入正規表示式 { #add-regular-expressions }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.8K bytes
    - Click Count (0)
Back to Top