Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 56 for 2173 (0.04 sec)

  1. docs/de/docs/tutorial/bigger-applications.md

    ### Eine *Pfadoperation* hinzufügen
    
    Wir können *Pfadoperationen* auch direkt zur `FastAPI`-App hinzufügen.
    
    Hier machen wir es ... nur um zu zeigen, dass wir es können 🤷:
    
    ```Python hl_lines="21-23" title="app/main.py"
    {!../../docs_src/bigger_applications/app/main.py!}
    ```
    
    und es wird korrekt funktionieren, zusammen mit allen anderen *Pfadoperationen*, die mit `app.include_router()` hinzugefügt wurden.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 21K bytes
    - Viewed (0)
  2. compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/VersionRangeTest.java

            checkInvalidRange("(1.0,1.0]");
            checkInvalidRange("[1.0,1.0)");
            checkInvalidRange("(1.0,1.0)");
            checkInvalidRange("[1.1,1.0]");
            checkInvalidRange("[1.0,1.2),1.3");
            // overlap
            checkInvalidRange("[1.0,1.2),(1.1,1.3]");
            // overlap
            checkInvalidRange("[1.1,1.3),(1.0,1.2]");
            // ordering
            checkInvalidRange("(1.1,1.2],[1.0,1.1)");
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  3. src/cmd/asm/internal/asm/testdata/riscv64.s

    	FEQS	F0, F1, X7				// d3a300a0
    	FLTS	F0, F1, X7				// d39300a0
    	FLES	F0, F1, X7				// d38300a0
    
    	// 20.9: Single-Precision Floating-Point Classify Instruction
    	FCLASSS	F0, X5					// d31200e0
    
    	// 21.3: Double-Precision Load and Store Instructions
    	FLD	(X5), F0				// 07b00200
    	FLD	4(X5), F0				// 07b04200
    	FSD	F0, (X5)				// 27b00200
    	FSD	F0, 4(X5)				// 27b20200
    
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Fri Oct 25 12:05:29 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  4. docs/changelogs/changelog_3x.md

        after the entire HTTP response body has been read.
    
     *  New: Upgrade to Okio 1.17.3. If you're on Kotlin-friendly Okio 2.x this release requires 2.2.2
        or newer.
    
        ```kotlin
        implementation("com.squareup.okio:okio:1.17.3")
        ```
    
     *  Fix: Don't miss cancels when sending HTTP/2 request headers.
     *  Fix: Don't miss whole operation timeouts when calls redirect.
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sun Feb 06 14:55:54 UTC 2022
    - 50.8K bytes
    - Viewed (0)
  5. docs/pt/docs/tutorial/bigger-applications.md

    ### Incluir uma *operação de rota*
    
    Também podemos adicionar *operações de rota* diretamente ao aplicativo `FastAPI`.
    
    Aqui fazemos isso... só para mostrar que podemos 🤷:
    
    ```Python hl_lines="21-23" title="app/main.py"
    {!../../docs_src/bigger_applications/app/main.py!}
    ```
    
    e funcionará corretamente, junto com todas as outras *operações de rota* adicionadas com `app.include_router()`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 19.6K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/go-multierror/LICENSE

         copyright doctrines of fair use, fair dealing, or other equivalents.
    
    2.7. Conditions
    
         Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted in
         Section 2.1.
    
    
    3. Responsibilities
    
    3.1. Distribution of Source Form
    
         All distribution of Covered Software in Source Code Form, including any
         Modifications that You create or to which You contribute, must be under the
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  7. docs/zh/docs/tutorial/bigger-applications.md

    但这只会影响我们应用中的 `APIRouter`,而不会影响使用它的任何其他代码。
    
    因此,举例来说,其他项目能够以不同的身份认证方法使用相同的 `APIRouter`。
    
    ### 包含一个*路径操作*
    
    我们还可以直接将*路径操作*添加到 `FastAPI` 应用中。
    
    这里我们这样做了...只是为了表明我们可以做到🤷:
    
    ```Python hl_lines="21-23" title="app/main.py"
    {!../../docs_src/bigger_applications/app/main.py!}
    ```
    
    它将与通过 `app.include_router()` 添加的所有其他*路径操作*一起正常运行。
    
    /// info | "特别的技术细节"
    
    **注意**:这是一个非常技术性的细节,你也许可以**直接跳过**。
    
    ---
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  8. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

            .setHeader("Content-Type", "text/event-stream")
            .chunkedBody(
              """
              |event: add
              |data: 73857293
              |
              |event: remove
              |data: 2153
              |
              |event: add
              |data: 113411
              |
              |
              """.trimMargin(),
              8,
            )
            .build(),
        )
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 37.6K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/net/HttpHeaders.java

    /**
     * Contains constant definitions for the HTTP header field names. See:
     *
     * <ul>
     *   <li><a href="http://www.ietf.org/rfc/rfc2109.txt">RFC 2109</a>
     *   <li><a href="http://www.ietf.org/rfc/rfc2183.txt">RFC 2183</a>
     *   <li><a href="http://www.ietf.org/rfc/rfc2616.txt">RFC 2616</a>
     *   <li><a href="http://www.ietf.org/rfc/rfc2965.txt">RFC 2965</a>
     *   <li><a href="http://www.ietf.org/rfc/rfc5988.txt">RFC 5988</a>
     * </ul>
     *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Oct 01 19:08:38 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  10. docs/en/docs/release-notes.md

    ### Internal
    
    * ⬆ Bump tiangolo/issue-manager from 0.5.0 to 0.5.1. PR [#12173](https://github.com/fastapi/fastapi/pull/12173) by [@dependabot[bot]](https://github.com/apps/dependabot).
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Nov 01 11:25:57 UTC 2024
    - 460.3K bytes
    - Viewed (0)
Back to top