- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 342 for fOo (0.02 seconds)
-
guava-tests/test/com/google/common/util/concurrent/SettableFutureTest.java
nested.set("foo"); assertTrue(future.isDone()); assertFalse(future.isCancelled()); assertThat(future.get()).isEqualTo("foo"); } private static class Foo {} private static class FooChild extends Foo {} public void testSetFuture_genericsHierarchy() throws Exception { SettableFuture<Foo> future = SettableFuture.create();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 7.4K bytes - Click Count (0) -
android/guava-testlib/test/com/google/common/testing/EqualsTesterTest.java
EqualsTester tester = new EqualsTester() .addEqualityGroup( named("foo").addPeers("bar", "baz"), named("bar").addPeers("foo"), named("baz").addPeers("foo")); try { tester.testEquals(); } catch (AssertionFailedError e) { assertErrorMessage(e, "bar [group 1, item 2] must be Object#equals to baz [group 1, item 3]");Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Wed May 14 19:40:47 GMT 2025 - 13.1K bytes - Click Count (0) -
guava-testlib/test/com/google/common/testing/GcFinalizationTest.java
Foo foo = new Foo(); try { WeakReference<Object> ref = new WeakReference<>(foo); RuntimeException expected = assertThrows(RuntimeException.class, () -> GcFinalization.awaitClear(ref)); assertWrapsInterruptedException(expected); } finally { reachabilityFence(foo); interruptenator.shutdown(); Thread.interrupted();Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 16:11:48 GMT 2026 - 8.8K bytes - Click Count (0) -
guava/src/com/google/common/base/Splitter.java
* * {@snippet : * Splitter.on(',').split("foo,bar,qux") * } * * ... produces an {@code Iterable} containing {@code "foo"}, {@code "bar"} and {@code "qux"}, in * that order. * * <p>By default, {@code Splitter}'s behavior is simplistic and unassuming. The following * expression: * * {@snippet : * Splitter.on(',').split(" foo,,, bar ,") * } *Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Feb 23 19:19:10 GMT 2026 - 23.8K bytes - Click Count (0) -
src/test/resources/org/codelibs/core/xml/include.xml
<?xml version="1.0" encoding="UTF-8"?> <foo xmlns:xi="http://www.w3.org/2001/XInclude"> <xi:include href="/included.xml"/>
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sun Dec 28 09:01:06 GMT 2014 - 131 bytes - Click Count (0) -
android/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) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesGetUncheckedTest.java
public void testGetUnchecked_success() { assertThat(getUnchecked(immediateFuture("foo"))).isEqualTo("foo"); } @J2ktIncompatible @GwtIncompatible // Thread.interrupt public void testGetUnchecked_interrupted() { Thread.currentThread().interrupt(); try { assertThat(getUnchecked(immediateFuture("foo"))).isEqualTo("foo"); assertTrue(Thread.currentThread().isInterrupted()); } finally {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 4.6K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/FuturesGetUncheckedTest.java
public void testGetUnchecked_success() { assertThat(getUnchecked(immediateFuture("foo"))).isEqualTo("foo"); } @J2ktIncompatible @GwtIncompatible // Thread.interrupt public void testGetUnchecked_interrupted() { Thread.currentThread().interrupt(); try { assertThat(getUnchecked(immediateFuture("foo"))).isEqualTo("foo"); assertTrue(Thread.currentThread().isInterrupted()); } finally {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Mar 12 17:47:10 GMT 2026 - 4.6K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Jan 27 09:00:39 GMT 2026 - 67.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/crawler/transformer/FessFileTransformerTest.java
exp = "file://C .doc"; assertEquals(exp, transformer.decodeUrlAsName(url, true)); url = "http://example.com/foo/" + encodeUrl("#") + "/@@bar/index.html#fragment?foo=bar"; exp = "http://example.com/foo/#/@@bar/index.html#fragment?foo=bar"; assertEquals(exp, transformer.decodeUrlAsName(url, false)); } @Test public void test_getFileName_ok() throws Exception {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14.4K bytes - Click Count (0)