- Sort Score
- Num 10 results
- Language All
Results 131 - 140 of 342 for fOo (0.12 seconds)
-
guava-tests/test/com/google/common/collect/TableCollectionTest.java
} // `protected` to work around b/320650932 / KT-67447 runtime crash protected final void populateTable(Table<String, Integer, Character> table) { table.put("foo", 1, 'a'); table.put("bar", 1, 'b'); table.put("foo", 3, 'c'); } @Override protected Map<String, Map<Integer, Character>> makeEmptyMap() { return makeTable().rowMap(); } }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Aug 07 16:05:33 GMT 2025 - 35.5K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpHeaders.kt
* token68: * * ``` * WWW-Authenticate: Digest foo=bar * WWW-Authenticate: Digest foo= * ``` * * Similarly, the first line has one challenge and the second line has two challenges: * * ``` * WWW-Authenticate: Digest ,foo=bar * WWW-Authenticate: Digest ,foo * ``` */ fun Headers.parseChallenges(headerName: String): List<Challenge> {
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 7.2K bytes - Click Count (0) -
guava-tests/test/com/google/common/io/MoreFilesTest.java
} } public void testEqual() throws IOException { try (FileSystem fs = Jimfs.newFileSystem(Configuration.unix())) { Path fooPath = fs.getPath("foo"); Path barPath = fs.getPath("bar"); MoreFiles.asCharSink(fooPath, UTF_8).write("foo"); MoreFiles.asCharSink(barPath, UTF_8).write("barbar"); assertThat(MoreFiles.equal(fooPath, barPath)).isFalse();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 27.5K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java
// Boring untimed-get tests: public void testGetCheckedUntimed_success() throws TwoArgConstructorException { assertThat(getChecked(immediateFuture("foo"), TwoArgConstructorException.class)) .isEqualTo("foo"); } public void testGetCheckedUntimed_interrupted() { SettableFuture<String> future = SettableFuture.create(); Thread.currentThread().interrupt(); try {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 16.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedTest.java
// Boring untimed-get tests: public void testGetCheckedUntimed_success() throws TwoArgConstructorException { assertThat(getChecked(immediateFuture("foo"), TwoArgConstructorException.class)) .isEqualTo("foo"); } public void testGetCheckedUntimed_interrupted() { SettableFuture<String> future = SettableFuture.create(); Thread.currentThread().interrupt(); try {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 16.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/base/EnumsTest.java
private @interface ExampleAnnotation {} private enum AnEnum { @ExampleAnnotation FOO, BAR } @J2ktIncompatible public void testGetField() { Field foo = Enums.getField(AnEnum.FOO); assertThat(foo.getName()).isEqualTo("FOO"); assertTrue(foo.isAnnotationPresent(ExampleAnnotation.class)); Field bar = Enums.getField(AnEnum.BAR);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 01:05:11 GMT 2026 - 8.4K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/IterablesTest.java
Iterable<String> iterable = asList("foo", "bar"); assertThrows(IllegalArgumentException.class, () -> getOnlyElement(iterable)); } public void testGetOnlyElement_withDefault_singleton() { Iterable<String> iterable = singletonList("foo"); assertThat(getOnlyElement(iterable, "bar")).isEqualTo("foo"); } public void testGetOnlyElement_withDefault_empty() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 47.5K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Cookie.kt
val urlPath = url.encodedPath if (urlPath == path) { return true // As in '/foo' matching '/foo'. } if (urlPath.startsWith(path)) { if (path.endsWith("/")) return true // As in '/' matching '/foo'. if (urlPath[path.length] == '/') return true // As in '/foo' matching '/foo/bar'. } return false } /**Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 23.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/ConverterTest.java
public void testNullIsPassedThrough() { Converter<String, String> nullsArePassed = sillyConverter(false); assertThat(nullsArePassed.convert("foo")).isEqualTo("forward"); assertThat(nullsArePassed.convert(null)).isEqualTo("forward"); assertThat(nullsArePassed.reverse().convert("foo")).isEqualTo("backward"); assertThat(nullsArePassed.reverse().convert(null)).isEqualTo("backward"); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed Mar 18 18:06:14 GMT 2026 - 8.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/DuplicateHostHelperTest.java
duplicateHostHelper.duplicateHostList = new ArrayList<DuplicateHost>(); DuplicateHost foo = new DuplicateHost(); foo.setRegularName("www.foo.com"); foo.setDuplicateHostName("foo.com"); duplicateHostHelper.duplicateHostList.add(foo); DuplicateHost bar = new DuplicateHost(); bar.setRegularName("www.bar.com"); bar.setDuplicateHostName("mail.bar.com");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 6.8K bytes - Click Count (0)