Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Kyle (0.12 sec)

  1. guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

    import java.util.concurrent.atomic.AtomicReference;
    import org.checkerframework.checker.nullness.qual.Nullable;
    import org.mockito.InOrder;
    import org.mockito.Mockito;
    
    /**
     * Tests for MoreExecutors.
     *
     * @author Kyle Littlefield (klittle)
     */
    public class MoreExecutorsTest extends JSR166TestCase {
    
      private static final Runnable EMPTY_RUNNABLE =
          new Runnable() {
            @Override
            public void run() {}
          };
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 28.2K bytes
    - Viewed (3)
  2. android/guava/src/com/google/common/util/concurrent/MoreExecutors.java

    /**
     * Factory and utility methods for {@link java.util.concurrent.Executor}, {@link ExecutorService},
     * and {@link java.util.concurrent.ThreadFactory}.
     *
     * @author Eric Fellheimer
     * @author Kyle Littlefield
     * @author Justin Mahoney
     * @since 3.0
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    public final class MoreExecutors {
      private MoreExecutors() {}
    
      /**
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 17 16:33:44 GMT 2024
    - 41.8K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/MoreExecutorsTest.java

    import java.util.concurrent.atomic.AtomicReference;
    import org.checkerframework.checker.nullness.qual.Nullable;
    import org.mockito.InOrder;
    import org.mockito.Mockito;
    
    /**
     * Tests for MoreExecutors.
     *
     * @author Kyle Littlefield (klittle)
     */
    public class MoreExecutorsTest extends JSR166TestCase {
    
      private static final Runnable EMPTY_RUNNABLE =
          new Runnable() {
            @Override
            public void run() {}
          };
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed Sep 06 17:04:31 GMT 2023
    - 28.2K bytes
    - Viewed (0)
Back to top