Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for store3 (0.23 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    the shore, and then I'll tell you my history, and you'll
    understand why it is I hate cats and dogs.'
    
      It was high time to go, for the pool was getting quite crowded
    with the birds and animals that had fallen into it:  there were a
    Duck and a Dodo, a Lory and an Eaglet, and several other curious
    creatures.  Alice led the way, and the whole party swam to the
    shore.
    
    
    
    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)
  2. guava/src/com/google/common/cache/LocalCache.java

        for (Entry<K, V> entry : result.entrySet()) {
          K key = entry.getKey();
          V value = entry.getValue();
          if (key == null || value == null) {
            // delay failure until non-null entries are stored
            nullsPresent = true;
          } else {
            put(key, value);
          }
        }
    
        if (nullsPresent) {
          globalStatsCounter.recordLoadException(stopwatch.elapsed(NANOSECONDS));
    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)
  3. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    the shore, and then I'll tell you my history, and you'll
    understand why it is I hate cats and dogs.'
    
      It was high time to go, for the pool was getting quite crowded
    with the birds and animals that had fallen into it:  there were a
    Duck and a Dodo, a Lory and an Eaglet, and several other curious
    creatures.  Alice led the way, and the whole party swam to the
    shore.
    
    
    
    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)
  4. android/guava/src/com/google/common/cache/LocalCache.java

        for (Entry<K, V> entry : result.entrySet()) {
          K key = entry.getKey();
          V value = entry.getValue();
          if (key == null || value == null) {
            // delay failure until non-null entries are stored
            nullsPresent = true;
          } else {
            put(key, value);
          }
        }
    
        if (nullsPresent) {
          globalStatsCounter.recordLoadException(stopwatch.elapsed(NANOSECONDS));
    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)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

      /**
       * Marks this step as the last step in the {@code ClosingFuture} pipeline. When this step is done,
       * {@code receiver} will be called with an object that contains the result of the operation. The
       * receiver can store the {@link ValueAndCloser} outside the receiver for later synchronous use.
       *
       * <p>After calling this method, you may not call {@link #finishToFuture()}, this method again, or
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
Back to top