Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 777 for implementors (0.29 sec)

  1. android/guava-testlib/test/com/google/common/testing/TearDownStackTest.java

      private static final class ThrowingTearDown implements TearDown {
    
        private final String id;
        boolean ran = false;
    
        ThrowingTearDown(String id) {
          this.id = id;
        }
    
        @Override
        public void tearDown() throws Exception {
          ran = true;
          throw new RuntimeException(id);
        }
      }
    
      private static final class SimpleTearDown implements TearDown {
    
        boolean ran = false;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jul 16 17:42:14 UTC 2025
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProvider.java

    import org.lastaflute.web.servlet.cookie.CookieResourceProvider;
    
    /**
     * The provider of cookie resource.
     *
     * @author jflute
     */
    public class FessCookieResourceProvider implements CookieResourceProvider {
    
        protected final FessConfig harborConfig;
        protected final InvertibleCryptographer cookieCipher;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/job/impl/ScriptExecutorTest.java

            } catch (NullPointerException e) {
                // Expected when null listener is set
            }
        }
    
        // Test helper classes
        private static class TestScriptEngine implements ScriptEngine {
            private String lastScript;
            private Map<String, Object> lastParams;
            private final String prefix;
    
            public TestScriptEngine() {
                this.prefix = "";
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/collect/testing/google/MapGenerators.java

            builder.put(i, elements[i]);
          }
          return builder.buildOrThrow().values().asList();
        }
      }
    
      public static class ImmutableMapEntryListGenerator
          implements TestListGenerator<Entry<String, Integer>> {
    
        @Override
        public SampleElements<Entry<String, Integer>> samples() {
          return new SampleElements<>(
              mapEntry("foo", 5),
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Aug 10 19:54:19 UTC 2025
    - 8.6K bytes
    - Viewed (0)
  5. src/test/java/org/codelibs/fess/filter/CorsFilterTest.java

                return lastRequest;
            }
    
            public ServletResponse getLastResponse() {
                return lastResponse;
            }
        }
    
        private static class TestHttpServletRequest implements HttpServletRequest {
            private String method = "GET";
            private String originHeader = null;
    
            public void setMethod(String method) {
                this.method = method;
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 22.1K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ListenableFutureTask.java

    import java.util.concurrent.FutureTask;
    import java.util.concurrent.TimeUnit;
    import java.util.concurrent.TimeoutException;
    import org.jspecify.annotations.Nullable;
    
    /**
     * A {@link FutureTask} that also implements the {@link ListenableFuture} interface. Unlike {@code
     * FutureTask}, {@code ListenableFutureTask} does not provide an overrideable {@link
     * FutureTask#done() done()} method. For similar functionality, call {@link #addListener}.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/app/pager/RoleTypePager.java

    package org.codelibs.fess.app.pager;
    
    import java.io.Serializable;
    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * Pager for role type management.
     */
    public class RoleTypePager implements Serializable {
    
        /**
         * Constructor.
         */
        public RoleTypePager() {
            super();
        }
    
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/helper/JobHelperTest.java

                entity.setLastUpdated(System.currentTimeMillis());
            }
        }
    
        // Simple mock class without complex interface requirements
        private static class MockLaCron implements LaCron {
            @Override
            public org.lastaflute.job.subsidiary.RegisteredJob register(String cronExp, Class<? extends org.lastaflute.job.LaJob> jobType,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/util/concurrent/WrappingExecutorService.java

     *
     * <p>For delegation without task-wrapping, see {@link ForwardingExecutorService}.
     *
     * @author Chris Nokleberg
     */
    @J2ktIncompatible
    @GwtIncompatible
    abstract class WrappingExecutorService implements ExecutorService {
      private final ExecutorService delegate;
    
      protected WrappingExecutorService(ExecutorService delegate) {
        this.delegate = checkNotNull(delegate);
      }
    
      /**
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Jul 11 18:52:30 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java

    import org.codelibs.core.exception.MethodNotStaticRuntimeException;
    import org.codelibs.core.lang.MethodUtil;
    
    /**
     * Implementation class of {@link MethodDesc}.
     *
     * @author koichik
     */
    public class MethodDescImpl implements MethodDesc {
    
        /** The {@link BeanDesc} of the class that owns this method */
        protected final BeanDesc beanDesc;
    
        /** The method */
        protected final Method method;
    
        /** The method name */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.3K bytes
    - Viewed (0)
Back to top