Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for normalizedZipEntry (0.13 sec)

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

            ZipEntry entry = normalizedZipEntry(name)
            out.putNextEntry(entry)
    
            // Write file to archive
            def contentBytes = content.getBytes("utf-8")
            out.write(contentBytes, 0, contentBytes.length)
        }
    
        private void addGeneratedUncompressedZipEntry(ZipOutputStream out, String name, int sizeInBytes) {
            ZipEntry entry = normalizedZipEntry(name)
            out.putNextEntry(entry)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 05 09:51:22 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top