Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 118 for Povirk (0.04 sec)

  1. guava-gwt/test/com/google/common/GuavaTestsEntryPoint.java

     * limitations under the License.
     */
    
    package com.google.common;
    
    import com.google.gwt.core.client.EntryPoint;
    
    /**
     * A dummy entry point for our tests.
     *
     * @author Chris Povirk
     */
    public class GuavaTestsEntryPoint implements EntryPoint {
      @Override
      public void onModuleLoad() {}
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-01-18 02:54
    - 854 bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/TestIntegerSortedSetGenerator.java

    import java.util.List;
    import java.util.SortedSet;
    import org.jspecify.annotations.NullMarked;
    
    /**
     * Create integer sets for testing collections that are sorted by natural ordering.
     *
     * @author Chris Povirk
     * @author Jared Levy
     */
    @GwtCompatible
    @NullMarked
    public abstract class TestIntegerSortedSetGenerator extends TestIntegerSetGenerator {
      @Override
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-11 19:03
    - 1.6K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/IteratorTester.java

     * than {@code KnownOrder} directly, because otherwise the code cannot be compiled.
     *
     * @author Kevin Bourrillion
     * @author Chris Povirk
     */
    @GwtCompatible
    @NullMarked
    public abstract class IteratorTester<E extends @Nullable Object>
        extends AbstractIteratorTester<E, Iterator<E>> {
      /**
       * Creates an IteratorTester.
       *
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-03-17 20:26
    - 4.3K bytes
    - Viewed (0)
  4. guava-gwt/test-super/com/google/common/math/super/com/google/common/math/TestPlatform.java

     * limitations under the License.
     */
    
    package com.google.common.math;
    
    import com.google.common.annotations.GwtCompatible;
    
    /**
     * @author Chris Povirk
     */
    @GwtCompatible(emulated = true)
    class TestPlatform {
      static boolean intsCanGoOutOfRange() {
        return true;
      }
    
      static boolean isAndroid() {
        return false;
      }
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-01-18 02:54
    - 891 bytes
    - Viewed (0)
  5. guava-gwt/src/com/google/common/ForceGuavaCompilationEntryPoint.java

     * limitations under the License.
     */
    
    package com.google.common;
    
    import com.google.gwt.core.client.EntryPoint;
    
    /**
     * A dummy entry point to convince Maven to compile our classes.
     *
     * @author Chris Povirk
     */
    public class ForceGuavaCompilationEntryPoint implements EntryPoint {
      @Override
      public void onModuleLoad() {}
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-01-18 02:54
    - 892 bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/util/concurrent/ListeningScheduledExecutorService.java

     * {@code ExecutorService} methods. To create an instance from an existing {@link
     * ScheduledExecutorService}, call {@link
     * MoreExecutors#listeningDecorator(ScheduledExecutorService)}.
     *
     * @author Chris Povirk
     * @since 10.0
     */
    @GwtIncompatible
    public interface ListeningScheduledExecutorService
        extends ScheduledExecutorService, ListeningExecutorService {
    
      /**
       * @since 15.0 (previously returned ScheduledFuture)
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-11 17:30
    - 2.1K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/InterruptionUtil.java

    import java.util.logging.Logger;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Utilities for performing thread interruption in tests
     *
     * @author Kevin Bourrillion
     * @author Chris Povirk
     */
    @NullUnmarked
    final class InterruptionUtil {
      private static final Logger logger = Logger.getLogger(InterruptionUtil.class.getName());
    
      /** Runnable which will interrupt the target thread repeatedly when run. */
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-05-13 18:46
    - 4.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/AbstractSequentialIterator.java

     *       protected Integer computeNext(Integer previous) {
     *         return (previous == 1 << 30) ? null : previous * 2;
     *       }
     *     };
     * }
     *
     * @author Chris Povirk
     * @since 12.0 (in Guava as {@code AbstractLinkedIterator} since 8.0)
     */
    @GwtCompatible
    public abstract class AbstractSequentialIterator<T> extends UnmodifiableIterator<T> {
      private @Nullable T nextOrNull;
    
      /**
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-03-17 20:26
    - 2.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/AbstractSequentialIterator.java

     *       protected Integer computeNext(Integer previous) {
     *         return (previous == 1 << 30) ? null : previous * 2;
     *       }
     *     };
     * }
     *
     * @author Chris Povirk
     * @since 12.0 (in Guava as {@code AbstractLinkedIterator} since 8.0)
     */
    @GwtCompatible
    public abstract class AbstractSequentialIterator<T> extends UnmodifiableIterator<T> {
      private @Nullable T nextOrNull;
    
      /**
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-03-17 20:26
    - 2.3K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/util/concurrent/AbstractListeningExecutorService.java

     * with the abstract {@link #execute execute(Runnable)} method.
     *
     * <p>In addition to {@link #execute}, subclasses must implement all methods related to shutdown and
     * termination.
     *
     * @author Chris Povirk
     * @since 14.0
     */
    @CheckReturnValue
    @GwtIncompatible
    public abstract class AbstractListeningExecutorService extends AbstractExecutorService
        implements ListeningExecutorService {
    Registered: 2025-05-30 12:43
    - Last Modified: 2025-02-12 17:47
    - 3K bytes
    - Viewed (0)
Back to top