Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for solve_dependencies (0.69 seconds)

  1. fastapi/dependencies/utils.py

        values: dict[str, Any]
        errors: list[Any]
        background_tasks: StarletteBackgroundTasks | None
        response: Response
        dependency_cache: dict[DependencyCacheKey, Any]
    
    
    async def solve_dependencies(
        *,
        request: Request | WebSocket,
        dependant: Dependant,
        body: dict[str, Any] | FormData | bytes | None = None,
        background_tasks: StarletteBackgroundTasks | None = None,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 38.7K bytes
    - Click Count (3)
  2. fastapi/routing.py

        _should_embed_body_fields,
        get_body_field,
        get_dependant,
        get_flat_dependant,
        get_parameterless_sub_dependant,
        get_stream_item_type,
        get_typed_return_annotation,
        solve_dependencies,
    )
    from fastapi.encoders import jsonable_encoder
    from fastapi.exceptions import (
        EndpointContext,
        FastAPIError,
        RequestValidationError,
        ResponseValidationError,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (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).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
Back to Top