- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 330 for implements (0.27 sec)
-
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
assertEquals("Complex response", response.getWrittenContent()); assertTrue(chain.wasDoFilterCalled()); } // Test implementation classes private static class TestWebApiManager implements WebApiManager { private final String basePath; private boolean processCalled = false; public TestWebApiManager(String basePath) { this.basePath = basePath; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 26.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java
public DummyCountDownLatch() { super(0); } } @Keep public static final class DummyRunnable implements Runnable, Serializable { @Override public void run() {} } @Keep public static final class DummyThreadFactory implements ThreadFactory, Serializable { @Override public Thread newThread(Runnable r) { return new Thread(r); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 20.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
import org.opensearch.action.index.IndexRequestBuilder; /** * The abstract entity for Elasticsearch. * * @author ESFlute (using FreeGen) */ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneable { // =================================================================================== // Definition
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/allcommon/EsAbstractEntity.java
import org.opensearch.action.delete.DeleteRequestBuilder; import org.opensearch.action.index.IndexRequestBuilder; /** * @author ESFlute (using FreeGen) */ public abstract class EsAbstractEntity implements Entity, Serializable, Cloneable { // =================================================================================== // Definition
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0) -
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) -
android/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) -
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) -
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) -
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) -
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)