- Sort Score
- Result 10 results
- Languages All
Results 301 - 310 of 390 for maksimum (0.05 sec)
-
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
/** * Cache for storing resource file modification timestamps to enable cache busting. * The cache expires after 10 minutes and has a maximum size of 1000 entries. */ private static LoadingCache<String, Long> resourceHashCache = CacheBuilder.newBuilder().maximumSize(1000).expireAfterWrite(10, TimeUnit.MINUTES).build(new CacheLoader<String, Long>() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.3K bytes - Viewed (1) -
src/main/java/jcifs/util/Encdec.java
* Encodes a String as UTF-8 bytes. * * @param str the String to encode * @param dst the destination byte array * @param di the starting index in the destination array * @param dlim the maximum index in the destination array * @return the number of bytes written */ public static int enc_utf8(final String str, final byte[] dst, int di, final int dlim) { final int start = di; int ch;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 17.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2Test.java
} @Test @DisplayName("Should handle maximum tree ID") void testMaxTreeId() { int maxTreeId = Integer.MAX_VALUE; testMessage.setTreeId(maxTreeId); assertEquals(maxTreeId, testMessage.getTreeId()); } @Test @DisplayName("Should handle maximum session ID") void testMaxSessionId() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 39.5K bytes - Viewed (0) -
cmd/admin-heal-ops.go
// the heal-status API. It blocks if there are // maxUnconsumedHealResultItems. When it blocks, the heal sequence // routine is effectively paused - this happens when the server has // accumulated the maximum number of heal records per heal // sequence. When the client consumes further records, the heal // sequence automatically resumes. The return value indicates if the // operation succeeded.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 25.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/io/Smb2WriteRequestTest.java
assertArrayEquals(Arrays.copyOfRange(fullData, offset, offset + length), Arrays.copyOfRange(buffer, 48, 48 + length)); } @Test @DisplayName("Should handle maximum values correctly") void testMaximumValues() { request.setOffset(Long.MAX_VALUE); request.setRemainingBytes(Integer.MAX_VALUE); request.setWriteFlags(Integer.MAX_VALUE);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
*/ public Map<Smb2LeaseKey, LeaseEntry> getAllLeases() { return new ConcurrentHashMap<>(leases); } /** * Clean up expired leases * * @param maxAgeMillis maximum age in milliseconds * @return number of leases cleaned up */ public int cleanupExpiredLeases(long maxAgeMillis) { lock.writeLock().lock(); try {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
assertNotNull(result); assertTrue(result.startsWith("SecurityDescriptor:")); assertTrue(result.contains("NULL")); } @Test @DisplayName("Test decode with maximum buffer size") void testDecodeWithMaxBufferSize() throws SMBProtocolDecodingException { prepareMinimalSecurityDescriptorBuffer(testBuffer, 0, true, true, false); // Decode with exact size needed
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/SmbTransportPoolTest.java
// Then assertNotNull(result); assertEquals(transport, result); } @Test @DisplayName("Should handle maximum port value") void testMaxPortValue() { // Given int maxPort = 65535; when(transportPool.getSmbTransport(context, address, maxPort, false)).thenReturn(transport);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 22.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralResponseBufferTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 15.4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java
// let's test the actual validation logic instead byte[] buffer2 = createBasicNegotiateResponseBuffer(); // Set maximum 16-bit value SMBUtil.writeInt2(65535, buffer2, 58); // Test should detect buffer overflow (this is working correctly!)
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0)