Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 777 for kotlinc (0.24 sec)

  1. okhttp-android/src/main/baseline-prof.txt

    Landroidx/tracing/TraceApi18Impl;
    Lkotlin/ExceptionsKt;
    Lkotlin/Function;
    Lkotlin/Lazy;
    Lkotlin/NoWhenBranchMatchedException;
    Lkotlin/Pair;
    Lkotlin/Result$Failure;
    Lkotlin/Result;
    Lkotlin/ResultKt;
    Lkotlin/SynchronizedLazyImpl;
    Lkotlin/TuplesKt;
    Lkotlin/UNINITIALIZED_VALUE;
    Lkotlin/UninitializedPropertyAccessException;
    Lkotlin/Unit;
    Lkotlin/collections/AbstractCollection$toString$1;
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Mar 21 11:22:00 GMT 2022
    - 127.9K bytes
    - Viewed (0)
  2. okhttp-coroutines/build.gradle.kts

      implementation(libs.kotlinx.coroutines.core)
      api(libs.squareup.okio)
      api(libs.kotlin.stdlib)
    
      testImplementation(libs.kotlin.test.annotations)
      testImplementation(libs.kotlin.test.common)
      testImplementation(libs.kotlin.test.junit)
      testApi(libs.assertk)
      testImplementation(projects.okhttpTestingSupport)
      testImplementation(libs.kotlinx.coroutines.test)
      testImplementation(projects.mockwebserver3Junit5)
    }
    
    mavenPublishing {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 06 05:31:00 GMT 2024
    - 936 bytes
    - Viewed (0)
  3. okhttp/build.gradle.kts

      testImplementation(projects.okhttpTestingSupport)
      testImplementation(libs.assertk)
      testImplementation(libs.kotlin.test.annotations)
      testImplementation(libs.kotlin.test.common)
      testImplementation(libs.kotlinx.serialization.core)
      testImplementation(libs.kotlinx.serialization.json)
      testImplementation(projects.okhttpJavaNetCookiejar)
      testImplementation(projects.okhttpTls)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Jan 04 05:32:07 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  4. okhttp-coroutines/src/test/kotlin/okhttp3/coroutines/ExecuteAsyncTest.kt

    import java.util.concurrent.TimeUnit
    import kotlin.test.assertFailsWith
    import kotlin.time.Duration.Companion.seconds
    import kotlinx.coroutines.CancellationException
    import kotlinx.coroutines.Dispatchers
    import kotlinx.coroutines.TimeoutCancellationException
    import kotlinx.coroutines.coroutineScope
    import kotlinx.coroutines.job
    import kotlinx.coroutines.supervisorScope
    import kotlinx.coroutines.test.runTest
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 18 01:24:38 GMT 2024
    - 5.4K bytes
    - Viewed (0)
  5. build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/kotlindsl/kotlin-dsl-upstream-candidates.kt

    // This file contains members that we should consider to pull upstream
    // and make available to all Kotlin DSL users
    package gradlebuild.basics.kotlindsl
    
    import org.gradle.api.Project
    import java.io.ByteArrayOutputStream
    import java.io.File
    
    
    /**
     * `dir / "sub"` is the same as `dir.resolve("sub")`.
     *
     * @see [File.resolve]
     */
    operator fun File.div(child: String): File =
        resolve(child)
    
    
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 933 bytes
    - Viewed (0)
  6. .space/CODEOWNERS

    /compiler/tests-compiler-utils/ "Kotlin Compiler Core"
    /compiler/tests-different-jdk/ "Kotlin JVM"
    /compiler/tests-for-compiler-generator/ "Kotlin Compiler Core" "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    /compiler/tests-gen/ "Kotlin Compiler Core" "Kotlin JVM" "Kotlin Native" "Kotlin Wasm" "Kotlin Common Backend"
    /compiler/tests-java8/ "Kotlin JVM"
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 19:58:12 GMT 2024
    - 23.9K bytes
    - Viewed (0)
  7. build-logic/binary-compatibility/build.gradle.kts

        implementation("com.google.guava:guava")
        implementation("org.javassist:javassist")
        implementation("com.github.javaparser:javaparser-core")
        implementation("org.jetbrains.kotlinx:kotlinx-metadata-jvm")
        implementation(kotlin("compiler-embeddable"))
    
        testImplementation("org.jsoup:jsoup")
        testImplementation("org.junit.jupiter:junit-jupiter-engine")
    }
    
    tasks.compileGroovy.configure {
        classpath += files(tasks.compileKotlin)
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sat Sep 30 16:17:28 GMT 2023
    - 905 bytes
    - Viewed (0)
  8. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val jtar = "org.kamranzafar:jtar"
        val kotlinCoroutines = "org.jetbrains.kotlinx:kotlinx-coroutines-core"
        val kotlinCoroutinesDebug = "org.jetbrains.kotlinx:kotlinx-coroutines-debug"
        val littleproxy = "xyz.rogfam:littleproxy"
        val mina = "org.apache.mina:mina-core"
        val mockitoCore = "org.mockito:mockito-core"
        val mockitoKotlin = "com.nhaarman:mockito-kotlin"
        val mockitoKotlin2 = "com.nhaarman.mockitokotlin2:mockito-kotlin"
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Apr 16 15:50:58 GMT 2024
    - 14.4K bytes
    - Viewed (0)
  9. okhttp-coroutines/src/main/kotlin/okhttp3/JvmCallExtensions.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     *
     */
    
    package okhttp3
    
    import kotlin.coroutines.resumeWithException
    import kotlinx.coroutines.ExperimentalCoroutinesApi
    import kotlinx.coroutines.suspendCancellableCoroutine
    import okhttp3.internal.closeQuietly
    import okio.IOException
    
    @ExperimentalCoroutinesApi // resume with a resource cleanup.
    Plain Text
    - Registered: Fri Apr 12 11:42:09 GMT 2024
    - Last Modified: Fri Apr 05 11:25:23 GMT 2024
    - 1.4K bytes
    - Viewed (0)
  10. build.gradle.kts

    import com.vanniktech.maven.publish.SonatypeHost
    import java.net.URI
    import kotlinx.validation.ApiValidationExtension
    import org.gradle.api.tasks.testing.logging.TestExceptionFormat
    import org.jetbrains.dokka.gradle.DokkaTaskPartial
    import org.jetbrains.kotlin.gradle.dsl.kotlinExtension
    import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
    import ru.vyarus.gradle.plugin.animalsniffer.AnimalSnifferExtension
    
    buildscript {
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 18 01:32:42 GMT 2024
    - 8.9K bytes
    - Viewed (0)
Back to top