Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for createCat (0.43 sec)

  1. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/transforms/Minify.kt

            val classGraph = JarAnalyzer("", keepClasses, keepClasses, setOf()).analyze(artifact, classesDir, manifestFile, buildReceiptFile)
    
            createJar(classGraph, classesDir, manifestFile, jarFile)
    
            return jarFile
        }
    
        private
        fun createJar(classGraph: ClassGraph, classesDir: File, manifestFile: File, jarFile: File) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenJarCreator.groovy

    class MavenJarCreator {
        int minimumSizeKB = 0
        int maximumSizeKB = 0
        Random random = new Random(1L)
        byte[] charsToUse = "abcdefghijklmnopqrstuvwxyz0123456789".getBytes()
    
        void createJar(MavenModule mavenModule, File artifactFile) {
            try {
                artifactFile.withOutputStream { stream ->
                    ZipOutputStream out = new ZipOutputStream(stream)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 05 09:51:22 UTC 2021
    - 2.9K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/MavenModule.groovy

                publishArtifact(artifact)
            }
            publishArtifact([:])
            return this
        }
    
        void createEmptyJar(File artifactFile) {
            mavenJarCreator.createJar(this, artifactFile)
        }
    
        private File publishArtifact(Map<String, ?> artifact) {
            def artifactFile = artifactFile(artifact)
            if (type != 'pom') {
                if (type == 'jar') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 5.1K bytes
    - Viewed (0)
Back to top