- Sort Score
- Result 10 results
- Languages All
Results 1 - 7 of 7 for WorkingDir (0.1 sec)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-dsl-upstream-candidates.kt
resolve(child) fun ExecOperations.execAndGetStdout(workingDir: File, ignoreExitValue: Boolean, vararg args: String): String { val out = ByteArrayOutputStream() exec { isIgnoreExitValue = ignoreExitValue commandLine(*args) standardOutput = out this.workingDir = workingDir } return out.toString().trim() }
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 21:39:46 UTC 2024 - 1K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/CheckTeamCityKotlinDSL.kt
applyDefaultSettings() steps { script { name = "RUN_MAVEN_CLEAN_VERIFY" scriptContent = "./mvnw clean verify -Dmaven.repo.local=../build" workingDir = ".teamcity" } script { name = "CLEAN_M2" executionMode = BuildStep.ExecutionMode.ALWAYS
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 30 04:10:13 UTC 2024 - 1K bytes - Viewed (0) -
build-logic-settings/build-environment/src/main/kotlin/gradlebuild/basics/BuildEnvironmentService.kt
@Suppress("UnstableApiUsage") private fun git(vararg args: String): Provider<String> { val projectDir = parameters.rootProjectDir.asFile.get() val execOutput = providers.exec { workingDir = projectDir isIgnoreExitValue = true commandLine = listOf("git", *args) if (OperatingSystem.current().isWindows) { commandLine = listOf("cmd.exe", "/d", "/c") + commandLine
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 26 10:02:49 UTC 2024 - 2K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
).joinToString(" "), 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 }'`
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 08 12:58:46 UTC 2024 - 6.5K bytes - Viewed (0) -
.teamcity/src/main/kotlin/util/AdHocPerformanceScenario.kt
val buildTypeThis = this steps { killProcessStep(buildTypeThis, KILL_ALL_GRADLE_PROCESSES, os) substDirOnWindows(os) gradleWrapper { name = "GRADLE_RUNNER" workingDir = os.perfTestWorkingDir gradleParams = ( performanceTestCommandLine( "clean performance:%testProject%PerformanceAdHocTest --tests \"%scenario%\"",
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Oct 03 06:45:18 UTC 2024 - 4.9K bytes - Viewed (0) -
src/cmd/asm/internal/lex/tokenizer.go
scanner.ScanInts | scanner.ScanStrings | scanner.ScanComments s.Position.Filename = name s.IsIdentRune = isIdentRune return &Tokenizer{ s: &s, base: src.NewFileBase(name, objabi.AbsFile(objabi.WorkingDir(), name, *flags.TrimPath)), line: 1, file: file, } } // We want center dot (·) and division slash (∕) to work as identifier characters. func isIdentRune(ch rune, i int) bool { if unicode.IsLetter(ch) {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Aug 04 20:35:21 UTC 2022 - 3K bytes - Viewed (0) -
.teamcity/src/main/kotlin/configurations/PerformanceTest.kt
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Sep 24 06:22:49 UTC 2024 - 5.6K bytes - Viewed (0)