- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 54 for 0_07 (1.12 sec)
-
android/guava/src/com/google/common/base/Strings.java
* with as many copies of {@code padChar} as are necessary to reach that length. For example, * * <ul> * <li>{@code padStart("7", 3, '0')} returns {@code "007"} * <li>{@code padStart("2010", 3, '0')} returns {@code "2010"} * </ul> * * <p>See {@link java.util.Formatter} for a richer set of formatting capabilities. *
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 27 17:53:41 UTC 2025 - 12.2K bytes - Viewed (0) -
docs/smb3-features/01-smb3-lease-design.md
// Common combinations public static final int SMB2_LEASE_READ_HANDLE = 0x03; // RH public static final int SMB2_LEASE_READ_WRITE = 0x05; // RW public static final int SMB2_LEASE_FULL = 0x07; // RWH } ``` ### 3.2 Lease Versions - **Lease V1**: Basic lease support (SMB 3.0) - **Lease V2**: Adds epoch support for better consistency (SMB 3.0.2+) ## 4. Data Structures
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 22K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/ServerDataTest.java
@Test @DisplayName("Test byte array fields (encryptionKey and guid)") public void testByteArrayFields() { // Test encryptionKey byte[] key = new byte[] { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08 }; serverData.encryptionKey = key; assertNotNull(serverData.encryptionKey); assertArrayEquals(key, serverData.encryptionKey); // Test with empty array
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbEnumerationUtilTest.java
// Test with various wildcard patterns and attribute masks String[] wildcards = { "*.txt", "test*", null }; int[] attributes = { 0x10, 0x20, 0x07 }; for (int i = 0; i < wildcards.length; i++) { DosFileFilter dos = new DosFileFilter(wildcards[i], attributes[i]);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/DES.java
key8[1] = (byte) (((key7[0] & 0x01) << 6 | (key7[1] & 0xff) >> 2 & 0xff) & 0xff); key8[2] = (byte) (((key7[1] & 0x03) << 5 | (key7[2] & 0xff) >> 3 & 0xff) & 0xff); key8[3] = (byte) (((key7[2] & 0x07) << 4 | (key7[3] & 0xff) >> 4 & 0xff) & 0xff); key8[4] = (byte) (((key7[3] & 0x0F) << 3 | (key7[4] & 0xff) >> 5 & 0xff) & 0xff); key8[5] = (byte) (((key7[4] & 0x1F) << 2 | (key7[5] & 0xff) >> 6 & 0xff) & 0xff);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 22.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
assertEquals(0x04, ServerMessageBlock2.SMB2_TREE_DISCONNECT); assertEquals(0x05, ServerMessageBlock2.SMB2_CREATE); assertEquals(0x06, ServerMessageBlock2.SMB2_CLOSE); assertEquals(0x07, ServerMessageBlock2.SMB2_FLUSH); assertEquals(0x08, ServerMessageBlock2.SMB2_READ); assertEquals(0x09, ServerMessageBlock2.SMB2_WRITE); assertEquals(0x0A, ServerMessageBlock2.SMB2_LOCK);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/ServerMessageBlockTest.java
assertEquals((byte) 0x04, ServerMessageBlock.SMB_COM_CLOSE); assertEquals((byte) 0x06, ServerMessageBlock.SMB_COM_DELETE); assertEquals((byte) 0x07, ServerMessageBlock.SMB_COM_RENAME); assertEquals((byte) 0x08, ServerMessageBlock.SMB_COM_QUERY_INFORMATION); assertEquals((byte) 0x09, ServerMessageBlock.SMB_COM_SET_INFORMATION);
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/smb2/nego/NegotiateContextResponseTest.java
private byte[] testSalt; private int[] testHashAlgos; @BeforeEach void setUp() { testSalt = new byte[] { 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08 }; testHashAlgos = new int[] { PreauthIntegrityNegotiateContext.HASH_ALGO_SHA512 }; } @Test @DisplayName("Should create context with constructor parameters")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/samrTest.java
samr.SamrOpenDomain message = new samr.SamrOpenDomain(mockPolicyHandle, 123, mockSidT, mockPolicyHandle); // Then: Should have correct values assertEquals(0x07, message.getOpnum()); assertEquals(mockPolicyHandle, message.handle); assertEquals(123, message.access_mask); assertEquals(mockSidT, message.sid);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 33.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/SmbComTransaction.java
*/ public static final byte TRANS2_GET_DFS_REFERRAL = (byte) 0x10; /** * SMB TRANS2 subcommand for querying file information */ public static final byte TRANS2_QUERY_FILE_INFORMATION = (byte) 0x07; /** * SMB TRANS2 subcommand for setting file information */ public static final byte TRANS2_SET_FILE_INFORMATION = (byte) 0x08; /** * Network share enumeration subcommand */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.3K bytes - Viewed (0)