- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 45 for lety (0.01 seconds)
-
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/classanalysis/ClassGraph.kt
val classes: MutableMap<String, ClassDetails> = linkedMapOf() val entryPoints: MutableSet<ClassDetails> = linkedSetOf() val shadowPackagePrefix = shadowPackage.takeIf(String::isNotEmpty) ?.let { it.replace('.', '/') + "/" } ?: "" operator fun get(className: String) = classes.computeIfAbsent(className) {
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sat Sep 30 16:17:28 GMT 2023 - 2.6K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt
} } } private fun readProjects(): Map<String, ProjectInfo> { val projects: MutableMap<String, ProjectInfo> = mutableMapOf() Gson().let { gson -> val paths = projectPaths.get() val detailsFiles = targetRuntimeDetailsFiles.get() val buildFiles = projectBuildFiles.get() require(paths.size == detailsFiles.size)Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 13.8K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt
@get:Internal abstract val minimumSupported: Property<String> @get:Internal abstract val compatibilityDocFile: RegularFileProperty @TaskAction fun fetch() = fetchLatestAgpVersions().let { fetchedVersions -> updateProperties(fetchedVersions) updateCompatibilityDoc(fetchedVersions.latests) } private data class FetchedVersions( val latests: List<String>,Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Oct 24 09:10:29 GMT 2025 - 7.6K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractVersionsUpdateTask.kt
setAttribute(XMLConstants.ACCESS_EXTERNAL_DTD, "") setAttribute(XMLConstants.ACCESS_EXTERNAL_SCHEMA, "") }.newDocumentBuilder() .parse(url) .getElementsByTagName("version").let { versions -> (0 until versions.length) .map { idx -> (versions.item(idx) as Element).textContent } .reversed() } protected
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Oct 24 09:10:28 GMT 2025 - 3.4K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/BuildParams.kt
fun Project.selectStringProperties(vararg propertyNames: String): Map<String, String> = propertyNames.mapNotNull { propertyName -> stringPropertyOrNull(propertyName)?.let { propertyValue -> propertyName to propertyValue } }.toMap() /** * Creates a [Provider] that returns `true` when this [Provider] has a value
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Jan 19 05:13:29 GMT 2026 - 18K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
} buildLibs?.let { codenarc(buildLibs.findLibrary("codenarc").get()) codenarc(buildLibs.findLibrary("kotlinCompilerEmbeddable").get()) } } fun configFile(fileName: String) = resources.text.fromFile(rules.asFileTree.filter { it.name == fileName }) checkstyle { buildLibs?.let {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:47:14 GMT 2026 - 8.7K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt
abstract val minimumSupported: Property<String> @get:Internal abstract val compatibilityDocFile: RegularFileProperty @TaskAction fun action() = fetchLatestKotlinVersions().let { latestKotlinVersions -> updateProperties { setProperty("latests", latestKotlinVersions.joinToString(",")) } updateCompatibilityDoc( compatibilityDocFile,
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Oct 29 08:29:55 GMT 2025 - 4.3K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts
buildReceiptFileContents = repoRoot() .dir("incoming-distributions") .file(BuildReceipt.buildReceiptFileName) .let(providers::fileContents) .asText } } fun isRunningInstallTask() = listOf("install", "installAll")
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:46:35 GMT 2026 - 5.8K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/PerformanceTestsPass.kt
val dependencyBaselines = performanceTestProject.performanceTests .first { it.testProjects.isNotEmpty() }.let { "%dep.${it.id}.performance.baselines%" } gradleRunnerStep( model, ":$performanceProjectName:$taskName", extraParameters =Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Jan 07 10:42:35 GMT 2026 - 5.8K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/FunctionalTest.kt
private val objectMapper = ObjectMapper() fun fromJson(jsonObject: Map<String, Any>): ParallelizationMethod { val methodJsonNode = (jsonObject["parallelizationMethod"] as? Map<*, *>)?.let { objectMapper.valueToTree<JsonNode>(it) } ?: return None return when (methodJsonNode.get("name")?.asText()) { null -> None None::class.simpleName -> None
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 09 05:26:45 GMT 2025 - 5.3K bytes - Click Count (0)