Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for WithZone (0.07 sec)

  1. api/maven-api-core/src/test/java/org/apache/maven/api/MonotonicClockTest.java

            // Verify that attempting to change timezone returns the same instance
            Clock newClock = clock.withZone(ZoneId.systemDefault());
            assertSame(clock, newClock, "withZone() should return the same clock instance");
        }
    
        @Test
        @DisplayName("MonotonicClock should maintain monotonic time progression")
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 15 06:28:29 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/MonotonicClock.java

         * The provided zone parameter is ignored.
         *
         * @param zone the target timezone (ignored)
         * @return this clock instance
         */
        @Override
        public Clock withZone(ZoneId zone) {
            // Monotonic clock is always UTC-based
            return this;
        }
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 15 06:28:29 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/service/impl/AbstractCrawlerService.java

            }
    
            /**
             * Default date time formatter for ISO 8601 format with UTC timezone.
             */
            public static final DateTimeFormatter DEFAULT_DATE_PRINTER = ISODateTimeFormat.dateTime().withZone(DateTimeZone.UTC);
    
            /**
             * Converts a Date object to its string representation in ISO 8601 format.
             *
             * @param value The Date object to convert.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 34.2K bytes
    - Viewed (0)
Back to top