Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for empty (0.27 sec)

  1. fastapi/applications.py

                    browser to interact with each of them (instead of having multiple
                    browser tabs open). Or if you want to leave fixed the possible URLs.
    
                    If the servers `list` is not provided, or is an empty `list`, the
                    default value would be a `dict` with a `url` value of `/`.
    
                    Each item in the `list` is a `dict` containing:
    
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  2. fastapi/routing.py

                    name = getattr(r, "name", "unknown")
                    if path is not None and not path:
                        raise FastAPIError(
                            f"Prefix and path cannot be both empty (path operation: {name})"
                        )
            if responses is None:
                responses = {}
            for route in router.routes:
                if isinstance(route, APIRoute):
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
Back to top