- Sort Score
- Num 10 results
- Language All
Results 451 - 460 of 495 for getMessage (0.09 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java
if (logger.isDebugEnabled()) { logger.debug(msg); } throw new SsoLoginException(e.getMessage() + " " + msg, e); } // context/auth loop not yet complete final boolean status = spnegoResponse.isStatusSet(); if (logger.isDebugEnabled()) {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:18:23 GMT 2026 - 18.2K bytes - Click Count (3) -
src/main/java/jcifs/smb1/smb1/SmbSession.java
return; } try { transport.wait(); } catch (final InterruptedException ie) { throw new SmbException(ie.getMessage(), ie); } } connectionState = 1; // trying ... try { transport.connect(); /*Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 20.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
try { manager.process(request, response, chain); fail("Expected ServletException"); } catch (ServletException e) { assertEquals("Test error", e.getMessage()); } } @Test public void test_process_withNullParameters() throws IOException, ServletException { // Test null parameter handlingCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 26.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/validation/UriTypeTest.java
assertEquals("payload() return type should be Class[]", Class[].class, payloadMethod.getReturnType()); } catch (final NoSuchMethodException e) { fail("Required annotation method not found: " + e.getMessage()); } } // Test creating custom implementation of annotation @Test public void test_customAnnotationImplementation() { final UriType customAnnotation = new UriType() {
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java
IllegalArgumentException exception = assertThrows(IllegalArgumentException.class, () -> request.writeBytesWireFormat(smallBuffer, 0)); assertTrue(exception.getMessage().contains("Data exceeds buffer size")); } @Test @DisplayName("Should write data at correct offset in buffer") void testDataOffsetCalculation() {Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 22.4K bytes - Click Count (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataImplTest.java
IllegalArgumentException exception = assertThrows(IllegalArgumentException.class, () -> referralData.stripPathConsumed(10)); assertEquals("Stripping more than consumed", exception.getMessage()); } private void setupReferralDataWithPathConsumed(int consumed) { when(mockReferral.getTtl()).thenReturn(300); when(mockReferral.getRFlags()).thenReturn(0);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 30.6K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableListMultimap.java
ImmutableMap<Object, ImmutableList<Object>> tmpMap; try { tmpMap = builder.buildOrThrow(); } catch (IllegalArgumentException e) { throw (InvalidObjectException) new InvalidObjectException(e.getMessage()).initCause(e); } deserializationReplacement = new ImmutableListMultimap<>(tmpMap, tmpSize); } @GwtIncompatible @J2ktIncompatible private Object readResolve() {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Dec 09 15:58:48 GMT 2025 - 19.3K bytes - Click Count (0) -
src/main/java/jcifs/http/NetworkExplorer.java
} this.style = sb.toString(); } } catch (final IOException ioe) { throw new ServletException(ioe.getMessage()); } this.enableBasic = Config.getBoolean(p, "jcifs.http.enableBasic", false); this.insecureBasic = Config.getBoolean(p, "jcifs.http.insecureBasic", false);Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 23.4K bytes - Click Count (0) -
src/main/java/jcifs/smb1/ntlmssp/Type3Message.java
writeSecurityBuffer(type3, 52, offset, sessionKey); writeULong(type3, 60, flags); return type3; } catch (final IOException ex) { throw new IllegalStateException(ex.getMessage()); } } @Override public String toString() { final String user = getUser(); final String domain = getDomain(); final String workstation = getWorkstation();
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 16 01:32:48 GMT 2025 - 24.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/IndexingHelper.java
final Failure failure = resp.getFailure(); logger.debug("Failed Request: {}\n=>{}", req, failure.getMessage()); } } } } throw new SearchEngineClientException(response.buildFailureMessage());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 26.1K bytes - Click Count (0)