Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 255 for vs (0.02 seconds)

  1. docs/tr/docs/editor-support.md

    Daha fazla ayrıntı için, GitHub deposundaki README’ye bakın: [GitHub repository](https://github.com/fastapi/fastapi-vscode).
    
    ## Kurulum ve Yükleme { #setup-and-installation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:51:35 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  2. docs/en/docs/virtual-environments.md

    You would probably use an editor, make sure you configure it to use the same virtual environment you created (it will probably autodetect it) so that you can get autocompletion and inline errors.
    
    For example:
    
    * [VS Code](https://code.visualstudio.com/docs/python/environments#_select-and-activate-an-environment)
    * [PyCharm](https://www.jetbrains.com/help/pycharm/creating-virtual-environment.html)
    
    /// tip
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 22.1K bytes
    - Click Count (0)
  3. docs/fr/docs/editor-support.md

    Pour plus de détails sur l’extension, reportez-vous au README sur le [référentiel GitHub](https://github.com/fastapi/fastapi-vscode).
    
    ## Configurer et installer { #setup-and-installation }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:33:45 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  4. docs/de/docs/advanced/json-base64-bytes.md

    # JSON mit Bytes als base64 { #json-with-bytes-as-base64 }
    
    Wenn Ihre App JSON-Daten empfangen und senden muss, Sie darin aber Binärdaten einschließen müssen, können Sie diese als base64 kodieren.
    
    ## Base64 vs Dateien { #base64-vs-files }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:48:21 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  5. docs/en/docs/async.md

    These are very technical details of how **FastAPI** works underneath.
    
    If you have quite some technical knowledge (coroutines, threads, blocking, etc.) and are curious about how FastAPI handles `async def` vs normal `def`, go ahead.
    
    ///
    
    ### Path operation functions { #path-operation-functions }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 05 18:13:19 GMT 2026
    - 23.4K bytes
    - Click Count (0)
  6. docs/es/docs/advanced/json-base64-bytes.md

    # JSON con Bytes como Base64 { #json-with-bytes-as-base64 }
    
    Si tu app necesita recibir y enviar datos JSON, pero necesitas incluir datos binarios en él, puedes codificarlos como base64.
    
    ## Base64 vs Archivos { #base64-vs-files }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:12:26 GMT 2026
    - 2.6K bytes
    - Click Count (0)
  7. docs/fr/docs/advanced/json-base64-bytes.md

    # JSON avec des octets en Base64 { #json-with-bytes-as-base64 }
    
    Si votre application doit recevoir et envoyer des données JSON, mais que vous devez y inclure des données binaires, vous pouvez les encoder en base64.
    
    ## Base64 vs fichiers { #base64-vs-files }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:33:45 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  8. cmd/object-handlers.go

    		return
    	}
    
    	getObjectInfo := objectAPI.GetObjectInfo
    
    	// Check for auth type to return S3 compatible error.
    	// type to return the correct error (NoSuchKey vs AccessDenied)
    	if s3Error := checkRequestAuthType(ctx, r, policy.GetObjectAction, bucket, object); s3Error != ErrNone {
    		if getRequestAuthType(r) == authTypeAnonymous {
    			// As per "Permission" section in
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 120.6K bytes
    - Click Count (0)
  9. docs/zh/docs/tutorial/bigger-applications.md

    ```
    
    这样 `fastapi` 命令就知道到哪里去找到你的应用了。
    
    /// Note | 注意
    
    你也可以把路径传给命令,比如:
    
    ```console
    $ fastapi dev app/main.py
    ```
    
    但是每次调用 `fastapi` 命令时,你都需要记得传入正确的路径。
    
    另外,其他工具可能找不到它,比如 [VS Code 扩展](../editor-support.md) 或 [FastAPI Cloud](https://fastapicloud.com),因此推荐在 `pyproject.toml` 中使用 `entrypoint`。
    
    ///
    
    ## 查看自动化的 API 文档 { #check-the-automatic-api-docs }
    
    现在,运行你的应用:
    
    <div class="termy">
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 19.5K bytes
    - Click Count (0)
  10. docs/pt/docs/advanced/json-base64-bytes.md

    # JSON com bytes em Base64 { #json-with-bytes-as-base64 }
    
    Se sua aplicação precisa receber e enviar dados JSON, mas você precisa incluir dados binários nele, você pode codificá-los em base64.
    
    ## Base64 vs Arquivos { #base64-vs-files }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:13 GMT 2026
    - 2.6K bytes
    - Click Count (0)
Back to Top