Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for jvmTest (0.05 sec)

  1. build.gradle.kts

          ignoredPackages += "okhttp3.tls.internal"
        }
      }
    }
    
    plugins.withId("org.jetbrains.kotlin.jvm") {
      val test = tasks.named("test")
      tasks.register("jvmTest") {
        description = "Get 'gradlew jvmTest' to run the tests of JVM-only modules"
        dependsOn(test)
      }
    }
    
    tasks.wrapper {
      distributionType = Wrapper.DistributionType.ALL
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Fri Aug 01 08:06:31 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/publicsuffix/PublicSuffixListGenerator.kt

    class PublicSuffixListGenerator(
      projectRoot: Path = ".".toPath(),
      val fileSystem: FileSystem = FileSystem.SYSTEM,
      val client: OkHttpClient = OkHttpClient(),
    ) {
      private val testResources = projectRoot / "okhttp/src/jvmTest/resources"
      private val publicSuffixListDotDat = testResources / "okhttp3/internal/publicsuffix/public_suffix_list.dat"
      private val outputFile = testResources / PUBLIC_SUFFIX_RESOURCE
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Aug 06 05:33:11 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  3. okhttp/build.gradle.kts

            compileOnly(libs.bouncycastle.bctls)
    
            // graal build support
            compileOnly(libs.nativeImageSvm)
            compileOnly(libs.openjsse)
          }
        }
    
        val jvmTest by getting {
          dependencies {
            implementation(projects.okhttpTestingSupport)
            implementation(libs.assertk)
            implementation(libs.kotlin.test.annotations)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Jul 03 03:59:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
  4. .github/workflows/build.yml

              cache: 'gradle'
              native-image-job-reports: true
    
          - name: Setup Gradle
            uses: gradle/actions/setup-gradle@v4
    
          - name: Run Checks
            run: ./gradlew check -PgraalBuild=true -x jvmTest -x test
    
      testopenjdk11:
        permissions:
          checks: write # for mikepenz/action-junit-report
        runs-on: ubuntu-latest
    
        steps:
          - name: Checkout
            uses: actions/checkout@v5
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 07:15:58 UTC 2025
    - 18.1K bytes
    - Viewed (0)
Back to top