Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for destroyablePaths (0.5 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/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)
  3. 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