Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 31 for getInputFileProperties (0.55 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStep.java

                .map(ExecutionInputState::getInputFileProperties)
                .orElse(ImmutableSortedMap.of());
    
            InputFingerprinter.Result newInputs = work.getInputFingerprinter().fingerprintInputProperties(
                previousInputPropertySnapshots,
                previousInputFileFingerprints,
                context.getInputProperties(),
                context.getInputFileProperties(),
                work::visitRegularInputs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionInputState.java

         */
        ImmutableSortedMap<String, ValueSnapshot> getInputProperties();
    
        /**
         * The file inputs.
         */
        ImmutableSortedMap<String, ? extends FileCollectionFingerprint> getInputFileProperties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/BeforeExecutionState.java

     */
    public interface BeforeExecutionState extends ExecutionInputState {
        /**
         * {@inheritDoc}
         */
        @Override
        ImmutableSortedMap<String, CurrentFileCollectionFingerprint> getInputFileProperties();
    
        /**
         * Snapshots of the roots of output properties.
         *
         * This includes snapshots for the whole output {@link org.gradle.api.file.FileCollection}.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/TaskProperties.java

        /**
         * Input file properties.
         *
         * It is guaranteed that all the {@link InputFilePropertySpec}s have a name and that the names are unique.
         */
        ImmutableSortedSet<InputFilePropertySpec> getInputFileProperties();
    
        /**
         * Output file properties.
         *
         * It is guaranteed that all the {@link OutputFilePropertySpec}s have a name and that the names are unique.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:32:26 UTC 2023
    - 3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/AbstractInputExecutionState.java

        }
    
        @Override
        public ImmutableSortedMap<String, ValueSnapshot> getInputProperties() {
            return inputProperties;
        }
    
        @Override
        public ImmutableSortedMap<String, C> getInputFileProperties() {
            return inputFileProperties;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/testFixtures/groovy/org/gradle/internal/execution/TestExecutionHistoryStore.java

                executionState.getImplementation(),
                executionState.getAdditionalImplementations(),
                executionState.getInputProperties(),
                prepareForSerialization(executionState.getInputFileProperties()),
                executionState.getOutputFilesProducedByWork(),
                executionState.isSuccessful()
            ));
        }
    
        @Override
        public void remove(String key) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:09:23 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskProperties.java

        }
    
        @Override
        public Stream<CandidateClassFile> getCandidateClassFiles() {
            return candidateClassFiles.stream();
        }
    
        @Override
        public Stream<InputFileProperty> getInputFileProperties() {
            return inputFileProperties.stream();
        }
    
        @Override
        public Stream<OutputFileProperty> getOutputFileProperties() {
            return outputFileProperties.stream();
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationResult.java

    
        @Override
        public void visitInputFileProperties(final SnapshotTaskInputsBuildOperationType.Result.InputFilePropertyVisitor visitor) {
            getBeforeExecutionState()
                .map(BeforeExecutionState::getInputFileProperties)
                .ifPresent(inputFileProperties -> SnapshotTaskInputsResultFilePropertyVisitState.visitInputFileProperties(inputFileProperties, visitor, inputFilePropertySpecs));
        }
    
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:20:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultCachingStateFactory.java

                }
                cacheKeyHasher.putString(propertyName);
                valueSnapshot.appendToHasher(cacheKeyHasher);
            });
    
            beforeExecutionState.getInputFileProperties().forEach((propertyName, fingerprint) -> {
                logger.warn("Appending input file fingerprints for '{}' to build cache key: {} - {}",
                    propertyName, fingerprint.getHash(), fingerprint);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top