Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 436 for Parallel (0.37 sec)

  1. releasenotes/notes/agent-dns-forward-parallel.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: traffic-management
    issue:
    - 39598
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 15 11:15:33 UTC 2022
    - 308 bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/go/testdata/script/test_fuzz_parallel.txt

    [!fuzz] skip
    [short] skip
    env GOCACHE=$WORK/cache
    
    # When running seed inputs, T.Parallel should let multiple inputs run in
    # parallel.
    go test -run=FuzzSeed
    
    # When fuzzing, T.Parallel should be safe to call, but it should have no effect.
    # We just check that it doesn't hang, which would be the most obvious
    # failure mode.
    # TODO(jayconrod): check for the string "after T.Parallel". It's not printed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 1.6K 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. src/cmd/go/testdata/script/test_chatty_parallel_fail.txt

    	"fmt"
    	"flag"
    )
    
    // This test ensures the order of CONT lines in parallel chatty tests.
    func TestChattyParallel(t *testing.T) {
    	t.Parallel()
    
    	// The number of concurrent tests running. This is closely tied to the
    	// -parallel test flag, so we grab it from the flag rather than setting it
    	// to some constant.
    	parallel := flag.Lookup("test.parallel").Value.(flag.Getter).Get().(int)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/test_parallel_number.txt

    [short] skip
    
    # go test -parallel -1 shouldn't work
    ! go test -parallel -1 standalone_parallel_sub_test.go
    stdout '-parallel can only be given'
    
    # go test -parallel 0 shouldn't work
    ! go test -parallel 0 standalone_parallel_sub_test.go
    stdout '-parallel can only be given'
    
    -- standalone_parallel_sub_test.go --
    package standalone_parallel_sub_test
    
    import "testing"
    
    func Test(t *testing.T) {
    	ch := make(chan bool, 1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 19 20:48:08 UTC 2020
    - 608 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. src/cmd/go/testdata/script/test_chatty_parallel_success.txt

    	"fmt"
    	"flag"
    )
    
    // This test ensures the order of CONT lines in parallel chatty tests.
    func TestChattyParallel(t *testing.T) {
    	t.Parallel()
    
    	// The number of concurrent tests running. This is closely tied to the
    	// -parallel test flag, so we grab it from the flag rather than setting it
    	// to some constant.
    	parallel := flag.Lookup("test.parallel").Value.(flag.Getter).Get().(int)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/cover_test_race_issue56370.txt

    import (
    	"testing"
    
    	"issue.56370/filter"
    )
    
    func Test1(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test2(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test3(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    }
    
    func Test4(t *testing.T) {
    	t.Parallel()
    
    	_ = filter.New()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 21 19:41:54 UTC 2022
    - 576 bytes
    - Viewed (0)
Back to top