Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPublishTimestamp (0.47 sec)

  1. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenModule.groovy

                return "${version.replaceFirst('-SNAPSHOT$', '')}-${timestampFormat.format(publishTimestamp)}-${publishCount}"
            }
            return version
        }
    
        Date getPublishTimestamp() {
            return new Date(updateFormat.parse("20100101120000").time + publishCount * 1000)
        }
    
        /**
         * Publishes the pom.xml plus main artifact, plus any additional artifacts for this module.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.1K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/maven/AbstractMavenModule.groovy

            assert options.isEmpty(): "Unknown options : ${options.keySet()}"
            return artifact
        }
    
        Date getPublishTimestamp() {
            return new Date(updateFormat.parse("20100101120000").time + publishCount * 1000)
        }
    
        String getFormattedPublishTimestamp() {
            publishTimestamp.toLocalDateTime()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 29.4K bytes
    - Viewed (0)
Back to top