Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for destroyablePaths (0.22 sec)

  1. 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)
  2. 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)
Back to top