Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for jvmMain (0.03 sec)

  1. buildSrc/src/main/kotlin/Osgi.kt

      // 'main'. Work around this by creating a 'main' source set that forwards to 'jvmMain'.
      //
      // The forwarding SourceSet also needs to fake out some task names to prevent them from being
      // registered twice.
      //
      // https://github.com/bndtools/bnd/issues/6590
      val jvmMainSourceSet = sourceSets.getByName("jvmMain")
      val mainSourceSet =
        object : SourceSet by jvmMainSourceSet {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  2. okhttp/build.gradle.kts

            compileOnly(libs.bouncycastle.bctls)
            compileOnly(libs.conscrypt.openjdk)
            implementation(libs.androidx.annotation)
            implementation(libs.androidx.startup.runtime)
          }
        }
    
        jvmMain {
          dependsOn(commonJvmAndroid)
    
          dependencies {
            // These compileOnly dependencies must also be listed in applyOsgiMultiplatform() below.
            compileOnly(libs.conscrypt.openjdk)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 03:59:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  3. okhttp/src/commonTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixDatabaseTest.kt

    import org.junit.runner.RunWith
    
    @RunWith(PublicSuffixTestRunner::class)
    class PublicSuffixDatabaseTest {
      private val publicSuffixDatabase = PublicSuffixDatabase.get()
    
      val pathForTests = okHttpRoot / "okhttp/src/jvmMain/resources" / PUBLIC_SUFFIX_RESOURCE
    
      @Before
      fun setUp() {
        beforePublicSuffixTest()
      }
    
      @Test
      fun allPublicSuffixes() {
        val buffer = Buffer()
        FileSystem.SYSTEM.read(pathForTests) {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue May 27 22:00:49 UTC 2025
    - 8.5K bytes
    - Viewed (0)
Back to top