- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for SMB2_OPLOCK_LEVEL_BATCH (1.99 sec)
-
src/test/java/jcifs/internal/smb2/create/Smb2CreateRequestTest.java
request = new Smb2CreateRequest(mockConfig, "test.txt"); request.setRequestedOplockLevel(Smb2CreateRequest.SMB2_OPLOCK_LEVEL_BATCH); byte[] buffer = new byte[1024]; request.writeBytesWireFormat(buffer, 0); assertEquals(Smb2CreateRequest.SMB2_OPLOCK_LEVEL_BATCH, buffer[3]); request.setRequestedOplockLevel(Smb2CreateRequest.SMB2_OPLOCK_LEVEL_EXCLUSIVE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/lock/Smb2OplockBreakNotificationTest.java
Arguments.of((byte) 0x08, "SMB2_OPLOCK_LEVEL_EXCLUSIVE"), Arguments.of((byte) 0x09, "SMB2_OPLOCK_LEVEL_BATCH"), Arguments.of((byte) 0xFF, "SMB2_OPLOCK_LEVEL_LEASE")); } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
/** * Exclusive oplock */ public static final byte SMB2_OPLOCK_LEVEL_EXCLUSIVE = 0x8; /** * Batch oplock */ public static final byte SMB2_OPLOCK_LEVEL_BATCH = 0x9; /** * Lease-based oplock */ public static final byte SMB2_OPLOCK_LEVEL_LEASE = (byte) 0xFF; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 22.9K bytes - Viewed (0)