- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for MESSAGE1 (0.04 sec)
-
src/test/java/org/codelibs/fess/exception/LdapOperationExceptionTest.java
// Test message consistency across different scenarios String message1 = "LDAP bind failed"; String message2 = "LDAP search failed"; Exception cause = new Exception("Timeout"); LdapOperationException exception1 = new LdapOperationException(message1); LdapOperationException exception2 = new LdapOperationException(message2, cause);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 8.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/UnsupportedSearchExceptionTest.java
String message1 = "First exception"; String message2 = "Second exception"; UnsupportedSearchException exception1 = new UnsupportedSearchException(message1); UnsupportedSearchException exception2 = new UnsupportedSearchException(message2); assertNotSame(exception1, exception2); assertEquals(message1, exception1.getMessage());
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/test/java/org/codelibs/fess/exception/InvalidAccessTokenExceptionTest.java
InvalidAccessTokenException exception1 = new InvalidAccessTokenException("Type1", "Message1"); InvalidAccessTokenException exception2 = new InvalidAccessTokenException("Type2", "Message2"); assertEquals("Type1", exception1.getType()); assertEquals("Message1", exception1.getMessage()); assertEquals("Type2", exception2.getType());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.4K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/exception/CrawlerSystemExceptionTest.java
constructor.setAccessible(true); // Test with suppression enabled and writable stack trace String message1 = "Test with suppression enabled"; CrawlerSystemException exception1 = constructor.newInstance(message1, true, true); assertNotNull(exception1); assertEquals(message1, exception1.getMessage()); assertNull(exception1.getCause());
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 20K bytes - Viewed (0) -
src/test/java/jcifs/smb/PreauthIntegrityServiceTest.java
preauthService.initializeSession(sessionId, salt, PreauthIntegrityService.HASH_ALGO_SHA512); // Simulate message exchange preauthService.updatePreauthHash(sessionId, "Message1".getBytes()); preauthService.updatePreauthHash(sessionId, "Message2".getBytes()); byte[] expectedHash = preauthService.getCurrentPreauthHash(sessionId);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.1K bytes - Viewed (0)