Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SingleFileTreeElementMatcher (0.2 sec)

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

    import java.io.File;
    import java.io.IOException;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.nio.file.Files;
    
    public class SingleFileTreeElementMatcher {
    
        private final Stat stat;
    
        public SingleFileTreeElementMatcher(Stat stat) {
            this.stat = stat;
        }
    
        public boolean elementWithRelativePathMatches(Spec<FileTreeElement> filter, File element, String relativePathString) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:25:10 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/continuous/BuildInputHierarchy.java

    public class BuildInputHierarchy {
        private volatile ValuedVfsHierarchy<InputDeclaration> root;
        private final SingleFileTreeElementMatcher matcher;
    
        public BuildInputHierarchy(CaseSensitivity caseSensitivity, Stat stat) {
            this.root = ValuedVfsHierarchy.emptyHierarchy(caseSensitivity);
            this.matcher = new SingleFileTreeElementMatcher(stat);
        }
    
        /**
         * Returns whether the given location is an input to the build.
         */
    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/ExecutionNodeAccessHierarchy.java

        private volatile ValuedVfsHierarchy<NodeAccess> root;
        private final SingleFileTreeElementMatcher matcher;
    
        public ExecutionNodeAccessHierarchy(CaseSensitivity caseSensitivity, Stat stat) {
            this.root = ValuedVfsHierarchy.emptyHierarchy(caseSensitivity);
            this.matcher = new SingleFileTreeElementMatcher(stat);
        }
    
        /**
         * Returns all nodes which access the location.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 12 20:10:34 UTC 2022
    - 6.9K bytes
    - Viewed (0)
Back to top