Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 187 for decorate (0.1 seconds)

  1. android/guava/src/com/google/common/collect/ForwardingNavigableMap.java

     * override one or more methods to modify the behavior of the backing map as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingNavigableMap} forward <i>indiscriminately</i>
     * to the methods of the delegate. For example, overriding {@link #put} alone <i>will not</i> change
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 14.1K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/ForwardingNavigableMap.java

     * override one or more methods to modify the behavior of the backing map as desired per the <a
     * href="http://en.wikipedia.org/wiki/Decorator_pattern">decorator pattern</a>.
     *
     * <p><b>Warning:</b> The methods of {@code ForwardingNavigableMap} forward <i>indiscriminately</i>
     * to the methods of the delegate. For example, overriding {@link #put} alone <i>will not</i> change
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 14.3K bytes
    - Click Count (0)
  3. docs/es/docs/tutorial/handling-errors.md

    Y también incluye un manejador de excepciones predeterminado para ello.
    
    Para sobrescribirlo, importa el `RequestValidationError` y úsalo con `@app.exception_handler(RequestValidationError)` para decorar el manejador de excepciones.
    
    El manejador de excepciones recibirá un `Request` y la excepción.
    
    {* ../../docs_src/handling_errors/tutorial004_py310.py hl[2,14:19] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  4. docs/pt/docs/tutorial/handling-errors.md

    E também inclui um manipulador de exceções padrão para ele.
    
    Para sobrescrevê-lo, importe o `RequestValidationError` e use-o com o `@app.exception_handler(RequestValidationError)` para decorar o manipulador de exceções.
    
    O manipulador de exceções receberá um `Request` e a exceção.
    
    {* ../../docs_src/handling_errors/tutorial004_py310.py hl[2,14:19] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  5. docs/zh/docs/_llm-test.md

    * to serve the application
    * to serve the page
    
    * the app
    * the application
    
    * the request
    * the response
    * the error response
    
    * the path operation
    * the path operation decorator
    * the path operation function
    
    * the body
    * the request body
    * the response body
    * the JSON body
    * the form body
    * the file body
    * the function body
    
    * the parameter
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 10.7K bytes
    - Click Count (0)
  6. docs/fr/docs/tutorial/dependencies/index.md

    C’est tout.
    
    **2 lignes**.
    
    Et elle a la même forme et structure que toutes vos fonctions de chemins d’accès.
    
    Vous pouvez la considérer comme une fonction de chemin d’accès sans le « décorateur » (sans le `@app.get("/some-path")`).
    
    Et elle peut retourner tout ce que vous voulez.
    
    Dans ce cas, cette dépendance attend :
    
    * Un paramètre de requête optionnel `q` qui est une `str`.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  7. fastapi/.agents/skills/fastapi/SKILL.md

    ### When to use `response_model` instead
    
    If the return type is not the same as the type that you want to use to validate, filter, or serialize, use the `response_model` parameter on the decorator instead.
    
    ```python
    from typing import Any
    
    from fastapi import FastAPI
    from pydantic import BaseModel
    
    app = FastAPI()
    
    
    class Item(BaseModel):
        name: str
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 10.1K bytes
    - Click Count (0)
  8. tests/test_application.py

                                    "content": {"application/json": {"schema": {}}},
                                }
                            },
                            "summary": "Non Decorated Route",
                            "operationId": "non_decorated_route_non_decorated_route_get",
                        }
                    },
                    "/text": {
                        "get": {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 08 10:18:38 GMT 2026
    - 56.9K bytes
    - Click Count (0)
  9. docs/fr/docs/_llm-test.md

    * insensible à la casse
    
    * servir l’application
    * servir la page
    
    * l’app
    * l’application
    
    * la requête
    * la réponse
    * la réponse d’erreur
    
    * le chemin d’accès
    * le décorateur de chemin d’accès
    * la fonction de chemin d’accès
    
    * le corps
    * le corps de la requête
    * le corps de la réponse
    * le corps JSON
    * le corps de formulaire
    * le corps de fichier
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  10. docs/ru/docs/advanced/security/oauth2-scopes.md

    Но в итоге они реализуют один и тот же стандарт OAuth2.
    
    ///
    
    **FastAPI** включает утилиты для всех этих OAuth2‑flows в `fastapi.security.oauth2`.
    
    ## `Security` в параметре `dependencies` декоратора { #security-in-decorator-dependencies }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 20.6K bytes
    - Click Count (0)
Back to Top