Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 41 - 50 of 2,287 for super (0.04 seconds)

  1. 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)
  2. src/main/java/org/codelibs/core/exception/ClIllegalStateException.java

         * Creates a {@link ClIllegalStateException}.
         */
        public ClIllegalStateException() {
            super();
        }
    
        /**
         * Creates a {@link ClIllegalStateException}.
         *
         * @param message
         *            Message
         */
        public ClIllegalStateException(final String message) {
            super(message);
        }
    
        /**
         * Creates a {@link ClIllegalStateException}.
         *
    Created: 2026-04-03 20:58
    - Last Modified: 2025-06-19 09:12
    - 1.7K bytes
    - Click Count (0)
  3. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/ListenableFuture.java

    import jsinterop.annotations.JsMethod;
    import jsinterop.annotations.JsOptional;
    import jsinterop.annotations.JsPackage;
    import jsinterop.annotations.JsType;
    import org.jspecify.annotations.Nullable;
    
    /**
     * Java super source for ListenableFuture, implementing a structural thenable via a default method.
     * For restrictions, please refer to the documentation of the then() method.
     */
    Created: 2026-04-03 12:43
    - Last Modified: 2024-12-22 03:38
    - 3.8K bytes
    - Click Count (0)
  4. 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)
  5. src/main/java/jcifs/smb/SmbAuthException.java

        private static final long serialVersionUID = -4248623847084793254L;
    
        SmbAuthException(final int errcode) {
            super(errcode, null);
        }
    
        SmbAuthException(final String message) {
            super(message);
        }
    
        SmbAuthException(final String message, final Throwable cause) {
            super(message, cause);
        }
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-14 07:14
    - 1.5K bytes
    - Click Count (0)
  6. android/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
    - 157.6K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/core/exception/FileAccessException.java

            super(messageCode, args);
        }
    
        /**
         * Creates a new {@link FileAccessException} with the specified message code and cause.
         *
         * @param messageCode
         *            the message code
         * @param cause
         *            the cause
         */
        public FileAccessException(final String messageCode, final Throwable cause) {
            super(messageCode, new Object[0], cause);
        }
    Created: 2026-04-03 20:58
    - Last Modified: 2025-07-05 00:11
    - 2.2K bytes
    - Click Count (0)
  8. guava/src/com/google/common/collect/CompoundOrdering.java

    final class CompoundOrdering<T extends @Nullable Object> extends Ordering<T>
        implements Serializable {
      final Comparator<? super T>[] comparators;
    
      @SuppressWarnings("unchecked") // Generic array creation
      CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) {
        this.comparators = (Comparator<? super T>[]) new Comparator<?>[] {primary, secondary};
      }
    
      @SuppressWarnings("unchecked") // Generic array creation
    Created: 2026-04-03 12:43
    - Last Modified: 2025-06-04 13:03
    - 2.5K bytes
    - Click Count (0)
  9. src/test/java/jcifs/MsrpcQueryInformationPolicyTest.java

            // Verify that the super constructor was called with the correct arguments
            // Note: Mockito cannot directly verify super constructor calls.
            // We assume if the object is created, the super constructor was called.
            // We can verify the state of the object after construction.
    
            // Verify ptype and flags are set correctly
    Created: 2026-04-05 00:10
    - Last Modified: 2025-08-14 05:31
    - 1.7K bytes
    - Click Count (0)
  10. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

      public static <T extends @Nullable Object, E>
          Collector<T, ?, ImmutableSortedMultiset<E>> toImmutableSortedMultiset(
              Comparator<? super E> comparator,
              Function<? super T, ? extends E> elementFunction,
              ToIntFunction<? super T> countFunction) {
        checkNotNull(comparator);
        checkNotNull(elementFunction);
        checkNotNull(countFunction);
        return Collector.of(
    Created: 2026-04-03 12:43
    - Last Modified: 2025-05-13 17:27
    - 35.2K bytes
    - Click Count (0)
Back to Top