Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getInputFileProperties (0.54 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

                addLocalStateFilesToMutations(taskProperties.getLocalStateFiles());
                addDestroyablesToMutations(taskProperties.getDestroyableFiles());
    
                mutations.hasFileInputs = !taskProperties.getInputFileProperties().isEmpty();
                // piggyback on mutation resolution to declare service references as used services
                task.acceptServiceReferences(taskProperties.getServiceReferences());
            } catch (Exception e) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
Back to top