All Downloads are FREE. Search and download functionalities are using the official Maven repository.

src.demo.ExtensionDemo.groovy Maven / Gradle / Ivy

There is a newer version: 0.4.3-groovy-2.4
Show newest version
benchmark(measureCpuTime:false, verbose:true, warmUpTime:0) {
    'foo' { Thread.sleep(1000) }
    'bar' { Thread.sleep(2000) }
}.prettyPrint()

;

{ ->
    'baz' { Thread.sleep(1000) }
    'qux' { Thread.sleep(2000) }
}
.benchmark(measureCpuTime:false, verbose:true, warmUpTime:0)
.prettyPrint()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy