Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getAsFileTree (0.05 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindMissingDocumentationFiles.java

        @TaskAction
        public void checkMissingFiles() {
            String directoryPath = getDocumentationRoot().get().toString();
            FileCollection jsonFiles = getJsonFilesDirectory().getAsFileTree().filter(file -> file.getName().endsWith(".json"));
    
            try {
                List<String> allErrors = new ArrayList<>();
                Set<String> allExistingAnchors = findAllAdocAnchors(directoryPath);
    
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Thu Aug 21 15:38:58 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBadMultiLangSnippets.java

        public abstract DirectoryProperty getDocumentationRoot();
    
        @TaskAction
        public void checkMultiLanguageSnippets() {
            Map<File, List<Error>> errors = new TreeMap<>();
    
            getDocumentationRoot().getAsFileTree().matching(spec -> spec.include("**/*.adoc")).forEach(file -> {
                gatherBadSnippetsInFile(file, errors);
            });
    
            if (!errors.isEmpty()) {
    Registered: Wed Dec 31 11:36:14 UTC 2025
    - Last Modified: Fri Aug 29 10:12:17 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top