- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 112 for errorCodes (0.08 sec)
-
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
assertTrue(result.contains("command=SMB_COM_TREE_CONNECT_ANDX")); assertTrue(result.contains("errorCode=")); // Should show non-zero error code assertTrue(result.contains("errorCode=0x00000001") || result.contains("errorCode=1")); } @Test @DisplayName("Test toString with all command types") void testToStringAllCommands() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 36.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponseTest.java
// Navigate through the inheritance hierarchy to find the errorCode field Class<?> currentClass = response.getClass(); Field errorCodeField = null; while (currentClass != null && errorCodeField == null) { try { errorCodeField = currentClass.getDeclaredField("errorCode");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java
super(config, command, subcommand); } // Expose errorCode setter for testing - access protected field directly public void setTestErrorCode(int code) { this.errorCode = code; } @Override protected int writeSetupWireFormat(byte[] dst, int dstIndex) { return setupWireFormatReturn;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.4K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/FastFallbackTest.kt
import javax.net.SocketFactory import kotlin.test.assertFailsWith import mockwebserver3.MockResponse import mockwebserver3.MockWebServer import mockwebserver3.SocketEffect.CloseStream import okhttp3.internal.http2.ErrorCode import okhttp3.testing.Flaky import org.junit.jupiter.api.AfterEach import org.junit.jupiter.api.BeforeEach import org.junit.jupiter.api.Test import org.junit.jupiter.api.Timeout
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/ServerMessageBlock.java
case SMB_COM_NT_TRANSACT_SECONDARY -> "SMB_COM_NT_TRANSACT_SECONDARY"; default -> "UNKNOWN"; }; final String str = errorCode == 0 ? "0" : SmbException.getMessageByCode(errorCode); return "command=" + c + ",received=" + received + ",errorCode=" + str + ",flags=0x" + Hexdump.toHexString(flags & 0xFF, 4)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.7K bytes - Viewed (0) -
src/main/resources/CLMessages.properties
ECL0068=InvalidKeyException occurred, because {0} ECL0069=NoSuchPaddingException occurred, because {0} ECL0070=Field({1}) of class({0}) not found ECL0071=SQLException(Message=[{0}], ErrorCode={1}, SQLState={2}) occurred ECL0072=SQLException(SQL=[{0}], Message=[{1}], ErrorCode={2}, SQLState={3}) occurred ECL0091=Illegal URL({0})
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Mar 07 01:58:02 UTC 2024 - 3.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtTransQuerySecurityDescResponse.java
return 4; } @Override int readDataWireFormat(final byte[] buffer, int bufferIndex, final int len) { final int start = bufferIndex; if (errorCode != 0) { return 4; } try { securityDescriptor = new SecurityDescriptor(); bufferIndex += securityDescriptor.decode(buffer, bufferIndex, len);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
} return; case SessionServicePacket.NEGATIVE_SESSION_RESPONSE: final int errorCode = in.read() & 0xFF; close(); throw new NbtException(NbtException.ERR_SSN_SRVC, errorCode); case -1: throw new NbtException(NbtException.ERR_SSN_SRVC, NbtException.CONNECTION_REFUSED); default: close();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/AndXServerMessageBlock.java
*/ bufferIndex = headerStart + andxOffset; andx.headerStart = headerStart; andx.command = andxCommand; andx.errorCode = errorCode; andx.flags = flags; andx.flags2 = flags2; andx.tid = tid; andx.pid = pid; andx.uid = uid; andx.mid = mid;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
return (boolean) getFieldValue("dataDone"); } boolean isHasMore() { return hasMore; } void setErrorCode(int code) { errorCode = code; } void setHasMore(boolean val) { hasMore = val; } boolean getParametersDone() { return (boolean) getFieldValue("parametersDone");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0)