Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-incremental/kotlin/build.gradle.kts

                val changedFile = change.file
                if (change.fileType != FileType.FILE) {
                    return@forEach
                }
                val outputLocation = outputDir.resolve("${change.normalizedPath}.loc")
                when (change.changeType) {
                    ChangeType.ADDED, ChangeType.MODIFIED -> {
    
                        println("Processing file ${changedFile.name}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/dependencyManagement/artifactTransforms-incremental/groovy/build.gradle

                def changedFile = change.file
                if (change.fileType != FileType.FILE) {
                    return
                }
                def outputLocation = new File(outputDir, "${change.normalizedPath}.loc")
                switch (change.changeType) {
                    case ADDED:
                    case MODIFIED:
                        println("Processing file ${changedFile.name}")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/nativeplatform/RealWorldNativePluginPerformanceTest.groovy

        ])
        def "build with #changeType file change"() {
            given:
            runner.tasksToRun = ['build']
            runner.warmUpRuns = 39
            runner.runs = 40
    
            def changedFile = getFileToChange(changeType)
            def changeClosure = getChangeClosure(changeType)
            runner.addBuildMutator { invocationSettings ->
                new BuildMutator() {
                    String originalContent
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. testing/performance/docs/performance-bisect.md

    ...
    }
    
        @Unroll('Project #buildSize native build #changeType')
        def "build with changes"(String buildSize, String changeType, Amount<Duration> maxExecutionTimeRegression, String changedFile, Closure changeClosure) {
    ...
            runner.maxExecutionTimeRegression = maxExecutionTimeRegression
            runner.targetVersions = ['2.14']
            runner.useDaemon = true
    ...
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top