- Sort Score
- Result 10 results
- Languages All
Results 1 - 8 of 8 for _getOffset (0.07 sec)
-
src/test/java/jcifs/internal/smb1/com/SmbComSeekResponseTest.java
response.readParameterWordsWireFormat(buffer1, 0); assertEquals(16L, response.getOffset(), "First read should set offset to 16"); response.readParameterWordsWireFormat(buffer2, 0); assertEquals(32L, response.getOffset(), "Second read should update offset to 32"); } @Test @DisplayName("getOffset returns same value on multiple calls") void testGetOffsetConsistency() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComReadAndXResponse.java
*/ public final byte[] getData() { return this.data; } /** * Gets the offset in the data buffer. * * @return the offset */ public final int getOffset() { return this.offset; } /** * Adjusts the offset by the specified amount. * * @param n the amount to adjust the offset */ public void adjustOffset(final int n) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/RdmaChannelInfo.java
return transform.getToken(); } /** * Get remote memory address * * @return remote memory address (offset) */ public long getAddress() { return transform.getOffset(); } /** * Get length of memory region * * @return length in bytes */ public int getLength() { return transform.getLength(); } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/rdma/Smb2RdmaTransform.java
this.token = token; this.length = length; } /** * Get buffer offset * * @return offset within registered buffer */ public long getOffset() { return offset; } /** * Get RDMA token * * @return RDMA provider token */ public int getToken() { return token; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 05:11:12 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSeekResponse.java
super(config); } /** * Gets the current file offset after the seek operation. * * @return the offset */ public long getOffset() { return this.offset; } /** * {@inheritDoc} * * @see jcifs.internal.smb1.ServerMessageBlock#writeParameterWordsWireFormat(byte[], int) */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/ListForm.java
if (start == null) { start = ComponentUtil.getFessConfig().getPagingSearchPageStartAsInteger(); } return start; } @Override public int getOffset() { if (offset == null) { offset = 0; } return offset; } @Override public int getPageSize() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/SearchForm.java
if (start == null) { start = ComponentUtil.getFessConfig().getPagingSearchPageStartAsInteger(); } return start; } @Override public int getOffset() { if (offset == null) { offset = 0; } return offset; } @Override public int getPageSize() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
* * @return The page size. */ public abstract int getPageSize(); /** * Returns the offset. * * @return The offset. */ public abstract int getOffset(); /** * Returns the extra queries. * * @return The extra queries. */ public abstract String[] getExtraQueries(); /** * Returns the attribute. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0)