Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for jmhReport (0.09 sec)

  1. build-logic/profiling/src/main/kotlin/gradlebuild.jmh.gradle.kts

                attribute(LibraryElements.LIBRARY_ELEMENTS_ATTRIBUTE, objects.named(LibraryElements.JAR))
            }
        }
    }
    
    jmh {
        includeTests = false
        resultFormat = "CSV"
    }
    
    val jmhReport = tasks.register<JmhHTMLReport>("jmhReport") {
        group = "jmh"
        csv = tasks.jmh.map { layout.buildDirectory.file("results/jmh/results.csv").get() }
        destination = layout.buildDirectory.dir("reports/jmh-html")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 20 15:24:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. build-logic/root-build/src/main/kotlin/gradlebuild.internal.cc-experiment.gradle.kts

            // Kotlin/JS
            // https://youtrack.jetbrains.com/issue/KT-50881
            task.name in listOf("generateExternals") -> true
    
            // JMH plugin
            task.name in listOf("jmh", "jmhJar", "jmhReport") -> true
    
            // Gradle Doctor plugin
            task.name in listOf(
                "graph", "graphMain",
                "projectGraphReport",
                "ripples",
                "aggregateAdvice",
            ) -> true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 17:29:09 UTC 2024
    - 4K bytes
    - Viewed (0)
Back to top