Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for get_name (0.04 sec)

  1. fastapi/routing.py

    from starlette.exceptions import HTTPException
    from starlette.requests import Request
    from starlette.responses import JSONResponse, Response
    from starlette.routing import (
        BaseRoute,
        Match,
        compile_path,
        get_name,
    )
    from starlette.routing import Mount as Mount  # noqa
    from starlette.types import AppType, ASGIApp, Lifespan, Receive, Scope, Send
    from starlette.websockets import WebSocket
    from typing_extensions import deprecated
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 174.6K bytes
    - Viewed (0)
  2. fastapi/_compat/v2.py

                value = schema["$ref"]
                if isinstance(value, str):
                    ref_name = schema["$ref"].split("/")[-1]
                    if ref_name in old_name_to_new_name_map:
                        new_name = old_name_to_new_name_map[ref_name]
                        new_schema["$ref"] = REF_TEMPLATE.format(model=new_name)
                continue
            if isinstance(value, dict):
                new_schema[key] = _replace_refs(
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 19.1K bytes
    - Viewed (0)
Back to top