- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 488 for serialVersionUID (2.06 sec)
-
src/main/java/org/codelibs/fess/app/pager/KuromojiPager.java
import java.util.List; import org.codelibs.fess.util.ComponentUtil; /** * Pager for Kuromoji. */ public class KuromojiPager implements Serializable { private static final long serialVersionUID = 1L; /** * Default constructor. */ public KuromojiPager() { // no-op } /** The total number of records. */ private int allRecordCount;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/LockHeldAssertingSet.java
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/SynchronizedTableTest.java
} @Override public Map<R, Map<C, V>> rowMap() { assertTrue(Thread.holdsLock(mutex)); return delegate.rowMap(); } private static final long serialVersionUID = 0; } @Override protected Table<String, Integer, Character> create(@Nullable Object... data) { TestTable<String, Integer, Character> table = new TestTable<>();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsentity/BsClickLog.java
// Definition // ========== private static final long serialVersionUID = 1L; protected static final Class<?> suppressUnusedImportLocalDateTime = LocalDateTime.class; // ===================================================================================
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/SynonymPager.java
public class SynonymPager implements Serializable { /** * Constructs a new pager for synonyms. */ public SynonymPager() { // do nothing } private static final long serialVersionUID = 1L; /** The total number of records. */ private int allRecordCount; /** The total number of pages. */ private int allPageCount; /** A flag indicating if a previous page exists. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/FessUserNotFoundExceptionTest.java
assertTrue(exception instanceof Exception); assertTrue(exception instanceof Throwable); } public void test_serialVersionUID() { // Test that the exception has a serialVersionUID field FessUserNotFoundException exception1 = new FessUserNotFoundException("user1"); FessUserNotFoundException exception2 = new FessUserNotFoundException("user2");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.6K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/EmptyContiguousSet.java
this.domain = domain; } private Object readResolve() { return new EmptyContiguousSet<>(domain); } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } @GwtIncompatible @J2ktIncompatible @Override Object writeReplace() { return new SerializedForm<>(domain); } @GwtIncompatible @J2ktIncompatible
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/UnmodifiableSortedMultiset.java
return Multisets.unmodifiableSortedMultiset(delegate().tailMultiset(lowerBound, boundType)); } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ReqHeaderPager.java
* This class provides pagination functionality for displaying and managing * request headers in the administration interface. */ public class ReqHeaderPager implements Serializable { private static final long serialVersionUID = 1L; /** * Default number of records to display per page. */ public static final int DEFAULT_PAGE_SIZE = 20; /** * Default current page number for pagination. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/UpdateLabelJobTest.java
}; ComponentUtil.register(mockSearchEngineClient, "searchEngineClient"); // Mock FessConfig FessConfig mockFessConfig = new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getIndexDocumentUpdateIndex() { return "fess.update"; } @Override public String getIndexFieldUrl() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9.4K bytes - Viewed (0)