Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for destroyablePaths (0.24 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeleteTaskIntegrationTest.groovy

    
                    doLast {
                        def destroyablePaths = []
                        def propertyWalker = services.get(PropertyWalker)
                        TaskPropertyUtils.visitProperties(propertyWalker, it, new PropertyVisitor() {
                            @Override
                            void visitDestroyableProperty(Object value) {
                                destroyablePaths << value
                            }
                        })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 11:16:24 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultFinalizedExecutionPlan.java

                    return true;
                }
                return false;
            };
    
            for (String destroyablePath : destroyablePaths) {
                if (outputHierarchy.visitNodesAccessing(destroyablePath, false, conflicts)) {
                    return true;
                }
            }
            return false;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 28 21:49:39 UTC 2022
    - 28.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/MutationInfo.java

    import java.util.HashSet;
    import java.util.Set;
    
    class MutationInfo {
        private final Set<Node> nodesYetToConsumeOutput = new HashSet<>();
        final Set<String> outputPaths = new HashSet<>();
        final Set<String> destroyablePaths = new HashSet<>();
        boolean hasFileInputs;
        boolean hasOutputs;
        boolean hasLocalState;
        boolean hasValidationProblem;
        private boolean outputProduced;
    
        void started() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/execution/plan/LocalTaskNode.java

                mutations.hasLocalState = true;
            });
        }
    
        private void addDestroyablesToMutations(FileCollection destroyables) {
            destroyables
                .forEach(file -> getMutationInfo().destroyablePaths.add(file.getAbsolutePath()));
        }
    
        @Override
        public boolean hasPendingPreExecutionNodes() {
            return !hasVisitedMutationsNode;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 16 23:29:30 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/execution/plan/ResolveMutationsNode.java

            accessHierarchies.getOutputHierarchy().recordNodeAccessingLocations(node, mutations.outputPaths);
            accessHierarchies.getDestroyableHierarchy().recordNodeAccessingLocations(node, mutations.destroyablePaths);
        }
    
        private static final class ResolveTaskMutationsDetails implements ResolveTaskMutationsBuildOperationType.Details {
            private final TaskIdentity<?> taskIdentity;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 4.7K bytes
    - Viewed (0)
Back to top