- Sort Score
- Num 10 results
- Language All
Results 871 - 880 of 2,098 for info_ (0.02 seconds)
-
docs/pt/docs/advanced/stream-data.md
Se você quer transmitir dados que podem ser estruturados como JSON, você deveria [Transmitir JSON Lines](../tutorial/stream-json-lines.md). Mas se você quer transmitir dados binários puros ou strings, veja como fazer. /// info | Informação Adicionado no FastAPI 0.134.0. /// ## Casos de uso { #use-cases } Você pode usar isto para transmitir strings puras, por exemplo diretamente da saída de um serviço de AI LLM.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:13 GMT 2026 - 5.7K bytes - Click Count (0) -
docs/fr/docs/tutorial/testing.md
Avec cela, vous pouvez utiliser [pytest](https://docs.pytest.org/) directement avec **FastAPI**. ## Utiliser `TestClient` { #using-testclient } /// info Pour utiliser `TestClient`, installez d’abord [`httpx`](https://www.python-httpx.org). Vous devez créer un [environnement virtuel](../virtual-environments.md), l’activer, puis y installer le paquet, par exemple :
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:37:13 GMT 2026 - 6.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiCreator.java
} /** * Registers this creator to the dictionary manager. */ @PostConstruct public void register() { if (logger.isInfoEnabled()) { logger.info("Loaded {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } /** * Creates a new dictionary file. * * @param id The ID of the dictionary file.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 2K bytes - Click Count (0) -
docs/zh/docs/advanced/wsgi.md
您可以挂载 WSGI 应用,正如您在 [子应用 - 挂载](sub-applications.md)、[在代理之后](behind-a-proxy.md) 中所看到的那样。 为此, 您可以使用 `WSGIMiddleware` 来包装你的 WSGI 应用,如:Flask,Django,等等。 ## 使用 `WSGIMiddleware` { #using-wsgimiddleware } /// info | 信息 需要安装 `a2wsgi`,例如使用 `pip install a2wsgi`。 /// 您需要从 `a2wsgi` 导入 `WSGIMiddleware`。 然后使用该中间件包装 WSGI 应用(例如 Flask)。 之后将其挂载到某一个路径下。 {* ../../docs_src/wsgi/tutorial001_py310.py hl[1,3,23] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 1.4K bytes - Click Count (0) -
docs/zh/docs/tutorial/request-forms-and-files.md
# 请求表单与文件 { #request-forms-and-files } FastAPI 支持同时使用 `File` 和 `Form` 定义文件和表单字段。 /// info | 信息 接收上传的文件和/或表单数据,首先安装 [`python-multipart`](https://github.com/Kludex/python-multipart)。 请先创建并激活一个[虚拟环境](../virtual-environments.md),然后再安装,例如: ```console $ pip install python-multipart ``` /// ## 导入 `File` 与 `Form` { #import-file-and-form } {* ../../docs_src/request_forms_and_files/tutorial001_an_py310.py hl[3] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 1.3K bytes - Click Count (0) -
tests/test_tutorial/test_body_nested_models/test_tutorial009.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 4.5K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/test/rest/RestResourcesExtension.java
* in compliance with, at your election, the Elastic License 2.0 or the Server * Side Public License, v 1. */ package org.elasticsearch.gradle.internal.test.rest; import org.elasticsearch.gradle.internal.info.BuildParams; import org.gradle.api.Action; import org.gradle.api.model.ObjectFactory; import org.gradle.api.provider.ListProperty; import javax.inject.Inject; /**
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 22 07:24:59 GMT 2021 - 2.5K bytes - Click Count (0) -
docs/ru/docs/advanced/wsgi.md
Для этого вы можете использовать `WSGIMiddleware` и обернуть им ваше WSGI‑приложение, например Flask, Django и т.д. ## Использование `WSGIMiddleware` { #using-wsgimiddleware } /// info | Информация Для этого требуется установить `a2wsgi`, например с помощью `pip install a2wsgi`. /// Нужно импортировать `WSGIMiddleware` из `a2wsgi`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 2.2K bytes - Click Count (0) -
docs/ru/docs/tutorial/request-forms-and-files.md
# Файлы и формы в запросе { #request-forms-and-files } Вы можете определять файлы и поля формы одновременно, используя `File` и `Form`. /// info | Информация Чтобы получать загруженные файлы и/или данные форм, сначала установите [`python-multipart`](https://github.com/Kludex/python-multipart). Убедитесь, что вы создали [виртуальное окружение](../virtual-environments.md), активировали его, а затем установили пакет, например: ```consoleCreated: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 17:56:20 GMT 2026 - 2.2K bytes - Click Count (0) -
tests/test_get_request_body.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Feb 08 10:18:38 GMT 2026 - 4.2K bytes - Click Count (0)