Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 3,536 for Commons (0.17 seconds)

  1. .teamcity/src/test/kotlin/Commons.kt

    Christoph Obexer <******@****.***> 1749718797 +0200
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jun 12 09:41:54 GMT 2025
    - 662 bytes
    - Click Count (0)
  2. docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md

    ```Python
    commons: Annotated[Any, Depends(CommonQueryParams)]
    ```
    
    ////
    
    //// tab | Python 3.10+ Annotated 미사용
    
    /// tip | 팁
    
    가능하다면 `Annotated` 버전을 사용하는 것을 권장합니다.
    
    ///
    
    ```Python
    commons = Depends(CommonQueryParams)
    ```
    
    ////
    
    ...다음과 같이요:
    
    {* ../../docs_src/dependencies/tutorial003_an_py310.py hl[19] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:57:01 GMT 2026
    - 8K bytes
    - Click Count (0)
  3. docs/zh/docs/tutorial/dependencies/classes-as-dependencies.md

    //// tab | Python 3.10+
    
    ```Python
    commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]
    ```
    
    ////
    
    //// tab | Python 3.10+ 未使用 Annotated
    
    /// tip | 提示
    
    尽可能使用 `Annotated` 版本。
    
    ///
    
    ```Python
    commons: CommonQueryParams = Depends(CommonQueryParams)
    ```
    
    ////
    
    ...而是这样写:
    
    //// tab | Python 3.10+
    
    ```Python
    commons: Annotated[CommonQueryParams, Depends()]
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:37:57 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/dependencies/classes-as-dependencies.md

    ## Type annotation vs `Depends` { #type-annotation-vs-depends }
    
    Notice how we write `CommonQueryParams` twice in the above code:
    
    //// tab | Python 3.10+
    
    ```Python
    commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]
    ```
    
    ////
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 11 18:32:12 GMT 2026
    - 6.8K bytes
    - Click Count (0)
  5. docs/ja/docs/tutorial/dependencies/classes-as-dependencies.md

    commons: Annotated[Any, Depends(CommonQueryParams)]
    ```
    
    ////
    
    //// tab | Python 3.10+ 注釈なし
    
    /// tip | 豆知識
    
    可能であれば`Annotated`バージョンを使用することを推奨します。
    
    ///
    
    ```Python
    commons = Depends(CommonQueryParams)
    ```
    
    ////
    
    以下にあるように:
    
    {* ../../docs_src/dependencies/tutorial003_an_py310.py hl[19] *}
    
    しかし、型を宣言することは推奨されています。そうすれば、エディタは`commons`のパラメータとして何が渡されるかを知ることができ、コードの補完や型チェックなどを行うのに役立ちます:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 15:24:30 GMT 2026
    - 8.8K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/dependencies/classes-as-dependencies.md

    ```Python
    commons: Annotated[CommonQueryParams, Depends(CommonQueryParams)]
    ```
    
    ////
    
    //// tab | Python 3.10+ 非 Annotated
    
    /// tip
    
    如有可能,優先使用 `Annotated` 版本。
    
    ///
    
    ```Python
    commons: CommonQueryParams = Depends(CommonQueryParams)
    ```
    
    ////
    
    ...而是改為:
    
    //// tab | Python 3.10+
    
    ```Python
    commons: Annotated[CommonQueryParams, Depends()]
    ```
    
    ////
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:15:26 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  7. docs_src/dependencies/tutorial001_02_an_py310.py

    
    CommonsDep = Annotated[dict, Depends(common_parameters)]
    
    
    @app.get("/items/")
    async def read_items(commons: CommonsDep):
        return commons
    
    
    @app.get("/users/")
    async def read_users(commons: CommonsDep):
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 18 12:29:59 GMT 2023
    - 447 bytes
    - Click Count (0)
  8. docs_src/dependency_testing/tutorial001_an_py310.py

    
    @app.get("/items/")
    async def read_items(commons: Annotated[dict, Depends(common_parameters)]):
        return {"message": "Hello Items!", "params": commons}
    
    
    @app.get("/users/")
    async def read_users(commons: Annotated[dict, Depends(common_parameters)]):
        return {"message": "Hello Users!", "params": commons}
    
    
    client = TestClient(app)
    
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Mar 18 12:29:59 GMT 2023
    - 1.5K bytes
    - Click Count (0)
  9. docs/LICENSE

    =======================================================================
    
    Creative Commons Corporation ("Creative Commons") is not a law firm and
    does not provide legal services or legal advice. Distribution of
    Creative Commons public licenses does not create a lawyer-client or
    other relationship. Creative Commons makes its licenses and related
    information available on an "as-is" basis. Creative Commons gives no
    warranties regarding its licenses, any material licensed under their
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Mon May 10 16:50:06 GMT 2021
    - 18.2K bytes
    - Click Count (0)
  10. .idea/gradle.xml

                  <build path="$PROJECT_DIR$/build-logic-commons" name="build-logic-commons">
                    <projects>
                      <project path="$PROJECT_DIR$/build-logic-commons" />
                      <project path="$PROJECT_DIR$/build-logic-commons/basics" />
                      <project path="$PROJECT_DIR$/build-logic-commons/build-platform" />
                      <project path="$PROJECT_DIR$/build-logic-commons/code-quality-rules" />
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 10:18:20 GMT 2026
    - 25.5K bytes
    - Click Count (0)
Back to Top