Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for JmhHTMLReport (0.24 sec)

  1. build-logic/profiling/src/main/kotlin/gradlebuild/jmh/tasks/JmhHTMLReport.kt

    import org.gradle.api.tasks.PathSensitivity
    import org.gradle.api.tasks.TaskAction
    import org.gradle.work.DisableCachingByDefault
    
    
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    abstract class JmhHTMLReport : DefaultTask() {
    
        @get:InputFile
        @get:PathSensitive(PathSensitivity.NAME_ONLY)
        abstract val csv: RegularFileProperty
    
        @get:OutputDirectory
        abstract val destination: DirectoryProperty
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 07 13:12:26 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. build-logic/profiling/src/main/kotlin/gradlebuild.jmh.gradle.kts

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    import gradlebuild.jmh.tasks.JmhHTMLReport
    
    plugins {
        id("me.champeau.jmh")
    }
    
    configurations {
        jmhImplementation {
            extendsFrom(configurations.implementation.get())
            configurations.findByName("platformImplementation")?.let {
    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