- Sort Score
- Result 10 results
- Languages All
Results 2181 - 2190 of 2,637 for bcode (0.03 sec)
-
docs/en/docs/python-types.md
/// tip The fact that this is **standard Python** means that you will still get the **best possible developer experience** in your editor, with the tools you use to analyze and refactor your code, etc. β¨ And also that your code will be very compatible with many other Python tools and libraries. π /// ## Type hints in **FastAPI** { #type-hints-in-fastapi }Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 17.1K bytes - Viewed (0) -
mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt
Request .Builder() .url("$scheme://$authority/") .headers(request.headers) .build() val fancyResponse = Response .Builder() .code(webSocketResponse.code) .message(webSocketResponse.message) .headers(webSocketResponse.headers) .request(fancyRequest) .protocol(Protocol.HTTP_1_1) .build() val webSocket =Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 02 20:36:00 UTC 2025 - 40.3K bytes - Viewed (0) -
docs/changelogs/changelog_2x.md
## Version 2.2.0 _2014-12-30_ * **`RequestBody.contentLength()` now throws `IOException`.** This is a source-incompatible change. If you have code that calls `RequestBody.contentLength()`, your compile will break with this update. The change is binary-compatible, however: code compiled for OkHttp 2.0 and 2.1 will continue to work with this update. * **`COMPATIBLE_TLS` no longer supports SSLv3.** In response to the
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sun Feb 06 02:19:09 UTC 2022 - 26.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/AndXServerMessageBlockTest.java
} @Test @DisplayName("Test readAndXWireFormat with error code") void testReadAndXWireFormatWithErrorCode() throws SMBProtocolDecodingException { testBlock = new TestAndXServerMessageBlock(mockConfig, (byte) 0x25, mockAndxCommand); testBlock.errorCode = 1; // Set error code byte[] buffer = new byte[1024]; testBlock.headerStart = 0;Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
cmd/batch-rotate.go
batchLogIf(ctx, fmt.Errorf("unable to notify %v", err)) } cancel() return nil } //msgp:ignore batchKeyRotationJobError type batchKeyRotationJobError struct { Code string Description string HTTPStatusCode int } func (e batchKeyRotationJobError) Error() string { return e.Description } // Validate validates the job definition input
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 14.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java
// Ordinarily we'd use something like i += Character.charCount(string.codePointAt(i)) here. But // we can get away with i++ because the whole point of this method is to return false if we find // a code point that doesn't fit in a char. for (int i = 0; i < string.length(); i++) { if (string.codePointAt(i) > 0xffff) { return false; } } return true; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 8.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/GeneralRangeTest.java
import java.util.Arrays; import java.util.List; import java.util.Objects; import junit.framework.TestCase; import org.jspecify.annotations.NullMarked; import org.jspecify.annotations.Nullable; /** * Tests for {@code GeneralRange}. * * @author Louis Wasserman */ @GwtCompatible @NullMarked public class GeneralRangeTest extends TestCase { private static final Ordering<@Nullable Integer> ORDERING =Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 8.4K bytes - Viewed (0) -
docs/ko/docs/history-design-future.md
--- ## λμμΈ κ·Έ ν, **FastAPI** μ¬μ©μκ° λ κ°λ°μλ‘μ μ¬μ©νκ³ μΆμ κ°λ°μ "API"λ₯Ό λμμΈνμ΅λλ€. [Python Developer Survey](https://www.jetbrains.com/research/python-developers-survey-2018/#development-tools)μ λ°λ₯΄λ©΄ μ½ 80%μ Python κ°λ°μκ° PyCharm, VS Code, Jedi κΈ°λ° νΈμ§κΈ° λ±μμ κ°λ°ν©λλ€. μ΄ κ³Όμ μμ μ¬λ¬ μμ΄λμ΄λ₯Ό ν μ€νΈνμ΅λλ€. λλΆλΆμ λ€λ₯Έ νΈμ§κΈ°λ μ μ¬νκ² λμνκΈ° λλ¬Έμ, **FastAPI**μ μ΄μ μ κ±°μ λͺ¨λ νΈμ§κΈ°μμ λ릴 μ μμ΅λλ€. μ΄ κ³Όμ μ ν΅ν΄ μ½λ μ€λ³΅μ μ΅μννκ³ , λͺ¨λ κ³³μμ μλ μμ±, νμ κ²μ¬, μλ¬ νμΈ κΈ°λ₯μ΄ μ 곡λλ μ΅μ μ λ°©μμ μ°Ύμλμ΅λλ€.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Thu Nov 07 20:46:14 UTC 2024 - 4.4K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/CacheStrategy.kt
request: Request, ): Boolean { // Always go to network for uncacheable response codes (RFC 7231 section 6.1), This // implementation doesn't support caching partial content. when (response.code) { HTTP_OK, HTTP_NOT_AUTHORITATIVE, HTTP_NO_CONTENT, HTTP_MULT_CHOICE, HTTP_MOVED_PERM, HTTP_NOT_FOUND, HTTP_BAD_METHOD, HTTP_GONE,Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt
.build() val fakeAuthChallengeResponse = Response .Builder() .request(proxyConnectRequest) .protocol(Protocol.HTTP_1_1) .code(HttpURLConnection.HTTP_PROXY_AUTH) .message("Preemptive Authenticate") .sentRequestAtMillis(-1L) .receivedResponseAtMillis(-1L) .header("Proxy-Authenticate", "OkHttp-Preemptive")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed May 28 23:28:25 UTC 2025 - 12K bytes - Viewed (0)