Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getInputFileProperties (0.14 sec)

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

                lastExecution.getInputFileProperties().keySet(),
                thisExecution.getInputFileProperties().keySet(),
                "Input file",
                executable);
            InputFileChanges nonIncrementalInputFileChanges = incrementalInputProperties.nonIncrementalChanges(
                lastExecution.getInputFileProperties(),
                thisExecution.getInputFileProperties()
            );
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/changes/ExecutionStateChanges.java

                    return changeDescriptions;
                }
    
                @Override
                public InputChangesInternal createInputChanges() {
                    return new NonIncrementalInputChanges(beforeExecutionState.getInputFileProperties(), incrementalInputProperties);
                }
            };
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top