Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for solve_dependencies (0.16 sec)

  1. fastapi/dependencies/utils.py

        values: dict[str, Any]
        errors: list[Any]
        background_tasks: Optional[StarletteBackgroundTasks]
        response: Response
        dependency_cache: dict[DependencyCacheKey, Any]
    
    
    async def solve_dependencies(
        *,
        request: Union[Request, WebSocket],
        dependant: Dependant,
        body: Optional[Union[dict[str, Any], FormData]] = None,
        background_tasks: Optional[StarletteBackgroundTasks] = None,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 37.6K bytes
    - Viewed (3)
  2. fastapi/routing.py

    from fastapi.dependencies.utils import (
        _should_embed_body_fields,
        get_body_field,
        get_dependant,
        get_flat_dependant,
        get_parameterless_sub_dependant,
        get_typed_return_annotation,
        solve_dependencies,
    )
    from fastapi.encoders import jsonable_encoder
    from fastapi.exceptions import (
        EndpointContext,
        FastAPIError,
        PydanticV1NotSupportedError,
        RequestValidationError,
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 174.6K bytes
    - Viewed (0)
  3. docs/en/docs/release-notes.md

    ### Refactors
    
    * ♻️ Create `dependency-cache` dict in `solve_dependencies` only if `None` (don't re-create if empty). PR [#13689](https://github.com/fastapi/fastapi/pull/13689) by [@bokshitsky](https://github.com/bokshitsky).
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 19:06:15 UTC 2025
    - 586.7K bytes
    - Viewed (0)
Back to top