- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 118 for 0x46 (0.02 sec)
-
src/main/java/jcifs/internal/smb2/tree/Smb2TreeConnectResponse.java
*/ public static final int SMB2_SHARE_CAP_SCALEOUT = 0x20; /** * Share capability indicating cluster support. */ public static final int SMB2_SHARE_CAP_CLUSTER = 0x40; /** * Share capability indicating asymmetric support. */ public static final int SMB2_SHARE_CAP_ASYMMETRIC = 0x80; private byte shareType; private int shareFlags;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java
*/ public static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x20; /** * Notify when creation time changes */ public static final int FILE_NOTIFY_CHANGE_CREATION = 0x40; /** * Notify when extended attributes change */ public static final int FILE_NOTIFY_CHANGE_EA = 0x80; /** * Notify when security descriptor changes */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenInit.java
*/ public static final int DELEGATION = 0x80; /** * Context flag for mutual authentication requirement */ public static final int MUTUAL_AUTHENTICATION = 0x40; /** * Context flag for replay detection capability */ public static final int REPLAY_DETECTION = 0x20; /** * Context flag for sequence checking capability */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 10.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java
assertEquals(0x20, SecurityInfo.ATTRIBUTE_SECURITY_INFO); } @Test @DisplayName("Test SCOPE_SECURITY_INFO constant value") void testScopeSecurityInfo() { assertEquals(0x40, SecurityInfo.SCOPE_SECURITY_INFO); } @Test @DisplayName("Test BACKUP_SECURITY_INFO constant value") void testBackupSecurityInfo() { assertEquals(0x1000, SecurityInfo.BACKUP_SECURITY_INFO);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.5K bytes - Viewed (0) -
src/test/java/jcifs/pac/PacMacTest.java
assertEquals(outlen, expanded.length); // Test vectors from RFC 3961 Appendix A.1 // 64-fold("012345") verifyNfold("012345", 8, new byte[] { (byte) 0xbe, (byte) 0x07, (byte) 0x26, (byte) 0x31, (byte) 0x27, (byte) 0x6b, (byte) 0x19, (byte) 0x55 }); // 56-fold("password") verifyNfold("password", 7,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/ntlmssp/NtlmMessageTest.java
void testSetFlagTrue() { msg.setFlag(0x4, true); assertTrue(msg.getFlag(0x4), "Bit should be set after setFlag(true)"); } @Test @DisplayName("setFlag false clears the bit") void testSetFlagFalse() { msg.setFlag(0x4, true); msg.setFlag(0x4, false); assertFalse(msg.getFlag(0x4), "Bit should be cleared after setFlag(false)"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/NetbiosNameTest.java
// Then assertEquals(testType, nameType); verify(mockNetbiosName).getNameType(); } @ParameterizedTest @ValueSource(ints = { 0x00, 0x03, 0x06, 0x1B, 0x1C, 0x1D, 0x1E, 0x20 }) @DisplayName("Should handle various NetBIOS name types") void testVariousNameTypes(int nameType) { // Given when(mockNetbiosName.getNameType()).thenReturn(nameType);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComOpenAndX.java
static final int SHARING_DENY_READ_WRITE_EXECUTE = 0x10; static final int SHARING_DENY_WRITE = 0x20; static final int SHARING_DENY_READ_EXECUTE = 0x30; static final int SHARING_DENY_NONE = 0x40; static final int DO_NOT_CACHE = 0x1000; // bit 12 static final int WRITE_THROUGH = 0x4000; // bit 14 static final int OPEN_FN_CREATE = 0x10; static final int OPEN_FN_FAIL_IF_EXISTS = 0x00;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequest.java
public static final byte FILE_ID_BOTH_DIRECTORY_INFO = 0x24; /** * File information class for full directory information with file IDs. */ public static final byte FILE_ID_FULL_DIRECTORY_INFO = 0x26; /** * Flag to restart the directory enumeration from the beginning. */ public static final byte SMB2_RESTART_SCANS = 0x1; /** * Flag to return only a single directory entry.
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/LongsTest.java
.that(Arrays.equals(expected, actual)) .isTrue(); } public void testToByteArray() { assertByteArrayEquals( new byte[] {0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19}, Longs.toByteArray(0x1213141516171819L)); assertByteArrayEquals( new byte[] { (byte) 0xFF, (byte) 0xEE, (byte) 0xDD, (byte) 0xCC,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 28.7K bytes - Viewed (0)