Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for systemUTC (3.01 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/MonotonicClock.java

         * Initializes the clock with the current system time and nanoTime.
         */
        private MonotonicClock() {
            this.startNanos = System.nanoTime();
            this.startInstant = Clock.systemUTC().instant();
        }
    
        /**
         * Returns the singleton instance of MonotonicClock.
         *
         * @return the monotonic clock instance
         */
        public static MonotonicClock get() {
            return CLOCK;
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 15 06:28:29 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top