Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 7 of 7 for eachFile (0.22 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalDistributionBwcSetupPluginFuncTest.groovy

                doLast {
                    configurations.expandedDist.files.each {
                        println "expandedRootPath " + (it.absolutePath - project.rootDir.absolutePath)
                        it.eachFile { nested ->
                            println "nested folder " + (nested.absolutePath - project.rootDir.absolutePath)
                        }
                    }
                }
            }
            """
            when:
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 7.9K bytes
    - Click Count (0)
  2. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionArchiveCheckPlugin.java

                }
                t.into(archiveExtractionDir);
                // common sanity checks on extracted archive directly as part of checkExtraction
                t.eachFile(fileCopyDetails -> assertNoClassFile(fileCopyDetails.getFile()));
            });
        }
    
        private static void assertLinesInFile(Path path, List<String> expectedLines) {
            try {
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.6K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/precommit/ThirdPartyAuditTask.java

                    String metaInfPrefix = "META-INF/versions/" + majorVersion;
                    spec.include(metaInfPrefix + "/**");
                    // Drop the version specific prefix
                    spec.eachFile(details -> details.setPath(details.getPath().replace(metaInfPrefix, "")));
                    spec.setIncludeEmptyDirs(false);
                }));
            });
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Thu Jun 17 08:59:22 GMT 2021
    - 16.2K bytes
    - Click Count (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java

                task.from(extension.getUserManual().getRoot(), sub -> {
                    sub.include("**/*.adoc");
                    // Flatten adocs into a single directory
                    sub.eachFile(fcd -> fcd.setRelativePath(RelativePath.parse(true, fcd.getName())));
                });
    
                // From the snippets, filter out files generated if the build contained was ever executed
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 22:33:18 GMT 2026
    - 17.8K bytes
    - Click Count (0)
  5. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/test/AntFixture.groovy

                realArgs.addAll(arguments)
            }
            if (Os.isFamily(Os.FAMILY_WINDOWS) && (useShell || spawn)) {
                realArgs.add('"')
            }
            commandString.eachLine { line -> logger.info(line) }
    
            ant.exec(executable: realExecutable, spawn: spawn, dir: cwd, taskname: name) {
                realEnv.each { key, value -> env(key: key, value: value) }
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 10.1K bytes
    - Click Count (0)
  6. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/RestTestsFromSnippetsTask.groovy

                if (null == response.skip) {
                    current.println("  - match: ")
                    current.println("      \$body: ")
                    replaceBlockQuote(response.contents).eachLine {
                        current.println("        $it")
                    }
                }
            }
    
            void emitDo(String method, String pathAndQuery, String body,
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 19.5K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/groovy/org/elasticsearch/gradle/internal/doc/SnippetsTask.groovy

                        }
                    }
                    perSnippet(snippet)
                    snippet = null
                }
                file.eachLine('UTF-8') { String line, int lineNumber ->
                    Matcher matcher
                    matcher = line =~ /\[testenv="([^"]+)"\]\s*/
                    if (matcher.matches()) {
                        testEnv = matcher.group(1)
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Mon Sep 20 10:08:26 GMT 2021
    - 17.8K bytes
    - Click Count (0)
Back to Top