- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 120 for cpovirk (0.04 seconds)
-
guava-bom/pom.xml
<developers> <!-- Sonatype requires that we list someone here. Guava has many contributors: https://github.com/google/guava/graphs/contributors --> <developer> <id>cpovirk</id> <name>Chris Povirk</name> <email>cpovirk@google.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/google/guava.git</connection>
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jan 12 15:41:31 GMT 2026 - 3.1K bytes - Click Count (0) -
android/guava-bom/pom.xml
<developers> <!-- Sonatype requires that we list someone here. Guava has many contributors: https://github.com/google/guava/graphs/contributors --> <developer> <id>cpovirk</id> <name>Chris Povirk</name> <email>cpovirk@google.com</email> </developer> </developers> <scm> <connection>scm:git:https://github.com/google/guava.git</connection>
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Jan 12 15:41:31 GMT 2026 - 2.9K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTesterTest.java
// UnsupportedOperationException is what we see on Android. return; } fail("Should have thrown"); } @AndroidIncompatible // TODO(cpovirk): java.lang.IllegalAccessError: superclass not accessible public void testSuccessfulForwarding() { ForwardingObjectTester.testForwardingObject(ForwardToDelegate.class); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 02:20:33 GMT 2026 - 1.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/ForwardingObjectTesterTest.java
// UnsupportedOperationException is what we see on Android. return; } fail("Should have thrown"); } @AndroidIncompatible // TODO(cpovirk): java.lang.IllegalAccessError: superclass not accessible public void testSuccessfulForwarding() { ForwardingObjectTester.testForwardingObject(ForwardToDelegate.class); }Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 02:20:33 GMT 2026 - 1.9K bytes - Click Count (0) -
guava-tests/test/com/google/common/math/DoubleUtilsTest.java
/** * Tests for {@link DoubleUtils}. * * @author Louis Wasserman */ @GwtIncompatible @NullUnmarked public class DoubleUtilsTest extends TestCase { @AndroidIncompatible // TODO(cpovirk): File bug for BigDecimal.doubleValue(). public void testBigToDouble() { for (BigInteger b : ALL_BIGINTEGER_CANDIDATES) { if (b.doubleValue() != DoubleUtils.bigToDouble(b)) { failFormat(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 05:21:26 GMT 2026 - 2.5K bytes - Click Count (0) -
android/guava-tests/pom.xml
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>animal-sniffer-maven-plugin</artifactId> <configuration> <checkTestClasses>false</checkTestClasses> <!-- TODO(cpovirk): Consider checking them. --> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId>
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Dec 05 03:10:05 GMT 2025 - 4.1K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/math/DoubleUtilsTest.java
/** * Tests for {@link DoubleUtils}. * * @author Louis Wasserman */ @GwtIncompatible @NullUnmarked public class DoubleUtilsTest extends TestCase { @AndroidIncompatible // TODO(cpovirk): File bug for BigDecimal.doubleValue(). public void testBigToDouble() { for (BigInteger b : ALL_BIGINTEGER_CANDIDATES) { if (b.doubleValue() != DoubleUtils.bigToDouble(b)) { failFormat(Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 03 05:21:26 GMT 2026 - 2.5K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ForwardingFuture.java
@ParametricNullness public V get(long timeout, TimeUnit unit) throws InterruptedException, ExecutionException, TimeoutException { return delegate().get(timeout, unit); } // TODO(cpovirk): Use standard Javadoc form for SimpleForwarding* class and constructor /** * A simplified version of {@link ForwardingFuture} where subclasses can pass in an already * constructed {@link Future} as the delegate. *
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Mar 07 14:39:00 GMT 2026 - 3.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/util/concurrent/FluentFutureTest.java
ListenableFuture<String> f = new SimpleForwardingListenableFuture<String>(immediateFuture("a")) {}; verify(!(f instanceof FluentFuture)); assertThat(FluentFuture.from(f).get()).isEqualTo("a"); // TODO(cpovirk): Test forwarding more extensively. } public void testAddCallback() { FluentFuture<String> f = FluentFuture.from(immediateFuture("a")); boolean[] called = new boolean[1]; f.addCallback(
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 4.7K bytes - Click Count (0) -
guava-tests/test/com/google/common/util/concurrent/UninterruptiblesTest.java
final CountDownLatch latch; TimedLatch(long countdownInMillis) { super(countdownInMillis); this.latch = new CountDownLatch(1); // TODO(cpovirk): automatically fail the test if this thread throws new Thread(new CountDown(latch, countdownInMillis)).start(); } @Override void awaitLatchUninterruptibly() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 22:45:21 GMT 2026 - 38.1K bytes - Click Count (0)