Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 961 - 970 of 1,200 for PARAMETERS (0.05 seconds)

  1. docs/uk/docs/how-to/configure-swagger-ui.md

    Це налаштування змінить колірну тему підсвітки синтаксису:
    
    <img src="/img/tutorial/extending-openapi/image04.png">
    
    ## Змініть параметри Swagger UI за замовчуванням { #change-default-swagger-ui-parameters }
    
    FastAPI містить деякі параметри конфігурації за замовчуванням, що підходять для більшості випадків.
    
    Вони включають такі типові налаштування:
    
    {* ../../fastapi/openapi/docs.py ln[9:24] hl[18:24] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/tutorial/response-model.md

    這種情況下,你可以設定 `response_model=None` 來停用回應模型的產生:
    
    {* ../../docs_src/response_model/tutorial003_05_py310.py hl[7] *}
    
    這會讓 FastAPI 略過回應模型的產生,如此你就能使用任何你需要的回傳型別註解,而不會影響你的 FastAPI 應用程式。🤓
    
    ## 回應模型編碼參數 { #response-model-encoding-parameters }
    
    你的回應模型可能有預設值,例如:
    
    {* ../../docs_src/response_model/tutorial004_py310.py hl[9,11:12] *}
    
    * `description: Union[str, None] = None`(或在 Python 3.10 中的 `str | None = None`)預設為 `None`。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.5K bytes
    - Click Count (0)
  3. tests/test_repeated_dependency_schema.py

    def test_openapi_schema():
        response = client.get("/openapi.json")
        assert response.status_code == status.HTTP_200_OK
        actual_schema = response.json()
        assert (
            len(actual_schema["paths"]["/"]["get"]["parameters"]) == 1
        )  # primary goal of this test
        assert actual_schema == snapshot(
            {
                "components": {
                    "schemas": {
                        "HTTPValidationError": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 4K bytes
    - Click Count (0)
  4. docs/en/docs/async.md

    ### Sub-dependencies { #sub-dependencies }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 23.4K bytes
    - Click Count (0)
  5. LICENSE

    linked without the Library, or if the work is itself a library.  The
    threshold for this to be true is not precisely defined by law.
    
      If such an object file uses only numerical parameters, data
    structure layouts and accessors, and small macros and small inline
    functions (ten lines or less in length), then the use of the object
    file is unrestricted, regardless of whether it is legally a derivative
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Mon Jan 18 20:25:38 GMT 2016
    - 25.8K bytes
    - Click Count (0)
  6. docs/en/docs/deployment/docker.md

    ## Containers and Processes { #containers-and-processes }
    
    A **container image** normally includes in its metadata the default program or command that should be run when the **container** is started and the parameters to be passed to that program. Very similar to what would be if it was in the command line.
    
    When a **container** is started, it will run that command/program (although you can override it and make it run a different command/program).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 28.3K bytes
    - Click Count (1)
  7. docs/tr/docs/tutorial/header-params.md

    # Header Parametreleri { #header-parameters }
    
    `Query`, `Path` ve `Cookie` parametrelerini nasıl tanımlıyorsanız, Header parametrelerini de aynı şekilde tanımlayabilirsiniz.
    
    ## `Header`'ı Import Edin { #import-header }
    
    Önce `Header`'ı import edin:
    
    {* ../../docs_src/header_params/tutorial001_an_py310.py hl[3] *}
    
    ## `Header` Parametrelerini Tanımlayın { #declare-header-parameters }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 05 15:43:38 GMT 2026
    - 3.3K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/cookie-params.md

    # Cookie-Parameter { #cookie-parameters }
    
    Sie können Cookie-Parameter auf die gleiche Weise definieren wie `Query`- und `Path`-Parameter.
    
    ## `Cookie` importieren { #import-cookie }
    
    Importieren Sie zuerst `Cookie`:
    
    {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[3] *}
    
    ## `Cookie`-Parameter deklarieren { #declare-cookie-parameters }
    
    Deklarieren Sie dann die Cookie-Parameter mit derselben Struktur wie bei `Path` und `Query`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Sep 24 08:10:28 GMT 2025
    - 1.8K bytes
    - Click Count (0)
  9. docs/uk/docs/tutorial/cookie-params.md

    # Параметри кукі { #cookie-parameters }
    
    Ви можете визначати параметри кукі таким же чином, як визначаються параметри `Query` і `Path`.
    
    ## Імпорт `Cookie` { #import-cookie }
    
    Спочатку імпортуйте `Cookie`:
    
    {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[3] *}
    
    ## Визначення параметрів `Cookie` { #declare-cookie-parameters }
    
    Потім визначте параметри кукі, використовуючи таку ж конструкцію як для `Path` і `Query`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 12:42:01 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  10. docs/es/docs/tutorial/cookie-params.md

    # Parámetros de Cookie { #cookie-parameters }
    
    Puedes definir parámetros de Cookie de la misma manera que defines los parámetros `Query` y `Path`.
    
    ## Importar `Cookie` { #import-cookie }
    
    Primero importa `Cookie`:
    
    {* ../../docs_src/cookie_params/tutorial001_an_py310.py hl[3] *}
    
    ## Declarar parámetros de `Cookie` { #declare-cookie-parameters }
    
    Luego declara los parámetros de cookie usando la misma estructura que con `Path` y `Query`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Dec 16 16:33:45 GMT 2025
    - 1.7K bytes
    - Click Count (0)
Back to Top