Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for previousEntries (0.18 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/SortedMapDiffUtil.java

            Iterator<? extends Map.Entry<K, ? extends VP>> previousEntries = previous.entrySet().iterator();
            Comparator<? super K> comparator = previous.comparator();
    
            if (currentEntries.hasNext() && previousEntries.hasNext()) {
                Map.Entry<K, ? extends VC> currentEntry = currentEntries.next();
                Map.Entry<K, ? extends VP> previousEntry = previousEntries.next();
                while (true) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ClasspathCompareStrategy.java

                this.currentSnapshots = currentSnapshots;
                this.previousEntries = previousSnapshots.entrySet().iterator();
                this.previousSnapshots = previousSnapshots;
                this.current = nextEntry(currentEntries);
                this.previous = nextEntry(previousEntries);
            }
    
            void processChange() {
                if (current == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/NormalizedPathChangeDetector.java

        ) {
            ListMultimap<String, FilePathWithType> results = MultimapBuilder
                .linkedHashKeys()
                .arrayListValues(1)
                .build();
            for (Entry<String, FileSystemLocationFingerprint> currentEntry : currentFingerprints.entrySet()) {
                // skip exact matches
                if (previousEntries.contains(currentEntry)) {
    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