Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for InputFileChanges (0.16 sec)

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

     */
    
    package org.gradle.internal.execution.history.changes;
    
    import org.gradle.api.InvalidUserDataException;
    
    public interface InputFileChanges extends ChangeContainer {
        boolean accept(String propertyName, ChangeVisitor visitor);
    
        InputFileChanges EMPTY = new InputFileChanges() {
    
            @Override
            public boolean accept(ChangeVisitor visitor) {
                return true;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/IncrementalInputProperties.java

    public interface IncrementalInputProperties {
        String getPropertyNameFor(Object value);
        InputFileChanges nonIncrementalChanges(ImmutableSortedMap<String, FileCollectionFingerprint> previous, ImmutableSortedMap<String, CurrentFileCollectionFingerprint> 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)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultExecutionStateChangeDetector.java

        }
    
        private static InputFileChanges errorHandling(Describable executable, InputFileChanges wrapped) {
            ErrorHandlingChangeContainer errorHandlingChangeContainer = new ErrorHandlingChangeContainer(executable, wrapped);
            return new InputFileChangesWrapper(wrapped, errorHandlingChangeContainer);
        }
    
        private static class InputFileChangesWrapper implements InputFileChanges {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ExecutionStateChanges.java

        ImmutableList<String> getChangeDescriptions();
    
        InputChangesInternal createInputChanges();
    
        static ExecutionStateChanges incremental(
            ImmutableList<String> changeDescriptions,
            InputFileChanges inputFileChanges,
            IncrementalInputProperties incrementalInputProperties
        ) {
            return new ExecutionStateChanges() {
                @Override
                public ImmutableList<String> getChangeDescriptions() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultIncrementalInputProperties.java

            }
            return propertyName;
        }
    
        @Override
        public InputFileChanges nonIncrementalChanges(ImmutableSortedMap<String, FileCollectionFingerprint> previous, ImmutableSortedMap<String, CurrentFileCollectionFingerprint> current) {
            return new DefaultInputFileChanges(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/IncrementalInputChanges.java

    import org.gradle.work.FileChange;
    
    public class IncrementalInputChanges implements InputChangesInternal {
    
        private final InputFileChanges changes;
        private final IncrementalInputProperties incrementalInputProperties;
    
        public IncrementalInputChanges(InputFileChanges changes, IncrementalInputProperties incrementalInputProperties) {
            this.changes = changes;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/DefaultInputFileChanges.java

    import org.gradle.internal.fingerprint.FileCollectionFingerprint;
    
    import java.util.SortedMap;
    
    public class DefaultInputFileChanges extends AbstractFingerprintChanges implements InputFileChanges {
        private static final String TITLE = "Input";
    
        public DefaultInputFileChanges(SortedMap<String, FileCollectionFingerprint> previous, SortedMap<String, CurrentFileCollectionFingerprint> current) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 1.7K bytes
    - Viewed (0)
Back to top