Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for existent (0.15 sec)

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

    hastily, just in time to avoid shrinking away altogether.
    
    `That WAS a narrow escape!' said Alice, a good deal frightened at
    the sudden change, but very glad to find herself still in
    existence; `and now for the garden!' and she ran with all speed
    back to the little door:  but, alas! the little door was shut
    again, and the little golden key was lying on the glass table as
    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

            ReferenceEntry<K, V> first = table.get(index);
    
            // Look for an existing entry.
            for (e = first; e != null; e = e.getNext()) {
              K entryKey = e.getKey();
              if (e.getHash() == hash
                  && entryKey != null
                  && map.keyEquivalence.equivalent(key, entryKey)) {
                // We found an existing entry.
    
                ValueReference<K, V> valueReference = e.getValueReference();
    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

            ReferenceEntry<K, V> first = table.get(index);
    
            // Look for an existing entry.
            for (e = first; e != null; e = e.getNext()) {
              K entryKey = e.getKey();
              if (e.getHash() == hash
                  && entryKey != null
                  && map.keyEquivalence.equivalent(key, entryKey)) {
                // We found an existing entry.
    
                ValueReference<K, V> valueReference = e.getValueReference();
    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/src/com/google/common/collect/Maps.java

       * put()} and {@code putAll()} methods throw an {@link IllegalArgumentException}. Similarly, the
       * map's entries have a {@link Entry#setValue} method that throws an {@link
       * IllegalArgumentException} when the existing key and the provided value don't satisfy the
       * predicate.
       *
       * <p>When methods such as {@code removeAll()} and {@code clear()} are called on the filtered map
    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

    hastily, just in time to avoid shrinking away altogether.
    
    `That WAS a narrow escape!' said Alice, a good deal frightened at
    the sudden change, but very glad to find herself still in
    existence; `and now for the garden!' and she ran with all speed
    back to the little door:  but, alas! the little door was shut
    again, and the little golden key was lying on the glass table as
    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)
Back to top