Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 101 for stub (0.03 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fastapi/security/open_id_connect_url.py

    
    class OpenIdConnect(SecurityBase):
        """
        OpenID Connect authentication class. An instance of it would be used as a
        dependency.
    
        **Warning**: this is only a stub to connect the components with OpenAPI in FastAPI,
        but it doesn't implement the full OpenIdConnect scheme, for example, it doesn't use
        the OpenIDConnect URL. You would need to subclass it and implement it in your
        code.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 16 10:16:48 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/app/job/ScriptExecutorJobTest.java

            @Override
            public void process(final org.lastaflute.job.LaJobRuntime runtime) {
                super.process(runtime);
            }
        }
    
        /**
         * Minimal LaScheduledJob stub for JobManager.findJobByUniqueOf().
         */
        private static class MinimalLaScheduledJob implements LaScheduledJob {
            @Override
            public org.lastaflute.job.subsidiary.LaunchedProcess launchNow() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:55:54 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  3. fastapi/security/http.py

            return HTTPAuthorizationCredentials(scheme=scheme, credentials=credentials)
    
    
    class HTTPDigest(HTTPBase):
        """
        HTTP Digest authentication.
    
        **Warning**: this is only a stub to connect the components with OpenAPI in FastAPI,
        but it doesn't implement the full Digest scheme, you would need to subclass it
        and implement it in your code.
    
        Ref: https://datatracker.ietf.org/doc/html/rfc7616
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Mon Mar 16 10:16:48 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  4. docs/de/docs/advanced/sub-applications.md

    ### Unteranwendung { #sub-application }
    
    Erstellen Sie dann Ihre Unteranwendung und deren *Pfadoperationen*.
    
    Diese Unteranwendung ist nur eine weitere Standard-FastAPI-Anwendung, aber diese wird „gemountet“:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[11, 14:16] *}
    
    ### Die Unteranwendung mounten { #mount-the-sub-application }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 3.2K bytes
    - Click Count (0)
  5. docs/ru/docs/advanced/sub-applications.md

    ### Подприложение { #sub-application }
    
    Затем создайте подприложение и его *операции пути*.
    
    Это подприложение — обычное стандартное приложение FastAPI, но именно оно будет «смонтировано»:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[11, 14:16] *}
    
    ### Смонтируйте подприложение { #mount-the-sub-application }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  6. docs/zh/docs/advanced/sub-applications.md

    # 子应用 - 挂载 { #sub-applications-mounts }
    
    如果需要两个独立的 FastAPI 应用,拥有各自独立的 OpenAPI 与文档,则需设置一个主应用,并**挂载**一个(或多个)子应用。
    
    ## 挂载 **FastAPI** 应用 { #mounting-a-fastapi-application }
    
    **挂载**是指在特定路径中添加完全**独立**的应用,然后在该路径下使用*路径操作*声明的子应用处理所有事务。
    
    ### 顶层应用 { #top-level-application }
    
    首先,创建主(顶层)**FastAPI** 应用及其*路径操作*:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[3, 6:8] *}
    
    ### 子应用 { #sub-application }
    
    接下来,创建子应用及其*路径操作*。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  7. docs/ko/docs/advanced/sub-applications.md

    ### 하위 애플리케이션 { #sub-application }
    
    그 다음, 하위 애플리케이션과 그 *경로 처리*를 생성합니다.
    
    이 하위 애플리케이션은 또 다른 표준 FastAPI 애플리케이션이지만, "마운트"될 애플리케이션입니다:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[11, 14:16] *}
    
    ### 하위 애플리케이션 마운트 { #mount-the-sub-application }
    
    최상위 애플리케이션 `app`에서 하위 애플리케이션 `subapi`를 마운트합니다.
    
    이 경우 `/subapi` 경로에 마운트됩니다:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[11, 19] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  8. docs/uk/docs/advanced/sub-applications.md

    ### Підзастосунок { #sub-application }
    
    Потім створіть свій підзастосунок та його _операції шляху_.
    
    Цей підзастосунок - просто ще один стандартний застосунок FastAPI, але саме його буде «змонтовано»:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[11, 14:16] *}
    
    ### Змонтуйте підзастосунок { #mount-the-sub-application }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.5K bytes
    - Click Count (0)
  9. docs/es/docs/advanced/sub-applications.md

    ### Aplicación de nivel superior { #top-level-application }
    
    Primero, crea la aplicación principal de nivel superior de **FastAPI**, y sus *path operations*:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[3, 6:8] *}
    
    ### Sub-aplicación { #sub-application }
    
    Luego, crea tu sub-aplicación, y sus *path operations*.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  10. docs/pt/docs/advanced/sub-applications.md

    ### Aplicação de nível superior { #top-level-application }
    
    Primeiro, crie a aplicação principal, de nível superior, **FastAPI**, e suas *operações de rota*:
    
    {* ../../docs_src/sub_applications/tutorial001_py310.py hl[3, 6:8] *}
    
    ### Sub-aplicação { #sub-application }
    
    Em seguida, crie sua sub-aplicação e suas *operações de rota*.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 3.1K bytes
    - Click Count (0)
Back to Top