- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for getActiveAccounts (0.14 sec)
-
src/test/java/jcifs/util/AuthenticationRateLimiterTest.java
assertTrue(stats.getActiveAccounts() > 0); // Reset rateLimiter.reset(); // State should be cleared stats = rateLimiter.getStats(); assertEquals(0, stats.getTotalBlocked()); assertEquals(0, stats.getAccountsLocked()); assertEquals(0, stats.getIpsBlocked()); assertEquals(0, stats.getActiveAccounts());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
public long getAccountsLocked() { return accountsLocked; } public long getIpsBlocked() { return ipsBlocked; } public int getActiveAccounts() { return activeAccounts; } public int getActiveIps() { return activeIps; } }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 15.1K bytes - Viewed (0)