- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 35 for Brown (0.02 sec)
-
okhttp/src/jvmTest/kotlin/okhttp3/MultipartReaderTest.kt
val body = MultipartBody .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")
Registered: 2025-05-30 11:42 - Last Modified: 2025-05-28 02:11 - 15.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableSortedSetTest.java
} public void testExplicit_ordering_dupes() { SortedSet<String> set = ImmutableSortedSet.orderedBy(STRING_LENGTH) .add("in", "the", "quick", "brown", "fox", "jumped", "over", "a", "lazy", "dog") .build(); assertThat(set).containsExactly("a", "in", "the", "over", "quick", "jumped").inOrder(); } public void testExplicit_contains() {
Registered: 2025-05-30 12:43 - Last Modified: 2025-01-25 16:19 - 46.7K 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) -
guava-tests/test/com/google/common/hash/Crc32cHashFunctionTest.java
}; assertCrc(0xd9963a56, scsiReadCommand); } // Known values from http://www.evanjones.ca/crc32c.html public void testSomeOtherKnownValues() { assertCrc(0x22620404, "The quick brown fox jumps over the lazy dog".getBytes(UTF_8)); assertCrc(0xE3069283, "123456789".getBytes(UTF_8)); assertCrc(0xf3dbd4fe, "1234567890".getBytes(UTF_8)); assertCrc(0xBFE92A83, "23456789".getBytes(UTF_8)); }
Registered: 2025-05-30 12:43 - Last Modified: 2024-12-28 01:26 - 6.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CharStreamsTest.java
/** * Unit test for {@link CharStreams}. * * @author Chris Nokleberg */ @NullUnmarked public class CharStreamsTest extends IoTestCase { private static final String TEXT = "The quick brown fox jumped over the lazy dog."; public void testToString() throws IOException { assertEquals(TEXT, CharStreams.toString(new StringReader(TEXT))); } public void testReadLines() throws IOException {
Registered: 2025-05-30 12:43 - Last Modified: 2025-05-13 18:46 - 11.3K bytes - Viewed (0) -
okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
// Upli : https://upli.io // Submitted by Lenny Bakkalian <******@****.***> upli.io // urown.net : https://urown.net // Submitted by Hostmaster <hostmaster@urown.net> urown.cloud dnsupdate.info // US REGISTRY LLC : http://us.org // Submitted by Gavin Brown <gavin.brown@centralnic.com> us.org // V.UA Domain Administrator : https://domain.v.ua/
Registered: 2025-05-30 11:42 - Last Modified: 2024-12-27 13:39 - 309.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt
The Mouse did not answer, so Alice went on eagerly: `There is such a nice little dog near our house I should like to show you! A little bright-eyed terrier, you know, with oh, such long curly brown hair! And it'll fetch things when you throw them, and it'll sit up and beg for its dinner, and all sorts of things--I can't remember half of them--and it belongs to a farmer, you
Registered: 2025-05-30 12:43 - Last Modified: 2017-04-21 02:27 - 145.2K bytes - Viewed (0) -
src/bytes/bytes_test.go
for i := 0; i < b.N; i++ { Trim(x[:k], cs[:j]) } }) } } } func BenchmarkTrimByte(b *testing.B) { x := []byte(" the quick brown fox ") for i := 0; i < b.N; i++ { Trim(x, " ") } } func BenchmarkIndexPeriodic(b *testing.B) { key := []byte{1, 1} for _, skip := range [...]int{2, 4, 8, 16, 32, 64} {
Registered: 2025-05-27 11:13 - Last Modified: 2025-05-15 21:24 - 62.9K bytes - Viewed (0) -
tensorflow/c/c_api_test.cc
} } TEST(CAPI, TensorEncodeDecodeStrings) { TestEncodeDecode(__LINE__, {}); TestEncodeDecode(__LINE__, {"hello"}); TestEncodeDecode(__LINE__, {"the", "quick", "brown", "fox", "jumped", "over"}); string big(1000, 'a'); TestEncodeDecode(__LINE__, {"small", big, "small2"}); } TEST(CAPI, SessionOptions) { TF_SessionOptions* opt = TF_NewSessionOptions();
Registered: 2025-05-27 12:39 - Last Modified: 2024-12-27 12:18 - 97K bytes - Viewed (0) -
guava/src/com/google/common/escape/CharEscaper.java
int destSize = dest.length; int destIndex = 0; int lastEscape = 0; // Loop through the rest of the string, replacing when needed into the // destination buffer, which gets grown as needed as well. for (; index < slen; index++) { // Get a replacement for the current character. char[] r = escape(s.charAt(index)); // If no replacement is needed, just continue.
Registered: 2025-05-30 12:43 - Last Modified: 2025-02-13 15:45 - 6.7K bytes - Viewed (0)