Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for getChanges (0.1 sec)

  1. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/FingerprintCompareStrategyTest.groovy

            def visitor = new CollectingChangeVisitor()
            strategy.visitChangesSince(previousFingerprint, currentFingerprint, "test", visitor)
            visitor.getChanges().toList()
        }
    
        def fingerprint(String normalizedPath, def hashCode = 0x1234abcd) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 13.6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NormalizedPathChangeDetector.java

                FileSystemLocationFingerprint previousFingerprint = entry.getKey();
                FilePathWithType pathWithType = entry.getValue();
    
                Change change = getChange(propertyTitle, addedFilesByNormalizedPath, previousFingerprint, pathWithType);
                if (!visitor.visitChange(change)) {
                    return false;
                }
            }
    
    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