Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for changesCount (0.52 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/continuous/ContinuousBuildChangeReportingIntegrationTest.groovy

            where:
            changesCount << [1, changesLimit, 11]
        }
    
        def "should report the changes when files are modified #changesCount"(changesCount) {
            given:
            def inputFiles = (1..changesCount).collect { inputDir.file("input${it}.txt") }
            inputFiles.each { it.text = 'New input file' }
            boolean expectMoreChanges = (changesCount > changesLimit)
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/input-tracking/src/test/groovy/org/gradle/internal/configuration/inputs/AccessTrackingPropertiesTest.groovy

            then:
            result == oldValue
            1 * onAccess.accept(key, oldValue)
            then:
            changeCount * onChange.accept(key, 'newValue')
            then:
            0 * onChange._
            0 * onAccess._
    
            where:
            key        | oldValue        | changeCount
            'existing' | 'existingValue' | 0
            'missing'  | null            | 1
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Nov 11 00:37:04 UTC 2023
    - 23.1K bytes
    - Viewed (0)
Back to top