Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 321 - 330 of 480 for lastTest (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/es/README.md

    Damos la bienvenida a pull requests para tu idioma.
    
    ### Traducciones
    
    - [English](../../README.md)
    - [日本語 (Japanese)](../ja/README.md)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.8K bytes
    - Click Count (0)
  2. docs/fr/README.md

    Nous accueillons les pull requests pour votre langue.
    
    ### Traductions
    
    - [English](../../README.md)
    - [日本語 (Japanese)](../ja/README.md)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.9K bytes
    - Click Count (0)
  3. docs/pt-BR/README.md

    Aceitamos pull requests para o seu idioma.
    
    ### Traduções
    
    - [English](../../README.md)
    - [日本語 (Japanese)](../ja/README.md)
    - [简体中文 (Simplified Chinese)](../zh-CN/README.md)
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Tue Nov 11 22:42:32 GMT 2025
    - 7.6K bytes
    - Click Count (0)
  4. docs/zh-hant/docs/tutorial/extra-models.md

    你可以將回應宣告為多個型別的 `Union`,表示回應可能是其中任一型別。
    
    在 OpenAPI 中會以 `anyOf` 定義。
    
    要達成這點,使用標準的 Python 型別提示 [`typing.Union`](https://docs.python.org/3/library/typing.html#typing.Union):
    
    /// note
    
    在定義 [`Union`](https://docs.pydantic.dev/latest/concepts/types/#unions) 時,請先放置「更具體」的型別,再放「較不具體」的型別。以下範例中,較具體的 `PlaneItem` 置於 `CarItem` 之前:`Union[PlaneItem, CarItem]`。
    
    ///
    
    {* ../../docs_src/extra_models/tutorial003_py310.py hl[1,14:15,18:20,33] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 6.3K bytes
    - Click Count (0)
  5. docs/tr/docs/tutorial/schema-extra-example.md

    Bu ek bilgi, o modelin çıktı **JSON Schema**’sına olduğu gibi eklenir ve API dokümanlarında kullanılır.
    
    [Pydantic dokümanları: Configuration](https://docs.pydantic.dev/latest/api/config/) bölümünde anlatıldığı gibi, bir `dict` alan `model_config` niteliğini kullanabilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 9.6K bytes
    - Click Count (0)
  6. docs/site-replication/run-ssec-object-replication-with-compression.sh

    TEST_MINIO_ENC_KEY="MDEyMzQ1Njc4OTAxMjM0NTY3ODkwMTIzNDU2Nzg5MDA"
    
    # Create certificates for TLS enabled MinIO
    echo -n "Setup certs for MinIO instances ..."
    wget -O certgen https://github.com/minio/certgen/releases/latest/download/certgen-linux-amd64 && chmod +x certgen
    ./certgen --host localhost
    mkdir -p /tmp/certs
    mv public.crt /tmp/certs || sudo mv public.crt /tmp/certs
    mv private.key /tmp/certs || sudo mv private.key /tmp/certs
    echo "done"
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Sep 24 08:03:58 GMT 2024
    - 8.3K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/advanced/events.md

    如果把它們拆成兩個彼此不共享邏輯或變數的獨立函式,會比較麻煩,你得把值存在全域變數或用其他技巧。
    
    因此,現在建議改用上面介紹的 `lifespan`。
    
    ## 技術細節 { #technical-details }
    
    給有興趣鑽研的同好一點技術細節。🤓
    
    在底層的 ASGI 技術規範中,這屬於 [Lifespan Protocol](https://asgi.readthedocs.io/en/latest/specs/lifespan.html) 的一部分,並定義了 `startup` 與 `shutdown` 兩種事件。
    
    /// info
    
    你可以在 [Starlette 的 Lifespan 文件](https://www.starlette.dev/lifespan/) 讀到更多關於 Starlette `lifespan` 處理器的資訊。
    
    也包含如何處理可在程式其他區域使用的 lifespan 狀態。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 7.2K bytes
    - Click Count (0)
  8. docs/zh-hant/docs/advanced/openapi-callbacks.md

    這部分很正常,多數程式碼你應該已經很熟悉了:
    
    {* ../../docs_src/openapi_callbacks/tutorial001_py310.py hl[7:11,34:51] *}
    
    /// tip
    
    `callback_url` 查詢參數使用的是 Pydantic 的 [Url](https://docs.pydantic.dev/latest/api/networks/) 型別。
    
    ///
    
    唯一新的地方是在「路徑操作裝飾器」中加入參數 `callbacks=invoices_callback_router.routes`。我們接下來會看到那是什麼。
    
    ## 文件化回呼 { #documenting-the-callback }
    
    實際的回呼程式碼會高度依賴你的 API 應用本身。
    
    而且很可能每個應用都差很多。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  9. docs/tr/docs/index.md

    Yüklemek isteyebileceğiniz bazı ek bağımlılıklar da vardır.
    
    Ek opsiyonel Pydantic bağımlılıkları:
    
    * [`pydantic-settings`](https://docs.pydantic.dev/latest/usage/pydantic_settings/) - ayar yönetimi için.
    * [`pydantic-extra-types`](https://docs.pydantic.dev/latest/usage/types/extra_types/extra_types/) - Pydantic ile kullanılacak ek type'lar için.
    
    Ek opsiyonel FastAPI bağımlılıkları:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.2K bytes
    - Click Count (0)
  10. docs/en/docs/features.md

    With **FastAPI** you get all of **Starlette**'s features (as FastAPI is just Starlette on steroids):
    
    * Seriously impressive performance. It is [one of the fastest Python frameworks available, on par with **NodeJS** and **Go**](https://github.com/encode/starlette#performance).
    * **WebSocket** support.
    * In-process background tasks.
    * Startup and shutdown events.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 8.9K bytes
    - Click Count (0)
Back to Top