- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for 600000 (0.05 sec)
-
src/main/java/jcifs/smb1/http/NetworkExplorer.java
final byte[] buf = new byte[1024]; int n, level; String name; Config.setProperty("jcifs.smb1.smb.client.soTimeout", "600000"); Config.setProperty("jcifs.smb1.smb.client.attrExpirationPeriod", "300000"); final Enumeration e = getInitParameterNames(); while (e.hasMoreElements()) { name = (String) e.nextElement();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 22.6K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/nego/Smb2NegotiateResponseInputValidationTest.java
// Set security buffer length to excessive size (> 64KB) SMBUtil.writeInt2(128, buffer, 56); // Security buffer offset // writeInt2(100000) will truncate to 100000 & 0xFFFF = 34464 SMBUtil.writeInt2(100000, buffer, 58); // This becomes 34464 due to 16-bit truncation // Since 34464 is within the 16-bit range but could still be considered excessive for security buffer,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/CriticalPerformanceTest.java
// Verify O(1) performance - should be reasonably fast (allowing for JVM overhead) assertTrue(avgAllocTimeNs < 10000, "Average allocation should be under 10000ns (O(1) performance)"); assertTrue(avgReleaseTimeNs < 10000, "Average release should be under 10000ns (O(1) performance)"); assertEquals(threadCount * operationsPerThread, allocations.get());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 15.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
private static final int DEFAULT_MAX_POOL_SIZE = 100; private static final int DEFAULT_MAX_IDLE_TIME = 300000; // 5 minutes in ms private static final int DEFAULT_HEALTH_CHECK_INTERVAL = 60000; // 1 minute in ms private static final int DEFAULT_PROACTIVE_CHECK_INTERVAL = 30000; // 30 seconds in ms private int maxPoolSize = DEFAULT_MAX_POOL_SIZE; private int maxIdleTime = DEFAULT_MAX_IDLE_TIME;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 33.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
private final ReadWriteLock lock; private final CIFSContext context; private final ScheduledExecutorService cleanupExecutor; private static final long DEFAULT_LEASE_CLEANUP_INTERVAL = 60000; // 60 seconds private static final int DEFAULT_LEASE_BREAK_TIMEOUT = 60; // 60 seconds per MS-SMB2 /** * Create a new lease manager * * @param context CIFS context */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0)