- Sort Score
- Num 10 results
- Language All
Results 1641 - 1650 of 2,275 for inf1 (0.17 seconds)
-
docs/uk/docs/advanced/path-operation-advanced-configuration.md
І якщо ви відкриєте згенерований OpenAPI (за адресою `/openapi.json` у вашому API), ви також побачите своє розширення як частину конкретної *операції шляху*: ```JSON hl_lines="22" { "openapi": "3.1.0", "info": { "title": "FastAPI", "version": "0.1.0" }, "paths": { "/items/": { "get": { "summary": "Read Items",
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 10.3K bytes - Click Count (0) -
docs/zh-hant/docs/tutorial/server-sent-events.md
你可以使用 Server-Sent Events(SSE)把資料串流傳送給用戶端。 這與[串流 JSON Lines](stream-json-lines.md)類似,但使用瀏覽器原生支援、透過 [`EventSource` API](https://developer.mozilla.org/en-US/docs/Web/API/EventSource) 的 `text/event-stream` 格式。 /// info 在 FastAPI 0.135.0 新增。 /// ## 什麼是 Server-Sent Events? { #what-are-server-sent-events } SSE 是一種透過 HTTP 從伺服器向用戶端串流傳送資料的標準。 每個事件都是一個小型文字區塊,包含 `data`、`event`、`id` 和 `retry` 等「欄位」,並以空白行分隔。 看起來像這樣:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:33:04 GMT 2026 - 4.6K bytes - Click Count (0) -
docs/zh/docs/how-to/separate-openapi-schemas.md
当然,在某些情况下,你可能希望**输入和输出使用同一个 schema**。 最常见的情形是:你已经有一些自动生成的客户端代码/SDK,你暂时不想更新所有这些自动生成的客户端代码/SDK(也许未来会,但不是现在)。 这种情况下,你可以在 **FastAPI** 中通过参数 `separate_input_output_schemas=False` 禁用该特性。 /// info | 信息 对 `separate_input_output_schemas` 的支持是在 FastAPI `0.102.0` 中添加的。🤓 /// {* ../../docs_src/separate_openapi_schemas/tutorial002_py310.py hl[10] *}Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Feb 13 13:37:57 GMT 2026 - 4.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java
} /** * Delete all elevate words. */ public void deleteAll() { if (logger.isInfoEnabled()) { logger.info("Deleting all elevate words: index={}", arraySettings.arraySettingsIndexName); } arraySettings.delete(ELEVATE_WORD_SETTINGS_KEY); }Created: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 7.5K bytes - Click Count (0) -
cmd/erasure-sets.go
func (s *erasureSets) PutObjectPart(ctx context.Context, bucket, object, uploadID string, partID int, data *PutObjReader, opts ObjectOptions) (info PartInfo, err error) { set := s.getHashedSet(object) return set.PutObjectPart(ctx, bucket, object, uploadID, partID, data, opts) } // GetMultipartInfo - return multipart metadata info uploaded at hashedSet.
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 37K bytes - Click Count (1) -
docs/en/docs/tutorial/query-params-str-validations.md
To achieve that, first import: * `Query` from `fastapi` * `Annotated` from `typing` {* ../../docs_src/query_params_str_validations/tutorial002_an_py310.py hl[1,3] *} /// info FastAPI added support for `Annotated` (and started recommending it) in version 0.95.0. If you have an older version, you would get errors when trying to use `Annotated`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 16.3K bytes - Click Count (0) -
docs/en/docs/tutorial/response-model.md
## Return the same input data { #return-the-same-input-data } Here we are declaring a `UserIn` model, it will contain a plaintext password: {* ../../docs_src/response_model/tutorial002_py310.py hl[7,9] *} /// info To use `EmailStr`, first install [`email-validator`](https://github.com/JoshData/python-email-validator). Make sure you create a [virtual environment](../virtual-environments.md), activate it, and then install it, for example:Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 15.5K bytes - Click Count (0) -
docs/pt/docs/tutorial/sql-databases.md
### Executar o App { #run-the-app } Você pode executar o app: <div class="termy"> ```console $ fastapi dev <span style="color: green;">INFO</span>: Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit) ``` </div>Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 16.5K bytes - Click Count (0) -
docs/pt/docs/tutorial/response-model.md
## Retorne os mesmos dados de entrada { #return-the-same-input-data } Aqui estamos declarando um modelo `UserIn`, ele conterá uma senha em texto simples: {* ../../docs_src/response_model/tutorial002_py310.py hl[7,9] *} /// info | Informação Para usar `EmailStr`, primeiro instale [`email-validator`](https://github.com/JoshData/python-email-validator).Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:20:43 GMT 2026 - 16.7K bytes - Click Count (0) -
docs/zh/docs/advanced/security/oauth2-scopes.md
当这些安全方案使用 OAuth2 时,你还可以声明并使用作用域。 每个“作用域”只是一个(不带空格的)字符串。 它们通常用于声明特定的安全权限,例如: * 常见示例:`users:read` 或 `users:write` * Facebook / Instagram 使用 `instagram_basic` * Google 使用 `https://www.googleapis.com/auth/drive` /// info | 信息 在 OAuth2 中,“作用域”只是一个声明所需特定权限的字符串。 是否包含像 `:` 这样的字符,或者是不是一个 URL,并不重要。 这些细节取决于具体实现。 对 OAuth2 而言,它们都只是字符串。 /// ## 全局纵览 { #global-view }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 13K bytes - Click Count (0)