Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for getInputFileProperties (0.47 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultExecutionHistoryStore.java

                executionState.getImplementation(),
                executionState.getAdditionalImplementations(),
                executionState.getInputProperties(),
                prepareForSerialization(executionState.getInputFileProperties()),
                executionState.getOutputFilesProducedByWork(),
                executionState.isSuccessful()
            ));
        }
    
        @Override
        public void remove(String key) {
            store.remove(key);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 09:09:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/DefaultTaskCacheabilityResolverTest.groovy

            Collection<SelfDescribingSpec<TaskInternal>> doNotCacheIfSpecs = [],
            @Nullable OverlappingOutputs overlappingOutputs = null
        ) {
            def taskProperties = Stub(TaskProperties) {
                getInputFileProperties() >> ImmutableSortedSet.copyOf(inputFileProperties)
                hasDeclaredOutputs() >> !outputFileProperties.isEmpty()
                getOutputFileProperties() >> ImmutableSortedSet.copyOf(outputFileProperties)
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 18 08:25:11 UTC 2021
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStep.java

            this.delegate = delegate;
        }
    
        @Override
        public CachingResult execute(UnitOfWork work, C context) {
            ImmutableSortedMap<String, CurrentFileCollectionFingerprint> knownFileFingerprints = context.getInputFileProperties();
            ImmutableSortedMap<String, ValueSnapshot> knownValueSnapshots = context.getInputProperties();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:24 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AbstractSkipEmptyWorkStepTest.groovy

        def setup() {
            step = createStep()
            _ * work.inputFingerprinter >> inputFingerprinter
            context.getInputProperties() >> { knownInputProperties }
            context.getInputFileProperties() >> { knownInputFileProperties }
        }
    
        def "delegates when work has no source properties"() {
            def delegateResult = Mock(CachingResult)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Apr 06 02:21:30 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultPreviousExecutionStateSerializer.java

                implementationSnapshotSerializer.write(encoder, actionImpl);
            }
    
            writeInputProperties(encoder, execution.getInputProperties());
            writeFingerprints(encoder, execution.getInputFileProperties());
            writeSnapshots(encoder, execution.getOutputFilesProducedByWork());
    
            encoder.writeBoolean(execution.isSuccessful());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:25:58 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/StoreExecutionStateStepTest.groovy

            getImplementation() >> ImplementationSnapshot.of("Test", TestHashCodes.hashCodeFrom(123))
            getAdditionalImplementations() >> ImmutableList.of()
            getInputProperties() >> ImmutableSortedMap.of()
            getInputFileProperties() >> ImmutableSortedMap.of()
        }
    
        def outputFile = file("output.txt").text = "output"
        def outputFilesProducedByWork = snapshotsOf(output: outputFile)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/execution/ExecuteActionsTaskExecuterTest.groovy

        def state = new TaskStateInternal()
        def taskProperties = Stub(TaskProperties) {
            getInputFileProperties() >> ImmutableSortedSet.of()
            getOutputFileProperties() >> ImmutableSortedSet.of()
        }
        def previousState = Stub(PreviousExecutionState) {
            getInputProperties() >> ImmutableSortedMap.of()
            getInputFileProperties() >> ImmutableSortedMap.of()
            getImplementation() >> Stub(ClassImplementationSnapshot)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

                    inputProperty.getPropertyName(),
                    () -> InputParameterUtils.prepareInputParameterValue(inputProperty, task));
            }
            for (InputFilePropertySpec inputFileProperty : taskProperties.getInputFileProperties()) {
                // SkipWhenEmpty implies incremental.
                // If this file property is empty, then we clean up the previously generated outputs.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/plan/MissingTaskDependencyDetector.java

                    );
            }
            Set<String> taskInputs = new LinkedHashSet<>();
            Set<FilteredTree> filteredFileTreeTaskInputs = new LinkedHashSet<>();
            node.getTaskProperties().getInputFileProperties()
                .forEach(spec -> spec.getPropertyFiles().visitStructure(new FileCollectionStructureVisitor() {
                    @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/tasks/properties/DefaultTaskProperties.java

        @Override
        public ImmutableSortedSet<OutputFilePropertySpec> getOutputFileProperties() {
            return outputFileProperties;
        }
    
        @Override
        public ImmutableSortedSet<InputFilePropertySpec> getInputFileProperties() {
            return inputFileProperties;
        }
    
        @Override
        public ImmutableSortedSet<ServiceReferenceSpec> getServiceReferences() {
            return serviceReferences;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:29 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top