Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for yyyy (1.53 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/MavenBuildTimestamp.java

    import java.util.TimeZone;
    
    /**
     * MavenBuildTimestamp
     */
    public class MavenBuildTimestamp {
        // ISO 8601-compliant timestamp for machine readability
        public static final String DEFAULT_BUILD_TIMESTAMP_FORMAT = "yyyy-MM-dd'T'HH:mm:ss'Z'";
    
        public static final String BUILD_TIMESTAMP_FORMAT_PROPERTY = "maven.build.timestamp.format";
    
        public static final TimeZone DEFAULT_BUILD_TIME_ZONE = TimeZone.getTimeZone("Etc/UTC");
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. maven-embedder/src/main/java/org/apache/maven/cli/CLIReportingUtils.java

                    }
                }
            }
        }
    
        public static String formatTimestamp(long timestamp) {
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ssXXX");
            return sdf.format(new Date(timestamp));
        }
    
        public static String formatDuration(long duration) {
            // CHECKSTYLE_OFF: MagicNumber
            long ms = duration % 1000;
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar

    org.apache.commons.logging.Log, java.io.Serializable { protected static final String systemPrefix = org.apache.commons.logging.simplelog.; protected static final java.util.Properties simpleLogProps; protected static final String DEFAULT_DATE_TIME_FORMAT = yyyy/MM/dd HH:mm:ss:SSS zzz; protected static boolean showLogName; protected static boolean showShortName; protected static boolean showDateTime; protected static String dateTimeFormat; protected static java.text.DateFormat dateFormatter; public static...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 37.1K bytes
    - Viewed (0)
  4. src/mdo/reader.vm

            throws XMLStreamException {
            if (s != null) {
                String effectiveDateFormat = dateFormat;
                if (dateFormat == null) {
                    effectiveDateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS";
                }
                if ("long".equals(effectiveDateFormat)) {
                    try {
                        return new java.util.Date(Long.parseLong(s));
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 15 06:33:11 UTC 2023
    - 42.1K bytes
    - Viewed (0)
Back to top