- Sort Score
- Num 10 results
- Language All
Results 1 - 4 of 4 for recordsAccess (0.1 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/test/java/jcifs/util/AuthenticationRateLimiterTest.java
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 15.8K bytes - Click Count (0) -
src/main/java/jcifs/util/AuthenticationRateLimiter.java
return true; } /** * Record successful authentication * * @param username the username * @param sourceIp the source IP */ public void recordSuccess(String username, String sourceIp) { if (username != null) { AccountAttempts account = accountAttempts.get(username); if (account != null) { account.reset();Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 15.1K bytes - Click Count (0) -
src/main/java/jcifs/util/SmbCircuitBreaker.java
for (int i = 0; i < numberOfBuckets; i++) { buckets[i] = new WindowBucket(); } } public synchronized void recordSuccess(long responseTimeMs) { getCurrentBucket().recordSuccess(responseTimeMs); } public synchronized void recordFailure() { getCurrentBucket().recordFailure(); }
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 33.4K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbTransportPoolImpl.java
consecutiveFailures.remove(key); lastFailureTimes.remove(key); ConnectionMetrics metrics = connectionMetrics.get(key); if (metrics != null) { metrics.recordSuccess(); } } /** * Perform maintenance tasks during health checks */ private void performMaintenanceTasks() { // Clean up old failure records
Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sun Aug 31 08:00:57 GMT 2025 - 33.4K bytes - Click Count (0)