Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Donovan (0.05 sec)

  1. guava-tests/test/com/google/common/cache/CacheBuilderGwtTest.java

    import java.util.concurrent.ExecutionException;
    import junit.framework.TestCase;
    
    /**
     * Test suite for {@link CacheBuilder}. TODO(cpovirk): merge into CacheBuilderTest?
     *
     * @author Jon Donovan
     */
    @GwtCompatible
    public class CacheBuilderGwtTest extends TestCase {
    
      private FakeTicker fakeTicker;
    
      @Override
      protected void setUp() throws Exception {
        super.setUp();
    
    Registered: 2024-11-01 12:43
    - Last Modified: 2024-10-18 19:07
    - 14.4K bytes
    - Viewed (0)
  2. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * LocalCache emulation for GWT.
     *
     * @param <K> the base key type
     * @param <V> the base value type
     * @author Charles Fry
     * @author Jon Donovan
     */
    public class LocalCache<K, V> implements ConcurrentMap<K, V> {
      private static final int UNSET_INT = CacheBuilder.UNSET_INT;
    
      private final LinkedHashMap<K, Timestamped<V>> cachingHashMap;
    Registered: 2024-11-01 12:43
    - Last Modified: 2024-02-27 19:19
    - 21.6K bytes
    - Viewed (0)
  3. RELEASE.md

    ctiijima, Dan Jarvis, Dan Lazewatsky, Daniel Ingram, Daniel Rasmussen, Daniel
    Salvadori, Dave Airlie, David Norman, Dayananda V, delock, Denis Khalikov, Deven
    Desai, Dheeraj Rajaram Reddy, Diego Caballero, dmitrievanthony, Donovan Ong,
    Drew Szurko, Duncan Dean, Duncan Riach, Dustin Neighly, Dwight J Lyle, Eamon
    Ito-Fisher, eashtian3, Edward Forgacs, EFanZh, ejot, Elroy Ashtian Jr, Eric
    Registered: 2024-11-05 12:39
    - Last Modified: 2024-10-22 14:33
    - 735.3K bytes
    - Viewed (0)
  4. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Amazon : https://www.amazon.com/
    // Submitted by AWS Security <******@****.***>
    // Subsections of Amazon/subsidiaries will appear until "concludes" tag
    
    // Amazon CloudFront
    // Submitted by Donavan Miller <******@****.***>
    // Reference: 54144616-fd49-4435-8535-19c6a601bdb3
    cloudfront.net
    
    // Amazon EC2
    // Submitted by Luke Wells <******@****.***>
    Registered: 2024-11-01 11:42
    - Last Modified: 2023-12-20 23:27
    - 240.3K bytes
    - Viewed (0)
Back to top