- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for Edwards (0.03 sec)
-
src/test/java/org/codelibs/fess/util/JvmUtilTest.java
System.setProperty("java.version", "15.0.1"); String[] args = new String[] { "8-:-Xms512m", // From Java 8 onwards "11-:-Xmx2g", // From Java 11 onwards "17-:-XX:+UseG1GC", // From Java 17 onwards "21-:-XX:+UseZGC" // From Java 21 onwards }; String[] result = JvmUtil.filterJvmOptions(args); assertEquals(2, result.length);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 10.4K bytes - Viewed (0) -
android/guava/src/com/google/common/net/InternetDomainName.java
return publicSuffixIndex() == 1; } /** * Returns the portion of this domain name that is one level beneath the {@linkplain * #isPublicSuffix() public suffix}. For example, for {@code x.adwords.google.co.uk} it returns * {@code google.co.uk}, since {@code co.uk} is a public suffix. Similarly, for {@code * myblog.blogspot.com} it returns the same domain, {@code myblog.blogspot.com}, since {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HttpUrlJvmTest.kt
} @Test fun topPrivateDomain() { assertThat("https://google.com".toHttpUrl().topPrivateDomain()) .isEqualTo("google.com") assertThat("https://adwords.google.co.uk".toHttpUrl().topPrivateDomain()) .isEqualTo("google.co.uk") assertThat("https://栃.栃木.jp".toHttpUrl().topPrivateDomain()) .isEqualTo("xn--ewv.xn--4pvxs.jp")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 12K bytes - Viewed (0) -
guava/src/com/google/common/math/LongMath.java
long rem = p - q * div; // equals p % q if (rem == 0) { return div; } /* * Normal Java division rounds towards 0, consistently with RoundingMode.DOWN. We just have to * deal with the cases where rounding towards 0 is wrong, which typically depends on the sign of * p / q. * * signum is 1 if p and q are both nonnegative or both negative, and -1 otherwise. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Aug 29 16:20:07 UTC 2025 - 46.8K bytes - Viewed (0)