Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for BenchmarkProcessor (0.11 seconds)

  1. benchmarks/build.gradle

      runtimeOnly 'org.apache.commons:commons-math3:3.2'
    }
    
    // enable the JMH's BenchmarkProcessor to generate the final benchmark classes
    // needs to be added separately otherwise Gradle will quote it and javac will fail
    tasks.named("compileJava").configure {
      options.compilerArgs.addAll(["-processor", "org.openjdk.jmh.generators.BenchmarkProcessor"])
    }
    
    tasks.register('copyExpression', Copy) {
      dependsOn configurations.expression
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 08 22:04:23 GMT 2021
    - 2.5K bytes
    - Click Count (0)
Back to Top