Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for elementWithRelativePathMatches (0.35 sec)

  1. subprojects/core/src/main/java/org/gradle/execution/plan/ExecutionNodeAccessHierarchy.java

                @Override
                boolean acceptChildren(Supplier<String> relativePathSupplier) {
                    String relativePathFromLocation = relativePathSupplier.get();
                    return matcher.elementWithRelativePathMatches(filter, new File(location, relativePathFromLocation), relativePathFromLocation);
                }
            });
        }
    
        /**
         * Records that a node accesses the given locations.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/BuildInputHierarchy.java

                this.spec = spec;
            }
    
            @Override
            public boolean contains(VfsRelativePath childPath) {
                return matcher.elementWithRelativePathMatches(spec, new File(childPath.getAbsolutePath()), childPath.getAsString());
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/plan/SingleFileTreeElementMatcher.java

    public class SingleFileTreeElementMatcher {
    
        private final Stat stat;
    
        public SingleFileTreeElementMatcher(Stat stat) {
            this.stat = stat;
        }
    
        public boolean elementWithRelativePathMatches(Spec<FileTreeElement> filter, File element, String relativePathString) {
            // A better solution for output files would be to record the type of the output file and then using this type here instead of looking at the disk.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top