Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for first (0.18 sec)

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

      `Explain all that,' said the Mock Turtle.
    
      `No, no!  The adventures first,' said the Gryphon in an
    impatient tone:  `explanations take such a dreadful time.'
    
      So Alice began telling them her adventures from the time when
    she first saw the White Rabbit.  She was a little nervous about
    it just at first, the two creatures got so close to her, one on
    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

          if (valueReference.isLoading()) {
            valueReference.notifyNewValue(null);
            return first;
          } else {
            return removeEntryFromChain(first, entry);
          }
        }
    
        @GuardedBy("this")
        @CheckForNull
        ReferenceEntry<K, V> removeEntryFromChain(
            ReferenceEntry<K, V> first, ReferenceEntry<K, V> entry) {
          int newCount = count;
    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/src/com/google/common/cache/LocalCache.java

          if (valueReference.isLoading()) {
            valueReference.notifyNewValue(null);
            return first;
          } else {
            return removeEntryFromChain(first, entry);
          }
        }
    
        @GuardedBy("this")
        @CheckForNull
        ReferenceEntry<K, V> removeEntryFromChain(
            ReferenceEntry<K, V> first, ReferenceEntry<K, V> entry) {
          int newCount = count;
    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. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

      `Explain all that,' said the Mock Turtle.
    
      `No, no!  The adventures first,' said the Gryphon in an
    impatient tone:  `explanations take such a dreadful time.'
    
      So Alice began telling them her adventures from the time when
    she first saw the White Rabbit.  She was a little nervous about
    it just at first, the two creatures got so close to her, one on
    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)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * your current SDK version but also at the oldest version you support. For example, <a
         * href="https://developer.android.com/sdk/api_diff/16/">API Level 16</a> is the first version
         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
    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)
  6. guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          getDone(all);
          fail();
        } catch (ExecutionException expected) {
          List<LogRecord> logged = aggregateFutureLogHandler.getStoredLogRecords();
          assertThat(logged).hasSize(2); // failures after the first are logged
          assertThat(logged.get(0).getThrown()).isInstanceOf(MyException.class);
          assertThat(logged.get(1).getThrown()).isInstanceOf(MyException.class);
        }
      }
    
    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)
  7. guava-tests/test/com/google/common/cache/LocalCacheTest.java

          int hash = map.hash(key);
          int index = hash & (table.length() - 1);
          ReferenceEntry<Object, Object> first = table.get(index);
          entry = map.newEntry(key, hash, first);
          ValueReference<Object, Object> valueRef = map.newValueReference(entry, value, 1);
          entry.setValueReference(valueRef);
          segment.recordWrite(entry, 1, map.ticker.read());
    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)
  8. android/guava-tests/test/com/google/common/cache/LocalCacheTest.java

          int hash = map.hash(key);
          int index = hash & (table.length() - 1);
          ReferenceEntry<Object, Object> first = table.get(index);
          entry = map.newEntry(key, hash, first);
          ValueReference<Object, Object> valueRef = map.newValueReference(entry, value, 1);
          entry.setValueReference(valueRef);
          segment.recordWrite(entry, 1, map.ticker.read());
    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)
  9. android/guava-tests/test/com/google/common/util/concurrent/FuturesTest.java

          getDone(all);
          fail();
        } catch (ExecutionException expected) {
          List<LogRecord> logged = aggregateFutureLogHandler.getStoredLogRecords();
          assertThat(logged).hasSize(2); // failures after the first are logged
          assertThat(logged.get(0).getThrown()).isInstanceOf(MyException.class);
          assertThat(logged.get(1).getThrown()).isInstanceOf(MyException.class);
        }
      }
    
    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)
  10. android/guava/src/com/google/common/collect/Maps.java

      static String toStringImpl(Map<?, ?> map) {
        StringBuilder sb = Collections2.newStringBuilderForCollection(map.size()).append('{');
        boolean first = true;
        for (Entry<?, ?> entry : map.entrySet()) {
          if (!first) {
            sb.append(", ");
          }
          first = false;
          sb.append(entry.getKey()).append('=').append(entry.getValue());
        }
        return sb.append('}').toString();
      }
    
    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)
Back to top