Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 185 for technical (0.31 sec)

  1. docs/en/docs/tutorial/request-files.md

    ```Python
    contents = myfile.file.read()
    ```
    
    /// note | `async` Technical Details
    
    When you use the `async` methods, **FastAPI** runs the file methods in a threadpool and awaits for them.
    
    ///
    
    /// note | Starlette Technical Details
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Aug 31 09:15:41 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/events.md

    Because of that, it's now recommended to instead use the `lifespan` as explained above.
    
    ## Technical Details { #technical-details }
    
    Just a technical detail for the curious nerds. 🤓
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 20:41:43 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  3. docs/fr/llm-prompt.md

    3) Keep heading punctuation as in the source. In particular, keep occurrences of literal « - » (space-hyphen-space) as « - » (the existing French docs use a hyphen here).
    
    ### French instructions about technical terms
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Dec 17 10:41:43 UTC 2025
    - 4.1K bytes
    - Viewed (0)
  4. docs/ru/docs/advanced/advanced-dependencies.md

    ### Зависимости с `yield` и `StreamingResponse`, технические детали { #dependencies-with-yield-and-streamingresponse-technical-details }
    
    До FastAPI 0.118.0, если вы использовали зависимость с `yield`, код после `yield` выполнялся после возврата из *функции-обработчика пути*, но прямо перед отправкой ответа.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 11 21:25:03 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  5. docs/ja/llm-prompt.md

    ### Target language
    
    Translate to Japanese (日本語).
    
    Language code: ja.
    
    ### Grammar and tone
    
    1) Use polite, instructional Japanese (です/ます調).
    2) Keep the tone concise and technical (match existing Japanese FastAPI docs).
    
    ### Headings
    
    1) Follow the existing Japanese style: short, descriptive headings (often noun phrases), e.g. 「チェック」.
    2) Do not add a trailing period at the end of headings.
    
    ### Quotes
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 17:30:52 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  6. docs/ko/llm-prompt.md

    2) If a title is present, prefer these canonical titles:
    
    - `/// note | 참고`
    - `/// tip | 팁`
    - `/// warning | 경고`
    - `/// info | 정보`
    - `/// danger | 위험`
    - `/// note Technical Details | 기술 세부사항`
    - `/// check | 확인`
    Notes:
    
    - `details` blocks exist in Korean docs; keep `/// details` as-is and translate only the title after `|`.
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 17:32:05 UTC 2025
    - 1.4K bytes
    - Viewed (0)
  7. docs/en/docs/advanced/advanced-dependencies.md

    ### Dependencies with `yield` and `StreamingResponse`, Technical Details { #dependencies-with-yield-and-streamingresponse-technical-details }
    
    Before FastAPI 0.118.0, if you used a dependency with `yield`, it would run the exit code after the *path operation function* returned but right before sending the response.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Nov 13 07:37:15 UTC 2025
    - 9.1K bytes
    - Viewed (0)
  8. docs/en/docs/tutorial/schema-extra-example.md

    ### OpenAPI Examples in the Docs UI { #openapi-examples-in-the-docs-ui }
    
    With `openapi_examples` added to `Body()` the `/docs` would look like:
    
    <img src="/img/tutorial/body-fields/image02.png">
    
    ## Technical Details { #technical-details }
    
    /// tip
    
    If you are already using **FastAPI** version **0.99.0 or above**, you can probably **skip** these details.
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 20 15:55:38 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  9. impl/maven-core/src/main/java/org/apache/maven/project/ExtensionDescriptor.java

    package org.apache.maven.project;
    
    import java.util.ArrayList;
    import java.util.List;
    
    /**
     * Provides metadata about a build extension. <strong>Warning:</strong> This is an internal utility class that is only
     * public for technical reasons, it is not part of the public API. In particular, this class can be changed or deleted
     * without prior notice.
     *
     */
    public class ExtensionDescriptor {
    
        private List<String> exportedPackages;
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/ExecutionEventCatapult.java

    import org.apache.maven.execution.MavenSession;
    import org.apache.maven.plugin.MojoExecution;
    
    /**
     * Assists in firing execution events. <strong>Warning:</strong> This is an internal utility interface that is only
     * public for technical reasons, it is not part of the public API. In particular, this interface can be changed or
     * deleted without prior notice.
     *
     */
    public interface ExecutionEventCatapult {
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 1.5K bytes
    - Viewed (0)
Back to top