Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for previousEntries (0.17 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. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/managedfieldsupdater_test.go

    		},
    		"data": {
    			"key_b": "value"
    		}
    	}`))
    	if err != nil {
    		t.Fatal(err)
    	}
    	previousManagedFields := f.ManagedFields()
    	previousEntries := map[string]v1.ManagedFieldsEntry{}
    	for _, entry := range previousManagedFields {
    		previousEntries[entry.Manager] = entry
    	}
    
    	time.Sleep(time.Second)
    
    	err = updateObject(f, "fieldmanager_a_test", []byte(`{
    		"apiVersion": "v1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. 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)
  4. 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