Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for currentCount (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. src/main/java/org/codelibs/fess/job/IndexExportJob.java

                    exportDocument(source, exportPath, excludeFields, resolvedFormatter);
                    final long currentCount = processedCount.incrementAndGet();
                    if (logger.isDebugEnabled() && currentCount % scrollSize == 0) {
                        logger.debug("[EXPORT] Processing: count={}", currentCount);
                    }
                    return true;
                });
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.8K bytes
    - Click Count (0)
  2. src/main/java/jcifs/audit/SecurityAuditLogger.java

            AtomicLong counter = rateLimitCounters.computeIfAbsent(windowKey, k -> new AtomicLong(0));
            long currentCount = counter.incrementAndGet();
    
            // Clean up old windows periodically
            if (currentCount == 1) {
                cleanupOldRateLimitCounters(currentWindow);
            }
    
            return currentCount <= maxEventsPerWindow;
        }
    
        private void cleanupOldRateLimitCounters(long currentWindow) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 26.6K bytes
    - Click Count (0)
Back to Top