- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 255 for 0x10 (0.01 sec)
-
src/test/java/jcifs/internal/dtyp/ACETest.java
testBuffer[8] = 0x01; // Revision testBuffer[9] = 0x01; // Sub-authority count testBuffer[10] = 0x00; // Identifier authority testBuffer[11] = 0x00; testBuffer[12] = 0x00; testBuffer[13] = 0x00; testBuffer[14] = 0x00; testBuffer[15] = 0x01; testBuffer[16] = 0x00; // Sub-authority testBuffer[17] = 0x00; testBuffer[18] = 0x00;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.6K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComQueryInformationResponseTest.java
// 2 bytes for fileAttributes, 4 bytes for lastWriteTime, 4 bytes for fileSize byte[] buffer = new byte[20]; // File Attributes: 0x0010 (Directory) buffer[0] = 0x10; buffer[1] = 0x00; // Last Write Time (UTime): A sample timestamp in milliseconds long sampleTimeMillis = 1672531200000L; // Represents a specific date in milliseconds
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/Trans2FindFirst2.java
static final int SMB_INFO_QUERY_EAS_FROM_LIST = 3; static final int SMB_FIND_FILE_DIRECTORY_INFO = 0x101; static final int SMB_FIND_FILE_FULL_DIRECTORY_INFO = 0x102; static final int SMB_FILE_NAMES_INFO = 0x103; static final int SMB_FILE_BOTH_DIRECTORY_INFO = 0x104; static final int LIST_SIZE = Config.getInt("jcifs.smb1.smb.client.listSize", DEFAULT_LIST_SIZE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java
*/ public static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x10; /** * Notify when last access time changes */ 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 */
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/test/java/jcifs/internal/smb2/create/Smb2CloseResponseTest.java
// Given byte[] buffer = new byte[60]; SMBUtil.writeInt2(60, buffer, 0); // Set multiple attribute flags int attributes = 0x01 | 0x02 | 0x04 | 0x10 | 0x20; // Multiple attributes SMBUtil.writeInt4(attributes, buffer, 56); // When response.readBytesWireFormat(buffer, 0); // Then
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 26.9K bytes - Viewed (0) -
src/main/java/jcifs/spnego/NegTokenInit.java
* Context flag for delegation capability */ 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/main/java/jcifs/ACE.java
*/ int FLAGS_INHERIT_ONLY = 0x08; /** * Inheritance flag: ACE was inherited from parent */ int FLAGS_INHERITED = 0x10; /** * Return the SID associated with this ACE. * * @return ACE target SID */ SID getSID(); /** * Returns the access mask associated with this ACE. Use the
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java
@Test @DisplayName("Test LABEL_SECURITY_INFO constant value") void testLabelSecurityInfo() { assertEquals(0x10, SecurityInfo.LABEL_SECURITY_INFO); } @Test @DisplayName("Test ATTRIBUTE_SECURITY_INFO constant value") void testAttributeSecurityInfo() { assertEquals(0x20, SecurityInfo.ATTRIBUTE_SECURITY_INFO); } @Test @DisplayName("Test SCOPE_SECURITY_INFO constant value")
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/internal/SmbNegotiationTest.java
SmbNegotiationResponse anotherResponse = mock(SmbNegotiationResponse.class); byte[] anotherRequestBuffer = new byte[] { 0x10, 0x20 }; byte[] anotherResponseBuffer = new byte[] { 0x30, 0x40 }; SmbNegotiation anotherNegotiation = new SmbNegotiation(anotherRequest, anotherResponse, anotherRequestBuffer, anotherResponseBuffer);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComNegotiateResponseTest.java
buffer[bufferIndex++] = 0; // maxBufferSize buffer[bufferIndex++] = (byte) 0x00; buffer[bufferIndex++] = (byte) 0x40; buffer[bufferIndex++] = 0; buffer[bufferIndex++] = 0; // maxRawSize buffer[bufferIndex++] = (byte) 0x00; buffer[bufferIndex++] = (byte) 0x10; buffer[bufferIndex++] = 0; buffer[bufferIndex++] = 0; // sessionKey
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0)