- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 17 for 4291 (0.02 sec)
-
guava/src/com/google/common/net/InetAddresses.java
* * <p>For more on IPv4 compatible addresses see section 2.5.5.1 of <a target="_parent" * href="http://tools.ietf.org/html/rfc4291#section-2.5.5.1">RFC 4291</a>. * * <p>NOTE: This method is different from {@link Inet6Address#isIPv4CompatibleAddress} in that it * more correctly classifies {@code "::"} and {@code "::1"} as proper IPv6 addresses (which they
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InetAddresses.java
* * <p>For more on IPv4 compatible addresses see section 2.5.5.1 of <a target="_parent" * href="http://tools.ietf.org/html/rfc4291#section-2.5.5.1">RFC 4291</a>. * * <p>NOTE: This method is different from {@link Inet6Address#isIPv4CompatibleAddress} in that it * more correctly classifies {@code "::"} and {@code "::1"} as proper IPv6 addresses (which they
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/JSSETest.kt
) // Not much we can guarantee on JDK 11. PlatformVersion.majorVersion == 11 -> assertThat(s.enabledProtocols.toList()).contains( "TLSv1.2", ) // JDK 8 291 removed older versions // See https://java.com/en/jre-jdk-cryptoroadmap.html PlatformVersion.majorVersion == 8 -> assertThat(s.enabledProtocols.toList()).contains( "TLSv1.2", )
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 18 12:28:21 UTC 2025 - 5.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.29.md
- [Changelog since v1.29.1](#changelog-since-v1291) - [Changes by Kind](#changes-by-kind-13) - [Feature](#feature-9) - [Bug or Regression](#bug-or-regression-10) - [Dependencies](#dependencies-13) - [Added](#added-13) - [Changed](#changed-13) - [Removed](#removed-13) - [v1.29.1](#v1291) - [Downloads for v1.29.1](#downloads-for-v1291) - [Source Code](#source-code-14)
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Mar 12 00:36:01 UTC 2025 - 429.6K bytes - Viewed (1) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpStatusCodes.kt
const val HTTP_TEMP_REDIRECT = 307 /** `308 Permanent Redirect` (HTTP/1.1 - RFC 7538) */ const val HTTP_PERM_REDIRECT = 308 /** `421 Misdirected Request` (HTTP/2 - RFC 7540) */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 14:39:28 UTC 2025 - 2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/ConnectionCoalescingTest.kt
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jun 19 11:44:16 UTC 2025 - 19.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/RequestBody.kt
* * A authorization challenge (HTTP 401 and 407) that is satisfied by the [Authenticator]. * * A retryable server failure (HTTP 503 with a `Retry-After: 0` response header). * * A misdirected request (HTTP 421) on a coalesced connection. */ open fun isOneShot(): Boolean = false companion object { /** Empty request body with no content-type. */ @JvmField
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Jun 04 17:43:43 UTC 2025 - 9K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/Collections2Test.java
assertNextPermutation(newArrayList(2, 3, 4, 1), permutations); assertNextPermutation(newArrayList(2, 4, 3, 1), permutations); assertNextPermutation(newArrayList(4, 2, 3, 1), permutations); assertNextPermutation(newArrayList(4, 2, 1, 3), permutations); assertNextPermutation(newArrayList(2, 4, 1, 3), permutations); assertNextPermutation(newArrayList(2, 1, 4, 3), permutations);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.1K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt
HTTP_MISDIRECTED_REQUEST -> { // OkHttp can coalesce HTTP/2 connections even if the domain names are different. See // RealConnection.isEligible(). If we attempted this and the server returned HTTP 421, then // we can retry on a different connection. val requestBody = userResponse.request.body if (requestBody != null && requestBody.isOneShot()) { return null }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 12.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java
completed.countDown(); } }; ListeningScheduledExecutorService service = listeningDecorator(delegate); ListenableFuture<Integer> future = service.schedule(Callables.returning(42), 1, MILLISECONDS); /* * Wait not just until the Future's value is set (as in future.get()) but * also until ListeningScheduledExecutorService's wrapper task is done
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 28K bytes - Viewed (0)