- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 3,435 for Uint (0.58 sec)
-
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
} /** Default page size for pagination */ public static final int DEFAULT_PAGE_SIZE = 20; /** Default current page number for pagination */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** Total number of records across all pages */ private int allRecordCount; /** Total number of pages */ private int allPageCount; /** Flag indicating if a previous page exists */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryRequestTest.java
byte[] buffer = new byte[1024]; int bytesWritten = request.writeBytesWireFormat(buffer, Smb2Constants.SMB2_HEADER_LENGTH); assertEquals(32, bytesWritten); // Verify filename offset and length are 0 int fnOffset = buffer[Smb2Constants.SMB2_HEADER_LENGTH + 24] | (buffer[Smb2Constants.SMB2_HEADER_LENGTH + 25] << 8);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
*/ @Override public int size() { return size8(Smb2Constants.SMB2_HEADER_LENGTH + 24 + (this.token != null ? this.token.length : 0)); } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int) */ @Override protected int writeBytesWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedContentPager.java
/** Default current page number constant. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** Total number of records across all pages. */ private int allRecordCount; /** Total number of pages calculated from record count and page size. */ private int allPageCount; /** Flag indicating whether a previous page exists. */ private boolean existPrePage;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComWriteTest.java
* Test that the constructor initializes all fields correctly */ @Test public void testConstructor() { // Arrange int fid = 0x1234; int offset = 100; int remaining = 50; byte[] buffer = new byte[100]; int off = 10; int len = 40; // Act SmbComWrite write = new SmbComWrite(fid, offset, remaining, buffer, off, len); // Assert
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SambaHelper.java
*/ public static final int SID_TYPE_ALIAS = 4; /** * SID type for a deleted account. */ public static final int SID_TYPE_DELETED = 6; /** * SID type for a domain group. */ public static final int SID_TYPE_DOM_GRP = 2; /** * SID type for a domain. */ public static final int SID_TYPE_DOMAIN = 3; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComDeleteDirectory.java
this.path = directoryName; command = SMB_COM_DELETE_DIRECTORY; } @Override int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int writeBytesWireFormat(final byte[] dst, int dstIndex) { final int start = dstIndex; dst[dstIndex] = (byte) 0x04; dstIndex++;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/DataConfigPager.java
/** Default page size for pagination. */ public static final int DEFAULT_PAGE_SIZE = 20; /** Default current page number (first page). */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** Total number of records across all pages. */ private int allRecordCount; /** Total number of pages. */ private int allPageCount; /** Flag indicating if there is a previous page. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.6K bytes - Viewed (0) -
src/test/java/jcifs/netbios/SessionRequestPacketTest.java
byte[] dst = new byte[256]; int offset = 10; // Mark the buffer before offset for (int i = 0; i < offset; i++) { dst[i] = (byte) 0xFF; } int bytesWritten = packet.writeTrailerWireFormat(dst, offset); assertTrue(bytesWritten > 0); // Check that bytes before offset are unchanged for (int i = 0; i < offset; i++) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/RelatedQueryPager.java
/** * Default current page number for pagination. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * Total number of records in the result set. */ private int allRecordCount; /** * Total number of pages available for pagination. */ private int allPageCount; /** * Flag indicating whether a previous page exists. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.2K bytes - Viewed (0)