- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 1,199 for Message1 (0.1 sec)
-
src/main/java/jcifs/internal/CommonServerMessageBlockRequest.java
/** * * @return next chained message */ @Override CommonServerMessageBlockRequest getNext(); /** * Splits this request for processing. * * @return the following message */ CommonServerMessageBlockRequest split(); /** * Gets the size of this message. * * @return the size of this message */ int size(); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.4K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbAuthExceptionTest.java
@ParameterizedTest @MethodSource("intErrorCodes") @DisplayName("int ctor: sets message and NT status as expected") void intConstructor_populatesMessageAndStatus(int errCode, int expectedStatus) { // Arrange & Act: create exception with error code SmbAuthException ex = new SmbAuthException(errCode); // Assert: type, message derived from code, status mapping, and no cause assertNotNull(ex);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/LdapConfigurationExceptionTest.java
// Test with special characters in message String message = "LDAP error: \"Invalid <config>\" & 'bad chars' @ #$%^&*()"; LdapConfigurationException exception = new LdapConfigurationException(message); assertEquals(message, exception.getMessage()); } public void test_unicodeCharactersInMessage() { // Test with Unicode characters in message
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/main/java/jcifs/util/transport/Response.java
/** * Gets the error status code. * * @return status code */ int getErrorCode(); /** * Sets the message ID. * * @param k the message ID to set */ void setMid(long k); /** * Gets the message ID. * * @return mid */ long getMid(); /** * Verifies the signature of this response. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/ws/RealWebSocket.kt
} } try { if (pong != null) { writer!!.writePong(pong) } else if (messageOrClose is Message) { val message = messageOrClose writer!!.writeMessageFrame(message.formatOpcode, message.data) synchronized(this) { queueSize -= message.data.size.toLong() } } else if (messageOrClose is Close) { val close = messageOrClose
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 21.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java
*/ public SearchEngineClientException(final String message, final Throwable cause) { super(message, cause); } /** * Constructs a new SearchEngineClientException with the specified message. * * @param message the detail message explaining the exception */ public SearchEngineClientException(final String message) { super(message); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/SmbNegotiationRequest.java
package jcifs.internal; /** * Interface for SMB protocol negotiation request messages. * Represents the client's request to negotiate SMB protocol version and capabilities * with the server, including security requirements like message signing. * * @author mbechler */ public interface SmbNegotiationRequest { /** * Checks whether SMB message signing is enforced by the client. *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.2K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/WiresharkExample.kt
if (verbose) { println(record.message) println(record.parameters[0]) } // JSSE logs additional messages as parameters that are not referenced in the log message. val parameter = parameters[0] as String if (message == "Produced ClientHello handshake message") {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat May 10 11:15:14 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcMessage.java
import jcifs.dcerpc.ndr.NdrObject; /** * Abstract base class for DCE/RPC protocol messages. * This class provides common functionality for all DCE/RPC message types. */ public abstract class DcerpcMessage extends NdrObject implements DcerpcConstants { /** * Default constructor for DcerpcMessage. * Initializes the DCE/RPC message structure. */ protected DcerpcMessage() { // Default constructor
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.3K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/RecordedResponse.kt
} fun assertFailure(vararg messages: String) = apply { assertThat(failure, "No failure found").isNotNull() assertThat(messages).contains(failure!!.message) } fun assertFailureMatches(vararg patterns: String) = apply { val message = failure!!.message!! assertThat( patterns.firstOrNull { pattern -> message.matches(pattern.toRegex()) },
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 5.3K bytes - Viewed (0)