- Sort Score
- Result 10 results
- Languages All
Results 841 - 850 of 1,545 for description (0.15 sec)
-
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedback.kt
triggerName = "QuickFeedback", vcsRootId = gradlePromotionBranches ) { init { id("Promotion_SnapshotFromQuickFeedback") name = "Nightly Snapshot (from QuickFeedback)" description = "Promotes the latest successful changes on '${branch.branchName}' from Quick Feedback as a new nightly snapshot" }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jul 25 21:00:40 UTC 2022 - 1.3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepCheckReady.kt
cleanCheckout = false ) { init { id("Promotion_SnapshotFromQuickFeedbackStepCheckReady") name = "Nightly Snapshot (from QuickFeedback) - Check Ready" description = "Checks that a nightly snapshot can be published from QuickFeedback" }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Jul 25 21:00:40 UTC 2022 - 1.2K bytes - Viewed (0) -
docs/em/docs/tutorial/body.md
๐ ๐โ ๐ฃ ๐ข ๐ข, ๐โ ๐ท ๐ข โ๏ธ ๐ข ๐ฒ, โซ๏ธ ๐ซ โ. โช, โซ๏ธ โ. โ๏ธ `None` โ โซ๏ธ ๐ฆ. ๐ผ, ๐ ๐ท ๐ ๐ฃ ๐ป "`object`" (โ๏ธ ๐ `dict`) ๐: ```JSON { "name": "Foo", "description": "An optional description", "price": 45.2, "tax": 3.5 } ``` ... `description` & `tax` ๐ฆ (โฎ๏ธ ๐ข ๐ฒ `None`), ๐ ๐ป "`object`" ๐ โ: ```JSON { "name": "Foo", "price": 45.2 } ``` ## ๐ฃ โซ๏ธ ๐ข
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 6.4K bytes - Viewed (0) -
cmd/admin-handlers-users.go
if targetUser == "" { targetUser = cred.AccessKey } description := createReq.Description if description == "" { description = createReq.Comment } opts := newServiceAccountOpts{ accessKey: createReq.AccessKey, secretKey: createReq.SecretKey, name: createReq.Name, description: description, expiration: createReq.Expiration, claims: make(map[string]interface{}),
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 03 23:11:02 UTC 2024 - 85.1K bytes - Viewed (0) -
docs_src/query_params_str_validations/tutorial008_an_py39.py
from fastapi import FastAPI, Query app = FastAPI() @app.get("/items/") async def read_items( q: Annotated[ Union[str, None], Query( title="Query string", description="Query string for the items to search in the database that have a good match", min_length=3, ), ] = None, ): results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]} if q:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 24 20:26:06 UTC 2023 - 511 bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbNamedPipe.java
* <p><table border="1" cellpadding="3" cellspacing="0" width="100%"> * <tr bgcolor="#ccccff"> * <td colspan="2"><b><code>SmbNamedPipe</code> Constructor Examples</b></td> * <tr><td width="20%"><b>Code Sample</b></td><td><b>Description</b></td></tr> * <tr><td width="20%"><pre> * new SmbNamedPipe( "smb1://server/IPC$/PIPE/foo", * SmbNamedPipe.PIPE_TYPE_RDWR | * SmbNamedPipe.PIPE_TYPE_CALL ); * </pre></td><td>
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 7.3K bytes - Viewed (0) -
docs/ko/docs/tutorial/path-operation-configuration.md
{!../../docs_src/path_operation_configuration/tutorial002.py!} ``` ์ ๋ฌ๋ ํ๊ทธ๋ค์ OpenAPI์ ์คํค๋ง์ ์ถ๊ฐ๋๋ฉฐ, ์๋ ๋ฌธ์ ์ธํฐํ์ด์ค์์ ์ฌ์ฉ๋ฉ๋๋ค: <img src="/img/tutorial/path-operation-configuration/image01.png"> ## ์์ฝ๊ณผ ๊ธฐ์ `summary`์ `description`์ ์ถ๊ฐํ ์ ์์ต๋๋ค: ```Python hl_lines="20-21" {!../../docs_src/path_operation_configuration/tutorial003.py!} ``` ## ๋ ์คํธ๋ง์ผ๋ก ๋ง๋ ๊ธฐ์
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 4.1K bytes - Viewed (0) -
docs_src/schema_extra_example/tutorial002.py
from typing import Union from fastapi import FastAPI from pydantic import BaseModel, Field app = FastAPI() class Item(BaseModel): name: str = Field(examples=["Foo"]) description: Union[str, None] = Field(default=None, examples=["A very nice Item"]) price: float = Field(examples=[35.4]) tax: Union[float, None] = Field(default=None, examples=[3.2]) @app.put("/items/{item_id}")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 517 bytes - Viewed (0) -
docs_src/body_nested_models/tutorial004.py
from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Image(BaseModel): url: str name: str class Item(BaseModel): name: str description: Union[str, None] = None price: float tax: Union[float, None] = None tags: Set[str] = set() image: Union[Image, None] = None @app.put("/items/{item_id}")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat May 14 11:59:59 UTC 2022 - 504 bytes - Viewed (0) -
docs_src/path_operation_configuration/tutorial002_py310.py
from fastapi import FastAPI from pydantic import BaseModel app = FastAPI() class Item(BaseModel): name: str description: str | None = None price: float tax: float | None = None tags: set[str] = set() @app.post("/items/", response_model=Item, tags=["items"]) async def create_item(item: Item): return item @app.get("/items/", tags=["items"]) async def read_items():
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jan 07 14:11:31 UTC 2022 - 537 bytes - Viewed (0)