Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getValueSnapshots (0.16 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)
Back to top