- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 42 for 0x4 (0.04 sec)
-
src/main/java/jcifs/internal/smb2/lock/Smb2Lock.java
*/ public static final int SMB2_LOCKFLAG_EXCLUSIVE_LOCK = 0x2; /** * Flag indicating an unlock operation to release a previously held lock. */ public static final int SMB2_LOCKFLAG_UNLOCK = 0x4; /** * Flag indicating the lock should fail immediately if it cannot be granted. */ public static final int SMB2_LOCKFLAG_FAIL_IMMEDIATELY = 0x10; private final long offset;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
@DisplayName("Test file share constants") void testFileShareConstants() { assertEquals(0x1, Smb2CreateRequest.FILE_SHARE_READ); assertEquals(0x2, Smb2CreateRequest.FILE_SHARE_WRITE); assertEquals(0x4, Smb2CreateRequest.FILE_SHARE_DELETE); } @Test @DisplayName("Test file disposition constants") void testFileDispositionConstants() { assertEquals(0x0, Smb2CreateRequest.FILE_SUPERSEDE);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/EncryptionNegotiateContext.java
/** * AES 256 CCM */ public static final int CIPHER_AES256_CCM = 0x3; /** * AES 256 GCM */ public static final int CIPHER_AES256_GCM = 0x4; private int[] ciphers; /** * Constructs an encryption negotiate context. * * @param config the configuration (currently unused)Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 3.8K bytes - Viewed (0) -
lib/fips140/v1.1.0-rc1.zip
NOSPLIT, $0 MOVD res+0(FP), res_ptr MOVD in1+8(FP), x_ptr MOVD in2+16(FP), y_ptr VL (0*16)(x_ptr), X0 VPDI $0x4, X0, X0, X0 VL (1*16)(x_ptr), X1 VPDI $0x4, X1, X1, X1 VL (0*16)(y_ptr), Y0 VPDI $0x4, Y0, Y0, Y0 VL (1*16)(y_ptr), Y1 VPDI $0x4, Y1, Y1, Y1 MOVD $p256mul<>+0x00(SB), CPOOL VL 16(CPOOL), P0 VL 0(CPOOL), P1 CALL p256MulInternal<>(SB) VPDI $0x4, T0, T0, T0 VST T0, (0*16)(res_ptr) VPDI $0x4, T1, T1, T1 VST T1, (1*16)(res_ptr) RET #undef res_ptr #undef x_ptr #undef y_ptr #undef CPOOL #undef X0...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Dec 11 16:27:41 UTC 2025 - 663K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
* Enable other opens for write access */ public static final int FILE_SHARE_WRITE = 0x2; /** * Enable other opens for delete access */ public static final int FILE_SHARE_DELETE = 0x4; /** * If file exists, supersede it. Otherwise create the file */ public static final int FILE_SUPERSEDE = 0x0; /** * If file exists, open it. Otherwise fail */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2Constants.java
* Server supports leasing */ public static final int SMB2_GLOBAL_CAP_LEASING = 0x2; /** * Server supports multi-credit operations */ public static final int SMB2_GLOBAL_CAP_LARGE_MTU = 0x4; /** * Server supports multi-channel connections */ public static final int SMB2_GLOBAL_CAP_MULTI_CHANNEL = 0x8; /** * Server supports persistent handles */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
*/ public static final int SMB2_SESSION_FLAGS_IS_NULL = 0x2; /** * Session flag indicating data encryption is required for this session */ public static final int SMB2_SESSION_FLAG_ENCRYPT_DATA = 0x4; private int sessionFlags; private byte[] blob; /** * Constructs a SMB2 session setup response with the specified configuration * * @param configRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (1) -
lib/fips140/v1.0.0-c2097c7c.zip
NOSPLIT, $0 MOVD res+0(FP), res_ptr MOVD in1+8(FP), x_ptr MOVD in2+16(FP), y_ptr VL (0*16)(x_ptr), X0 VPDI $0x4, X0, X0, X0 VL (1*16)(x_ptr), X1 VPDI $0x4, X1, X1, X1 VL (0*16)(y_ptr), Y0 VPDI $0x4, Y0, Y0, Y0 VL (1*16)(y_ptr), Y1 VPDI $0x4, Y1, Y1, Y1 MOVD $p256mul<>+0x00(SB), CPOOL VL 16(CPOOL), P0 VL 0(CPOOL), P1 CALL p256MulInternal<>(SB) VPDI $0x4, T0, T0, T0 VST T0, (0*16)(res_ptr) VPDI $0x4, T1, T1, T1 VST T1, (1*16)(res_ptr) RET #undef res_ptr #undef x_ptr #undef y_ptr #undef CPOOL #undef X0...
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Thu Sep 25 19:53:19 UTC 2025 - 642.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
/** * NT transaction function code for change notification. * Used to monitor changes to a directory or file. */ public static final int NT_TRANSACT_NOTIFY_CHANGE = 0x4; private final int function; /** * Constructs an NT transaction command. * * @param config the configuration * @param function the NT transaction function code */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NbtException.java
public static final int FMT_ERR = 0x1; /** Server error in the name service */ public static final int SRV_ERR = 0x2; /** Implementation error in the name service */ public static final int IMP_ERR = 0x4; /** Refused error in the name service */ public static final int RFS_ERR = 0x5; /** Active error in the name service */ public static final int ACT_ERR = 0x6; /** Name in conflict error */Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0)