Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for Dict (0.02 seconds)

  1. fastapi/routing.py

        else:
            return await run_in_threadpool(dependant.call, **values)
    
    
    def _build_response_args(
        *, status_code: int | None, solved_result: Any
    ) -> dict[str, Any]:
        response_args: dict[str, Any] = {
            "background": solved_result.background_tasks,
        }
        # If status_code was set, use it, otherwise use the default from the
        # response class, in the case of redirect it's 307
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 15 11:44:39 GMT 2026
    - 193K bytes
    - Click Count (0)
  2. fastapi/applications.py

                    ```
                    """
                ),
            ] = None,
            servers: Annotated[
                list[dict[str, str | Any]] | None,
                Doc(
                    """
                    A `list` of `dict`s with connectivity information to a target server.
    
                    You would use it, for example, if your application is served from
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 178.6K bytes
    - Click Count (0)
Back to Top