Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for currentCount (0.09 seconds)

  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. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java

                    // drop without counting towards preserved problems
                    return false;
                }
                int currentCount = totalCount.incrementAndGet();
                getCounter(problem.getSeverity()).increment();
                if (currentCount <= maxCountLimit || dropProblemWithLowerSeverity(problem.getSeverity())) {
                    getProblems(problem.getSeverity()).add(problem);
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jul 18 17:30:19 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  3. 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