- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 92 for 44 (0.02 sec)
-
guava-tests/test/com/google/common/hash/FunnelsTest.java
inOrder.verify(elementFunnel).funnel("quux", primitiveSink); } private static void assertNullsThrowException(Funnel<?> funnel) { PrimitiveSink primitiveSink = new AbstractStreamingHasher(4, 4) { @Override protected HashCode makeHash() { throw new UnsupportedOperationException(); } @Override protected void process(ByteBuffer bb) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 5.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/AbstractNonStreamingHashFunctionTest.java
static class StreamingVersion extends AbstractHashFunction { @Override public int bits() { return 32; } @Override public Hasher newHasher() { return new AbstractStreamingHasher(4, 4) { final ByteArrayOutputStream out = new ByteArrayOutputStream(); @Override protected HashCode makeHash() { return HashCode.fromBytes(out.toByteArray()); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 4.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/CacheStatsTest.java
assertEquals(56 + 52, sum.loadCount()); assertEquals(48, sum.totalLoadTime()); assertThat(sum.averageLoadPenalty()).isEqualTo(48.0 / (56 + 52)); assertEquals(44, sum.evictionCount()); assertEquals(sum, one.plus(two)); } public void testPlusLarge() { CacheStats maxCacheStats = new CacheStats( Long.MAX_VALUE,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 03 18:10:55 UTC 2024 - 4.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableMapTest.java
ImmutableMap.builder().put(1, 1).put(2, 2).put(3, 3).put(4, 4).buildOrThrow(), ImmutableMap.ofEntries(entry(1, 1), entry(2, 2), entry(3, 3), entry(4, 4)), map(1, 1, 2, 2, 3, 3, 4, 4)) .addEqualityGroup( ImmutableMap.of(1, 1, 2, 2, 3, 3, 4, 4, 5, 5), ImmutableMap.builder().put(1, 1).put(2, 2).put(3, 3).put(4, 4).put(5, 5).buildOrThrow(),
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 36.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/DES.java
(byte)62, (byte)54, (byte)46, (byte)38, (byte)30, (byte)22, (byte)14, (byte) 6, (byte)61, (byte)53, (byte)45, (byte)37, (byte)29, (byte)21, (byte)13, (byte) 5, (byte)60, (byte)52, (byte)44, (byte)36, (byte)28, (byte)20, (byte)12, (byte) 4, (byte)27, (byte)19, (byte)11, (byte)3 }; private static int[] totrot = { 1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28 };
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 21.4K bytes - Viewed (0) -
docs/security/tls_configuration_history.md
Cipher suites that are [discouraged for use][http2_denylist] with HTTP/2. OkHttp includes them because better suites are not commonly available. For example, none of the better cipher suites listed above shipped with Android 4.4 or Java 7. [OkHttp30]: https://square.github.io/okhttp/changelog_3x/#version-300 [OkHttp310]: https://square.github.io/okhttp/changelog_3x/#version-310 [OkHttp311]: https://square.github.io/okhttp/changelog_3x/#version-320
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Feb 06 16:35:36 UTC 2022 - 9K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Range.java
* range. Examples: * * <ul> * <li>{@code [3..6]} encloses {@code [4..5]} * <li>{@code (3..6)} encloses {@code (3..6)} * <li>{@code [3..6]} encloses {@code [4..4)} (even though the latter is empty) * <li>{@code (3..6]} does not enclose {@code [3..6]} * <li>{@code [4..5]} does not enclose {@code (3..6)} (even though it contains every value * contained by the latter range)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 16 17:21:56 UTC 2024 - 27.8K bytes - Viewed (0) -
src/main/resources/fess_indices/fess/ja/mapping.txt
ョ => ョ ゙ => ゛ ゚ => ゜ ー => ー ・ => ・ 0 => 0 1 => 1 2 => 2 3 => 3 4 => 4 5 => 5 6 => 6 7 => 7 8 => 8 9 => 9 ① => 1\u0020 ② => 2\u0020 ③ => 3\u0020 ④ => 4\u0020 ⑤ => 5\u0020 ⑥ => 6\u0020 ⑦ => 7\u0020 ⑧ => 8\u0020 ⑨ => 9\u0020 ! => ! ? => ? # => # % => % & => & @ => @ + => + - => - * => * / => / = => = $ => $
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 27 02:07:47 UTC 2023 - 12.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TikaExtractorTest.java
assertEquals("2010-07-22T00:21:00Z", extractData.getValues("dcterms:created")[0]); assertEquals("1", extractData.getValues("meta:line-count")[0]); assertEquals("2012-05-18T22:44:00Z", extractData.getValues("dcterms:modified")[0]); assertEquals("3", extractData.getValues("meta:character-count")[0]); assertEquals("じょうたい", extractData.getValues("cp:contentStatus")[0]);
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 30.5K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/FormBodyTest.kt
assertThat(formEncode(40)).isEqualTo("%28") assertThat(formEncode(41)).isEqualTo("%29") assertThat(formEncode(42)).isEqualTo("*") assertThat(formEncode(43)).isEqualTo("%2B") assertThat(formEncode(44)).isEqualTo("%2C") assertThat(formEncode(45)).isEqualTo("-") assertThat(formEncode(46)).isEqualTo(".") assertThat(formEncode(47)).isEqualTo("%2F") assertThat(formEncode(48)).isEqualTo("0")
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 7.8K bytes - Viewed (0)