Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getValueSnapshots (0.18 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/InputFingerprinter.java

        interface Result {
            /**
             * Returns the values snapshotted just now.
             */
            ImmutableSortedMap<String, ValueSnapshot> getValueSnapshots();
    
            /**
             * Returns all the value snapshots, including previously known ones.
             */
            ImmutableSortedMap<String, ValueSnapshot> getAllValueSnapshots();
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentifyStep.java

                ImmutableSortedMap.of(),
                ImmutableSortedMap.of(),
                work::visitIdentityInputs
            );
    
            ImmutableSortedMap<String, ValueSnapshot> identityInputProperties = inputs.getValueSnapshots();
            ImmutableSortedMap<String, CurrentFileCollectionFingerprint> identityInputFileProperties = inputs.getFileFingerprints();
            Identity identity = work.identify(identityInputProperties, identityInputFileProperties);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/impl/DefaultInputFingerprinter.java

                this.propertiesRequiringIsEmptyCheck = propertiesRequiringIsEmptyCheck;
            }
    
            @Override
            public ImmutableSortedMap<String, ValueSnapshot> getValueSnapshots() {
                return valueSnapshots;
            }
    
            @Override
            public ImmutableSortedMap<String, ValueSnapshot> getAllValueSnapshots() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransform.java

                        .map(InvalidUserDataException::new)
                        .collect(toImmutableList())
                );
            }
    
            for (Map.Entry<String, ValueSnapshot> entry : result.getValueSnapshots().entrySet()) {
                hasher.putString(entry.getKey());
                entry.getValue().appendToHasher(hasher);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 34.8K bytes
    - Viewed (0)
Back to top