Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for exceptionFormat (0.52 seconds)

  1. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/test/rerun/InternalTestRerunPluginFuncTest.groovy

            }
            
            tasks.named("test").configure {
                maxParallelForks = 4
                testLogging {
                    events "standard_out", "failed"
                    exceptionFormat "short"
                }
            }
            
            """
            createTest("SimpleTest")
            createTest("SimpleTest2")
            createTest("SimpleTest3")
            createTest("SimpleTest4")
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 8.9K bytes
    - Click Count (0)
  2. build-logic/src/main/kotlin/okhttp.testing-conventions.gradle.kts

      javaLauncher.set(javaToolchains.launcherFor {
        languageVersion.set(JavaLanguageVersion.of(testJavaVersion))
      })
    
      maxParallelForks = Runtime.getRuntime().availableProcessors() * 2
      testLogging {
        exceptionFormat = TestExceptionFormat.FULL
      }
    
      systemProperty("okhttp.platform", platform)
      systemProperty("junit.jupiter.extensions.autodetection.enabled", "true")
    }
    
    tasks.withType<Test>().configureEach {
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sat Feb 07 07:16:57 GMT 2026
    - 1.7K bytes
    - Click Count (0)
Back to Top