Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 411 - 420 of 599 for lastTest (0.17 seconds)

  1. docs/de/docs/tutorial/schema-extra-example.md

    Sie können `json_schema_extra` setzen, mit einem `dict`, das alle zusätzlichen Daten enthält, die im generierten JSON-Schema angezeigt werden sollen, einschließlich `examples`.
    
    /// tip | Tipp
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 10.4K bytes
    - Click Count (0)
  2. docs/ja/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

    ///
    
    古い FastAPI アプリで Pydantic v1 を使っている場合、ここでは Pydantic v2 への移行方法と、段階的移行を助ける **FastAPI 0.119.0 の機能** を紹介します。
    
    ## 公式ガイド { #official-guide }
    
    Pydantic には v1 から v2 への公式の [移行ガイド](https://docs.pydantic.dev/latest/migration/) があります。
    
    変更点、検証がより正確で厳密になった点、注意事項などが含まれます。
    
    何が変わったかをよりよく理解するために参照してください。
    
    ## テスト { #tests }
    
    アプリに対する[テスト](../tutorial/testing.md)を用意し、継続的インテグレーション(CI)で実行するようにしてください。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  3. docs/tr/docs/tutorial/security/oauth2-jwt.md

    RSA veya ECDSA gibi dijital imza algoritmaları kullanmayı planlıyorsanız, `pyjwt[crypto]` bağımlılığı olan `cryptography` kütüphanesini kurmalısınız.
    
    Daha fazla bilgi için [PyJWT Kurulum dokümantasyonu](https://pyjwt.readthedocs.io/en/latest/installation.html) sayfasını okuyabilirsiniz.
    
    ///
    
    ## Password hashing { #password-hashing }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  4. docs/bucket/replication/setup_3site_replication.sh

    ./s3-check-md5 -versions -access-key minio -secret-key minio123 -endpoint http://127.0.0.1:9006/ -bucket olockbucket
    
    # additional tests for encryption object alignment
    go install -v github.com/minio/multipart-debug@latest
    
    upload_id=$(multipart-debug --endpoint 127.0.0.1:9001 --accesskey minio --secretkey minio123 multipart new --bucket bucket --object new-test-encrypted-object --encrypt)
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Sep 24 08:03:58 GMT 2024
    - 10.3K bytes
    - Click Count (0)
  5. cmd/bucket-handlers.go

    	// Content-Md5 is required should be set
    	// http://docs.aws.amazon.com/AmazonS3/latest/API/multiobjectdeleteapi.html
    	if !validateLengthAndChecksum(r) {
    		writeErrorResponse(ctx, w, errorCodes.ToAPIErr(ErrMissingContentMD5), r.URL)
    		return
    	}
    
    	// Content-Length is required and should be non-zero
    	// http://docs.aws.amazon.com/AmazonS3/latest/API/multiobjectdeleteapi.html
    	if r.ContentLength <= 0 {
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 63.9K bytes
    - Click Count (0)
  6. docs/tls/README.md

    * MinIO doesn't currently support PFX certificates.
    
    ### 3.1 Use `certgen` to Generate a Certificate
    
    Download [`certgen`](https://github.com/minio/certgen/releases/latest) for your specific operating system and platform.
    
    `certgen` is a simple *Go* tool to generate self-signed certificates, and provides SAN certificates with DNS and IP entries:
    
    ```sh
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 8.6K bytes
    - Click Count (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to Top