- Sort Score
- Result 10 results
- Languages All
Results 481 - 490 of 1,374 for messages (0.05 sec)
-
src/main/java/org/codelibs/fess/suggest/exception/SuggesterException.java
*/ public class SuggesterException extends RuntimeException { private static final long serialVersionUID = 1L; /** * Constructs a new SuggesterException with the specified detail message. * @param msg The detail message. */ public SuggesterException(final String msg) { super(msg); } /** * Constructs a new SuggesterException with the specified cause.
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Fri Jul 04 14:00:23 UTC 2025 - 1.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/ws/WebSocketReaderTest.kt
}.also { expected -> assertThat(expected.message) .isEqualTo("Control frames must be final.") } } @Test fun reservedFlag1IsUnsupportedWithNoCompression() { data.write("ca00".decodeHex()) // Empty pong, flag 1 set. assertFailsWith<ProtocolException> { clientReader.processNextFrame() }.also { expected -> assertThat(expected.message).isEqualTo("Unexpected rsv1 flag") } }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 14.4K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java
} } /** * Logs a message to the annotation processing environment. * * @param kind the kind of diagnostic message * @param message the message to log */ private void logMessage(Diagnostic.Kind kind, String message) { processingEnv.getMessager().printMessage(kind, message); } /**
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 7.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/StatusLine.kt
) // Parse an optional response message like "OK" or "Not Modified". If it // exists, it is separated from the response code by a space. var message = "" if (statusLine.length > codeStart + 3) { if (statusLine[codeStart + 3] != ' ') { throw ProtocolException("Unexpected status line: $statusLine") } message = statusLine.substring(codeStart + 4) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/NotificationHelper.java
logger.warn("Failed to send {} to {}.", body, url, e); } })); } /** * Converts the discloser to a Slack message format. * * @param discloser the mail posting discloser * @return the formatted Slack message */ protected String toSlackMessage(final SMailPostingDiscloser discloser) { final StringBuilder buf = new StringBuilder(100);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.2K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/RequestTimeoutException.java
/** * Constructs a new RequestTimeoutException with no detail message. */ public RequestTimeoutException() { } /** * Constructs a new RequestTimeoutException with the specified detail message and cause. * * @param msg the detail message * @param rootCause the cause of the exception */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlerLoginFailureException.java
private static final long serialVersionUID = 1L; /** * Constructs a new CrawlerLoginFailureException with the specified detail message. * * @param message the detail message. */ public CrawlerLoginFailureException(final String message) { super(message); }
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 1.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java
} /** * Generates a Type 3 NTLM message. * * @param username the username * @param password the password * @param domain the domain * @param workstation the workstation * @param challenge the Type 2 challenge message * @return the Base64-encoded Type 3 message * @throws NTLMEngineException if an NTLM engine error occurs
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 4.3K bytes - Viewed (0) -
okhttp-logging-interceptor/src/test/java/okhttp3/logging/LoggingEventListenerTest.kt
), ).assertLogMatch( Regex(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java
public static final String LABELS_FACET = "{labels.facet}"; /** The key of the message: Geo */ public static final String LABELS_GEO = "{labels.geo}"; /** The key of the message: Groups */ public static final String LABELS_GROUPS = "{labels.groups}"; /** The key of the message: Hash */ public static final String LABELS_HASH = "{labels.hash}";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 05 02:36:47 UTC 2025 - 146.4K bytes - Viewed (0)