Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for newEntryWithFixedTime (0.37 sec)

  1. subprojects/core/src/testFixtures/groovy/org/gradle/util/JarUtils.groovy

                closure.setDelegate(man)
                closure()
    
                jarOut.putNextEntry(newEntryWithFixedTime(JarFile.MANIFEST_NAME))
                man.write(jarOut)
    
                hasConfiguredManifest = true
                this
            }
    
            private static JarEntry newEntryWithFixedTime(String path) {
                return new JarEntry(path).tap {
                    // setTimeLocal() is better but it is Java 9+.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 07 19:17:11 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top