- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 690 for ok (0.03 sec)
-
okhttp/src/test/java/okhttp3/HeadersJvmTest.kt
Headers.Builder().add("foo bar") } } @Test fun addThrowsOnMultiColon() { assertFailsWith<IllegalArgumentException> { Headers.Builder().add(":status: 200 OK") } } @Test fun addUnsafeNonAsciiRejectsUnicodeName() { assertFailsWith<IllegalArgumentException> { Headers.Builder() .addUnsafeNonAscii("hΓ©ader1", "value1") .build()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.6K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/FunnelsTest.java
while (bb.hasRemaining()) { bb.get(); } } }; try { funnel.funnel(null, primitiveSink); fail(); } catch (NullPointerException ok) { } } public void testAsOutputStream() throws Exception { PrimitiveSink sink = mock(PrimitiveSink.class); OutputStream out = Funnels.asOutputStream(sink); byte[] bytes = {1, 2, 3, 4};
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 5.9K bytes - Viewed (0) -
docs/pt/docs/tutorial/cookie-param-models.md
Por exemplo, se o cliente tentar enviar um cookie `santa_tracker` com o valor de `good-list-please`, o cliente receberΓ‘ uma resposta de **erro** informando que o <abbr title="O papai noel desaprova a falta de biscoitos. π Ok, chega de piadas com os cookies.">cookie `santa_tracker` is not allowed</abbr>: ```json { "detail": [ { "type": "extra_forbidden", "loc": ["cookie", "santa_tracker"],
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 07 20:18:07 UTC 2024 - 4.4K bytes - Viewed (0) -
.github/workflows/sigbuild-docker-presubmit.yml
with: registry: us-central1-docker.pkg.dev username: _json_key password: ${{ secrets.GCP_CREDS }} - name: Grab the date to do cache busting (assumes same day OK to keep) run: | echo "DATE=$(date +'%Y-%m-%d')" >> "$GITHUB_OUTPUT" id: date - name: Build containers, and push to GCR only if the 'build and push to gcr.io for staging' label is applied
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Nov 01 08:40:10 UTC 2024 - 4.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.5K bytes - Viewed (0) -
cmd/admin-handlers_test.go
return i, false } } } return 0, true } for i, tc := range testCases { got := topLockEntries(tc.peerLocks, false) if idx, ok := check(tc.expected, got); !ok { t.Fatalf("%d: mismatch at %d \n expected %#v but got %#v", i, idx, tc.expected[idx], got[idx]) } }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Jul 24 10:24:01 UTC 2024 - 13.9K bytes - Viewed (0) -
docs/ko/docs/advanced/response-change-status-code.md
# μλ΅ - μν μ½λ λ³κ²½ κΈ°λ³Έ [μλ΅ μν μ½λ μ€μ ](../tutorial/response-status-code.md){.internal-link target=_blank}μ΄ κ°λ₯νλ€λ κ±Έ μ΄λ―Έ μκ³ κ³μ€ κ²λλ€. νμ§λ§ κ²½μ°μ λ°λΌ κΈ°λ³Έ μ€μ κ³Ό λ€λ₯Έ μν μ½λλ₯Ό λ°νν΄μΌ ν λκ° μμ΅λλ€. ## μ¬μ© μ μλ₯Ό λ€μ΄ κΈ°λ³Έμ μΌλ‘ HTTP μν μ½λ "OK" `200`μ λ°ννκ³ μΆλ€κ³ κ°μ ν΄ λ΄ μλ€. νμ§λ§ λ°μ΄ν°κ° μ‘΄μ¬νμ§ μμΌλ©΄ μ΄λ₯Ό μλ‘ μμ±νκ³ , HTTP μν μ½λ "CREATED" `201`μ λ°ννκ³ μ ν λκ° μμ μ μμ΅λλ€. μ΄λλ μ¬μ ν `response_model`μ μ¬μ©νμ¬ λ°ννλ λ°μ΄ν°λ₯Ό νν°λ§νκ³ λ³ννκ³ μΆμ μ μμ΅λλ€. μ΄λ° κ²½μ°μλ `Response` νλΌλ―Έν°λ₯Ό μ¬μ©ν μ μμ΅λλ€. ## `Response` νλΌλ―Έν° μ¬μ©νκΈ°
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 27 22:01:39 UTC 2024 - 1.8K bytes - Viewed (0) -
cmd/perf-tests.go
t := time.Now() r, _, _, err := c.GetObject(downloadsCtx, opts.bucketName, tmpObjName, gopts) if err != nil { errResp, ok := err.(minio.ErrorResponse) if ok && errResp.StatusCode == http.StatusNotFound { continue } if !contextCanceled(downloadsCtx) && !errors.Is(err, context.Canceled) { errOnce.Do(func() {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 23:05:23 UTC 2024 - 11.8K bytes - Viewed (0) -
docs/en/docs/tutorial/response-status-code.md
* **`200`** and above are for "Successful" responses. These are the ones you would use the most. * `200` is the default status code, which means everything was "OK". * Another example would be `201`, "Created". It is commonly used after creating a new record in the database.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Mon Oct 28 11:13:18 UTC 2024 - 3.9K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/GcFinalization.java
future.get(1L, SECONDS); return; } catch (CancellationException | ExecutionException ok) { return; } catch (InterruptedException ie) { throw new RuntimeException("Unexpected interrupt while waiting for future", ie); } catch (TimeoutException tryHarder) { /* OK */ } } while (System.nanoTime() - deadline < 0);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 11.6K bytes - Viewed (0)