Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for isSelfOrDescendant (0.59 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFile.java

                } else if (child.isDirectory()) {
                    visit(names, prefix + child.getName() + "/", child, ignoreDirs);
                }
            }
        }
    
        public boolean isSelfOrDescendant(File file) {
            if (file.getAbsolutePath().equals(getAbsolutePath())) {
                return true;
            }
            return isDescendant(file);
        }
    
        public boolean isDescendant(File file) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 18:31:52 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top