Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for Meagher (0.22 sec)

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

      }
    
      public void testSetWeigher() {
        Weigher<Object, Object> testWeigher =
            new Weigher<Object, Object>() {
              @Override
              public int weigh(Object key, Object value) {
                return 42;
              }
            };
        LocalCache<Object, Object> map =
            makeLocalCache(createCacheBuilder().maximumWeight(1).weigher(testWeigher));
        assertSame(testWeigher, map.weigher);
      }
    
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 112.3K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

      }
    
      public void testSetWeigher() {
        Weigher<Object, Object> testWeigher =
            new Weigher<Object, Object>() {
              @Override
              public int weigh(Object key, Object value) {
                return 42;
              }
            };
        LocalCache<Object, Object> map =
            makeLocalCache(createCacheBuilder().maximumWeight(1).weigher(testWeigher));
        assertSame(testWeigher, map.weigher);
      }
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Mar 14 23:06:48 GMT 2024
    - 110.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/LocalCache.java

      /** Strategy for referencing values. */
      final Strength valueStrength;
    
      /** The maximum weight of this map. UNSET_INT if there is no maximum. */
      final long maxWeight;
    
      /** Weigher to weigh cache entries. */
      final Weigher<K, V> weigher;
    
      /** How long after the last access to an entry the map will retain that entry. */
      final long expireAfterAccessNanos;
    
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 144.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/LocalCache.java

      /** Strategy for referencing values. */
      final Strength valueStrength;
    
      /** The maximum weight of this map. UNSET_INT if there is no maximum. */
      final long maxWeight;
    
      /** Weigher to weigh cache entries. */
      final Weigher<K, V> weigher;
    
      /** How long after the last access to an entry the map will retain that entry. */
      final long expireAfterAccessNanos;
    
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 22 17:40:56 GMT 2024
    - 150.3K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `HE might bite,' Alice cautiously replied, not feeling at all
    anxious to have the experiment tried.
    
      `Very true,' said the Duchess:  `flamingoes and mustard both
    bite.  And the moral of that is--"Birds of a feather flock
    together."'
    
      `Only mustard isn't a bird,' Alice remarked.
    
      `Right, as usual,' said the Duchess:  `what a clear way you
    have of putting things!'
    
      `It's a mineral, I THINK,' said Alice.
    Plain Text
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Fri Apr 21 02:27:51 GMT 2017
    - 145.2K bytes
    - Viewed (0)
  6. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `HE might bite,' Alice cautiously replied, not feeling at all
    anxious to have the experiment tried.
    
      `Very true,' said the Duchess:  `flamingoes and mustard both
    bite.  And the moral of that is--"Birds of a feather flock
    together."'
    
      `Only mustard isn't a bird,' Alice remarked.
    
      `Right, as usual,' said the Duchess:  `what a clear way you
    have of putting things!'
    
      `It's a mineral, I THINK,' said Alice.
    Plain Text
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Mon Oct 29 21:35:03 GMT 2012
    - 145.2K bytes
    - Viewed (0)
  7. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    wanggou
    
    // watch : 2013-11-14 Binky Moon, LLC
    watch
    
    // watches : 2014-12-22 Identity Digital Limited
    watches
    
    // weather : 2015-01-08 International Business Machines Corporation
    weather
    
    // weatherchannel : 2015-03-12 International Business Machines Corporation
    weatherchannel
    
    // webcam : 2014-01-23 dot Webcam Limited
    webcam
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
Back to top