Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 488 for super (0.02 seconds)

  1. android/guava/src/com/google/common/reflect/TypeToken.java

       * </ul>
       */
      public final Class<? super T> getRawType() {
        if (runtimeType instanceof Class) {
          @SuppressWarnings("unchecked") // raw type is T
          Class<? super T> result = (Class<? super T>) runtimeType;
          return result;
        } else if (runtimeType instanceof ParameterizedType) {
          @SuppressWarnings("unchecked") // raw type is |T|
    Created: 2026-04-03 12:43
    - Last Modified: 2026-01-29 22:14
    - 53.8K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java

          super(message);
        }
    
        public ExceptionWithManyConstructorsButOnlyOneThrowable(
            String message, String a1, String a2, String a3) {
          super(message);
        }
    
        public ExceptionWithManyConstructorsButOnlyOneThrowable(String message, Throwable antecedent) {
          super(message);
          this.antecedent = antecedent;
        }
    
        public ExceptionWithManyConstructorsButOnlyOneThrowable(
    Created: 2026-04-03 12:43
    - Last Modified: 2026-03-16 15:59
    - 6.3K bytes
    - Click Count (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

        abstract void forEachRemaining(Consumer<? super E> action);
    
        abstract boolean tryAdvance(Consumer<? super E> action);
    
        abstract @Nullable GeneralSpliterator<E> trySplit();
    
        final int characteristics() {
          return spliterator.characteristics();
        }
    
        final long estimateSize() {
          return spliterator.estimateSize();
        }
    
        final @Nullable Comparator<? super E> getComparator() {
    Created: 2026-04-03 12:43
    - Last Modified: 2026-04-01 17:27
    - 12.5K bytes
    - Click Count (0)
  4. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

        abstract void forEachRemaining(Consumer<? super E> action);
    
        abstract boolean tryAdvance(Consumer<? super E> action);
    
        abstract @Nullable GeneralSpliterator<E> trySplit();
    
        final int characteristics() {
          return spliterator.characteristics();
        }
    
        final long estimateSize() {
          return spliterator.estimateSize();
        }
    
        final @Nullable Comparator<? super E> getComparator() {
    Created: 2026-04-03 12:43
    - Last Modified: 2026-04-01 17:27
    - 12.1K bytes
    - Click Count (0)
  5. guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java

          super(message);
        }
    
        public ExceptionWithManyConstructorsButOnlyOneThrowable(
            String message, String a1, String a2, String a3) {
          super(message);
        }
    
        public ExceptionWithManyConstructorsButOnlyOneThrowable(String message, Throwable antecedent) {
          super(message);
          this.antecedent = antecedent;
        }
    
        public ExceptionWithManyConstructorsButOnlyOneThrowable(
    Created: 2026-04-03 12:43
    - Last Modified: 2026-03-16 15:59
    - 6.3K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/base/Predicates.java

       * as a false predicate is found.
       *
       * <p><b>Discouraged:</b> Prefer using {@code first.and(second)}.
       */
      public static <T extends @Nullable Object> Predicate<T> and(
          Predicate<? super T> first, Predicate<? super T> second) {
        return new AndPredicate<>(Predicates.<T>asList(checkNotNull(first), checkNotNull(second)));
      }
    
      /**
    Created: 2026-04-03 12:43
    - Last Modified: 2026-03-08 16:16
    - 26.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/llm/LlmException.java

        public LlmException(final String message) {
            super(message);
            errorCode = ERROR_UNKNOWN;
        }
    
        /**
         * Creates a new exception with the specified message and cause.
         *
         * @param message the error message
         * @param cause the cause of the exception
         */
        public LlmException(final String message, final Throwable cause) {
            super(message, cause);
            errorCode = ERROR_UNKNOWN;
        }
    Created: 2026-03-31 13:07
    - Last Modified: 2026-03-07 01:53
    - 3.5K bytes
    - Click Count (0)
  8. guava/src/com/google/common/collect/Maps.java

        SortedAsMapView(SortedSet<K> set, Function<? super K, V> function) {
          super(set, function);
        }
    
        @Override
        SortedSet<K> backingSet() {
          return (SortedSet<K>) super.backingSet();
        }
    
        @Override
        public @Nullable Comparator<? super K> comparator() {
          return backingSet().comparator();
        }
    
        @Override
    Created: 2026-04-03 12:43
    - Last Modified: 2026-04-01 17:27
    - 163.4K bytes
    - Click Count (0)
  9. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/LocalCache.java

      private final @Nullable CacheLoader<? super K, V> loader;
      private final @Nullable RemovalListener<? super K, ? super V> removalListener;
      private final StatsCounter statsCounter;
      private final Ticker ticker;
      private final long expireAfterWrite;
      private final long expireAfterAccess;
    
      LocalCache(
          CacheBuilder<? super K, ? super V> builder, @Nullable CacheLoader<? super K, V> loader) {
        this.loader = loader;
    Created: 2026-04-03 12:43
    - Last Modified: 2026-03-03 12:40
    - 21.6K bytes
    - Click Count (0)
  10. guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/CapacityEnforcingMap.java

      private final @Nullable RemovalListener<? super K, ? super V> removalListener;
      private final long maximumSize;
    
      CapacityEnforcingMap(
          int initialCapacity,
          float loadFactor,
          boolean accessOrder,
          long maximumSize,
          StatsCounter statsCounter,
          @Nullable RemovalListener<? super K, ? super V> removalListener) {
        super(initialCapacity, loadFactor, accessOrder);
    Created: 2026-04-03 12:43
    - Last Modified: 2026-02-23 13:13
    - 2.1K bytes
    - Click Count (0)
Back to Top