- Sort Score
- Result 10 results
- Languages All
Results 181 - 190 of 822 for numer (6.01 sec)
-
src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 11K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/CompactHashSet.java
/** * Keeps track of metadata like the number of hash table bits and modifications of this data * structure (to make it possible to throw ConcurrentModificationException in the iterator). Note * that we choose not to make this volatile, so we do less of a "best effort" to track such * errors, for better performance. */ private transient int metadata; /** The number of elements contained in the set. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtSocket.java
} /** * Constructs an NbtSocket and connects it to the specified NetBIOS address and port. * * @param address the NetBIOS address to connect to * @param port the port number, or 0 for the default NetBIOS session service port * @throws IOException if an I/O error occurs while creating the socket */ public NbtSocket(final NbtAddress address, final int port) throws IOException {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0) -
android/guava/src/com/google/common/primitives/UnsignedLongs.java
maxSafeDigits[i] = overflow.toString(i).length() - 1; } } /** * Returns true if (current * radix) + digit is a number too large to be represented by an * unsigned long. This is useful for detecting overflow while parsing a string representation of * a number. Does not verify whether supplied radix is valid, passing an invalid radix will give * undefined results or an ArrayIndexOutOfBoundsException. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 17.8K bytes - Viewed (0) -
dbflute_fess/dfprop/classificationDefinitionMap.dfprop
# # The definition of classification. # # Specification: # map: { # [classification-name] = list:{ # ; map:{ # ; topComment=[comment]; codeType=[String(default) or Number or Boolean]} # ; undefinedHandlingType=[EXCEPTION or LOGGING(default) or ALLOWED] # ; isUseDocumentOnly=[true or false(default)] # ; isSuppressAutoDeploy=[true or false(default)]
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 04 22:46:31 UTC 2015 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans2/Trans2GetDfsReferralResponseTest.java
assertEquals(3, response.getDfsResponse().getNumReferrals()); } @ParameterizedTest @ValueSource(ints = { 1, 2, 5, 10 }) @DisplayName("Should handle varying number of referrals") void testReadDataWireFormatVaryingReferrals(int numReferrals) { byte[] buffer = createDfsReferralBufferWithMultipleReferrals(numReferrals);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JvmUtil.java
} /** * Gets the major version number of the current Java runtime. * For Java 8 and below, returns the minor version (e.g., 8 for Java 1.8). * For Java 9 and above, returns the major version (e.g., 11 for Java 11). * * @return the Java version number, defaults to 8 if version cannot be determined */ public static int getJavaVersion() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserInfoService.java
*/ public UserInfoService() { // Default constructor } /** * Deletes user information records older than the specified number of days. * This method is used for data cleanup and maintenance operations. * * @param days the number of days to keep user information records */ public void deleteBefore(final int days) { userInfoBhv.queryDelete(cb -> {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/nego/Smb2RdmaTransformCapabilitiesContext.java
/** Context ID for RDMA transform capabilities */ public static final int CONTEXT_ID = Smb2Constants.SMB2_RDMA_TRANSFORM_CAPABILITIES; // Transform count and reserved fields private int transformCount = 1; // Number of transforms (always 1 for SMBDirect) private int reserved1 = 0; private int reserved2 = 0; // SMB_DIRECT_RDMA_TRANSFORM_V1 private int rdmaTransformId = 0x0001; // SMB_DIRECT_RDMA_TRANSFORM_V1
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 4.4K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/Hexdump.java
* * @param ps the PrintStream to write the hexdump output to * @param src the source byte array containing the data to dump * @param srcIndex the starting index in the source array * @param length the number of bytes to dump from the source array */ public static void hexdump(final PrintStream ps, final byte[] src, final int srcIndex, final int length) { if (length == 0) { return; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.8K bytes - Viewed (0)