- Sort Score
- Result 10 results
- Languages All
Results 171 - 180 of 471 for bar3 (0.03 sec)
-
tests/test_tutorial/test_response_model/test_tutorial004_py310.py
return client @needs_py310 @pytest.mark.parametrize( "url,data", [ ("/items/foo", {"name": "Foo", "price": 50.2}), ( "/items/bar", {"name": "Bar", "description": "The bartenders", "price": 62, "tax": 20.2}, ), ( "/items/baz", { "name": "Baz", "description": None,
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Aug 04 20:47:07 UTC 2023 - 5.2K bytes - Viewed (0) -
tests/test_modules_same_name_body/test_main.py
data = {"a": 2, "b": "foo"} response = client.post("/a/compute", json=data) assert response.status_code == 200, response.text data = response.json() def test_post_a_invalid(): data = {"a": "bar", "b": "foo"} response = client.post("/a/compute", json=data) assert response.status_code == 422, response.text def test_post_b(): data = {"a": 2, "b": "foo"}
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Fri Jun 30 18:25:16 UTC 2023 - 5.6K bytes - Viewed (0) -
docs/em/docs/tutorial/header-params.md
{!> ../../docs_src/header_params/tutorial003_py310.py!} ``` //// ๐ฅ ๐ ๐ โฎ๏ธ ๐ *โก ๐ ๏ธ* ๐จ 2๏ธโฃ ๐บ๐ธ๐ ๐ ๐: ``` X-Token: foo X-Token: bar ``` ๐จ ๐ ๐: ```JSON { "X-Token values": [ "bar", "foo" ] } ``` ## ๐ ๐ฃ ๐ โฎ๏ธ `Header`, โ๏ธ ๐ โ โ `Query`, `Path` & `Cookie`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 3.2K bytes - Viewed (0) -
src/archive/tar/tar_test.go
formats: FormatUSTAR | FormatPAX | FormatGNU, }, { header: &Header{Xattrs: map[string]string{"foo": "bar"}}, paxHdrs: map[string]string{paxSchilyXattr + "foo": "bar"}, formats: FormatPAX, }, { header: &Header{Xattrs: map[string]string{"foo": "bar"}, Format: FormatGNU}, paxHdrs: map[string]string{paxSchilyXattr + "foo": "bar"}, formats: FormatUnknown, }, { header: &Header{Xattrs: map[string]string{"็จๆถๅ": "\x00hello"}},
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jul 25 00:25:45 UTC 2024 - 23.9K bytes - Viewed (0) -
docs/ko/docs/tutorial/query-params-str-validations.md
``` ์๋์ ๊ฐ์ URL์ ์ฌ์ฉํฉ๋๋ค: ``` http://localhost:8000/items/?q=foo&q=bar ``` ์ฌ๋ฌ `q` *์ฟผ๋ฆฌ ๋งค๊ฐ๋ณ์* ๊ฐ๋ค์ (`foo` ๋ฐ `bar`) ํ์ด์ฌ `list`๋ก *๊ฒฝ๋ก ์๋ ํจ์* ๋ด *ํจ์ ๋งค๊ฐ๋ณ์* `q`๋ก ์ ๋ฌ ๋ฐ์ต๋๋ค. ๋ฐ๋ผ์ ํด๋น 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 - 9.5K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/CollectionSerializationEqualTester.java
import com.google.common.testing.SerializableTester; import org.junit.Ignore; /** * Basic reserialization test for collection types that must preserve {@code equals()} behavior when * reserialized. (Sets and Lists, but not bare Collections.) * * @author Louis Wasserman */ @GwtCompatible @Ignore // Affects only Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3")
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 1.6K bytes - Viewed (0) -
src/archive/zip/testdata/winxp.zip
hello world dir/bar foo readonly important...
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 08 04:08:51 UTC 2014 - 412 bytes - Viewed (0) -
cmd/storage-rest_test.go
objectName string destVolumeName string destObjectName string expectErr bool }{ {"foo", "myobject", "foo", "yourobject", false}, {"foo", "yourobject", "bar", "myobject", false}, // overwrite. {"foo", "otherobject", "bar", "myobject", false}, } for i, testCase := range testCases {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jul 22 07:04:48 UTC 2024 - 11.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/net/UrlEscaperTesting.java
assertUnescaped(e, '@'); // Don't use plus for spaces assertEscaping(e, "%20", ' '); assertEquals("safe%20with%20spaces", e.escape("safe with spaces")); assertEquals("foo@bar.com", e.escape("foo@bar.com")); } private UrlEscaperTesting() {}
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Oct 21 17:53:22 UTC 2024 - 3.6K bytes - Viewed (0) -
tests/sql_builder_test.go
return tx.Model(&User{}).Where("id = ?", 100).Update("name", "Foo bar") }) assertEqualSQL(t, `UPDATE "users" SET "name"='Foo bar',"updated_at"='2021-10-18 19:50:09.438' WHERE id = 100 AND "users"."deleted_at" IS NULL`, sql) // UpdateColumn sql = DB.ToSQL(func(tx *gorm.DB) *gorm.DB { return tx.Model(&User{}).Where("id = ?", 100).UpdateColumn("name", "Foo bar") })
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Fri Jan 12 08:42:21 UTC 2024 - 16.7K bytes - Viewed (0)