- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 284 for serialVersionUID (1.08 sec)
-
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessMailDeliveryDepartmentCreatorTest.java
originalFessConfig = ComponentUtil.getFessConfig(); // Set up test configuration ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getMailFromName() { return "Test Admin"; } @Override public String getMailFromAddress() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java
} // Test configuration for JSON response public void test_configurationSettings() { ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public String getApiJsonResponseExceptionIncluded() { return "false"; } });
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/PingResponseTest.java
// Test that the constructor and getters work with proper setup FessConfig mockConfig = new FessConfig.SimpleImpl() { private static final long serialVersionUID = 1L; @Override public Set<String> getApiPingEsFieldSet() { return new HashSet<>(); } }; ComponentUtil.register(mockConfig, "fessConfig");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 7.5K bytes - Viewed (0) -
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) -
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) -
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/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) -
src/main/java/org/codelibs/fess/mylasta/action/FessUserBean.java
// ========== /** The serial version UID for object serialization. (Default) */ private static final long serialVersionUID = 1L; private final FessUser user; // =================================================================================== // Attribute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
} public void test_serialization() { // Test that the exception has serialVersionUID defined JobNotFoundException exception = new JobNotFoundException("test"); // Simply verify the exception can be created without issues // The serialVersionUID is compile-time checked assertNotNull(exception); } public void test_stackTrace() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0)