- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 126 for 600000 (0.03 sec)
-
src/test/java/jcifs/util/SecureKeyManagerTest.java
public void testConfigureKeyRotation() { // Test that configuration doesn't throw keyManager.configureKeyRotation(60000); // Test disabling rotation keyManager.configureKeyRotation(0); // Test reconfiguring keyManager.configureKeyRotation(30000); } @Test public void testConcurrentKeyOperations() throws InterruptedException { int threadCount = 10;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java
public void testSetFuture_stackOverflow() { SettableFuture<String> orig = SettableFuture.create(); SettableFuture<String> prev = orig; for (int i = 0; i < 100000; i++) { SettableFuture<String> curr = SettableFuture.create(); prev.setFuture(curr); prev = curr; } // prev represents the 'innermost' future prev.set("done");
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 46.8K bytes - Viewed (0) -
guava-tests/test/com/google/common/hash/HashingTest.java
checkConsistentHashCorrectness(r.nextLong()); } } private void checkConsistentHashCorrectness(long hashCode) { int last = 0; for (int shards = 1; shards <= 100000; shards++) { int b = Hashing.consistentHash(hashCode, shards); if (b != last) { assertEquals(shards - 1, b); last = b; } } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 26.4K bytes - Viewed (2) -
src/main/java/jcifs/smb1/dcerpc/msrpc/srvsvc.java
/** * Default constructor for TimeOfDayInfo. */ public TimeOfDayInfo() { } /** * The time elapsed since 00:00:00, January 1, 1970 GMT. */ public int elapsedt; /** * The number of milliseconds from the start of the current second. */ public int msecs; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 26.3K bytes - Viewed (0) -
docs/SMB3_IMPLEMENTATION_PLAN.md
## Configuration Properties ```properties # Lease configuration jcifs.smb.client.useLeases=true jcifs.smb.client.leaseTimeout=30000 # Persistent handles jcifs.smb.client.usePersistentHandles=true jcifs.smb.client.durableTimeout=120000 # Multi-channel jcifs.smb.client.useMultiChannel=true jcifs.smb.client.maxChannels=4 jcifs.smb.client.channelBindingPolicy=required
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 10.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/SmbInfoAllocationTest.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K 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) -
guava-tests/test/com/google/common/util/concurrent/AtomicDoubleArrayTest.java
double z = aa.updateAndGet(i, value -> value - y); assertBitEquals(x - y, z); assertBitEquals(x - y, aa.get(i)); } } } } static final long COUNTDOWN = 100000; class Counter extends CheckedRunnable { final AtomicDoubleArray aa; volatile long counts; Counter(AtomicDoubleArray a) { aa = a; } @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 14.6K 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) -
android/guava-tests/test/com/google/common/primitives/DoublesTest.java
assertThat(min(-0.0, 0.0)).isEqualTo(-0.0); assertThat(min(0.0, -0.0)).isEqualTo(-0.0); assertThat(min(NUMBERS)).isEqualTo(LEAST); assertThat(Double.isNaN(min(VALUES))).isTrue(); } public void testConstrainToRange() { assertThat(Doubles.constrainToRange(1.0, 0.0, 5.0)).isEqualTo(1.0); assertThat(Doubles.constrainToRange(1.0, 1.0, 5.0)).isEqualTo(1.0);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 30.9K bytes - Viewed (0)