Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Continue (0.17 sec)

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

          for (ReferenceEntry<K, V> e = getFirst(hash); e != null; e = e.getNext()) {
            if (e.getHash() != hash) {
              continue;
            }
    
            K entryKey = e.getKey();
            if (entryKey == null) {
              tryDrainReferenceQueues();
              continue;
            }
    
            if (map.keyEquivalence.equivalent(key, entryKey)) {
              return e;
            }
          }
    
    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/io/testdata/alice_in_wonderland.txt

    `"--found it advisable to go with Edgar Atheling to meet William
    and offer him the crown.  William's conduct at first was
    moderate.  But the insolence of his Normans--"  How are you
    getting on now, my dear?' it continued, turning to Alice as it
    spoke.
    
      `As wet as ever,' said Alice in a melancholy tone:  `it doesn't
    seem to dry me at all.'
    
      `In that case,' said the Dodo solemnly, rising to its feet, `I
    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)
  3. android/guava/src/com/google/common/cache/LocalCache.java

          for (ReferenceEntry<K, V> e = getFirst(hash); e != null; e = e.getNext()) {
            if (e.getHash() != hash) {
              continue;
            }
    
            K entryKey = e.getKey();
            if (entryKey == null) {
              tryDrainReferenceQueues();
              continue;
            }
    
            if (map.keyEquivalence.equivalent(key, entryKey)) {
              return e;
            }
          }
    
    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

    `"--found it advisable to go with Edgar Atheling to meet William
    and offer him the crown.  William's conduct at first was
    moderate.  But the insolence of his Normans--"  How are you
    getting on now, my dear?' it continued, turning to Alice as it
    spoke.
    
      `As wet as ever,' said Alice in a melancholy tone:  `it doesn't
    seem to dry me at all.'
    
      `In that case,' said the Dodo solemnly, rising to its feet, `I
    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