Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 116 for mermaid (0.07 seconds)

  1. docs/en/mkdocs.yml

        line_spans: __span
        linenums_style: pymdownx-inline
      pymdownx.inlinehilite: null
      pymdownx.keys: null
      pymdownx.mark: null
      pymdownx.superfences:
        custom_fences:
        - name: mermaid
          class: mermaid
          format: !!python/name:pymdownx.superfences.fence_code_format ''
      pymdownx.tilde: null
      pymdownx.blocks.admonition:
        types:
        - note
        - attention
        - caution
        - danger
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 9.9K bytes
    - Click Count (0)
  2. docs/zh/docs/virtual-environments.md

    例如,你可能会创建一个名为 `philosophers-stone` 的工程,这个程序依赖于另一个名为 **`harry` 的软件包,使用版本 `1`**。因此,你需要安装 `harry`。
    
    ```mermaid
    flowchart LR
        stone(philosophers-stone) -->|需要| harry-1[harry v1]
    ```
    
    然而在此之后,你又创建了另一个名为 `prisoner-of-azkaban` 的工程,这个工程也依赖于 `harry`,但是这个工程需要 **`harry` 版本 `3`**。
    
    ```mermaid
    flowchart LR
        azkaban(prisoner-of-azkaban) --> |需要| harry-3[harry v3]
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 21.4K bytes
    - Click Count (0)
  3. docs/ko/docs/tutorial/stream-json-lines.md

    ///
    
    ## 스트림이란 { #what-is-a-stream }
    
    데이터를 "**스트리밍**"한다는 것은 애플리케이션이 전체 항목 시퀀스가 모두 준비될 때까지 기다리지 않고 클라이언트로 데이터 항목을 보내기 시작한다는 뜻입니다.
    
    즉, 첫 번째 항목을 보내면 클라이언트는 그것을 받아 처리하기 시작하고, 그동안 애플리케이션은 다음 항목을 계속 생성할 수 있습니다.
    
    ```mermaid
    sequenceDiagram
        participant App
        participant Client
    
        App->>App: Produce Item 1
        App->>Client: Send Item 1
        App->>App: Produce Item 2
        Client->>Client: Process Item 1
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  4. docs/en/docs/tutorial/stream-json-lines.md

    So, it will send the first item, the client will receive and start processing it, and you might still be producing the next item.
    
    ```mermaid
    sequenceDiagram
        participant App
        participant Client
    
        App->>App: Produce Item 1
        App->>Client: Send Item 1
        App->>App: Produce Item 2
        Client->>Client: Process Item 1
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  5. scripts/doc_parsing_utils.py

        block_language = block_a["lang"].lower()
        if block_language in {"mermaid"}:
            if block_a != block_b:
                print(
                    f"Skipping mermaid code block replacement (lines {start_line}-{end_line_no}). "
                    "This should be checked manually."
                )
            return block_a["content"].copy()  # We don't handle mermaid code blocks for now
    
        code_block: list[str] = []
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:37:41 GMT 2026
    - 23.5K bytes
    - Click Count (0)
  6. docs/en/docs/tutorial/dependencies/index.md

    * Calling your dependency ("dependable") function with the correct parameters.
    * Get the result from your function.
    * Assign that result to the parameter in your *path operation function*.
    
    ```mermaid
    graph TB
    
    common_parameters(["common_parameters"])
    read_items["/items/"]
    read_users["/users/"]
    
    common_parameters --> read_items
    common_parameters --> read_users
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 9.5K bytes
    - Click Count (0)
  7. architecture/build-state-model.md

    # Build state model
    
    The Gradle daemon tracks state for various elements. These are arranged in a hierarchy:
    
    ```mermaid
      graph TD
    
      process["build process"]
      
      session["build session"]
      process --> session
      
      build_tree["build tree"]
      session --> build_tree
      
      build1["root build"]
      build_tree --> build1
      
      project1["root project"]
      build1 --> project1
      
      project2["project"]
      build1 --> project2
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed May 22 13:39:49 GMT 2024
    - 3.4K bytes
    - Click Count (0)
  8. docs/zh/docs/tutorial/stream-json-lines.md

    当你想以“流”的方式发送一系列数据时,可以使用 JSON Lines。
    
    /// info | 信息
    
    新增于 FastAPI 0.134.0。
    
    ///
    
    ## 什么是流 { #what-is-a-stream }
    
    “流式传输”数据意味着你的应用会在整段数据全部准备好之前,就开始把每个数据项发送给客户端。
    
    也就是说,它会先发送第一个数据项,客户端会接收并开始处理它,而此时你的应用可能还在生成下一个数据项。
    
    ```mermaid
    sequenceDiagram
        participant App
        participant Client
    
        App->>App: Produce Item 1
        App->>Client: Send Item 1
        App->>App: Produce Item 2
        Client->>Client: Process Item 1
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:29:48 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/dependencies/dependencies-with-yield.md

    現在客戶端仍會獲得同樣的 *HTTP 500 Internal Server Error* 回應,但伺服器的日誌中會有我們自訂的 `InternalError`。😎
    
    ## 含 `yield` 的相依執行順序 { #execution-of-dependencies-with-yield }
    
    執行順序大致如下圖。時間從上往下流動,每一欄代表一個互動或執行程式碼的部分。
    
    ```mermaid
    sequenceDiagram
    
    participant client as Client
    participant handler as Exception handler
    participant dep as Dep with yield
    participant operation as Path Operation
    participant tasks as Background tasks
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 11.9K bytes
    - Click Count (0)
  10. docs/zh/docs/tutorial/dependencies/dependencies-with-yield.md

    现在客户端仍会得到同样的 *HTTP 500 Internal Server Error* 响应,但服务器日志中会有我们自定义的 `InternalError`。😎
    
    ## 使用 `yield` 的依赖项的执行 { #execution-of-dependencies-with-yield }
    
    执行顺序大致如下图所示。时间轴从上到下,每一列都代表交互或执行代码的一部分。
    
    ```mermaid
    sequenceDiagram
    
    participant client as Client
    participant handler as Exception handler
    participant dep as Dep with yield
    participant operation as Path Operation
    participant tasks as Background tasks
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 12.1K bytes
    - Click Count (0)
Back to Top