Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for getInputFileProperties (0.26 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/steps/BeforeExecutionContext.java

        }
    
        @Override
        public ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getInputFileProperties() {
            return getBeforeExecutionState()
                .map(BeforeExecutionState::getInputFileProperties)
                .orElseGet(super::getInputFileProperties);
        }
    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/steps/IdentityContext.java

            this.inputFileProperties = inputFileProperties;
            this.identity = identity;
        }
    
        protected IdentityContext(IdentityContext parent) {
            this(parent, parent.getInputProperties(), parent.getInputFileProperties(), parent.getIdentity());
        }
    
        /**
         * All currently known input properties.
         */
        public ImmutableSortedMap<String, ValueSnapshot> getInputProperties() {
            return inputProperties;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/SnapshotTransformInputsBuildOperationResult.java

        }
    
        @Override
        public void visitInputFileProperties(FilePropertyVisitor visitor) {
            getBeforeExecutionState()
                .map(BeforeExecutionState::getInputFileProperties)
                .ifPresent(inputFileProperties -> FilePropertyVisitState.visitInputFileProperties(inputFileProperties, visitor, inputFilePropertySpecs));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. subprojects/core/src/testFixtures/groovy/org/gradle/api/internal/tasks/AbstractSnapshotInputsBuildOperationResultTest.groovy

                ]),
                directory('/foo/sub', [
                    regularFile('/foo/sub/two.txt')
                ])
            ])
            def beforeExecutionState = Mock(BeforeExecutionState) {
                getInputFileProperties() >> ImmutableSortedMap.of('foo',
                    Mock(CurrentFileCollectionFingerprint) {
                        getHash() >> TestHashCodes.hashCodeFrom(345)
                        getFingerprints() >> [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/SkipEmptyIncrementalWorkStep.java

            return new PreviousExecutionContext(context) {
                @Override
                public ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getInputFileProperties() {
                    return inputFiles;
                }
            };
        }
    
        @Override
        protected ImmutableSortedMap<String, ValueSnapshot> getKnownInputProperties(PreviousExecutionContext context) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:30 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/TestTaskProperties.java

        boolean isDryRun();
    
        TestTaskFilters getFilters();
    
        TestTaskForkOptions getForkOptions();
    
        Stream<CandidateClassFile> getCandidateClassFiles();
    
        Stream<InputFileProperty> getInputFileProperties();
    
        Stream<OutputFileProperty> getOutputFileProperties();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:17:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/StoreExecutionStateStep.java

                return beforeExecutionState.getInputProperties();
            }
    
            @Override
            public ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getInputFileProperties() {
                return beforeExecutionState.getInputFileProperties();
            }
    
            @Override
            public HashCode getCacheKey() {
                return cacheKey;
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/PreviousExecutionState.java

         * Returns the cache key from the previous execution.
         */
        HashCode getCacheKey();
    
        /**
         * {@inheritDoc}
         */
        @Override
        ImmutableSortedMap<String, FileCollectionFingerprint> getInputFileProperties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 09:46:47 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/AfterExecutionState.java

     */
    public interface AfterExecutionState extends ExecutionInputState, ExecutionOutputState {
        @Override
        ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getInputFileProperties();
    
        /**
         * The cache key for the input state.
         */
        HashCode getCacheKey();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top