Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for jmhImplementation (0.34 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)
Back to top