Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for modifiedFiles (0.13 sec)

  1. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/IncrementalCompileProcessorTest.groovy

        }
    
        def added(TestFile sourceFile) {
            virtualFileSystem.invalidateAll()
            modifiedFiles << sourceFile
            graph[sourceFile] = []
        }
    
        def sourceAdded(TestFile sourceFile, List<File> deps = []) {
            virtualFileSystem.invalidateAll()
            sourceFiles << sourceFile
            modifiedFiles << sourceFile
            graph[sourceFile] = deps
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:31:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIncrementalIntegrationTest.groovy

                        assert changes.findAll { it.changeType == ChangeType.MODIFIED }*.file as Set == resolveFiles(parameters.modifiedFiles.get())
                        def outputDirectory = outputs.dir("output")
                        changes.each { change ->
                            if (change.file != input.get().asFile) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 10:57:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/IncrementalInputsIntegrationTest.groovy

            $taskAction
    
            def touchOutputs() {
            }
    
            def createOutputsNonIncremental() {
            }
    
            @Internal
            def addedFiles = []
            @Internal
            def modifiedFiles = []
            @Internal
            def removedFiles = []
            @Internal
            def incrementalExecution
        }
            """
            file("buildSrc/src/main/groovy/IncrementalTask.groovy").text = """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 12:52:29 UTC 2022
    - 27.8K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/lazy_configuration.adoc

    ```
    modifiedFiles.finalizeValueOnRead()
    ```
    
    In other words, this method calculates the final value lazily as required, whereas `finalizeValue()` calculates the final value eagerly.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NormalizedPathChangeDetector.java

        private static Change modified(
            String propertyTitle,
            FileType previousFingerprintType,
            String normalizedPath,
            FilePathWithType modifiedFile
        ) {
            String absolutePath = modifiedFile.getAbsolutePath();
            FileType fileType = modifiedFile.getFileType();
            return DefaultFileChange.modified(absolutePath, propertyTitle, previousFingerprintType, fileType, normalizedPath);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
Back to top