Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toMinutes (0.05 sec)

  1. src/main/java/org/codelibs/fess/helper/IntervalControlHelper.java

                if (!reverse) {
                    return compareTime(fromHours, fromMinutes, hours, minutes) >= 0 && compareTime(hours, minutes, toHours, toMinutes) >= 0
                            && isInDays(day);
                }
                if (compareTime(hours, minutes, toHours, toMinutes) >= 0 && isInDays(day + 1)
                        || compareTime(fromHours, fromMinutes, hours, minutes) >= 0 && isInDays(day)) {
                    return true;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/AuthenticationRateLimiter.java

            void recordAttempt() {
                Instant now = Instant.now();
    
                // Reset window if more than 1 minute has passed
                if (Duration.between(windowStart, now).toMinutes() >= 1) {
                    recentAttempts.set(0);
                    windowStart = now;
                }
    
                recentAttempts.incrementAndGet();
                lastAttempt = now;
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.1K bytes
    - Viewed (0)
Back to top