Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,028 for app (0.01 sec)

  1. fess-crawler-opensearch/src/test/resources/app.xml

    Shinsuke Sugaya <******@****.***> 1730954650 +0900
    Registered: 2025-05-25 03:50
    - Last Modified: 2024-11-07 04:44
    - 216 bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/env/suggest/resources/app.xml

    Shinsuke Sugaya <******@****.***> 1581716139 +0900
    Registered: 2025-05-26 08:04
    - Last Modified: 2020-02-14 21:35
    - 489 bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/env/crawler/resources/app.xml

    Shinsuke Sugaya <******@****.***> 1730960360 +0900
    Registered: 2025-05-26 08:04
    - Last Modified: 2024-11-07 06:19
    - 1.8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/env/thumbnail/resources/app.xml

    Shinsuke Sugaya <******@****.***> 1730960360 +0900
    Registered: 2025-05-26 08:04
    - Last Modified: 2024-11-07 06:19
    - 356 bytes
    - Viewed (0)
  5. src/main/resources/app.xml

    Shinsuke Sugaya <******@****.***> 1700360567 +0900
    Registered: 2025-05-26 08:04
    - Last Modified: 2023-11-19 02:22
    - 3.8K bytes
    - Viewed (0)
  6. docs/assets/css/app.css

    Andre_601 <******@****.***> 1644307023 +0100
    Registered: 2025-05-30 11:42
    - Last Modified: 2022-02-08 07:57
    - 1.1K bytes
    - Viewed (2)
  7. docs/em/docs/tutorial/bigger-applications.md

    ```
    
    ///
    
    *  `app` 📁 🔌 🌐. &amp; ⚫️ ✔️ 🛁 📁 `app/__init__.py`, ⚫️ "🐍 📦" (🗃 "🐍 🕹"): `app`.
    * ⚫️ 🔌 `app/main.py` 📁. ⚫️ 🔘 🐍 📦 (📁 ⏮️ 📁 `__init__.py`), ⚫️ "🕹" 👈 📦: `app.main`.
    * 📤 `app/dependencies.py` 📁, 💖 `app/main.py`, ⚫️ "🕹": `app.dependencies`.
    * 📤 📁 `app/routers/` ⏮️ ➕1️⃣ 📁 `__init__.py`, ⚫️ "🐍 📦": `app.routers`.
    * 📁 `app/routers/items.py` 🔘 📦, `app/routers/`,, ⚫️ 🔁: `app.routers.items`.
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-11 13:37
    - 15.5K bytes
    - Viewed (0)
  8. tests/main.py

    from fastapi import FastAPI, Path, Query
    
    app = FastAPI()
    
    
    @app.api_route("/api_route")
    def non_operation():
        return {"message": "Hello World"}
    
    
    def non_decorated_route():
        return {"message": "Hello World"}
    
    
    app.add_api_route("/non_decorated_route", non_decorated_route)
    
    
    @app.get("/text")
    def get_text():
        return "Hello World"
    
    
    @app.get("/path/{item_id}")
    def get_id(item_id):
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-04-18 21:56
    - 4.3K bytes
    - Viewed (0)
  9. docs/en/docs/tutorial/bigger-applications.md

    * There's also an `app/dependencies.py` file, just like `app/main.py`, it is a "module": `app.dependencies`.
    * There's a subdirectory `app/routers/` with another file `__init__.py`, so it's a "Python subpackage": `app.routers`.
    * The file `app/routers/items.py` is inside a package, `app/routers/`, so, it's a submodule: `app.routers.items`.
    * The same with `app/routers/users.py`, it's another submodule: `app.routers.users`.
    Registered: 2025-05-25 07:19
    - Last Modified: 2025-05-11 13:37
    - 18.4K bytes
    - Viewed (0)
  10. tests/test_router_events.py

        async def lifespan(app: FastAPI) -> AsyncGenerator[None, None]:
            yield
    
        @asynccontextmanager
        async def router_lifespan(app: FastAPI) -> AsyncGenerator[None, None]:
            yield
    
        router = APIRouter(lifespan=router_lifespan)
        app = FastAPI(lifespan=lifespan)
        app.include_router(router)
    
        with TestClient(app) as client:
            assert not client.app_state
    
    
    Registered: 2025-05-25 07:19
    - Last Modified: 2024-08-24 19:09
    - 7.3K bytes
    - Viewed (0)
Back to top