- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 45 for root_dir (0.06 seconds)
-
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
block() } } private fun setupRunBinaryCompatibility(v1: File.() -> Unit, v2: File.() -> Unit): File { rootDir.withFile("version.txt", "9.0.0") return rootDir.withUniqueDirectory("input-build").apply { withFile( "gradle/libs.versions.toml", """ [libraries]
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 11:30:48 GMT 2026 - 18.3K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/vagrant/VagrantShellTask.java
public void runScript() { String rootDir = getProject().getRootDir().toString(); if (extension.isWindowsVM()) { service.execute(spec -> { spec.setCommand("winrm"); List<String> script = new ArrayList<>(); script.add("try {"); script.add("cd " + convertWindowsPath(getProject(), rootDir));
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 4.3K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/GitInfoPlugin.java
} @Override public void apply(Project project) { File rootDir = (project.getGradle().getParent() == null) ? project.getRootDir() : project.getGradle().getParent().getRootProject().getRootDir(); gitInfo = objectFactory.property(GitInfo.class).value(factory.provider(() -> GitInfo.gitInfo(rootDir) )); gitInfo.disallowChanges();Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.9K bytes - Click Count (0) -
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) -
src/test/java/org/codelibs/core/io/ResourceTraversalTest.java
*/ @Test public void testForEachFile() throws Exception { final File rootDir = ResourceUtil.getBuildDir(getClass()); final String path = ResourceUtil.getResourcePath(getClass()); final int pos = path.lastIndexOf("/"); final String baseDirectory = path.substring(0, pos); ResourceTraversalUtil.forEach(rootDir, baseDirectory, (ResourceHandler) (path1, is) -> { try {Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 6K bytes - Click Count (0) -
build-logic/src/main/kotlin/okhttp.testing-conventions.gradle.kts
} systemProperty("okhttp.platform", platform) systemProperty("junit.jupiter.extensions.autodetection.enabled", "true") } tasks.withType<Test>().configureEach { environment("OKHTTP_ROOT", rootDir) } plugins.withId("org.jetbrains.kotlin.jvm") { val test = tasks.named("test") tasks.register("jvmTest") { description = "Get 'gradlew jvmTest' to run the tests of JVM-only modules" dependsOn(test)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sat Feb 07 07:16:57 GMT 2026 - 1.7K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/info/GitInfo.java
} public String getRevision() { return revision; } public String getOrigin() { return origin; } public static GitInfo gitInfo(File rootDir) { try { /* * We want to avoid forking another process to run git rev-parse HEAD. Instead, we will read the refs manually. TheCreated: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 7.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/info/GlobalBuildInfoPlugin.java
JavaVersion minimumRuntimeVersion = JavaVersion.toVersion(getResourceContents("/minimumRuntimeVersion")); File runtimeJavaHome = findRuntimeJavaHome(); File rootDir = project.getRootDir(); GitInfo gitInfo = GitInfo.gitInfo(rootDir); BuildParams.init(params -> { params.reset(); params.setRuntimeJavaHome(runtimeJavaHome);
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Aug 17 10:02:58 GMT 2021 - 18.1K bytes - Click Count (0) -
build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/Builders.kt
) { private val structure = settings.extensions.getByType(ProjectStructure::class.java) fun subproject(projectName: String) { settings.include(projectName) val projectDir = settings.rootDir.resolve("$basePath/$projectName") structure.projectBaseDirs.add(projectDir) settings.project(":$projectName").projectDir = projectDir } } class ElementId(val id: String) : Serializable {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jan 30 15:37:56 GMT 2026 - 3K bytes - Click Count (0) -
compat/maven-model/src/test/java/org/apache/maven/model/pom/PomMemoryAnalyzer.java
System.exit(1); } Path rootDir = Paths.get(args[0]); PomMemoryAnalyzer analyzer = new PomMemoryAnalyzer(); MavenStaxReader reader = new MavenStaxReader(); // Find all pom.xml files, excluding those under src/ or target/ Files.walk(rootDir) .filter(path -> path.getFileName().toString().equals("pom.xml"))
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Mar 21 04:56:21 GMT 2025 - 13.4K bytes - Click Count (0)