Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 781 - 790 of 1,150 for Little (0.04 seconds)

  1. docs/uk/docs/tutorial/dependencies/sub-dependencies.md

    залежностей оголошена кілька разів для однієї операції шляху, наприклад, кілька залежностей мають спільну підзалежність, FastAPI знатиме, що цю підзалежність потрібно викликати лише один раз на запит.
    
    І він збереже повернуте значення у <dfn title="Утиліта/система для збереження обчислених/згенерованих значень, щоб повторно використовувати їх замість повторного обчислення.">«кеш»</dfn> і передасть його всім «dependants», яким воно потрібне в цьому конкретному запиті, замість того щоб викликати...
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:43:14 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  2. docs/fr/docs/async.md

    Détails sur la syntaxe `async def` pour les *fonctions de chemin d'accès* et quelques rappels sur le code asynchrone, la concurrence et le parallélisme.
    
    ## Vous êtes pressés ? { #in-a-hurry }
    
    <abbr title="too long; didn't read - trop long ; pas lu"><strong>TL;DR :</strong></abbr>
    
    Si vous utilisez des bibliothèques tierces qui nécessitent d'être appelées avec `await`, telles que :
    
    ```Python
    results = await some_library()
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 27.3K bytes
    - Click Count (0)
  3. docs/de/docs/advanced/using-request-directly.md

    # Den Request direkt verwenden { #using-the-request-directly }
    
    Bisher haben Sie die Teile des <abbr title="Request – Anfrage: Daten, die der Client zum Server sendet">Requests</abbr>, die Sie benötigen, mithilfe von deren Typen deklariert.
    
    Daten nehmend von:
    
    * Dem Pfad als Parameter.
    * Headern.
    * Cookies.
    * usw.
    
    Und indem Sie das tun, validiert **FastAPI** diese Daten, konvertiert sie und generiert automatisch Dokumentation für Ihre API.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  4. docs/de/docs/tutorial/debugging.md

    Daher wird die Zeile:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    nicht ausgeführt.
    
    /// info | Info
    
    Für weitere Informationen besuchen Sie bitte [die offizielle Python-Dokumentation](https://docs.python.org/3/library/__main__.html).
    
    ///
    
    ## Ihren Code mit Ihrem Debugger ausführen { #run-your-code-with-your-debugger }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  5. docs/uk/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005_py310.py hl[14] *}
    
    Тепер спробуйте надіслати некоректний елемент, наприклад:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Ви отримаєте відповідь, яка повідомить вам, що дані є некоректними, і міститиме отримане тіло запиту:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  6. docs/zh/docs/advanced/path-operation-advanced-configuration.md

    如果你查看最终生成的 OpenAPI(在你的 API 的 `/openapi.json`),你也会看到你的扩展作为该 *路径操作* 的一部分:
    
    ```JSON hl_lines="22"
    {
        "openapi": "3.1.0",
        "info": {
            "title": "FastAPI",
            "version": "0.1.0"
        },
        "paths": {
            "/items/": {
                "get": {
                    "summary": "Read Items",
                    "operationId": "read_items_items__get",
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 6.7K bytes
    - Click Count (0)
  7. docs/tr/docs/tutorial/handling-errors.md

    {* ../../docs_src/handling_errors/tutorial005_py310.py hl[14] *}
    
    Şimdi şu gibi geçersiz bir item göndermeyi deneyin:
    
    ```JSON
    {
      "title": "towel",
      "size": "XL"
    }
    ```
    
    Aldığınız body’yi de içeren, verinin geçersiz olduğunu söyleyen bir response alırsınız:
    
    ```JSON hl_lines="12-15"
    {
      "detail": [
        {
          "loc": [
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.7K bytes
    - Click Count (0)
  8. .github/ISSUE_TEMPLATE/10_contributor_bug_report.yml

            Please open Gradle Native-related issues on [the Gradle Native repository](https://github.com/gradle/gradle-native/issues)
    
            Provide a brief summary of the issue in the title above
      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Sep 09 14:48:49 GMT 2024
    - 3K bytes
    - Click Count (1)
  9. docs/de/docs/how-to/graphql.md

    Frühere Versionen von Starlette enthielten eine `GraphQLApp`-Klasse zur Integration mit [Graphene](https://graphene-python.org/).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/chat/ChatClient.java

            final String refs = sources.stream().map(s -> {
                final String title = s.getTitle();
                final String url = s.getUrl();
                if (title != null && !title.isEmpty() && url != null && !url.isEmpty()) {
                    return title + " (" + url + ")";
                } else if (title != null && !title.isEmpty()) {
                    return title;
                } else if (url != null && !url.isEmpty()) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
Back to Top