Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for stdlib (0.04 sec)

  1. okhttp/src/jvmMain/java9/module-info.java

    @SuppressWarnings("module")
    module okhttp3 {
      requires transitive kotlin.stdlib;
      requires transitive okio;
      requires java.logging;
      exports okhttp3;
      exports okhttp3.internal to okhttp3.logging, okhttp3.sse, okhttp3.java.net.cookiejar, okhttp3.dnsoverhttps, mockwebserver3, okhttp3.mockwebserver, okhttp3.coroutines, okhttp3.tls;
      exports okhttp3.internal.concurrent to mockwebserver3, okhttp3.mockwebserver;
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 08:30:26 UTC 2025
    - 969 bytes
    - Viewed (0)
  2. okhttp-osgi-tests/build.gradle.kts

    }
    
    test.configure {
      dependsOn(copyOsgiTestDeployment)
    }
    
    dependencies {
      osgiTestDeploy(libs.eclipseOsgi)
      osgiTestDeploy(libs.kotlin.stdlib.osgi)
    }
    
    val testJavaVersion = System.getProperty("test.java.version", "21").toInt()
    tasks.withType<Test> {
      onlyIf("Tests require JDK 17") {
        testJavaVersion >= 17
      }
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Aug 01 08:17:18 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. buildSrc/src/main/kotlin/Osgi.kt

    private val Project.kotlinOsgi: MinimalExternalModuleDependency
      get() =
        extensions
          .getByType(VersionCatalogsExtension::class.java)
          .named("libs")
          .findLibrary("kotlin.stdlib.osgi")
          .get()
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  4. gradle/libs.versions.toml

    kotlin-reflect = { module = "org.jetbrains.kotlin:kotlin-reflect", version.ref = "org-jetbrains-kotlin" }
    kotlin-stdlib = { module = "org.jetbrains.kotlin:kotlin-stdlib", version.ref = "org-jetbrains-kotlin" }
    kotlin-stdlib-osgi = { module = "org.jetbrains.kotlin:kotlin-osgi-bundle", version.ref = "org-jetbrains-kotlin" }
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Fri Dec 19 22:05:50 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  5. okhttp-coroutines/build.gradle.kts

    )
    
    project.applyJavaModules("okhttp3.coroutines")
    
    dependencies {
      api(projects.okhttp)
      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)
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:22:22 UTC 2025
    - 937 bytes
    - Viewed (0)
  6. module-tests/build.gradle.kts

    }
    
    extraJavaModuleInfo {
      module("org.jetbrains:annotations", "org.jetbrains.annotations") {
        exportAllPackages()
      }
      module("com.squareup.okio:okio-jvm", "okio") {
        exportAllPackages()
        requires("kotlin.stdlib")
        requires("java.logging")
      }
      module("com.squareup.okio:okio", "okio") {
        exportAllPackages()
      }
    }
    
    val testJavaVersion = System.getProperty("test.java.version", "21").toInt()
    
    Registered: Fri Dec 26 11:42:13 UTC 2025
    - Last Modified: Sun Sep 21 06:45:42 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  7. .ci/jobs.t/defaults.yml

        publishers:
    # Disable Junit publisher for now since it's causing OOME on our Jenkins instance
    #      - junit:
    #          results: "**/*Junit/*.xml, **/test-results/*/*.xml"
    #          keep-long-stdio: true
    #          allow-empty-results: true
          # Upload additional logs
          - google-cloud-storage:
              credentials-id: 'elasticsearch-ci-gcs-plugin'
              uploads:
                - classic:
    Registered: Sun Dec 21 06:47:06 UTC 2025
    - Last Modified: Wed Sep 29 15:38:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top