- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 488 for 200 (0.01 sec)
-
docs/em/docs/tutorial/response-status-code.md
/// ๐บ๐ธ๐, ๐ ๐จ ๐ข ๐ ๐ 3๏ธโฃ 9๏ธโฃ ๐ ๐จ. ๐ซ ๐ ๐ โ๏ธ ๐ ๐ ๐ค ๐ซ, โ๏ธ โ ๐ ๐ข. ๐: * `100` & ๐ "โน". ๐ ๐ โ๏ธ ๐ซ ๐. ๐จ โฎ๏ธ ๐ซ ๐ ๐ ๐ซ๐ โ๏ธ ๐ช. * **`200`** & ๐ "๐" ๐จ. ๐ซ ๐ ๐ ๐ โ๏ธ ๐. * `200` ๐ข ๐ ๐, โ โ ๐ "๐". * โ1๏ธโฃ ๐ผ ๐ `201`, "โ". โซ๏ธ ๐ โ๏ธ โฎ๏ธ ๐ ๐ โบ ๐ฝ. * ๐ ๐ผ `204`, "๐ โโ ๐". ๐ ๐จ โ๏ธ ๐โ ๐ค ๐ โโ ๐ ๐จ ๐ฉโ๐ป, & ๐จ ๐ ๐ซ โ๏ธ ๐ช.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 3.3K bytes - Viewed (0) -
docs/iam/identity-management-plugin.md
| token | string | Token from the AssumeRoleWithCustomToken call for external verification | ### Response If the token is valid and access is approved, the plugin must return a `200` (OK) HTTP status code. A `200 OK` Response should have `application/json` content-type and body with the following structure: ```json { "user": <string>, "maxValiditySeconds": <integer>, "claims": <key-value-pairs> }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri May 27 00:58:09 UTC 2022 - 4.2K bytes - Viewed (0) -
android-test/src/androidTest/java/okhttp/android/test/sni/SniOverrideTest.kt
.url("https://sni.cloudflaressl.com/cdn-cgi/trace") .header("Host", "cloudflare-dns.com") .build() client.newCall(request).execute().use { response -> assertThat(response.code).isEqualTo(200) assertThat(response.protocol).isEqualTo(Protocol.HTTP_2) assertThat(response.body.string()).contains("h=cloudflare-dns.com") } } @Test fun getWithDns() { client =
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
/** * The CRUD mode for the form. */ @ValidateTypeFailure public Integer crudMode; /** * The name of the web configuration. */ @Required @Size(max = 200) public String name; /** * The description of the web configuration. */ @Size(max = 1000) public String description; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.9K bytes - Viewed (0) -
docs/es/docs/tutorial/response-status-code.md
En breve: * `100` y superiores son para "Informaciรณn". Rara vez los usas directamente. Los responses con estos cรณdigos de estado no pueden tener un body. * **`200`** y superiores son para responses "Exitosos". Estos son los que usarรญas mรกs. * `200` es el cรณdigo de estado por defecto, lo que significa que todo estaba "OK". * Otro ejemplo serรญa `201`, "Created". Comรบnmente se usa despuรฉs de crear un nuevo registro en la base de datos.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 4.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/SessionReuseTest.kt
server.enqueue(MockResponse(body = "abc1")) server.enqueue(MockResponse(body = "abc2")) val request = Request(server.url("/")) client.newCall(request).execute().use { response -> assertEquals(200, response.code) } client.connectionPool.evictAll() assertEquals(0, client.connectionPool.connectionCount()) // Force reuse. This appears flaky (30% of the time) even though sessions are reused.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 6K bytes - Viewed (1) -
okhttp-logging-interceptor/src/main/kotlin/okhttp3/logging/HttpLoggingInterceptor.kt
/** No logs. */ NONE, /** * Logs request and response lines. * * Example: * ``` * --> POST /greeting http/1.1 (3-byte body) * * <-- 200 OK (22ms, 6-byte body) * ``` */ BASIC, /** * Logs request and response lines and their respective headers. * * Example: * ```
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Aug 21 14:27:04 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
large downloads * Update the language level to Java 7. (OkHttp requires Android 2.3+ or Java 7+.) ## Version 2.0.0-RC2 _2014-06-11_ This update fixes problems in 2.0.0-RC1. Read the 2.0.0-RC1 changes for advice on upgrading from 1.x to 2.x. * Fix: Don't leak connections! There was a regression in 2.0.0-RC1 where connections were neither closed nor pooled.
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionTest.java
checkVersionsOrder("1.0.0." + x + "1", "1.0.0-" + x + "2"); // 2.0.X == 2-X == 2.0.0.X for any string x checkVersionsEqual("2-" + x, "2.0." + x); // previously ordered, now equals checkVersionsEqual("2-" + x, "2.0.0." + x); // previously ordered, now equals checkVersionsEqual("2.0." + x, "2.0.0." + x); // previously ordered, now equals } } @Test
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 17.8K bytes - Viewed (0) -
guava/src/com/google/common/graph/EndpointPair.java
* {@link #nodeV()}). * * <p>The edge is a self-loop if, and only if, the two endpoints are equal. * * @author James Sexton * @since 20.0 */ @Beta @Immutable(containerOf = {"N"}) public abstract class EndpointPair<N> implements Iterable<N> { private final N nodeU; private final N nodeV; private EndpointPair(N nodeU, N nodeV) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 8.1K bytes - Viewed (0)