Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getOutputFileLocationSnapshots (0.37 sec)

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

                : thisExecution.getOutputFileLocationSnapshots();
            OutputFileChanges outputFileChanges = new OutputFileChanges(
                lastExecution.getOutputFilesProducedByWork(),
                remainingPreviouslyProducedOutputs
            );
    
            // Collect changes that would trigger a rebuild
    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/impl/DefaultBeforeExecutionState.java

            this.outputFileLocationSnapshots = outputFileLocationSnapshots;
            this.detectedOutputOverlaps = detectedOutputOverlaps;
        }
    
        @Override
        public ImmutableSortedMap<String, FileSystemSnapshot> getOutputFileLocationSnapshots() {
            return outputFileLocationSnapshots;
        }
    
        @Override
        public Optional<OverlappingOutputs> getDetectedOverlappingOutputs() {
            return Optional.ofNullable(detectedOutputOverlaps);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/BeforeExecutionState.java

         *
         * @see PreviousExecutionState#getOutputFilesProducedByWork()
         * @see AfterExecutionResult#getAfterExecutionOutputState()
         */
        ImmutableSortedMap<String, FileSystemSnapshot> getOutputFileLocationSnapshots();
    
        /**
         * Returns overlapping outputs if they are detected.
         *
         * @see org.gradle.internal.execution.UnitOfWork#getOverlappingOutputHandling()
         */
    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/steps/OverlappingOutputsFilter.java

                ImmutableSortedMap<String, FileSystemSnapshot> unfilteredOutputSnapshotsBeforeExecution = context.getBeforeExecutionState()
                    .map(BeforeExecutionState::getOutputFileLocationSnapshots)
                    .orElse(ImmutableSortedMap.of());
    
                return filterOutputsAfterExecution(previousExecutionOutputSnapshots, unfilteredOutputSnapshotsBeforeExecution, unfilteredOutputSnapshotsAfterExecution);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:40:08 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/ExecutionOutputState.java

        boolean isSuccessful();
    
        /**
         * Snapshots of the roots of output properties.
         *
         * In the presence of overlapping outputs this might be different from
         * {@link BeforeExecutionState#getOutputFileLocationSnapshots()},
         * as this does not include overlapping outputs not produced by the work.
         */
        ImmutableSortedMap<String, FileSystemSnapshot> getOutputFilesProducedByWork();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/caching/impl/DefaultCachingStateFactory.java

                cacheKeyHasher.putString(propertyName);
                cacheKeyHasher.putHash(fingerprint.getHash());
            });
    
            beforeExecutionState.getOutputFileLocationSnapshots().keySet().forEach(propertyName -> {
                logger.warn("Appending output property name to build cache key: {}", propertyName);
                cacheKeyHasher.putString(propertyName);
            });
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 16:15:24 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/tasks/BaseSnapshotInputsBuildOperationResult.java

                )
                .orElse(null);
        }
    
        @Nullable
        public List<String> getOutputPropertyNames() {
            return getBeforeExecutionState()
                .map(BeforeExecutionState::getOutputFileLocationSnapshots)
                .map(ImmutableSortedMap::keySet)
                .filter(outputPropertyNames -> !outputPropertyNames.isEmpty())
                .map(ImmutableSet::asList)
                .orElse(null);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 11:36:42 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top