in geronimo-metrics-common/src/main/java/org/apache/geronimo/microprofile/metrics/common/SimpleTimerImpl.java [120:129]
private void maybeRotate() {
final Instant now = MINUTE_CLOCK.instant();
if (now.isAfter(currentMinute)) {
synchronized (this) {
if (now.isAfter(currentMinute)) {
rotate(now);
}
}
}
}