- Sort Score
- Result 10 results
- Languages All
Results 351 - 360 of 1,374 for messages (0.04 sec)
-
src/main/java/org/codelibs/fess/exception/FessSystemException.java
* * @param message the detail message describing the exception * @param cause the cause of this exception */ public FessSystemException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new FessSystemException with the specified detail message. *Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/ntlmssp/NtlmMessageTest.java
message.setFlag(0b0001, false); assertEquals(0b0100, message.getFlags(), "Flag 0b0001 should be cleared."); message.setFlag(0b0100, false); assertEquals(0, message.getFlags(), "Flag 0b0100 should be cleared."); // Test setting a flag that is already set message.setFlags(0b1000); message.setFlag(0b1000, true);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.5K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionException.java
super(message, artifact, remoteRepositories); } public ArtifactResolutionException(String message, Artifact artifact, Throwable cause) { super(message, artifact, null, cause); } public ArtifactResolutionException(
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.5K bytes - Viewed (0) -
src/test/java/jcifs/spnego/SpnegoExceptionTest.java
// When SpnegoException ex = new SpnegoException(message); // Then assertNotNull(ex); assertEquals(message, ex.getMessage()); assertNull(ex.getCause()); } @Test @DisplayName("Should create SpnegoException with cause") void testWithCause() { // Given IllegalArgumentException cause = new IllegalArgumentException("bad arg");Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessClient.java
// Set event type based on message type WitnessEventType eventType = convertMessageTypeToEventType(message.getType()); notification.setEventType(eventType); notification.setTimestamp(message.getTimestamp()); // Set resource name based on message content if (message.getResourceName() != null) {Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 20.8K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Response.kt
@JvmName("-deprecated_message") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "message"), level = DeprecationLevel.ERROR, ) fun message(): String = message @JvmName("-deprecated_handshake") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "handshake"), level = DeprecationLevel.ERROR, )Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Mon Jul 28 14:39:28 UTC 2025 - 18.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/GsaConfigException.java
/** * Constructs a new GSA configuration exception with the specified detail message and cause. * * @param message the detail message describing the configuration error * @param cause the cause of the exception */ public GsaConfigException(final String message, final Throwable cause) { super(message, cause); } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
compat/maven-artifact/src/main/java/org/apache/maven/artifact/resolver/ArtifactNotFoundException.java
private String downloadUrl; protected ArtifactNotFoundException( String message, Artifact artifact, List<ArtifactRepository> remoteRepositories) { super(message, artifact, remoteRepositories); } public ArtifactNotFoundException(String message, Artifact artifact) { this( message, artifact.getGroupId(), artifact.getArtifactId(),Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EncryptionContext.java
int paddedLength = ((message.length + blockSize - 1) / blockSize) * blockSize; byte[] paddedMessage = new byte[Math.max(paddedLength, message.length)]; System.arraycopy(message, 0, paddedMessage, 0, message.length); // Encrypt with constant timing byte[] result = cipher.doFinal(paddedMessage, 0, message.length); // Clear padded dataRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 35.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
* @param message the error message */ public SmbOperationException(ErrorCode errorCode, String message) { this(errorCode, message, null, RetryPolicy.DEFAULT, Collections.emptyMap()); } /** * Create a new SmbOperationException with cause * * @param errorCode the error code * @param message the error message * @param cause the underlying causeRegistered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0)