Merge revision 5c00341c2b into multi-project

This commit is contained in:
Tim Vernum 2025-02-14 17:17:41 +11:00
commit 680e7a6979
315 changed files with 11381 additions and 4339 deletions

View file

@ -23,6 +23,7 @@ public class TimeValue implements Comparable<TimeValue> {
public static final TimeValue MAX_VALUE = new TimeValue(Long.MAX_VALUE, TimeUnit.NANOSECONDS);
public static final TimeValue THIRTY_SECONDS = new TimeValue(30, TimeUnit.SECONDS);
public static final TimeValue ONE_MINUTE = new TimeValue(1, TimeUnit.MINUTES);
public static final TimeValue ONE_HOUR = new TimeValue(1, TimeUnit.HOURS);
private static final long C0 = 1L;
private static final long C1 = C0 * 1000L;