Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 729 for Parallel (0.13 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/performance/parallel-task-fast.png

    parallel-task-fast.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/performance/parallel-task-slow.png

    parallel-task-slow.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. platforms/core-runtime/messaging/src/test/groovy/org/gradle/internal/dispatch/AsyncDispatchTest.groovy

                    message1: {
                        parallel.syncAt(1)
                        parallel.syncAt(2)
                    },
                    message3: { parallel.syncAt(3) })
            Dispatch<String> target2 = new DispatchStub(
                    message2: {
                        parallel.syncAt(2)
                        parallel.syncAt(3)
                    })
    
            when:
            parallel.run {
                dispatch.dispatchTo(target1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/groovy/build.gradle

    plugins {
        id('java-library')
    }
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    tasks.withType(Test).configureEach {
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    // tag::parallel-4[]
        maxParallelForks = 4
    // end::parallel-4[]
    
    // tag::parallel-calculated[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 976 bytes
    - Viewed (0)
  5. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/RunnerFactory.groovy

        private SmokeTestGradleRunner newKotlinRunner(boolean parallel, VersionNumber kotlinVersion, List<String> tasks) {
            List<String> args = []
    
            // Parallel workers in Kotlin is enabled by Gradle's --parallel flag. See https://youtrack.jetbrains.com/issue/KT-46401/
            // For context on why we test with parallel workers see https://github.com/gradle/gradle/pull/10404
            if (parallel) {
                args = ["--parallel"]
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheParallelTaskIntegrationTest.groovy

        }
    
        @Requires(value = IntegTestPreconditions.NotParallelExecutor, reason = """
    Don't run in parallel mode, as the expectation for the setup build are incorrect
    It could potentially be worth running this in parallel mode to demonstrate the difference between
    parallel and configuration cache
    """)
        def "runs tasks in same project in parallel by default"() {
            server.start()
    
            given:
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                run ":aPing", ":bPing", ":cPing", ":dPing"
            }
        }
    
        def "tasks are run in parallel if there are tasks without async work running in a different project using --parallel"() {
            given:
            executer.beforeExecute {
                withArgument("--parallel")
            }
            withParallelThreads(3)
    
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/kotlin/build.gradle.kts

    plugins {
        id("java-library")
    }
    
    // tag::parallel-4[]
    // tag::parallel-calculated[]
    // tag::fork-every[]
    // tag::disable-reports[]
    tasks.withType<Test>().configureEach {
    // end::parallel-4[]
    // end::parallel-calculated[]
    // end::fork-every[]
    // end::disable-reports[]
    
    // tag::parallel-4[]
        maxParallelForks = 4
    // end::parallel-4[]
    
    // tag::parallel-calculated[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 995 bytes
    - Viewed (0)
  9. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/java/JavaIncrementalExecutionPerformanceTest.groovy

            @Scenario(type = PER_COMMIT, operatingSystems = LINUX, testProjects = ["largeJavaMultiProject", "largeMonolithicJavaProject"], iterationMatcher = '.*parallel false.*'),
        ])
        def "up-to-date assemble (parallel #parallel)"() {
            given:
            runner.tasksToRun = ['assemble']
            runner.args += ["-Dorg.gradle.parallel=$parallel"]
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. testing/performance/src/performanceTest/groovy/org/gradle/performance/experiment/java/ParallelBuildPerformanceTest.groovy

    )
    class ParallelBuildPerformanceTest extends AbstractCrossBuildPerformanceTest {
    
        def "clean assemble with 4 parallel workers"() {
            given:
            runner.testGroup = "parallel builds"
            runner.buildSpec {
                displayName("parallel")
                invocation {
                    args("-Dorg.gradle.parallel=true", "--max-workers=4")
                }
            }
            runner.baseline {
                displayName("serial")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top