Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 284 for nines (0.16 seconds)

  1. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GeneratorTask.kt

        @TaskAction
        fun generate() {
            val markdownFile = outputFile.asFile.get()
            val head = if (markdownFile.exists()) {
                val content = markdownFile.readText().lines()
                val markerPos = content.indexOfFirst { it.contains(markerComment) }
                require(markerPos >= 0) { "Could not locate the generated diagram in $markdownFile" }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/advanced/custom-response.md

    對於大型或無限的串流來說,這點更為重要。
    
    ///
    
    /// tip
    
    與其直接回傳 `StreamingResponse`,你大概會想遵循[資料串流](./stream-data.md)中的作法,這樣更方便,並且會在底層幫你處理取消。
    
    如果你要串流 JSON Lines,請參考教學:[串流 JSON Lines](../tutorial/stream-json-lines.md)。
    
    ///
    
    ### `FileResponse` { #fileresponse }
    
    以非同步串流方式將檔案作為回應。
    
    它在初始化時所需的參數與其他回應型別不同:
    
    - `path` - 要串流的檔案路徑。
    - `headers` - 要包含的自訂標頭,字典形式。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  3. docs/de/docs/tutorial/query-params.md

    * Datenvalidierung
    * Automatische Dokumentation
    
    ## Defaultwerte { #defaults }
    
    Da Query-Parameter kein fester Teil eines Pfades sind, können sie optional sein und Defaultwerte haben.
    
    Im obigen Beispiel haben sie die Defaultwerte `skip=0` und `limit=10`.
    
    Wenn Sie also zur URL:
    
    ```
    http://127.0.0.1:8000/items/
    ```
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 4.9K bytes
    - Click Count (0)
  4. docs/fr/docs/advanced/stream-data.md

    # Diffuser des données { #stream-data }
    
    Si vous voulez diffuser des données pouvant être structurées en JSON, vous devez [Diffuser des JSON Lines](../tutorial/stream-json-lines.md).
    
    Mais si vous voulez diffuser des données binaires pures ou des chaînes, voici comment procéder.
    
    /// info
    
    Ajouté dans FastAPI 0.134.0.
    
    ///
    
    ## Cas d'utilisation { #use-cases }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:33:45 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  5. docs/fr/docs/advanced/custom-response.md

    Si vous diffusez des JSON Lines, suivez le didacticiel [Diffuser des JSON Lines](../tutorial/stream-json-lines.md).
    
    ///
    
    ### `FileResponse` { #fileresponse }
    
    Diffuse de façon asynchrone un fichier comme réponse.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 12.3K bytes
    - Click Count (0)
  6. docs/de/docs/advanced/response-directly.md

    Sie könnten Ihren XML-Inhalt als String in eine `Response` einfügen und sie zurückgeben:
    
    {* ../../docs_src/response_directly/tutorial002_py310.py hl[1,18] *}
    
    ## Funktionsweise eines Responsemodells { #how-a-response-model-works }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  7. ADDING_NEW_LANGUAGE.md

    src/main/resources/
    ├── fess_label.properties           # Base English labels (fallback)
    ├── fess_label_[locale].properties  # Language-specific labels (~1,056 lines)
    ├── fess_message.properties         # Base English messages (fallback)
    └── fess_message_[locale].properties # Language-specific messages (~200 lines)
    ```
    
    ### Naming Convention
    
    - **Language only**: `fess_label_en.properties`, `fess_label_ja.properties`
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 06 11:36:30 GMT 2025
    - 10.4K bytes
    - Click Count (1)
  8. docs/de/docs/features.md

    Mit **FastAPI** bekommen Sie alles von **Starlette** (da FastAPI nur Starlette auf Steroiden ist):
    
    * Schwer beeindruckende Performanz. Es ist [eines der schnellsten Python-Frameworks, auf Augenhöhe mit **NodeJS** und **Go**](https://github.com/encode/starlette#performance).
    * **WebSocket**-Unterstützung.
    * Hintergrundtasks im selben Prozess.
    * Startup- und Shutdown-Events.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  9. docs/de/docs/tutorial/response-model.md

    Sie können auch `response_model=None` verwenden, um das Erstellen eines Responsemodells für diese *Pfadoperation* zu unterbinden. Sie könnten das tun wollen, wenn Sie Dinge annotieren, die nicht gültige Pydantic-Felder sind. Ein Beispiel dazu werden Sie in einer der Abschnitte unten sehen.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 17.5K bytes
    - Click Count (0)
  10. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/MavenInvoker.java

                }
            }
    
            String[] lines = NEXT_LINE.split(msg);
            String currentColor = "";
    
            for (int i = 0; i < lines.length; i++) {
                // add eventual current color inherited from previous line
                String line = currentColor + lines[i];
    
                // look for last ANSI escape sequence to check if nextColor
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Thu Sep 11 17:20:46 GMT 2025
    - 28.2K bytes
    - Click Count (0)
Back to Top