Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SummarizingChangeContainer (0.49 sec)

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

     * - Will only emit changes of a single type (from a single delegate change set)
     */
    public class SummarizingChangeContainer implements ChangeContainer {
        private final List<ChangeContainer> sources;
    
        public SummarizingChangeContainer(ChangeContainer... sources) {
            this.sources = ImmutableList.copyOf(sources);
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/history/changes/SummarizingChangeContainerTest.groovy

    
    import spock.lang.Specification
    
    class SummarizingChangeContainerTest extends Specification {
    
        def state1 = Mock(ChangeContainer)
        def state2 = Mock(ChangeContainer)
        def state = new SummarizingChangeContainer(state1, state2)
        def visitor = new CollectingChangeVisitor()
    
        def "looks for changes in all delegate change sets"() {
            when:
            state.accept(visitor)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

                remainingPreviouslyProducedOutputs
            );
    
            // Collect changes that would trigger a rebuild
            ChangeContainer rebuildTriggeringChanges = errorHandling(executable, new SummarizingChangeContainer(
                previousSuccessState,
                implementationChanges,
                inputPropertyChanges,
                inputPropertyValueChanges,
                outputFilePropertyChanges,
    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