- Sort Score
- Num 10 results
- Language All
Results 21 - 30 of 450 for kotlin (0.05 seconds)
-
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinModifiersChangeTest.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.6K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt
"Gradle is tested with Kotlin", latestKotlinVersions.first(), latestKotlinVersions.last() ) } private fun fetchLatestKotlinVersions() = fetchAndSelectKotlinVersions( minimumSupported.get(), "https://repo1.maven.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/maven-metadata.xml" ) privateCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Oct 29 08:29:55 GMT 2025 - 4.3K bytes - Click Count (0) -
okhttp/build.gradle.kts
implementation(libs.junit) implementation(libs.kotlin.test.annotations) implementation(libs.kotlin.test.common) implementation(libs.kotlin.test.junit) implementation(libs.kotlinx.coroutines.core) implementation(libs.kotlinx.serialization.core) implementation(libs.kotlinx.serialization.json) implementation(libs.openjsse)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Feb 04 22:16:39 GMT 2026 - 11.4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/SinceAndIncubatingRulesKotlinTest.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Jun 06 17:52:09 GMT 2025 - 17.8K bytes - Click Count (0) -
okhttp-coroutines/README.md
OkHttp Coroutines ================= Support for Kotlin clients using coroutines. ```kotlin val call = client.newCall(request) call.executeAsync().use { response -> withContext(Dispatchers.IO) { println(response.body?.string()) } } ``` This is implemented using `suspendCancellableCoroutine` but uses the standard Dispatcher in OkHttp. This means that by default Kotlin's Dispatchers are not used.
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Nov 09 15:47:27 GMT 2023 - 609 bytes - Click Count (0) -
okcurl/build.gradle.kts
import kotlinx.validation.ApiValidationExtension import okhttp3.buildsupport.testJavaVersion import org.graalvm.buildtools.gradle.dsl.GraalVMExtension import org.jetbrains.kotlin.gradle.dsl.JvmTarget import org.jetbrains.kotlin.gradle.tasks.KotlinCompile import ru.vyarus.gradle.plugin.animalsniffer.AnimalSnifferExtension plugins { kotlin("jvm") id("okhttp.publish-conventions") id("okhttp.jvm-conventions") id("okhttp.quality-conventions")Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Thu Feb 05 09:17:33 GMT 2026 - 2.4K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/KotlinInternalFilteringTest.kt
package gradlebuild.binarycompatibility import org.intellij.lang.annotations.Language import org.junit.Test /** * Asserts Kotlin `internal` members are filtered from the comparison. */ class KotlinInternalFilteringTest : AbstractBinaryCompatibilityTest() { @Language("kotlin") private val internalMembers = """ internal fun foo() {} internal val bar = "bar"
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 14 02:17:00 GMT 2025 - 6.5K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/PublicKotlinDslApi.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sat Sep 30 16:17:28 GMT 2023 - 903 bytes - Click Count (0) -
architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md
## Context Gradle's public API requires equal access from all JVM-based languages. Kotlin, Groovy, Java, and other JVM-based languages should be able to use the Gradle API without relying on another language's standard library. Historically, Gradle has shipped with some Groovy types in very prominent APIs. This required the Kotlin DSL to add special integration to work with Groovy closures.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 1.8K bytes - Click Count (0) -
build-logic/build.gradle.kts
plugins { `kotlin-dsl` id("com.diffplug.spotless") version "8.4.0" } configure<com.diffplug.gradle.spotless.SpotlessExtension> { kotlin { target("src/**/*.kt") ktlint() } kotlinGradle { target("*.kts") targetExclude("build/**/*.kts") ktlint() } } repositories { google() mavenCentral() gradlePluginPortal() } dependencies { implementation(libs.gradlePlugin.kotlin)Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Wed Mar 18 18:05:02 GMT 2026 - 1.1K bytes - Click Count (0)