Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 671 - 680 of 1,014 for APPLICATION (1.26 seconds)

  1. tests/test_additional_properties_bool.py

                                    "content": {"application/json": {"schema": {}}},
                                },
                                "422": {
                                    "description": "Validation Error",
                                    "content": {
                                        "application/json": {
                                            "schema": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Feb 17 09:59:14 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  2. tests/test_tutorial/test_additional_responses/test_tutorial004.py

                                    "description": "Successful Response",
                                    "content": {
                                        "image/png": {},
                                        "application/json": {
                                            "schema": {"$ref": "#/components/schemas/Item"}
                                        },
                                    },
                                },
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 27 10:53:47 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  3. docs/fr/docs/advanced/additional-responses.md

                "content": {
                    "application/json": {
                        "schema": {
                            "$ref": "#/components/schemas/Message"
                        }
                    }
                }
            },
            "200": {
                "description": "Successful Response",
                "content": {
                    "application/json": {
                        "schema": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  4. docs/fr/docs/how-to/custom-docs-ui-assets.md

    Héberger vous‑même le JavaScript et le CSS peut être utile si, par exemple, votre application doit continuer de fonctionner même hors ligne, sans accès Internet ouvert, ou sur un réseau local.
    
    Vous verrez ici comment servir ces fichiers vous‑même, dans la même application FastAPI, et configurer les docs pour les utiliser.
    
    ### Structure des fichiers du projet { #project-file-structure }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  5. docs/fr/docs/advanced/openapi-callbacks.md

    ## Une application avec des callbacks { #an-app-with-callbacks }
    
    Voyons tout cela avec un exemple.
    
    Imaginez que vous développiez une application qui permet de créer des factures.
    
    Ces factures auront un `id`, un `title` (facultatif), un `customer` et un `total`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  6. tests/test_tutorial/test_body/test_tutorial003.py

                                    "content": {"application/json": {"schema": {}}},
                                },
                                "422": {
                                    "description": "Validation Error",
                                    "content": {
                                        "application/json": {
                                            "schema": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 6.1K bytes
    - Click Count (0)
  7. tests/test_tutorial/test_additional_responses/test_tutorial001.py

                            "responses": {
                                "404": {
                                    "description": "Not Found",
                                    "content": {
                                        "application/json": {
                                            "schema": {
                                                "$ref": "#/components/schemas/Message"
                                            }
                                        }
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  8. docs/tr/docs/deployment/https.md

    HTTPS’i bir proxy ile yönetirken, **application server**’ınız (örneğin FastAPI CLI üzerinden Uvicorn) HTTPS süreci hakkında hiçbir şey bilmez; **TLS Termination Proxy** ile düz HTTP üzerinden iletişim kurar.
    
    Bu **proxy** normalde request’i **application server**’a iletmeden önce, request’in proxy tarafından **forward** edildiğini application server’a bildirmek için bazı HTTP header’larını anlık olarak ekler.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  9. CHANGELOG/CHANGELOG-1.10.md

        <td>GET /swagger.json</td>
        <td>GET /openapi/v2
    Accept: application/json</td>
      </tr>
      <tr>
        <td>GET /swagger-2.0.0.pb-v1</td>
        <td>GET /openapi/v2
    Accept: application/com.github.proto-openapi.spec.v2@v1.0+protobuf</td>
      </tr>
      <tr>
        <td>GET /swagger-2.0.0.pb-v1.gz</td>
        <td>GET /openapi/v2
    Accept: application/com.github.proto-openapi.spec.v2@v1.0+protobuf Accept-Encoding: gzip</td>
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 341.8K bytes
    - Click Count (0)
  10. docs/fr/docs/deployment/versions.md

    La première chose que vous devez faire est « épingler » la version de **FastAPI** que vous utilisez à la dernière version spécifique dont vous savez qu’elle fonctionne correctement pour votre application.
    
    Par exemple, disons que vous utilisez la version `0.112.0` dans votre application.
    
    Si vous utilisez un fichier `requirements.txt`, vous pouvez spécifier la version avec :
    
    ```txt
    fastapi[standard]==0.112.0
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 4.2K bytes
    - Click Count (0)
Back to Top