- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for appendReproducibleNewLine (0.09 sec)
-
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/codegen/PluginIdExtensionsFacade.kt
) { file.bufferedWriter().use { writer -> writer.appendReproducibleNewLine(fileHeader) pluginIdExtensionDeclarationsFor( gradleJars, pluginDependenciesSpecQualifiedName, pluginDependencySpecQualifiedName ).forEach { extension -> writer.write("\n") writer.appendReproducibleNewLine(extension) } } } privateRegistered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 3.1K bytes - Viewed (0) -
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/IO.kt
/** * Appends value to the given Appendable and simple `\n` line separator after it. * * Always using the same line separator on all systems to allow for reproducible outputs. */ fun Appendable.appendReproducibleNewLine(value: CharSequence = ""): Appendable { assert('\r' !in value) { "Unexpected line ending in string." } return append(value).append("\n")Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Sat Sep 30 16:17:27 UTC 2023 - 1K bytes - Viewed (0)