Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for changesFile (0.16 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. 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)
  3. 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)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

                "unchangedFile": fingerprint("unchangedFile", 2),
                "changedFile": fingerprint("changedFile", 4)
            ], [
                "original/input": fingerprint("input", 1),
                "unchangedFile": fingerprint("unchangedFile", 2),
                "changedFile": fingerprint("changedFile", 3)
            ]) == [modified("changedFile")]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. pkg/kubelet/config/file_linux_test.go

    			testCase.expected.Pods[0].Spec.Containers[0].Name = "image2"
    			changeFile := func() {
    				// Edit the file content
    				if symlink {
    					file = testCase.writeToFile(linkedDirName, fileName, t)
    					return
    				}
    
    				file = testCase.writeToFile(dirName, fileName, t)
    			}
    
    			go changeFile()
    			// expect an update by MODIFY inotify event
    			expectUpdate(t, ch, testCase)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 14 09:38:23 UTC 2022
    - 12.3K bytes
    - Viewed (0)
Back to top