Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 777 for implementors (0.04 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/test/java/org/codelibs/fess/sso/SsoManagerTest.java

        private static class TestLoginCredential implements LoginCredential {
            private final String username;
    
            public TestLoginCredential(String username) {
                this.username = username;
            }
    
            @Override
            public String toString() {
                return username;
            }
        }
    
        private static class TestSsoAuthenticator implements SsoAuthenticator {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.9K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/SourceSinkFactories.java

          }
    
          @Override
          public void tearDown() throws IOException {
            factory.tearDown();
          }
        };
      }
    
      private static class StringSourceFactory implements CharSourceFactory {
    
        @Override
        public CharSource createSource(String data) throws IOException {
          return CharSource.wrap(data);
        }
    
        @Override
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 17.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/hash/Funnels.java

      /** Returns a funnel that extracts the bytes from a {@code byte} array. */
      public static Funnel<byte[]> byteArrayFunnel() {
        return ByteArrayFunnel.INSTANCE;
      }
    
      private enum ByteArrayFunnel implements Funnel<byte[]> {
        INSTANCE;
    
        @Override
        public void funnel(byte[] from, PrimitiveSink into) {
          into.putBytes(from);
        }
    
        @Override
        public String toString() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/hash/Funnels.java

      /** Returns a funnel that extracts the bytes from a {@code byte} array. */
      public static Funnel<byte[]> byteArrayFunnel() {
        return ByteArrayFunnel.INSTANCE;
      }
    
      private enum ByteArrayFunnel implements Funnel<byte[]> {
        INSTANCE;
    
        @Override
        public void funnel(byte[] from, PrimitiveSink into) {
          into.putBytes(from);
        }
    
        @Override
        public String toString() {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Jul 17 15:26:41 UTC 2025
    - 7.2K bytes
    - Viewed (0)
  10. guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java

            assertThat(expected).hasMessageThat().contains(message);
          }
          return;
        }
        fail("expected failure not reported");
      }
    
      private class ForwardingRunnable implements Runnable {
    
        private final Runnable runnable;
    
        ForwardingRunnable(Runnable runnable) {
          this.runnable = runnable;
        }
    
        @Override
        public void run() {
          runnable.run();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Jul 14 14:44:08 UTC 2025
    - 15.7K bytes
    - Viewed (0)
Back to top