Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for factor (0.18 sec)

  1. guava/src/com/google/common/cache/LocalCache.java

       * soft/weak entries.
       */
      final RemovalListener<K, V> removalListener;
    
      /** Measures time in a testable way. */
      final Ticker ticker;
    
      /** Factory used to create new entries. */
      final EntryFactory entryFactory;
    
      /**
       * Accumulates global cache statistics. Note that there are also per-segments stats counters which
    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)
  2. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          ListenableFuture<String> jFuture,
          ListenableFuture<List<String>> future,
          int timeout,
          TimeUnit unit)
          throws ExecutionException, TimeoutException {
        /*
         * For faster tests (that may hang indefinitely if the class under test has
         * a bug!), switch the second branch to call untimed future.get() instead of
         * pseudoTimedGet.
         */
    Java
    - Registered: Fri Apr 12 12:43:09 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          ListenableFuture<String> jFuture,
          ListenableFuture<List<String>> future,
          int timeout,
          TimeUnit unit)
          throws ExecutionException, TimeoutException {
        /*
         * For faster tests (that may hang indefinitely if the class under test has
         * a bug!), switch the second branch to call untimed future.get() instead of
         * pseudoTimedGet.
         */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Feb 20 17:00:05 GMT 2024
    - 144.5K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Maps.java

        return new HashMap<>(capacity(expectedSize));
      }
    
      /**
       * Returns a capacity that is sufficient to keep the map from being resized as long as it grows no
       * larger than expectedSize and the load factor is ≥ its default (0.75).
       */
      static int capacity(int expectedSize) {
        if (expectedSize < 3) {
          checkNonnegative(expectedSize, "expectedSize");
          return expectedSize + 1;
        }
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  5. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    again:--
    
      `I didn't know that Cheshire cats always grinned; in fact, I
    didn't know that cats COULD grin.'
    
      `They all can,' said the Duchess; `and most of 'em do.'
    
      `I don't know of any that do,' Alice said very politely,
    feeling quite pleased to have got into a conversation.
    
      `You don't know much,' said the Duchess; `and that's a fact.'
    
      Alice did not at all like the tone of this remark, and thought
    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. android/guava/src/com/google/common/cache/LocalCache.java

       * soft/weak entries.
       */
      final RemovalListener<K, V> removalListener;
    
      /** Measures time in a testable way. */
      final Ticker ticker;
    
      /** Factory used to create new entries. */
      final EntryFactory entryFactory;
    
      /**
       * Accumulates global cache statistics. Note that there are also per-segments stats counters which
    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)
Back to top