- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 81 for 0x00000100 (0.04 sec)
-
src/main/java/jcifs/internal/smb2/ServerMessageBlock2.java
public static final int SMB2_FLAGS_SERVER_TO_REDIR = 0x00000001; /** * Flag indicating this is an asynchronous command. */ public static final int SMB2_FLAGS_ASYNC_COMMAND = 0x00000002; /** * Flag indicating this operation is related to the previous operation in a compound request. */ public static final int SMB2_FLAGS_RELATED_OPERATIONS = 0x00000004; /** * Flag indicating the message is signed.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 24K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRegistration.java
private byte[] contextHandle; // Registration flags /** No special registration flags */ public static final int WITNESS_REGISTER_NONE = 0x00000000; /** Register for IP address change notifications */ public static final int WITNESS_REGISTER_IP_NOTIFICATION = 0x00000001; // Registration state private volatile WitnessRegistrationState state; private volatile long lastHeartbeat;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/DcerpcError.java
*/ public interface DcerpcError { /** * Generic fault code for other errors */ int DCERPC_FAULT_OTHER = 0x00000001; /** * Access denied fault code */ int DCERPC_FAULT_ACCESS_DENIED = 0x00000005; /** * Cannot perform operation fault code */ int DCERPC_FAULT_CANT_PERFORM = 0x000006D8; /** * NDR encoding error fault code
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/DcerpcError.java
*/ public interface DcerpcError { /** * Generic fault code for other errors */ int DCERPC_FAULT_OTHER = 0x00000001; /** * Access denied fault code */ int DCERPC_FAULT_ACCESS_DENIED = 0x00000005; /** * Cannot perform operation fault code */ int DCERPC_FAULT_CANT_PERFORM = 0x000006D8; /** * NDR encoding error fault code
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java
* value and the corresponding little-endian byte array. */ static java.util.stream.Stream<Arguments> int32Provider() { return java.util.stream.Stream.of(Arguments.of(0x00000000, new byte[] { 0x00, 0x00, 0x00, 0x00 }), Arguments.of(0x12345678, new byte[] { 0x78, 0x56, 0x34, 0x12 }), Arguments.of(0xFFFFFFFF, new byte[] { (byte) 0xFF, (byte) 0xFF, (byte) 0xFF, (byte) 0xFF }),
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaCapabilities.java
*/ public class RdmaCapabilities { /** * RDMA transform capabilities flag indicating response is requested */ public static final int SMB_DIRECT_RESPONSE_REQUESTED = 0x00000001; /** * Default maximum size for RDMA read/write operations (1MB) */ public static final int DEFAULT_RDMA_READ_WRITE_SIZE = 1048576; // 1MB /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcMessage.java
public static final int WITNESS_HEARTBEAT = 3; // Common return codes from MS-SWN specification /** Operation completed successfully */ public static final int ERROR_SUCCESS = 0x00000000; /** Invalid parameter was passed to the operation */ public static final int ERROR_INVALID_PARAMETER = 0x00000057; /** Buffer provided is insufficient */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComNegotiateResponse.java
private int maxMpxCount; private int snd_buf_size; private int recv_buf_size; private int tx_buf_size; private int capabilities; private final int sessionKey = 0x00000000; private boolean useUnicode; /** * Creates a new SMB1 negotiate response. * * @param ctx the CIFS context */ public SmbComNegotiateResponse(final CIFSContext ctx) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 15.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HttpOverHttp2Test.kt
assertThat(countFrames(logs, "FINE: >> 0x00000000 8 PING ")) .isEqualTo(1) assertThat(countFrames(logs, "FINE: << 0x00000000 8 PING ")) .isEqualTo(1) assertThat(countFrames(logs, "FINE: >> 0x00000000 8 PING ACK")) .isEqualTo(1) assertThat(countFrames(logs, "FINE: << 0x00000000 8 PING ACK")) .isEqualTo(1) }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jun 20 11:46:46 UTC 2025 - 73.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/DirectoryChangeNotifier.java
private static final int FILE_NOTIFY_CHANGE_DIR_NAME = 0x00000002; private static final int FILE_NOTIFY_CHANGE_ATTRIBUTES = 0x00000004; private static final int FILE_NOTIFY_CHANGE_SIZE = 0x00000008; private static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x00000010; /** * Change notification handle */ public static class ChangeNotificationHandle {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 13.7K bytes - Viewed (0)