Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PropertyChanges (0.24 sec)

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

    import org.gradle.api.Describable;
    
    import java.util.stream.Stream;
    
    public class PropertyChanges implements ChangeContainer {
    
        private final ImmutableSortedSet<String> previous;
        private final ImmutableSortedSet<String> current;
        private final String title;
        private final Describable executable;
    
        public PropertyChanges(
            ImmutableSortedSet<String> previous,
            ImmutableSortedSet<String> current,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

                currentImplementation, currentAdditionalImplementations,
                executable);
    
            // Capture non-file input changes
            ChangeContainer inputPropertyChanges = new PropertyChanges(
                lastExecution.getInputProperties().keySet(),
                thisExecution.getInputProperties().keySet(),
                "Input",
                executable);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top