- Sort Score
- Result 10 results
- Languages All
Results 1101 - 1110 of 1,729 for djson (0.02 sec)
-
tests/test_no_swagger_ui_redirect.py
response = client.get("/docs/oauth2-redirect") assert response.status_code == 404, response.text def test_response(): response = client.get("/items/")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Wed Apr 08 04:37:38 UTC 2020 - 786 bytes - Viewed (0) -
fastapi/_compat.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sat Oct 12 09:36:32 UTC 2024 - 23.4K bytes - Viewed (0) -
docs/em/docs/index.md
* <a href="https://github.com/ijl/orjson" target="_blank"><code>orjson</code></a> - โ ๐ฅ ๐ ๐ โ๏ธ `ORJSONResponse`. * <a href="https://github.com/esnme/ultrajson" target="_blank"><code>ujson</code></a> - โ ๐ฅ ๐ ๐ โ๏ธ `UJSONResponse`. ๐ ๐ช โ ๐ ๐ซ โฎ๏ธ `pip install "fastapi[all]"`. ## ๐
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 20 19:20:23 UTC 2024 - 17.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
StreamUtil.split(slackWebhookUrls, "[,\\s]").of(stream -> stream.filter(StringUtil::isNotBlank).forEach(url -> { try (CurlResponse response = Curl.post(url).header("Content-Type", "application/json").body(body).execute()) { if (response.getHttpStatusCode() == 200) { if (logger.isDebugEnabled()) { logger.debug("Sent {} to {}.", body, url); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.1K bytes - Viewed (0) -
docs/ko/docs/tutorial/security/simple-oauth2.md
/// ## ํ ํฐ ๋ฐํํ๊ธฐ `token` ์๋ํฌ์ธํธ์ ์๋ต์ JSON ๊ฐ์ฒด์ฌ์ผ ํฉ๋๋ค. `token_type`์ด ์์ด์ผ ํฉ๋๋ค. ์ฌ๊ธฐ์๋ "Bearer" ํ ํฐ์ ์ฌ์ฉํ๋ฏ๋ก ํ ํฐ ์ ํ์ "`bearer`"์ฌ์ผ ํฉ๋๋ค. ๊ทธ๋ฆฌ๊ณ ์ก์ธ์ค ํ ํฐ์ ํฌํจํ๋ ๋ฌธ์์ด๊ณผ ํจ๊ป `access_token`์ด ์์ด์ผ ํฉ๋๋ค. ์ด ๊ฐ๋จํ ์์ ์์๋ ์์ ํ ์์ ํ์ง ์๊ณ , ๋์ผํ `username`์ ํ ํฐ์ผ๋ก ๋ฐํํฉ๋๋ค. /// ํ ๋ค์ ์ฅ์์๋ ํจ์ค์๋ ํด์ฑ ๋ฐ <abbr title="JSON Web Tokens">JWT</abbr> ํ ํฐ์ ์ฌ์ฉํ์ฌ ์ค์ ๋ณด์ ๊ตฌํ์ ๋ณผ ์ ์์ต๋๋ค. ํ์ง๋ง ์ง๊ธ์ ํ์ํ ์ธ๋ถ ์ ๋ณด์ ์ง์คํ๊ฒ ์ต๋๋ค. ///
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 11.5K bytes - Viewed (0) -
internal/bucket/replication/replication.go
// https://docs.aws.amazon.com/AmazonS3/latest/dev/replication-add-config.html type Config struct { XMLName xml.Name `xml:"ReplicationConfiguration" json:"-"` Rules []Rule `xml:"Rule" json:"Rules"` // RoleArn is being reused for MinIO replication ARN RoleArn string `xml:"Role" json:"Role"` } // Maximum 2MiB size per replication config. const maxReplicationConfigSize = 2 << 20
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Mar 28 17:44:56 UTC 2024 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/settings/SuggestSettings.java
import org.opensearch.action.get.GetResponse; import org.opensearch.client.Client; import org.opensearch.common.collect.Tuple; import org.opensearch.common.xcontent.XContentType; import org.opensearch.common.xcontent.json.JsonXContent; import org.opensearch.core.xcontent.XContentBuilder; import org.opensearch.index.IndexNotFoundException; public class SuggestSettings {
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 11.7K bytes - Viewed (0) -
.teamcity/src/main/kotlin/projects/CheckProject.kt
) : Project({ id("Check") name = "Check" val performanceTestBucketProvider = StatisticsBasedPerformanceTestBucketProvider(model, File("performance-test-durations.json"), File("performance-tests-ci.json")) params { param("credentialsStorageType", "credentialsJSON") // Disallow Web UI changes to TeamCity settings param("teamcity.ui.settings.readOnly", "true")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Aug 22 07:02:31 UTC 2024 - 3.4K bytes - Viewed (0) -
tests/test_http_connection_injection.py
await websocket.close() client = TestClient(app) def test_value_extracting_by_http(): response = client.get("/http") assert response.status_code == 200 assert response.json() == 42 def test_value_extracting_by_ws(): with client.websocket_connect("/ws") as websocket:
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Aug 09 13:56:41 UTC 2020 - 972 bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/AccessHeaders.java
.url("https://api.github.com/repos/square/okhttp/issues") .header("User-Agent", "OkHttp Headers.java") .addHeader("Accept", "application/json; q=0.5") .addHeader("Accept", "application/vnd.github.v3+json") .build(); try (Response response = client.newCall(request).execute()) { if (!response.isSuccessful()) throw new IOException("Unexpected code " + response);
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun May 22 01:29:42 UTC 2016 - 1.6K bytes - Viewed (0)