Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for 911 (0.12 sec)

  1. docs/ru/docs/tutorial/request-forms-and-files.md

    === "Python 3.9+"
    
        ```Python hl_lines="10-12"
        {!> ../../../docs_src/request_forms_and_files/tutorial001_an_py39.py!}
        ```
    
    === "Python 3.6+"
    
        ```Python hl_lines="9-11"
        {!> ../../../docs_src/request_forms_and_files/tutorial001_an.py!}
        ```
    
    === "Python 3.6+ без Annotated"
    
        !!! tip "Подсказка"
            Предпочтительнее использовать версию с аннотацией, если это возможно.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. docs/en/docs/tutorial/request-forms-and-files.md

    === "Python 3.9+"
    
        ```Python hl_lines="10-12"
        {!> ../../../docs_src/request_forms_and_files/tutorial001_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="9-11"
        {!> ../../../docs_src/request_forms_and_files/tutorial001_an.py!}
        ```
    
    === "Python 3.8+ non-Annotated"
    
        !!! tip
            Prefer to use the `Annotated` version if possible.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Mar 13 19:02:19 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/request-forms-and-files.md

    === "Python 3.9+"
    
        ```Python hl_lines="10-12"
        {!> ../../../docs_src/request_forms_and_files/tutorial001_an_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="9-11"
        {!> ../../../docs_src/request_forms_and_files/tutorial001_an.py!}
        ```
    
    === "Python 3.8+ nicht annotiert"
    
        !!! tip "Tipp"
            Bevorzugen Sie die `Annotated`-Version, falls möglich.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:07:35 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. docs/em/docs/advanced/testing-database.md

    💯, 👆 💪 ⚙️ 🔗 🔐 📨 👆 *🛃* 💽 🎉 ↩️ 1️⃣ 👈 🔜 ⚙️ 🛎.
    
    👉 🖼 👥 🔜 ✍ 🍕 💽 🕴 💯.
    
    ## 📁 📊
    
    👥 ✍ 🆕 📁 `sql_app/tests/test_sql_app.py`.
    
    🆕 📁 📊 👀 💖:
    
    ``` hl_lines="9-11"
    .
    └── sql_app
        ├── __init__.py
        ├── crud.py
        ├── database.py
        ├── main.py
        ├── models.py
        ├── schemas.py
        └── tests
            ├── __init__.py
            └── test_sql_app.py
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Apr 01 09:26:04 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. docs/em/docs/tutorial/body-nested-models.md

    🌐 👈, 🎲 🐦.
    
    ### 🔬 📊
    
    🖼, 👥 💪 🔬 `Image` 🏷:
    
    === "🐍 3️⃣.6️⃣ & 🔛"
    
        ```Python hl_lines="9-11"
        {!> ../../../docs_src/body_nested_models/tutorial004.py!}
        ```
    
    === "🐍 3️⃣.9️⃣ & 🔛"
    
        ```Python hl_lines="9-11"
        {!> ../../../docs_src/body_nested_models/tutorial004_py39.py!}
        ```
    
    === "🐍 3️⃣.1️⃣0️⃣ & 🔛"
    
        ```Python hl_lines="7-9"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  6. docs/zh/docs/advanced/testing-database.md

    本章只是新添加了测试文件。
    
    正常的依赖项 `get_db()` 返回数据库会话。
    
    测试时使用覆盖依赖项返回自定义数据库会话代替正常的依赖项。
    
    本例中,要创建仅用于测试的临时数据库。
    
    ## 文件架构
    
    创建新文件 `sql_app/tests/test_sql_app.py`。
    
    因此,新的文件架构如下:
    
    ``` hl_lines="9-11"
    .
    └── sql_app
        ├── __init__.py
        ├── crud.py
        ├── database.py
        ├── main.py
        ├── models.py
        ├── schemas.py
        └── tests
            ├── __init__.py
            └── test_sql_app.py
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jan 28 18:09:26 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. docs/de/docs/tutorial/body-nested-models.md

        {!> ../../../docs_src/body_nested_models/tutorial004_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="9-11"
        {!> ../../../docs_src/body_nested_models/tutorial004_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="9-11"
        {!> ../../../docs_src/body_nested_models/tutorial004.py!}
        ```
    
    ### Das Kindmodell als Typ verwenden
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. src/internal/coverage/slicewriter/slw_test.go

    	rf(t, ws, []byte{2, 7})
    	sk(t, ws, -4, io.SeekEnd)
    	rf(t, ws, []byte{2, 7})
    	off := sk(t, ws, 0, io.SeekEnd)
    	sk(t, ws, off, io.SeekStart)
    
    	// seek back and overwrite
    	sk(t, ws, 1, io.SeekStart)
    	wf(t, ws, []byte{9, 11})
    	wpex = []byte{1, 9, 11, 8, 9}
    	sleq(t, ws.BytesWritten(), wpex)
    
    	// seeks on empty writer.
    	ws2 := &WriteSeeker{}
    	sk(t, ws2, 0, io.SeekStart)
    	sk(t, ws2, 0, io.SeekCurrent)
    	sk(t, ws2, 0, io.SeekEnd)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 26 12:44:26 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. platforms/jvm/scala/src/test/groovy/org/gradle/scala/compile/internal/ScalaCompileOptionsConfigurerTest.groovy

            8             | false             | '2.13.1'            | '-target:8'
            9             | false             | '2.13.1'            | '-target:9'
            11            | false             | '2.13.1'            | '-target:11'
            17            | false             | '2.13.1'            | '-target:17'
            17            | false             | '2.13.2'            | '-target:17'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. docs/ru/docs/tutorial/body-nested-models.md

        {!> ../../../docs_src/body_nested_models/tutorial004_py310.py!}
        ```
    
    === "Python 3.9+"
    
        ```Python hl_lines="9-11"
        {!> ../../../docs_src/body_nested_models/tutorial004_py39.py!}
        ```
    
    === "Python 3.8+"
    
        ```Python hl_lines="9-11"
        {!> ../../../docs_src/body_nested_models/tutorial004.py!}
        ```
    
    ### Использование вложенной модели в качестве типа
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top