- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for unchecked_cast (0.14 sec)
-
build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts
if (project.buildRunningOnCi.get() && project.hasProperty("teamcity")) { @Suppress("UNCHECKED_CAST") val teamcity = project.property("teamcity") as MutableMap<String, Any> teamcity["teamcity.build.tempDir"] = "" } }
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Dec 19 06:44:41 UTC 2025 - 18.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-UtilJvm.kt
@Suppress("NOTHING_TO_INLINE") internal inline fun <K, V> Map<K, V>.unmodifiable(): Map<K, V> = Collections.unmodifiableMap(this) /** Returns an immutable copy of this. */ @Suppress("UNCHECKED_CAST") internal fun <T> List<T>.toImmutableList(): List<T> = when { this.isEmpty() -> emptyList() this.size == 1 -> Collections.singletonList(this[0]) // Collection.toArray returns Object[] (covariant).Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 10.2K bytes - Viewed (1)