- Sort Score
- Result 10 results
- Languages All
Results 361 - 370 of 589 for barT (0.07 sec)
-
docs_src/additional_status_codes/tutorial001_an.py
from typing import Union from fastapi import Body, FastAPI, status from fastapi.responses import JSONResponse from typing_extensions import Annotated app = FastAPI() items = {"foo": {"name": "Fighters", "size": 6}, "bar": {"name": "Tenders", "size": 3}} @app.put("/items/{item_id}") async def upsert_item( item_id: str, name: Annotated[Union[str, None], Body()] = None, size: Annotated[Union[int, None], Body()] = None, ):
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Mar 18 12:29:59 UTC 2023 - 734 bytes - Viewed (0) -
tests/test_tutorial/test_bigger_applications/test_main_an_py39.py
assert response.json() == {"name": "Plumbus", "item_id": "plumbus"} @needs_py39 def test_items_bar_token_jessica(client: TestClient): response = client.get( "/items/bar?token=jessica", headers={"X-Token": "fake-super-secret-token"} ) assert response.status_code == 404 assert response.json() == {"detail": "Item not found"} @needs_py39
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 24.9K bytes - Viewed (0) -
docs_src/schema_extra_example/tutorial005_an_py310.py
"description": "FastAPI can convert price `strings` to actual `numbers` automatically", "value": { "name": "Bar", "price": "35.4", }, }, "invalid": { "summary": "Invalid data is rejected with an error", "value": {
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 26 18:03:13 UTC 2023 - 1.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/MoreFilesTest.java
assertEquals("", MoreFiles.getFileExtension(FS.getPath(".blah."))); assertEquals("", MoreFiles.getFileExtension(root().resolve("foo.bar/blah"))); assertEquals("", MoreFiles.getFileExtension(root().resolve("foo/.bar/blah"))); } public void testGetNameWithoutExtension() { assertEquals("", MoreFiles.getNameWithoutExtension(FS.getPath(".txt")));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 27.4K bytes - Viewed (0) -
docs_src/schema_extra_example/tutorial005_py310.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Aug 26 18:03:13 UTC 2023 - 1.3K bytes - Viewed (0) -
docs/ja/docs/tutorial/query-params-str-validations.md
``` そしてURLは以下です: ``` http://localhost:8000/items/?q=foo&q=bar ``` 複数の*クエリパラメータ*の値`q`(`foo`と`bar`)を*path operation関数*内で*関数パラメータ*`q`としてPythonの`list`を受け取ることになります。 そのため、このURLのレスポンスは以下のようになります: ```JSON { "q": [ "foo", "bar" ] } ``` /// tip | "豆知識"
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 10.5K bytes - Viewed (0) -
docs/zh/docs/tutorial/header-params.md
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.2K bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/bad-modelVersion.xml
specific language governing permissions and limitations under the License. --> <project> <modelVersion>99.0.0</modelVersion> <groupId>foo</groupId> <artifactId>bar</artifactId> <version>0.1</version>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 907 bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/bad-version.xml
specific language governing permissions and limitations under the License. --> <project> <modelVersion>4.0.0</modelVersion> <groupId>foo</groupId> <artifactId>bar</artifactId> <version>this\is/bad</version>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 914 bytes - Viewed (0) -
compat/maven-model-builder/src/test/resources/poms/validation/modelVersion-4_0.xml
specific language governing permissions and limitations under the License. --> <project> <modelVersion>4.0</modelVersion> <groupId>foo</groupId> <artifactId>bar</artifactId> <version>0.1</version>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 904 bytes - Viewed (0)