- Sort Score
- Result 10 results
- Languages All
Results 841 - 850 of 3,007 for int8 (0.02 sec)
-
src/main/java/jcifs/smb1/smb1/SmbComRename.java
searchAttributes = ATTR_HIDDEN | ATTR_SYSTEM | ATTR_DIRECTORY; } @Override int writeParameterWordsWireFormat(final byte[] dst, final int dstIndex) { writeInt2(searchAttributes, dst, dstIndex); return 2; } @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 - 2.4K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/anotherpackage/ForwardingWrapperTesterTest.java
} } private interface Adder { int add(int a, int b); } private static class ForwardingArithmetic implements Arithmetic { private final Arithmetic arithmetic; ForwardingArithmetic(Arithmetic arithmetic) { this.arithmetic = arithmetic; } @Override public int add(int a, int b) { return arithmetic.add(a, b); } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Jul 14 14:44:08 UTC 2025 - 15.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/auth/AuthenticationManagerTest.java
} // Test implementation of AuthenticationChain private static class TestAuthenticationChain implements AuthenticationChain { int id; int updateCallCount = 0; int deleteCallCount = 0; int changePasswordCallCount = 0; int loadCallCount = 0; User lastUpdatedUser; User lastDeletedUser; User lastLoadedUser;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/BoostDocPager.java
private static final long serialVersionUID = 1L; /** Default current page number. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** Total number of records. */ private int allRecordCount; /** Total number of pages. */ private int allPageCount; /** Indicates if 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.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComCloseTest.java
*/ @Test public void testWriteParameterWordsWireFormat() { // Given int fid = 456; long lastWriteTime = System.currentTimeMillis(); SmbComClose smbComClose = new SmbComClose(config, fid, lastWriteTime); byte[] dst = new byte[6]; // When int bytesWritten = smbComClose.writeParameterWordsWireFormat(dst, 0);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/ProtwordsPager.java
// Default constructor } private static final long serialVersionUID = 1L; /** The total number of records. */ private int allRecordCount; /** * The total number of pages. */ private int allPageCount; /** Whether a previous page exists. */ private boolean existPrePage; /** Whether a next page exists. */ private boolean existNextPage;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbException.java
} return "0x" + Hexdump.toHexString(errcode, 8); } static int getStatusByCode(final int errcode) { if ((errcode & 0xC0000000) != 0) { return errcode; } int min = 0; int max = DOS_ERROR_CODES.length - 1; while (max >= min) { final int mid = (min + max) / 2; if (errcode > DOS_ERROR_CODES[mid][0]) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusResponse.java
} @Override int writeBodyWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override int readBodyWireFormat(final byte[] src, final int srcIndex) { return readResourceRecordWireFormat(src, srcIndex); } @Override int writeRDataWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java
*/ public static final int DEFAULT_PAGE_SIZE = 20; /** * Default current page number (1-based). */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * The total number of records across all pages. */ private int allRecordCount; /** * The total number of pages available. */ private int allPageCount; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/FailureUrlPager.java
/** Default number of records per page. */ public static final int DEFAULT_PAGE_SIZE = 20; /** Default current page number. */ 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 whether a previous page exists. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7K bytes - Viewed (0)