Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for jmhImplementation (0.14 sec)

  1. platforms/core-execution/build-cache/build.gradle.kts

        implementation(libs.slf4jApi)
    
        jmhImplementation(project(":base-services"))
        jmhImplementation(project(":native"))
        jmhImplementation(platform(project(":distributions-dependencies")))
        jmhImplementation(libs.aircompressor)
        jmhImplementation(libs.commonsCompress)
        jmhImplementation(libs.commonsIo)
        jmhImplementation(libs.jtar)
        jmhImplementation(libs.snappy)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. platforms/core-runtime/native/build.gradle.kts

        testImplementation(testFixtures(projects.files))
        testImplementation(testFixtures(project(":core")))
        testImplementation(testFixtures(project(":logging")))
    
        jmhImplementation(project(":files"))
        jmhImplementation(project(":base-services"))
    }
    
    jmh {
        fork = 1
        threads = 2
        warmupIterations = 10
        synchronizeIterations = false
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/build.gradle.kts

        }
        integTestDistributionRuntimeOnly(project(":distributions-native")) {
            because("ModelRuleCachingIntegrationTest requires a rules implementation")
        }
    
        jmhImplementation(platform(project(":distributions-dependencies")))
    }
    
    strictCompile {
        ignoreRawTypes() // raw types used in public API
    }
    
    tasks.withType<JavaCompile>().configureEach {
        options.release = null
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. build-logic/profiling/src/main/kotlin/gradlebuild.jmh.gradle.kts

     * limitations under the License.
     */
    import gradlebuild.jmh.tasks.JmhHTMLReport
    
    plugins {
        id("me.champeau.jmh")
    }
    
    configurations {
        jmhImplementation {
            extendsFrom(configurations.implementation.get())
            configurations.findByName("platformImplementation")?.let {
                extendsFrom(it)
            }
        }
        jmhRuntimeClasspath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 20 15:24:40 UTC 2023
    - 1.3K bytes
    - Viewed (0)
Back to top