Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for changesFile (0.23 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalBuildIntegrationTest.groovy

        inputFile = a.outputFile
        outputFile = file('src.b.txt')
    }
    // Use a separate build script to avoid invalidating task implementations
    apply from: 'changes.gradle'
    '''
            def changesFile = file('changes.gradle').createFile()
    
            TestFile inputFile = file('src.txt')
            TestFile outputFileA = file('src.a.txt')
            TestFile outputFileB = file('src.b.txt')
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  2. 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)
  3. 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