Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 897 for implements (0.05 sec)

  1. src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java

            }
    
            public Function<?, ?> getLastFunction() {
                return lastFunction;
            }
        }
    
        // Inner class for test credential
        private static class TestLoginCredential implements LoginCredential {
            private final String username;
            private final String password;
    
            public TestLoginCredential(String username, String password) {
                this.username = username;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/AbstractMapBasedMultimap.java

     */
    @GwtCompatible
    @SuppressWarnings("WrongCommentType") // false positive
    abstract class AbstractMapBasedMultimap<K extends @Nullable Object, V extends @Nullable Object>
        extends AbstractMultimap<K, V> implements Serializable {
      /*
       * Here's an outline of the overall design.
       *
       * The map variable contains the collection of values associated with each
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Aug 12 15:51:57 UTC 2025
    - 48.2K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/google/MultisetFeature.java

     * Optional features of classes derived from {@link Multiset}.
     *
     * @author Louis Wasserman
     */
    @SuppressWarnings("rawtypes") // maybe avoidable if we rework the whole package?
    @GwtCompatible
    public enum MultisetFeature implements Feature<Multiset> {
      /**
       * Indicates that elements from {@code Multiset.entrySet()} update to reflect changes in the
       * backing multiset.
       */
      ENTRIES_ARE_VIEWS;
    
      @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jan 30 16:59:10 UTC 2025
    - 1.7K bytes
    - Viewed (0)
  4. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFutureState.java

    import com.google.common.util.concurrent.internal.InternalFutureFailureAccess;
    import org.jspecify.annotations.Nullable;
    
    abstract class AbstractFutureState<V extends @Nullable Object> extends InternalFutureFailureAccess
        implements ListenableFuture<V> {
      final boolean casListeners(@Nullable Listener expect, Listener update) {
        if (listeners == expect) {
          listeners = update;
          return true;
        }
        return false;
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Feb 21 02:38:37 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/core/beans/converter/NumberConverter.java

    import org.codelibs.core.exception.ParseRuntimeException;
    import org.codelibs.core.lang.StringUtil;
    
    /**
     * Converter for numbers.
     *
     * @author higa
     */
    public class NumberConverter implements Converter {
    
        /**
         * The pattern for numbers.
         */
        protected String pattern;
    
        /**
         * Constructs an instance.
         *
         * @param pattern
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/beans/converter/TimestampConverter.java

    import org.codelibs.core.convert.StringConversionUtil;
    import org.codelibs.core.convert.TimestampConversionUtil;
    
    /**
     * Converter for timestamps.
     *
     * @author higa
     */
    public class TimestampConverter implements Converter {
    
        /**
         * The pattern for the date and time.
         */
        protected String pattern;
    
        /**
         * Constructs an instance.
         *
         * @param pattern
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/base/Equivalence.java

      public final <F> Equivalence<F> onResultOf(Function<? super F, ? extends @Nullable T> function) {
        return new FunctionalEquivalence<>(function, this);
      }
    
      /**
       * Returns a wrapper of {@code reference} that implements {@link Wrapper#equals(Object)
       * Object.equals()} such that {@code wrap(a).equals(wrap(b))} if and only if {@code equivalent(a,
       * b)}.
       *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 10 01:47:55 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/collection/SingleValueIterator.java

    import org.codelibs.core.exception.ClUnsupportedOperationException;
    
    /**
     * An {@link Iterator} that returns a single value.
     *
     * @author koichik
     * @param <E> the element type
     */
    public class SingleValueIterator<E> implements Iterator<E> {
    
        /** The only value returned by the iterator. */
        protected final E value;
    
        /** {@literal true} if the iterator has more elements. */
        protected boolean hasNext = true;
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/timer/MonitorTarget.java

    import org.codelibs.fess.taglib.FessFunctions;
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Abstract base class for monitor targets that implement timeout functionality.
     */
    public abstract class MonitorTarget implements TimeoutTarget {
    
        /**
         * Default constructor.
         */
        public MonitorTarget() {
            // Default constructor
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 3.8K bytes
    - Viewed (0)
  10. guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/ListenableFuture.java

        V onInvoke(Object p0);
      }
    }
    
    /** Subset of the elemental2 Promise API. */
    @JsType(isNative = true, namespace = JsPackage.GLOBAL, name = "Promise")
    class Promise<T extends @Nullable Object> implements IThenable<T> {
    
      @JsFunction
      interface PromiseExecutorCallbackFn<T extends @Nullable Object> {
        @JsFunction
        interface ResolveCallbackFn<T extends @Nullable Object> {
          void onInvoke(T value);
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 3.8K bytes
    - Viewed (0)
Back to top