Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/main/java/org/codelibs/fess/util/ResourceUtil.java

         *
         * @return the application type string, or empty string if not set
         */
        public static String getAppType() {
            final String appType = System.getenv(FESS_APP_TYPE);
            if (StringUtil.isNotBlank(appType)) {
                return appType;
            }
            return StringUtil.EMPTY;
        }
    
        /**
         * Gets the override configuration path from environment variable when running in Docker.
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  2. fastapi/routing.py

    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
    
    
    # Copy of starlette.routing.request_response modified to include the
    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. fastapi/applications.py

    from starlette.routing import BaseRoute
    from starlette.types import ASGIApp, ExceptionHandler, Lifespan, Receive, Scope, Send
    from typing_extensions import deprecated
    
    AppType = TypeVar("AppType", bound="FastAPI")
    
    
    class FastAPI(Starlette):
        """
        `FastAPI` app class, the main entrypoint to use FastAPI.
    
        Read more in the
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 21:25:59 UTC 2025
    - 176.3K bytes
    - Viewed (0)
Back to top