- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 285 for offsets (0.03 sec)
-
src/test/java/jcifs/internal/smb1/com/SmbComTreeDisconnectTest.java
int offset = threadIndex * 10; smbComTreeDisconnect.writeParameterWordsWireFormat(buffer, offset); smbComTreeDisconnect.writeBytesWireFormat(buffer, offset); smbComTreeDisconnect.readParameterWordsWireFormat(buffer, offset); smbComTreeDisconnect.readBytesWireFormat(buffer, offset); smbComTreeDisconnect.toString();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.5K bytes - Viewed (0) -
src/main/webapp/js/admin/popper.min.js
deprecated, use `modifier.fn`!');var n=t['function']||t.fn;t.enabled&&e(n)&&(o.offsets.popper=g(o.offsets.popper),o.offsets.reference=g(o.offsets.reference),o=n(o,t))}),o}function k(){if(!this.state.isDestroyed){var e={instance:this,styles:{},arrowStyles:{},attributes:{},flipped:!1,offsets:{}};e.offsets.reference=L(this.state,this.popper,this.reference,this.options.positionFixed),e.placement=O(this.options.placement,e.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundarie...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 20.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/SMBSigningDigestTest.java
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/smb2/session/Smb2SessionSetupRequestTest.java
} } @Test @DisplayName("Should write bytes at different buffer offsets") void testWriteBytesAtDifferentOffsets() throws Exception { // Test at different offsets int[] offsets = { 0, 10, 50, 100, 200 }; for (int offset : offsets) { // Given byte[] buffer = new byte[1024]; Smb2SessionSetupRequest req =
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 21.2K bytes - Viewed (0) -
doc/asm.html
Adding an offset to the name refers to that offset from the symbol's address, so <code>foo+4(SB)</code> is four bytes past the start of <code>foo</code>. </p> <p> The <code>FP</code> pseudo-register is a virtual frame pointer used to refer to function arguments. The compilers maintain a virtual frame pointer and refer to the arguments on the stack as offsets from that pseudo-register.
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Nov 28 19:15:27 UTC 2023 - 36.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeConnectRequestTest.java
}); } @Test @DisplayName("Should write consistent structure at different offsets") void testWriteBytesAtDifferentOffsets() throws Exception { // Test at different offsets int[] offsets = { 0, 10, 50, 100, 200 }; for (int offset : offsets) { // Given byte[] buffer = new byte[1024];
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FsctlPipeWaitRequestTest.java
// Verify assertEquals(14 + nameBytes.length, bytesEncoded); // Check timeout value at offset assertEquals(timeout, SMBUtil.readInt8(buffer, offset)); // Check name length at offset assertEquals(nameBytes.length, SMBUtil.readInt4(buffer, offset + 8)); // Check timeout specified flag at offset assertEquals(0x1, buffer[offset + 12]);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/tree/Smb2TreeDisconnectResponseTest.java
@ParameterizedTest @ValueSource(ints = { 0, 10, 50, 100, 200 }) void testReadBytesWireFormatAtDifferentOffsets(int offset) throws SMBProtocolDecodingException { // Given byte[] buffer = new byte[256]; // Write valid structure at offset SMBUtil.writeInt2(4, buffer, offset); SMBUtil.writeInt2(0, buffer, offset + 2); // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.1K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfoTest.java
// No group (offset 0) for (int i = 8; i < 12; i++) securityDescriptorBytes[i] = 0; // No SACL (offset 0) for (int i = 12; i < 16; i++) securityDescriptorBytes[i] = 0; // DACL at offset 20 securityDescriptorBytes[16] = 20; securityDescriptorBytes[17] = 0; securityDescriptorBytes[18] = 0; securityDescriptorBytes[19] = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetShareEnumTest.java
assertEquals(descrBytes[i], dst[offset + i]); } offset += descrBytes.length; // 3. Level (2 bytes) assertEquals(0x0001, SMBUtil.readInt2(dst, offset)); offset += 2; // 4. MaxDataCount (2 bytes) int maxDataCount = SMBUtil.readInt2(dst, offset); assertTrue(maxDataCount > 0); offset += 2; // Verify total bytes written
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.8K bytes - Viewed (0)