- Sort Score
- Result 10 results
- Languages All
Results 471 - 480 of 1,264 for implementors (0.07 sec)
-
src/test/java/org/codelibs/fess/helper/DataIndexHelperTest.java
assertTrue("Test should complete quickly (duration: " + duration + "ms)", duration < 1000); } // Fast mock implementations to minimize overhead private static class FastMockIndexUpdateCallback implements IndexUpdateCallback { @Override public long getExecuteTime() { return 100L; } @Override public long getDocumentSize() { return 10L;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 05:35:01 UTC 2025 - 12.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/CloserTest.java
} // TODO(cpovirk): Just use addSuppressed+getSuppressed now that we can rely on it. /** Suppressor that records suppressions. */ private static class TestSuppressor implements Closer.Suppressor { private final List<Suppression> suppressions = new ArrayList<>(); @Override public void suppress(Closeable closeable, Throwable thrown, Throwable suppressed) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 11.8K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
static final GetCheckedTypeValidator BEST_VALIDATOR = getBestValidator(); @J2ObjCIncompatible // ClassValue enum ClassValueValidator implements GetCheckedTypeValidator { INSTANCE; /* * Static final fields are presumed to be fastest, based on our experience with * UnsignedBytesBenchmark. TODO(cpovirk): benchmark this */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 11.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/RequestTest.java
assertNotNull(ignored); assertEquals(testRequest, ignored); } /** * Test implementation of Request interface */ private static class TestRequest implements Request<TestResponse> { private TestResponse response; private boolean ignoreDisconnect = false; private int tid = 0; private SMBSigningDigest digest; private long mid = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistant.java
* This class provides basic scaffolding for DBFlute behavior invoker assistance, * primarily returning null implementations as placeholders for OpenSearch-specific functionality. * */ public class ImplementedInvokerAssistant implements InvokerAssistant { // =================================================================================== // Attribute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SynonymPager.java
* Pager for managing synonym pagination. * This class handles the state and logic for paginating through a list of synonyms, * including total record count, page size, and current page number. */ public class SynonymPager implements Serializable { /** * Constructs a new pager for synonyms. */ public SynonymPager() { // do nothing } 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 - 5.6K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ImmutableCollection.java
* * @author Jesse Wilson */ @SuppressWarnings("serial") // we're overriding default serialization public abstract class ImmutableCollection<E> extends AbstractCollection<E> implements Serializable { static final int SPLITERATOR_CHARACTERISTICS = Spliterator.IMMUTABLE | Spliterator.NONNULL | Spliterator.ORDERED; ImmutableCollection() {} @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java
* This structure contains comprehensive file information including timestamps, attributes, sizes, * short name (8.3 format), and full filename for directory entries. */ public class FileBothDirectoryInfo implements FileEntry, Decodable { private int nextEntryOffset; private int fileIndex; private long creationTime; private long lastAccessTime; private long lastWriteTime; private long changeTime;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/test/java/jcifs/internal/SmbNegotiationRequestTest.java
} /** * Test implementation of SmbNegotiationRequest for testing purposes */ private static class TestSmbNegotiationRequest implements SmbNegotiationRequest { private final boolean signingEnforced; TestSmbNegotiationRequest(boolean signingEnforced) { this.signingEnforced = signingEnforced; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/manager/DefaultWagonManager.java
*/ @Named @Singleton @Deprecated public class DefaultWagonManager extends org.apache.maven.repository.legacy.DefaultWagonManager implements WagonManager { // NOTE: This must use a different field name than in the super class or IoC has no chance to inject the loggers @Inject private Logger log; @Inject
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 6.5K bytes - Viewed (0)