- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for _11111111 (0.03 sec)
-
src/test/java/jcifs/ntlmssp/av/AvPairsTest.java
*/ @Test @DisplayName("Get should return first occurrence of type") void testGetExistingType() { List<AvPair> pairs = new LinkedList<>(); AvFlags flags1 = new AvFlags(0x11111111); AvFlags flags2 = new AvFlags(0x22222222); pairs.add(flags1); pairs.add(new AvTimestamp(new byte[8])); pairs.add(flags2);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/ValidateNegotiateInfoResponseTest.java
// First decode byte[] buffer1 = new byte[50]; SMBUtil.writeInt4(0x11111111, buffer1, 0); SMBUtil.writeInt2(0x1111, buffer1, 20); SMBUtil.writeInt2(0x0210, buffer1, 22); response.decode(buffer1, 0, 24); assertEquals(0x11111111, response.getCapabilities(), "First decode capabilities");
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComTreeConnectAndX.java
* 7 = SMB_COM_TRANSACTION * 8 = SMB_COM_QUERY_INFORMATION */ /* All batch limits are single batch only until further notice */ private static byte[] batchLimits = { 1, 1, 1, 1, 1, 1, 1, 1, 0 }; static { String s = Config.getProperty("jcifs.smb1.smb.client.TreeConnectAndX.CheckDirectory"); if (s != null) { batchLimits[0] = Byte.parseByte(s); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 6.6K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/rpcTest.java
rpc.policy_handle policyHandle = new rpc.policy_handle(); policyHandle.type = 123; policyHandle.uuid = new rpc.uuid_t(); policyHandle.uuid.time_low = 0x11111111; policyHandle.uuid.time_mid = (short) 0x2222; policyHandle.uuid.time_hi_and_version = (short) 0x3333; policyHandle.uuid.clock_seq_hi_and_reserved = (byte) 0x44;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 20.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java
void testDecodeWithSingleSectorPerAllocation() throws SMBProtocolDecodingException { // Prepare test data with sectPerAlloc = 1 byte[] buffer = new byte[22]; int idFileSystem = 0x11111111; int sectPerAlloc = 1; long alloc = 1000L; long free = 500L; int bytesPerSect = 512; // Encode test data int offset = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0) -
src/test/java/jcifs/netbios/NodeStatusResponseTest.java
System.arraycopy(name.getBytes("US-ASCII"), 0, src, srcIndex + 1, 16); src[srcIndex + 16] = 0x00; // hex code src[srcIndex + 17] = (byte) 0xFE; // All flags except one: 11111110 // Bit 7: group (1) // Bits 6-5: owner node type (11 = 3) // Bit 4: being deleted (1) // Bit 3: in conflict (1) // Bit 2: active (1) // Bit 1: permanent (1)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 19.3K bytes - Viewed (0)