Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,408 for suiteID (0.15 sec)

  1. platforms/documentation/docs/src/samples/incubating/java/jvm-multi-project-with-test-aggregation-standalone/README.adoc

    In this scenario, two additional pieces of setup are necessary:
    
    <1> Declare dependencies using the `testReportAggregation` configuration
    <2> Define a report of type `AggregateTestReport` which collects test data from unit test suites
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. samples/guide/src/main/java/okhttp3/recipes/CustomCipherSuites.java

        // Configure cipher suites to demonstrate how to customize which cipher suites will be used for
        // an OkHttp request. In order to be selected a cipher suite must be included in both OkHttp's
        // connection spec and in the SSLSocket's enabled cipher suites array. Most applications should
        // not customize the cipher suites list.
        List<CipherSuite> customCipherSuites = asList(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Mar 14 21:57:42 UTC 2019
    - 6.5K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-java/build.gradle.kts

        implementation(project(":platform-base"))
        implementation(project(":platform-jvm"))
        implementation(project(":plugins-java-base"))
        implementation(project(":testing-jvm"))
        implementation(project(":test-suites-base"))
    
        runtimeOnly(project(":dependency-management"))
        runtimeOnly(project(":testing-base"))
        runtimeOnly(project(":toolchains-jvm"))
    
        runtimeOnly(libs.groovy)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-jvm-test-suite/build.gradle.kts

        api(project(":core-api"))
        api(project(":language-jvm"))
        api(project(":model-core"))
        api(project(":platform-jvm"))
        api(project(":testing-jvm"))
        api(project(":test-suites-base"))
    
        api(libs.inject)
    
        implementation(project(":core"))
        implementation(project(":logging"))
        implementation(project(":plugins-java-base"))
        implementation(project(":testing-base"))
    
        implementation(libs.commonsLang)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. platforms/jvm/jacoco/build.gradle.kts

        implementation(project(":plugins-java"))
        implementation(project(":plugins-java-base"))
        implementation(project(":plugins-jvm-test-suite"))
        implementation(project(":process-services"))
        implementation(project(":test-suites-base"))
        implementation(project(":testing-jvm"))
    
        implementation(libs.commonsLang)
        implementation(libs.guava)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsRenderer.java

                if (seenTestSuite) {
                    output.withStyle(Info).println("(t) - Test suite binary");
                    if (hiddenNonBuildable) {
                        output.println();
                    }
                } else if (hiddenTestSuite) {
                    output.withStyle(Info).println("Some test suites were not shown, use --test-suites or --all to show them.");
                }
                if (hiddenNonBuildable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/io/ByteSourceTester.java

      static TestSuite tests(String name, ByteSourceFactory factory, boolean testAsCharSource) {
        TestSuite suite = new TestSuite(name);
        for (Entry<String, String> entry : TEST_STRINGS.entrySet()) {
          if (testAsCharSource) {
            suite.addTest(suiteForString(factory, entry.getValue(), name, entry.getKey()));
          } else {
            suite.addTest(
                suiteForBytes(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/TestProgressCrossVersionSpec.groovy

            }
    
            then:
            events.tests.size() == 4              // root suite, test process suite, test class suite, test method
            events.tests == events.successful
    
            def rootSuite = events.operation("Gradle Test Run :test")
            rootSuite.descriptor.jvmTestKind == JvmTestKind.SUITE
            rootSuite.descriptor.name == 'Gradle Test Run :test'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            @Override
            public void writeBodyTo(PrettyPrinter printer) {
                if (!suites.isEmpty()) {
                    ScriptBlockImpl suitesBlock = new ScriptBlockImpl();
                    for (Statement suite : suites) {
                        suitesBlock.add(suite);
                    }
                    printer.printBlock("suites", suitesBlock);
                }
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  10. platforms/software/build-init/build.gradle.kts

        testFixturesImplementation(project(":plugins-java"))
        testFixturesImplementation(project(":testing-base"))
        testFixturesImplementation(project(":test-suites-base"))
        testFixturesImplementation(project(":plugins-jvm-test-suite"))
    
        integTestImplementation(project(":native"))
        integTestImplementation(libs.jetty)
    
        testRuntimeOnly(project(":distributions-jvm")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.2K bytes
    - Viewed (0)
Back to top