- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 519 for serialVersionUID (0.42 sec)
-
src/test/java/org/codelibs/curl/CurlExceptionTest.java
boolean hasSerialVersionUID = false; try { CurlException.class.getDeclaredField("serialVersionUID"); hasSerialVersionUID = true; } catch (NoSuchFieldException e) { // Field doesn't exist } assertTrue("CurlException should have serialVersionUID field", hasSerialVersionUID); } @Test public void testExceptionChaining() {
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
// Definition // ========== private static final long serialVersionUID = 1L; // =================================================================================== // Attribute
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
// Definition // ========== private static final long serialVersionUID = 1L; // =================================================================================== // Attribute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 10.9K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/SerializableTesterTest.java
} private static class ClassWhichDoesNotImplementEquals implements Serializable { private static final long serialVersionUID = 1L; } private static class ClassWhichIsAlwaysEqualButHasDifferentHashcodes implements Serializable { private static final long serialVersionUID = 2L; @SuppressWarnings("EqualsHashCode") @Override public boolean equals(@Nullable Object other) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Feb 13 17:34:21 UTC 2025 - 4K bytes - Viewed (0) -
guava/src/com/google/common/base/Predicates.java
return false; } @Override public String toString() { return "Predicates.not(" + predicate + ")"; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /** * @see Predicates#and(Iterable) */ private static final class AndPredicate<T extends @Nullable Object> implements Predicate<T>, Serializable {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 26.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java
originalFessConfig = ComponentUtil.getFessConfig(); // Set up test FessConfig ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getCookieDefaultPath() { return "/test/path"; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/GsaConfigExceptionTest.java
} public void test_serialization() { // Test serialVersionUID is properly defined GsaConfigException exception = new GsaConfigException("Serialization test"); // Verify the exception is serializable (has serialVersionUID) assertNotNull(exception); // The serialVersionUID field exists and is accessible at compile time
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/SystemHelperTest.java
assertEquals("https://discuss.codelibs.org/c/FessEN/", systemHelper.getForumLink()); ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getForumLink() { return StringUtil.EMPTY; } }); getMockRequest().setLocale(Locale.ENGLISH);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 28.9K bytes - Viewed (0) -
guava/src/com/google/common/base/Functions.java
return map.hashCode(); } @Override public String toString() { return "Functions.forMap(" + map + ")"; } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } private static final class ForMapWithDefault< K extends @Nullable Object, V extends @Nullable Object> implements Function<K, V>, Serializable { final Map<K, ? extends V> map;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
break; } } assertTrue(foundTestMethod); } public void test_serialization() { // Test that the exception has serialVersionUID // This test verifies the exception is serializable String message = "Serialization test"; UnsupportedSearchException exception = new UnsupportedSearchException(message);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.4K bytes - Viewed (0)