Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 571 - 580 of 2,731 for doAs (0.05 seconds)

  1. docs/tr/docs/tutorial/request-files.md

    * Upload edilen dosyadan metadata alabilirsiniz.
    * [file-like](https://docs.python.org/3/glossary.html#term-file-like-object) bir `async` arayüze sahiptir.
    * [`SpooledTemporaryFile`](https://docs.python.org/3/library/tempfile.html#tempfile.SpooledTemporaryFile) nesnesini dışa açar; bunu, file-like nesne bekleyen diğer library’lere doğrudan geçebilirsiniz.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 7.5K bytes
    - Click Count (0)
  2. guava/src/com/google/common/base/Suppliers.java

       * href="http://en.wikipedia.org/wiki/Memoization">memoization</a>
       *
       * <p>The returned supplier is thread-safe. The supplier's serialized form does not contain the
       * cached value, which will be recalculated when {@code get()} is called on the reserialized
       * instance. The actual memoization does not happen when the underlying delegate throws an
       * exception.
       *
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Tue Mar 31 21:24:28 GMT 2026
    - 16.1K bytes
    - Click Count (0)
  3. docs/en/docs/reference/responses.md

                - headers
                - set_cookie
                - delete_cookie
    
    ## Starlette Responses
    
    You can read more about all of them in the [FastAPI docs for Custom Response](https://fastapi.tiangolo.com/advanced/custom-response/) and in the [Starlette docs about Responses](https://starlette.dev/responses/).
    
    ::: fastapi.responses.FileResponse
        options:
            members:
                - chunk_size
                - charset
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Feb 22 16:34:59 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  4. docs/ru/docs/how-to/configure-swagger-ui.md

    # Настройка Swagger UI { #configure-swagger-ui }
    
    Вы можете настроить дополнительные [параметры Swagger UI](https://swagger.io/docs/open-source-tools/swagger-ui/usage/configuration/).
    
    Чтобы настроить их, передайте аргумент `swagger_ui_parameters` при создании объекта приложения `FastAPI()` или в функцию `get_swagger_ui_html()`.
    
    `swagger_ui_parameters` принимает словарь с настройками, которые передаются в Swagger UI напрямую.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 4.1K bytes
    - Click Count (0)
  5. docs/ru/docs/how-to/graphql.md

    * [Strawberry](https://strawberry.rocks/) 🍓
        * С [документацией для FastAPI](https://strawberry.rocks/docs/integrations/fastapi)
    * [Ariadne](https://ariadnegraphql.org/)
        * С [документацией для FastAPI](https://ariadnegraphql.org/docs/fastapi-integration)
    * [Tartiflette](https://tartiflette.io/)
        * С [Tartiflette ASGI](https://tartiflette.github.io/tartiflette-asgi/) для интеграции с ASGI
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 4K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/_llm-test.md

    本文件用來測試用於翻譯文件的 <abbr title="Large Language Model - 大型語言模型">LLM</abbr> 是否理解 `scripts/translate.py` 中的 `general_prompt`,以及 `docs/{language code}/llm-prompt.md` 中的語言特定提示。語言特定提示會附加在 `general_prompt` 後面。
    
    此處新增的測試會提供給所有語言特定提示的設計者參考。
    
    使用方式:
    
    * 準備語言特定提示 - `docs/{language code}/llm-prompt.md`。
    * 針對本文件做一次全新的翻譯為你想要的目標語言(例如使用 `translate.py` 的 `translate-page` 指令)。這會在 `docs/{language code}/docs/_llm-test.md` 產生翻譯檔。
    * 檢查翻譯是否正確。
    * 如有需要,改進你的語言特定提示、通用提示,或英文原文。
    * 然後手動修正翻譯中剩下的問題,讓它成為一個好的譯文。
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 10K bytes
    - Click Count (0)
  7. docs/pt/docs/how-to/graphql.md

    * [Strawberry](https://strawberry.rocks/) 🍓
        * Com [documentação para FastAPI](https://strawberry.rocks/docs/integrations/fastapi)
    * [Ariadne](https://ariadnegraphql.org/)
        * Com [documentação para FastAPI](https://ariadnegraphql.org/docs/fastapi-integration)
    * [Tartiflette](https://tartiflette.io/)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 2.9K bytes
    - Click Count (0)
  8. docs/zh/docs/advanced/behind-a-proxy.md

    ### 查看文档界面 { #check-the-docs-ui }
    
    有趣的部分来了。✨
    
    访问应用的“官方”方式应该是通过我们定义的带有路径前缀的代理。因此,正如预期的那样,如果你尝试不带路径前缀、直接由 Uvicorn 提供的文档界面,它将无法工作,因为它期望通过代理访问。
    
    你可以在 [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs) 查看:
    
    <img src="/img/tutorial/behind-a-proxy/image01.png">
    
    但如果我们在“官方”URL(代理端口为 `9999`)的 `/api/v1/docs` 访问文档界面,它就能正常工作!🎉
    
    你可以在 [http://127.0.0.1:9999/api/v1/docs](http://127.0.0.1:9999/api/v1/docs) 查看:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  9. docs/fr/docs/how-to/graphql.md

    * [Strawberry](https://strawberry.rocks/) 🍓
        * Avec [la documentation pour FastAPI](https://strawberry.rocks/docs/integrations/fastapi)
    * [Ariadne](https://ariadnegraphql.org/)
        * Avec [la documentation pour FastAPI](https://ariadnegraphql.org/docs/fastapi-integration)
    * [Tartiflette](https://tartiflette.io/)
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  10. docs/uk/docs/advanced/openapi-webhooks.md

    ### Перевірте документацію { #check-the-docs }
    
    Тепер ви можете запустити свій застосунок і перейти за адресою [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs).
    
    Ви побачите у своїй документації звичайні *операції шляху*, а також деякі **вебхуки**:
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 4.7K bytes
    - Click Count (0)
Back to Top