- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for Fox (0.02 sec)
-
guava-tests/test/com/google/common/hash/ChecksumHashFunctionTest.java
assertHash32(0x7A2D6005, CRC_32, "hello wo"); assertHash32(0x1C192672, CRC_32, "hello wor"); assertHash32(0x414FA339, CRC_32, "The quick brown fox jumps over the lazy dog"); assertHash32(0x4400B5BC, CRC_32, "The quick brown fox jumps over the lazy cog"); } public void testAdler32_knownValues() throws Exception { assertHash32(0x041701A6, ADLER_32, "hell");
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-19 18:03 - 3.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Murmur3Hash128Test.java
assertHash( 0, 0xe34bbc7bbc071b6cL, 0x7a433ca9c49a9347L, "The quick brown fox jumps over the lazy dog"); assertHash( 0, 0x658ca970ff85269aL, 0x43fee3eaa68e5c3eL, "The quick brown fox jumps over the lazy cog"); // Known output from Python smhasher HashCode foxHash = murmur3_128(0).hashString("The quick brown fox jumps over the lazy dog", UTF_8);
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-19 18:03 - 3.2K bytes - Viewed (0) -
src/bytes/example_test.go
} // Output: // Split byte slice into fields: // "The" // "quick" // "brown" // "fox" // // Split byte slice with multiple spaces: // "lots" // "of" // "spaces" } func ExampleFieldsFuncSeq() { text := []byte("The quick brown fox") fmt.Println("Split on whitespace(similar to FieldsSeq):") for word := range bytes.FieldsFuncSeq(text, unicode.IsSpace) {
Registered: 2025-05-27 11:13 - Last Modified: 2025-05-12 16:07 - 16.5K bytes - Viewed (0) -
src/archive/tar/testdata/hdr-only.tar
fifo file The quick brown fox jumped over the lazy dog! hardlink null sda symlink badlink fifo The quick brown fox jumped over the lazy dog! hardlink sda symli badlink...
Registered: 2025-05-27 11:13 - Last Modified: 2015-12-01 20:16 - 10K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/MacHashFunctionTest.java
hasher.putString("The quick brown fox jumps over the lazy dog", UTF_8).hash().toString()); assertThrows(IllegalStateException.class, () -> hasher.putInt(42)); } public void testHashTwice() { Hasher hasher = Hashing.hmacMd5(MD5_KEY).newHasher(); assertEquals( "9753980fe94daa8ecaa82216519393a9", hasher.putString("The quick brown fox jumps over the lazy dog", UTF_8).hash().toString());
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-27 16:19 - 13.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/Murmur3Hash32Test.java
assertHash(1935035788, murmur3_32().hashUnencodedChars("http://www.google.com/")); assertHash( -528633700, murmur3_32().hashUnencodedChars("The quick brown fox jumps over the lazy dog")); } @SuppressWarnings("deprecation") public void testKnownEncodedStringInputs() { assertStringHash(0, "", UTF_8); assertStringHash(0xcfbda5d1, "k", UTF_8);
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-19 18:03 - 8.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/MessageDigestHashFunctionTest.java
sha1.putString("The quick brown fox jumps over the lazy dog", UTF_8).hash().toString()); assertThrows(IllegalStateException.class, () -> sha1.putInt(42)); } public void testHashTwice() { Hasher sha1 = Hashing.sha1().newHasher(); assertEquals( "2fd4e1c67a2d28fced849ee1bb76e7391b93eb12", sha1.putString("The quick brown fox jumps over the lazy dog", UTF_8).hash().toString());
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-19 18:03 - 4.2K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/MultipartBodyTest.kt
|Quick |--123 | |Brown |--123 | |Fox |--123-- | """.trimMargin().replace("\n", "\r\n") val body = MultipartBody .Builder("123") .addPart("Quick".toRequestBody(null)) .addPart("Brown".toRequestBody(null)) .addPart("Fox".toRequestBody(null)) .build() assertThat(body.boundary).isEqualTo("123")
Registered: 2025-05-30 11:42 - Last Modified: 2025-03-19 19:25 - 10.5K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/MultipartReaderTest.kt
.Builder("boundary") .setType(MultipartBody.PARALLEL) .addPart("Quick".toRequestBody("text/plain".toMediaType())) .addFormDataPart("color", "Brown") .addFormDataPart("animal", "fox.txt", "Fox".toRequestBody()) .build() val bodyContent = Buffer() body.writeTo(bodyContent) val reader = MultipartReader(bodyContent, "boundary") val quickPart = reader.nextPart()!!
Registered: 2025-05-30 11:42 - Last Modified: 2025-05-28 02:11 - 15.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/hash/HashingTest.java
} HashCode actual = hasher.hash(); assertEquals(expected, actual); } private static final String TQBFJOTLD = "The quick brown fox jumps over the lazy dog"; private static final String TQBFJOTLDP = "The quick brown fox jumps over the lazy dog."; private static final ImmutableTable<HashFunction, String, String> KNOWN_HASHES = ImmutableTable.<HashFunction, String, String>builder()
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 17:27 - 26.4K bytes - Viewed (0)