Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 11 - 20 of 284 for nines (0.02 seconds)

  1. docs/en/docs/img/sponsors/ines-course.jpg

    ines-course.jpg...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Apr 17 21:00:49 GMT 2022
    - 11.5K bytes
    - Click Count (0)
  2. docs/ja/docs/tutorial/stream-json-lines.md

    # JSON Lines をストリームする { #stream-json-lines }
    
    データのシーケンスを**「ストリーム」**で送りたい場合、**JSON Lines** を使って実現できます。
    
    /// info | 情報
    
    FastAPI 0.134.0 で追加されました。
    
    ///
    
    ## ストリームとは { #what-is-a-stream }
    
    データを**ストリーミング**するとは、アイテムの全シーケンスが用意できるのを待たずに、アプリがデータアイテムの送信をクライアントに対して開始することを意味します。
    
    つまり、最初のアイテムを送信し、クライアントはそれを受け取って処理を始めます。その間に、次のアイテムをまだ生成しているかもしれません。
    
    ```mermaid
    sequenceDiagram
        participant App
        participant Client
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:55:22 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/stream-json-lines.md

    # JSON Lines Akışı { #stream-json-lines }
    
    Bir veri dizisini “akış” olarak göndermek istediğiniz durumlar olabilir; bunu **JSON Lines** ile yapabilirsiniz.
    
    /// info | Bilgi
    
    FastAPI 0.134.0 ile eklendi.
    
    ///
    
    ## Akış (Stream) Nedir? { #what-is-a-stream }
    
    Verileri “streaming” olarak göndermek, uygulamanızın tüm öğe dizisi hazır olmasını beklemeden, öğeleri istemciye göndermeye başlaması demektir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 4.6K bytes
    - Click Count (0)
  4. docs/fr/docs/tutorial/stream-json-lines.md

    # Diffuser des JSON Lines { #stream-json-lines }
    
    Vous pouvez avoir une séquence de données que vous souhaitez envoyer en « flux » ; vous pouvez le faire avec « JSON Lines ».
    
    /// info
    
    Ajouté dans FastAPI 0.134.0.
    
    ///
    
    ## Qu'est-ce qu'un flux ? { #what-is-a-stream }
    
    La « diffusion en continu » de données signifie que votre application commence à envoyer des éléments de données au client sans attendre que l'ensemble de la séquence soit prêt.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:33:45 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  5. docs/zh/docs/tutorial/stream-json-lines.md

    # 流式传输 JSON Lines { #stream-json-lines }
    
    当你想以“流”的方式发送一系列数据时,可以使用 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
    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)
  6. docs/en/docs/js/termynal.js

            for (let line of this.lines) {
                line.style.visibility = 'visible'
            }
            this.start();
        }
    
        /**
         * Start the animation and rener the lines depending on their data attributes.
         */
        async start() {
            this.addFinish()
            await this._wait(this.startDelay);
    
            for (let line of this.lines) {
                const type = line.getAttribute(this.pfx);
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Aug 31 10:32:57 GMT 2025
    - 9.3K bytes
    - Click Count (0)
  7. docs/en/docs/css/termynal.css

    /**
     * termynal.js
     *
     * @author Ines Montani <ines@ines.io>
     * @version 0.0.1
     * @license MIT
     */
    
    :root {
        --color-bg: #252a33;
        --color-text: #eee;
        --color-text-subtle: #a2a2a2;
    }
    
    [data-termynal] {
        width: 750px;
        max-width: 100%;
        background: var(--color-bg);
        color: var(--color-text);
        /* font-size: 18px; */
        font-size: 15px;
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Nov 23 09:27:40 GMT 2025
    - 2.2K bytes
    - Click Count (0)
  8. docs/de/docs/tutorial/server-sent-events.md

    # Server-Sent Events (SSE) { #server-sent-events-sse }
    
    Sie können Daten mithilfe von **Server-Sent Events** (SSE) an den Client streamen.
    
    Das ist ähnlich wie [JSON Lines streamen](stream-json-lines.md), verwendet aber das Format `text/event-stream`, das von Browsern nativ mit der [die `EventSource`-API](https://developer.mozilla.org/en-US/docs/Web/API/EventSource) unterstützt wird.
    
    /// info | Info
    
    Hinzugefügt in FastAPI 0.135.0.
    
    ///
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:48:21 GMT 2026
    - 5.1K bytes
    - Click Count (0)
  9. docs/de/docs/advanced/stream-data.md

    Wenn Sie jedoch **reine Binärdaten** oder Strings streamen möchten, so können Sie es machen.
    
    /// info | Info
    
    Hinzugefügt in FastAPI 0.134.0.
    
    ///
    
    ## Anwendungsfälle { #use-cases }
    
    Sie könnten dies verwenden, wenn Sie reine Strings streamen möchten, z. B. direkt aus der Ausgabe eines **AI-LLM**-Dienstes.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:48:21 GMT 2026
    - 6K bytes
    - Click Count (0)
  10. docs/de/docs/advanced/custom-response.md

    Wenn Sie JSON Lines streamen, folgen Sie dem Tutorial [JSON Lines streamen](../tutorial/stream-json-lines.md).
    
    ///
    
    ### `FileResponse` { #fileresponse }
    
    Streamt eine Datei asynchron als Response.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 12.5K bytes
    - Click Count (0)
Back to Top