Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 291 - 300 of 418 for Summary (0.13 seconds)

  1. docs/es/docs/tutorial/request-form-models.md

                "type": "extra_forbidden",
                "loc": ["body", "extra"],
                "msg": "Extra inputs are not permitted",
                "input": "Mr. Poopybutthole"
            }
        ]
    }
    ```
    
    ## Resumen { #summary }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 2.3K bytes
    - Click Count (0)
  2. tests/test_tutorial/test_additional_responses/test_tutorial004.py

                                            }
                                        }
                                    },
                                },
                            },
                            "summary": "Read Item",
                            "operationId": "read_item_items__item_id__get",
                            "parameters": [
                                {
                                    "required": True,
    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/zh/docs/tutorial/path-operation-configuration.md

    如果你的应用很大,可能会积累出很多标签,你会希望确保相关的*路径操作*始终使用相同的标签。
    
    这种情况下,把标签存放在 `Enum` 中会更合适。
    
    **FastAPI** 对此的支持与使用普通字符串相同:
    
    {* ../../docs_src/path_operation_configuration/tutorial002b_py310.py hl[1,8:10,13,18] *}
    
    ## 摘要和描述 { #summary-and-description }
    
    可以添加 `summary` 和 `description`:
    
    {* ../../docs_src/path_operation_configuration/tutorial003_py310.py hl[17:18] *}
    
    ## 从 docstring 获取描述 { #description-from-docstring }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 3.7K bytes
    - Click Count (0)
  4. tests/test_reponse_set_reponse_code_empty.py

            {
                "openapi": "3.1.0",
                "info": {"title": "FastAPI", "version": "0.1.0"},
                "paths": {
                    "/{id}": {
                        "delete": {
                            "summary": "Delete Deployment",
                            "operationId": "delete_deployment__id__delete",
                            "parameters": [
                                {
                                    "required": True,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  5. CHANGELOG/CHANGELOG-1.13.md

        * This keeps the behavior consistent with Docker integration, and fixes an issue that some container Prometheus metrics don't work when there are summary stats for multiple instances of the same pod.
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Thu May 05 13:44:43 GMT 2022
    - 273.1K bytes
    - Click Count (0)
  6. RELEASE.md

    tf.audio_summary, tf.image_summary with tf.summary.scalar, tf.summary.histogram,
    tf.summary.audio, tf.summary.image, respectively. The new summary ops take name
    rather than tag as their first argument, meaning summary ops now respect
    TensorFlow name scopes. * Replace tf.train.SummaryWriter and
    tf.train.SummaryWriterCache with tf.summary.FileWriter and
    tf.summary.FileWriterCache. * Removes RegisterShape from public API. Use C++
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Mon Mar 30 18:31:38 GMT 2026
    - 746.5K bytes
    - Click Count (3)
  7. tests/test_tutorial/test_body/test_tutorial004.py

                                            }
                                        }
                                    },
                                },
                            },
                            "summary": "Update Item",
                            "operationId": "update_item_items__item_id__put",
                            "requestBody": {
                                "content": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 6.6K bytes
    - Click Count (0)
  8. docs/tr/docs/tutorial/path-operation-configuration.md

    **FastAPI** bunu düz string’lerde olduğu gibi aynı şekilde destekler:
    
    {* ../../docs_src/path_operation_configuration/tutorial002b_py310.py hl[1,8:10,13,18] *}
    
    ## Özet ve açıklama { #summary-and-description }
    
    Bir `summary` ve `description` ekleyebilirsiniz:
    
    {* ../../docs_src/path_operation_configuration/tutorial003_py310.py hl[17:18] *}
    
    ## Docstring’den Açıklama { #description-from-docstring }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  9. tests/test_tutorial/test_body_nested_models/test_tutorial009.py

                                            }
                                        }
                                    },
                                },
                            },
                            "summary": "Create Index Weights",
                            "operationId": "create_index_weights_index_weights__post",
                            "requestBody": {
                                "content": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Feb 12 13:19:43 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  10. docs/fr/docs/how-to/extending-openapi.md

    * `summary` : Un court résumé de l'API.
    * `description` : La description de votre API ; elle peut inclure du markdown et sera affichée dans la documentation.
    * `routes` : Une liste de routes ; chacune correspond à un *chemin d'accès* enregistré. Elles sont extraites de `app.routes`.
    
    /// info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.7K bytes
    - Click Count (0)
Back to Top