Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for Saheed (0.21 sec)

  1. android/guava/src/com/google/common/collect/LinkedListMultimap.java

          checkForConcurrentModification();
          if (next == null) {
            throw new NoSuchElementException();
          }
          current = next;
          seenKeys.add(current.key);
          do { // skip ahead to next unseen key
            next = next.next;
          } while ((next != null) && !seenKeys.add(next.key));
          return current.key;
        }
    
        @Override
        public void remove() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Oct 13 14:11:58 GMT 2023
    - 27.2K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/base/CharMatcher.java

          case 1:
            return is(sequence.charAt(0));
          case 2:
            return isEither(sequence.charAt(0), sequence.charAt(1));
          default:
            // TODO(lowasser): is it potentially worth just going ahead and building a precomputed
            // matcher?
            return new AnyOf(sequence);
        }
      }
    
      /**
       * Returns a {@code char} matcher that matches any BMP character not present in the given
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.7K bytes
    - Viewed (0)
  3. guava/src/com/google/common/base/CharMatcher.java

          case 1:
            return is(sequence.charAt(0));
          case 2:
            return isEither(sequence.charAt(0), sequence.charAt(1));
          default:
            // TODO(lowasser): is it potentially worth just going ahead and building a precomputed
            // matcher?
            return new AnyOf(sequence);
        }
      }
    
      /**
       * Returns a {@code char} matcher that matches any BMP character not present in the given
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Feb 09 15:49:48 GMT 2024
    - 53.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/cache/CacheBuilder.java

       * ensure type safety. For best results, use the standard method-chaining idiom illustrated in the
       * class documentation above, configuring a builder and building your cache in a single statement.
       * Failure to heed this advice can result in a {@link ClassCastException} being thrown by a cache
       * operation at some <i>undefined</i> point in the future.
       *
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 51.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/cache/CacheBuilder.java

       * ensure type safety. For best results, use the standard method-chaining idiom illustrated in the
       * class documentation above, configuring a builder and building your cache in a single statement.
       * Failure to heed this advice can result in a {@link ClassCastException} being thrown by a cache
       * operation at some <i>undefined</i> point in the future.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Feb 15 16:12:13 GMT 2024
    - 44.8K bytes
    - Viewed (0)
Back to top