- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 557 for tabs (0.02 seconds)
-
tests/test_tutorial/test_bigger_applications/test_main.py
{ "openapi": "3.1.0", "info": {"title": "FastAPI", "version": "0.1.0"}, "paths": { "/users/": { "get": { "tags": ["users"], "summary": "Read Users", "operationId": "read_users_users__get", "parameters": [ {Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 22.8K bytes - Click Count (0) -
docs/zh/docs/advanced/generate-clients.md
<img src="/img/tutorial/generate-clients/image05.png"> ## 带有标签的 FastAPI 应用 { #fastapi-app-with-tags } 很多情况下,你的 FastAPI 应用会更大,你可能会用标签来划分不同组的*路径操作*。 例如,你可以有一个 **items** 相关的部分和另一个 **users** 相关的部分,它们可以用标签来分隔: {* ../../docs_src/generate_clients/tutorial002_py310.py hl[21,26,34] *} ### 生成带标签的 TypeScript 客户端 { #generate-a-typescript-client-with-tags } 如果你为使用了标签的 FastAPI 应用生成客户端,通常也会根据标签来拆分客户端代码。 这样你就可以在客户端代码中把内容正确地组织和分组:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 17:06:37 GMT 2026 - 8.9K bytes - Click Count (0) -
docs_src/path_operation_configuration/tutorial003_py310.py
class Item(BaseModel): name: str description: str | None = None price: float tax: float | None = None tags: set[str] = set() @app.post( "/items/", summary="Create an item", description="Create an item with all the information, name, description, price, tax and a set of unique tags", ) async def create_item(item: Item) -> Item:
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Wed Feb 04 12:07:26 GMT 2026 - 457 bytes - Click Count (0) -
tests/test_tutorial/test_body_nested_models/test_tutorial004.py
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 9.5K bytes - Click Count (0) -
docs/es/docs/tutorial/body-nested-models.md
Usa esa misma sintaxis estándar para atributos de modelos con tipos internos. Así, en nuestro ejemplo, podemos hacer que `tags` sea específicamente una "lista de strings": {* ../../docs_src/body_nested_models/tutorial002_py310.py hl[12] *} ## Tipos de conjunto { #set-types } Pero luego pensamos en ello, y nos damos cuenta de que los tags no deberían repetirse, probablemente serían strings únicos.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:15:55 GMT 2026 - 7.2K bytes - Click Count (0) -
docs/ja/docs/advanced/generate-clients.md
<img src="/img/tutorial/generate-clients/image05.png"> ## タグ付きの FastAPI アプリ { #fastapi-app-with-tags } 実運用ではアプリは大きくなり、*path operation* のグループ分けにタグを使うことが多いでしょう。 例えば **items** 用と **users** 用のセクションがあり、タグで分けられます: {* ../../docs_src/generate_clients/tutorial002_py310.py hl[21,26,34] *} ### タグ付き TypeScript クライアントの生成 { #generate-a-typescript-client-with-tags } タグを用いた FastAPI アプリからクライアントを生成すると、通常クライアント側のコードもタグごとに分割されます。
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Fri Mar 20 14:07:17 GMT 2026 - 11.1K bytes - Click Count (0) -
docs/uk/docs/tutorial/metadata.md
/// ### Використовуйте свої теги { #use-your-tags } Використовуйте параметр `tags` зі своїми *операціями шляху* (і `APIRouter`s), щоб призначити їх до різних тегів: {* ../../docs_src/metadata/tutorial004_py310.py hl[21,26] *} /// info | Інформація Детальніше про теги читайте в розділі [Конфігурація операції шляху](path-operation-configuration.md#tags). /// ### Перевірте документацію { #check-the-docs }Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 19 18:27:41 GMT 2026 - 8.8K bytes - Click Count (0) -
docs/en/docs/tutorial/bigger-applications.md
### Add some custom `tags`, `responses`, and `dependencies` { #add-some-custom-tags-responses-and-dependencies } We are not adding the prefix `/items` nor the `tags=["items"]` to each *path operation* because we added them to the `APIRouter`.Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sat Mar 07 09:29:03 GMT 2026 - 19.2K bytes - Click Count (0) -
cmd/batch-replicate_gen.go
return } case "Tags": var zb0002 uint32 zb0002, err = dc.ReadArrayHeader() if err != nil { err = msgp.WrapError(err, "Tags") return } if cap(z.Tags) >= int(zb0002) { z.Tags = (z.Tags)[:zb0002] } else { z.Tags = make([]BatchJobKV, zb0002) } for za0001 := range z.Tags { err = z.Tags[za0001].DecodeMsg(dc) if err != nil {
Created: Sun Apr 05 19:28:12 GMT 2026 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 40.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/suggest/index/contents/ContentsParser.java
* * @param words the array of search words * @param readings the array of readings corresponding to the search words * @param fields the array of fields associated with the search words * @param tags the array of tags associated with the search words * @param roles the array of roles associated with the search words * @param score the score associated with the search wordsCreated: Fri Apr 17 09:08:13 GMT 2026 - Last Modified: Sat Mar 15 06:51:20 GMT 2025 - 4.1K bytes - Click Count (0)