Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 67 for deprecaten (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/de/docs/tutorial/path-operation-configuration.md

    ///
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## Eine *Pfadoperation* deprecaten { #deprecate-a-path-operation }
    
    Wenn Sie eine *Pfadoperation* als <abbr title="veraltet, obsolet: Es soll nicht mehr verwendet werden">deprecatet</abbr> kennzeichnen möchten, ohne sie zu entfernen, fügen Sie den Parameter `deprecated` hinzu:
    
    {* ../../docs_src/path_operation_configuration/tutorial006_py39.py hl[16] *}
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  2. docs/en/docs/tutorial/path-operation-configuration.md

    ## Deprecate a *path operation* { #deprecate-a-path-operation }
    
    If you need to mark a *path operation* as <abbr title="obsolete, recommended not to use it">deprecated</abbr>, but without removing it, pass the parameter `deprecated`:
    
    {* ../../docs_src/path_operation_configuration/tutorial006_py39.py hl[16] *}
    
    It will be clearly marked as deprecated in the interactive docs:
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  3. docs/es/docs/tutorial/path-operation-configuration.md

    ///
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## Deprecar una *path operation* { #deprecate-a-path-operation }
    
    Si necesitas marcar una *path operation* como <abbr title="obsoleta, se recomienda no usarla">deprecated</abbr>, pero sin eliminarla, pasa el parámetro `deprecated`:
    
    {* ../../docs_src/path_operation_configuration/tutorial006_py39.py hl[16] *}
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 4.3K bytes
    - Click Count (0)
  4. docs/de/docs/tutorial/query-params-str-validations.md

    ## Parameter als deprecatet ausweisen { #deprecating-parameters }
    
    Nehmen wir an, Ihnen gefällt dieser Parameter nicht mehr.
    
    Sie müssen ihn eine Weile dort belassen, da es Clients gibt, die ihn verwenden, aber Sie möchten, dass die Dokumentation ihn klar als <abbr title="veraltet, obsolet: Es soll nicht mehr verwendet werden">deprecatet</abbr> anzeigt.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 24 10:28:19 GMT 2025
    - 19.1K bytes
    - Click Count (0)
  5. docs/fr/llm-prompt.md

    * «the `Request`»: «`Request`» (keep as code identifier)
    * «the `Response`»: «`Response`» (keep as code identifier)
    
    * «deployment»: «déploiement»
    * «to upgrade»: «mettre à niveau»
    
    * «deprecated»: «déprécié»
    * «to deprecate»: «déprécier»
    
    * «cheat sheet»: «aide-mémoire»
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 10:41:43 GMT 2025
    - 4.1K bytes
    - Click Count (0)
  6. docs/ru/docs/tutorial/path-operation-configuration.md

    ///
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## Обозначение *операции пути* как устаревшей { #deprecate-a-path-operation }
    
    Если вам необходимо пометить *операцию пути* как <abbr title="устаревшее, не рекомендовано к использованию">устаревшую</abbr>, при этом не удаляя её, передайте параметр `deprecated`:
    
    {* ../../docs_src/path_operation_configuration/tutorial006_py39.py hl[16] *}
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 6.5K bytes
    - Click Count (0)
  7. docs/pt/docs/tutorial/path-operation-configuration.md

    ///
    
    <img src="/img/tutorial/path-operation-configuration/image03.png">
    
    ## Descontinuar uma *operação de rota* { #deprecate-a-path-operation }
    
    Se você precisar marcar uma *operação de rota* como <abbr title="obsoleta, recomendada não usá-la">descontinuada</abbr>, mas sem removê-la, passe o parâmetro `deprecated`:
    
    {* ../../docs_src/path_operation_configuration/tutorial006_py39.py hl[16] *}
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  8. CHANGELOG/CHANGELOG-1.34.md

     
    ## Changes by Kind
    
    ### Deprecation
    
    - Apimachinery: Deprecated `MessageCountMap` and `CreateAggregateFromMessageCountMap`. ([#132376](https://github.com/kubernetes/kubernetes/pull/132376), [@tico88612](https://github.com/tico88612))
    Created: Fri Dec 26 09:05:12 GMT 2025
    - Last Modified: Wed Dec 10 01:13:50 GMT 2025
    - 333.3K bytes
    - Click Count (2)
  9. docs/en/docs/tutorial/query-params-str-validations.md

    ## Deprecating parameters { #deprecating-parameters }
    
    Now let's say you don't like this parameter anymore.
    
    You have to leave it there a while because there are clients using it, but you want the docs to clearly show it as <abbr title="obsolete, recommended not to use it">deprecated</abbr>.
    
    Then pass the parameter `deprecated=True` to `Query`:
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 20 15:55:38 GMT 2025
    - 16.7K bytes
    - Click Count (0)
  10. fastapi/openapi/models.py

    from fastapi.logger import logger
    from pydantic import (
        AnyUrl,
        BaseModel,
        Field,
        GetJsonSchemaHandler,
    )
    from typing_extensions import Literal, TypedDict
    from typing_extensions import deprecated as typing_deprecated
    
    try:
        import email_validator
    
        assert email_validator  # make autoflake ignore the unused import
        from pydantic import EmailStr
    except ImportError:  # pragma: no cover
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Dec 27 12:54:56 GMT 2025
    - 15.1K bytes
    - Click Count (0)
Back to Top