Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1681 - 1690 of 1,709 for py$ (0.01 seconds)

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

  1. docs/es/docs/advanced/openapi-webhooks.md

    {* ../../docs_src/openapi_webhooks/tutorial001_py310.py hl[9:12,15:20] *}
    
    Los webhooks que defines terminarán en el esquema de **OpenAPI** y en la interfaz automática de **documentación**.
    
    /// info | Información
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  2. docs/de/docs/advanced/strict-content-type.md

    Wenn Sie Clients unterstützen müssen, die keinen `Content-Type`-Header senden, können Sie die strikte Prüfung deaktivieren, indem Sie `strict_content_type=False` setzen:
    
    {* ../../docs_src/strict_content_type/tutorial001_py310.py hl[4] *}
    
    Mit dieser Einstellung werden Requests ohne `Content-Type`-Header im Body als JSON geparst. Das entspricht dem Verhalten älterer FastAPI-Versionen.
    
    /// info | Info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:48:21 GMT 2026
    - 3.6K bytes
    - Click Count (0)
  3. docs/fr/docs/advanced/openapi-webhooks.md

    {* ../../docs_src/openapi_webhooks/tutorial001_py310.py hl[9:12,15:20] *}
    
    Les webhooks que vous définissez apparaîtront dans le schéma OpenAPI et dans l'interface de documentation automatique.
    
    /// info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.4K bytes
    - Click Count (0)
  4. docs/ja/docs/advanced/using-request-directly.md

    ## `Request` オブジェクトを直接使う { #use-the-request-object-directly }
    
    たとえば、path operation 関数内でクライアントの IP アドレス/ホストを取得したいとします。
    
    そのためには、リクエストに直接アクセスする必要があります。
    
    {* ../../docs_src/using_request_directly/tutorial001_py310.py hl[1,7:8] *}
    
    path operation 関数の引数として `Request` 型のパラメータを宣言すると、**FastAPI** はその引数に `Request` を渡します。
    
    /// tip | 豆知識
    
    この例では、`Request` 型の引数に加えて、パスパラメータも宣言しています。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  5. docs/pt/docs/advanced/strict-content-type.md

    Se você precisa dar suporte a clientes que não enviam um cabeçalho `Content-Type`, você pode desativar a verificação estrita definindo `strict_content_type=False`:
    
    {* ../../docs_src/strict_content_type/tutorial001_py310.py hl[4] *}
    
    Com essa configuração, requisições sem um cabeçalho `Content-Type` terão o corpo interpretado como JSON, o mesmo comportamento das versões mais antigas do FastAPI.
    
    /// info | Informação
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 3.5K bytes
    - Click Count (0)
  6. docs/extensions/s3zip/README.md

    [Using AWS JS SDK v2](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/aws-js/main.js)
    [Using boto3](https://github.com/minio/minio/blob/master/docs/extensions/s3zip/examples/boto3/main.py)
    
    ## Requirements and limits
    
    - ListObjectsV2 can only list the most recent ZIP archive version of your object, applicable only for versioned buckets.
    - ListObjectsV2 API calls must be used to list zip file content.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Wed Apr 10 16:28:27 GMT 2024
    - 3K bytes
    - Click Count (0)
  7. docs/de/docs/advanced/templates.md

    {* ../../docs_src/templates/tutorial001_py310.py hl[4,11,15:18] *}
    
    /// note | Hinweis
    
    Vor FastAPI 0.108.0 und Starlette 0.29.0 war `name` der erste Parameter.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:58:09 GMT 2026
    - 4.2K bytes
    - Click Count (0)
  8. docs/ko/docs/advanced/using-request-directly.md

    ## `Request` 객체를 직접 사용하기 { #use-the-request-object-directly }
    
    여러분이 클라이언트의 IP 주소/호스트 정보를 *경로 처리 함수* 내부에서 가져와야 한다고 가정해 보겠습니다.
    
    이를 위해서는 요청에 직접 접근해야 합니다.
    
    {* ../../docs_src/using_request_directly/tutorial001_py310.py hl[1,7:8] *}
    
    *경로 처리 함수* 매개변수를 `Request` 타입으로 선언하면 **FastAPI**가 해당 매개변수에 `Request`를 전달하는 것을 알게 됩니다.
    
    /// tip | 팁
    
    이 경우, 요청 매개변수 옆에 경로 매개변수를 선언하고 있다는 점을 참고하세요.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  9. ci/official/installer_wheel.sh

    source "${BASH_SOURCE%/*}/utilities/setup.sh"
    
    # Update the version numbers for Nightly only
    if [[ "$TFCI_NIGHTLY_UPDATE_VERSION_ENABLE" == 1 ]]; then
      python3 tensorflow/tools/ci_build/update_version.py --nightly
    fi
    
    # This generates a pure python wheel of the format "*-py3-none-any.whl"
    bazel run --HERMETIC_PYTHON_VERSION=3.13 //tensorflow/tools/pip_package:setup_py_binary -- bdist_wheel --dist-dir "$TFCI_OUTPUT_DIR"
    
    Created: Tue Apr 07 12:39:13 GMT 2026
    - Last Modified: Tue Mar 04 22:39:12 GMT 2025
    - 3.5K bytes
    - Click Count (0)
  10. docs/ru/docs/tutorial/cors.md

    * Отдельных HTTP-методов (`POST`, `PUT`) или всех вместе, используя `"*"`.
    * Отдельных HTTP-заголовков или всех вместе, используя `"*"`.
    
    {* ../../docs_src/cors/tutorial001_py310.py hl[2,6:11,13:19] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 8.5K bytes
    - Click Count (0)
Back to Top