- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 10 for checkoutDir (0.08 seconds)
-
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionBwcSetupPlugin.java
private final boolean extractedAssembleSupported; DistributionProject(String name, String baseDir, Version version, String classifier, String extension, File checkoutDir) { this.name = name; this.checkoutDir = checkoutDir; this.projectPath = baseDir + "/" + name; this.expandedDistDirSupport = version.onOrAfter("7.10.0") && (name.endsWith("zip") || name.endsWith("tar"));Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Aug 18 09:11:28 GMT 2021 - 14.5K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcSetupExtension.java
private Provider<File> checkoutDir; public BwcSetupExtension( Project project, Provider<BwcVersions.UnreleasedVersionInfo> unreleasedVersionInfo, Provider<InternalDistributionBwcSetupPlugin.BwcTaskThrottle> bwcTaskThrottleProvider, Provider<File> checkoutDir ) { this.project = project;Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Aug 18 09:11:28 GMT 2021 - 6.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcGitExtension.java
import java.io.File; public class BwcGitExtension { private Provider<Version> bwcVersion; private Provider<String> bwcBranch; private Property<File> checkoutDir; @Inject public BwcGitExtension(ObjectFactory objectFactory) { this.checkoutDir = objectFactory.property(File.class); } public Provider<Version> getBwcVersion() { return bwcVersion; }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.3K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalBwcGitPluginFuncTest.groovy
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 03 10:22:28 GMT 2021 - 2.5K bytes - Click Count (0) -
build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rest/YamlRestCompatTestPluginFuncTest.groovy
String test = "10_basic.yml" //add the compatible test and api files, these are the prior version's normal yaml rest tests file("distribution/bwc/minor/checkoutDir/rest-api-spec/src/main/resources/rest-api-spec/api/" + api) << "" file("distribution/bwc/minor/checkoutDir/src/yamlRestTest/resources/rest-api-spec/test/" + test) << "" when: def result = gradleRunner("yamlRestTestV${compatibleVersion}CompatTest").build()
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Thu Sep 30 16:30:48 GMT 2021 - 16.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalBwcGitPlugin.java
LoggedExec.exec(execOperations, spec -> { spec.workingDir(checkoutDir); spec.commandLine("git", "checkout", effectiveRefSpec); }); String checkoutHash = GitInfo.gitInfo(checkoutDir).getRevision(); logger.lifecycle("Checkout hash for {} is {}", project.getPath(), checkoutHash);
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 9.9K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/rest/compat/YamlRestCompatTestPlugin.java
} // TODO: implement custom extension that allows us move around of the projects between major versions and still find them private Path getCompatProjectPath(Project project, Path checkoutDir) { return checkoutDir.resolve(project.getPath().replaceFirst(":", "").replace(":", File.separator)); }Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Fri Sep 03 16:26:11 GMT 2021 - 11.7K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
buildJvm = buildJvm, extraSteps = { script { name = "CALCULATE_MD5_VERSION_FOR_DOGFOODING_DISTRIBUTION" workingDir = "%teamcity.build.checkoutDir%/dogfood-first-for-hash" scriptContent = """ set -x MD5=`find . -type f | sort | xargs md5sum | md5sum | awk '{ print $1 }'`Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 7.1K bytes - Click Count (0) -
.teamcity/src/main/kotlin/common/Os.kt
} enum class Os( val agentRequirement: String, val androidHome: String, val jprofilerHome: String, val perfTestWorkingDir: String = "%teamcity.build.checkoutDir%", val perfTestJavaVendor: JvmVendor = JvmVendor.OPENJDK, val buildJavaVersion: JvmVersion = BuildToolBuildJvm.version, val perfTestJavaVersion: JvmVersion = JvmVersion.JAVA_17,
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jan 15 19:30:24 GMT 2026 - 4K bytes - Click Count (0) -
.teamcity/src/main/kotlin/common/PerformanceTestExtensions.kt
executionMode = BuildStep.ExecutionMode.ALWAYS scriptContent = """ subst p: /d subst p: "%teamcity.build.checkoutDir%" """.trimIndent() skipConditionally() } } } fun BuildType.cleanUpGitUntrackedFilesAndDirectories() { steps { script {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Dec 22 07:15:16 GMT 2025 - 4K bytes - Click Count (0)