Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 26 for inputFileProperties (0.25 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/tasks/FilePropertyVisitState.java

            super(propertySpecsByName);
            this.visitor = visitor;
        }
    
        public static void visitInputFileProperties(ImmutableSortedMap<String, CurrentFileCollectionFingerprint> inputFileProperties, FilePropertyVisitor visitor, Set<InputFilePropertySpec> inputFilePropertySpecs) {
            ImmutableMap<String, InputFilePropertySpec> propertySpecsByName = Maps.uniqueIndex(inputFilePropertySpecs, PropertySpec::getPropertyName);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 3K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsResultFilePropertyVisitState.java

            .build();
        private final SnapshotTaskInputsBuildOperationType.Result.InputFilePropertyVisitor visitor;
    
        public static void visitInputFileProperties(ImmutableSortedMap<String, CurrentFileCollectionFingerprint> inputFileProperties, SnapshotTaskInputsBuildOperationType.Result.InputFilePropertyVisitor visitor, Set<InputFilePropertySpec> inputFilePropertySpecs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:16:07 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultPreviousExecutionState.java

            ImmutableSortedMap<String, FileCollectionFingerprint> inputFileProperties,
            ImmutableSortedMap<String, FileSystemSnapshot> outputFilesProducedByWork,
            boolean successful
        ) {
            super(implementation, additionalImplementations, inputProperties, inputFileProperties);
            this.outputFilesProducedByWork = outputFilesProducedByWork;
            this.originMetadata = originMetadata;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 17:44:52 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/tasks/SnapshotTaskInputsBuildOperationResult.java

            getBeforeExecutionState()
                .map(BeforeExecutionState::getInputFileProperties)
                .ifPresent(inputFileProperties -> SnapshotTaskInputsResultFilePropertyVisitState.visitInputFileProperties(inputFileProperties, visitor, inputFilePropertySpecs));
        }
    
        @Nullable
        @SuppressWarnings("deprecation")
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 07 15:20:39 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  5. platforms/enterprise/enterprise/src/main/java/org/gradle/internal/enterprise/test/impl/DefaultTestTaskPropertiesService.java

            this.javaModuleDetector = javaModuleDetector;
        }
    
        @Override
        public TestTaskProperties collectProperties(Test task) {
            ImmutableList.Builder<InputFileProperty> inputFileProperties = ImmutableList.builder();
            ImmutableList.Builder<OutputFileProperty> outputFileProperties = ImmutableList.builder();
            TaskPropertyUtils.visitProperties(propertyWalker, task, new PropertyVisitor() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/CaptureIncrementalStateBeforeExecutionStepTest.groovy

            step.execute(work, context)
    
            then:
            def ex = thrown RuntimeException
            ex == failure
    
            _ * context.inputProperties >> ImmutableSortedMap.of()
            _ * context.inputFileProperties >> ImmutableSortedMap.of()
            1 * outputSnapshotter.snapshotOutputs(work, _) >> { throw failure }
            interaction { snapshotState() }
            0 * _
    
            assertOperation(ex)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/IdentifyStepTest.groovy

                assert delegateContext.inputProperties as Map == ["input": inputSnapshot]
                assert delegateContext.inputFileProperties as Map == ["input-files": inputFilesFingerprint]
                delegateResult
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  8. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolverTest.groovy

            new SelfDescribingSpec<TaskInternal>(spec, description)
        }
    
        @Nullable
        CachingDisabledReason determineNoCacheReason(
            Collection<InputFilePropertySpec> inputFileProperties,
            Collection<OutputFilePropertySpec> outputFileProperties,
            Collection<SelfDescribingSpec<TaskInternal>> cacheIfSpecs = [],
            Collection<SelfDescribingSpec<TaskInternal>> doNotCacheIfSpecs = [],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 08:25:11 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractResolveCachingStateStepTest.groovy

        def buildCache = Mock(BuildCacheController)
        S step
        def delegateResult = Stub(UpToDateResult)
        def beforeExecutionState = Stub(BeforeExecutionState) {
            inputFileProperties >> ImmutableSortedMap.of()
            inputProperties >> ImmutableSortedMap.of()
            outputFileLocationSnapshots >> ImmutableSortedMap.of()
        }
    
        abstract S createStep()
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/ResolveChangesStepTest.groovy

        def changeDetector = Mock(ExecutionStateChangeDetector)
        def step = new ResolveChangesStep<>(changeDetector, delegate)
        def beforeExecutionState = Stub(BeforeExecutionState) {
            inputFileProperties >> ImmutableSortedMap.of()
            inputProperties >> ImmutableSortedMap.of()
            outputFileLocationSnapshots >> ImmutableSortedMap.of()
        }
        def delegateResult = Mock(Result)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:34 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top