Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,123 for parallels (0.17 sec)

  1. src/runtime/runtime-gdb_test.go

    	if runtime.GOOS == "netbsd" {
    		testenv.SkipFlaky(t, 15603)
    	}
    	if flag.Lookup("test.parallel").Value.(flag.Getter).Get().(int) < 2 {
    		// It is possible that this test will hang for a long time due to an
    		// apparent GDB bug reported in https://go.dev/issue/37405.
    		// If test parallelism is high enough, that might be ok: the other parallel
    		// tests will finish, and then this test will finish right before it would
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 23.2K bytes
    - Viewed (0)
  2. src/testing/sub_test.go

    				realTest.Error("sequential test was not run")
    			}
    		},
    	}, {
    		desc:   "failure in parallel test propagates upwards",
    		ok:     false,
    		maxPar: 1,
    		output: `
    --- FAIL: failure in parallel test propagates upwards (N.NNs)
        --- FAIL: failure in parallel test propagates upwards/#00 (N.NNs)
            --- FAIL: failure in parallel test propagates upwards/#00/par (N.NNs)
            `,
    		f: func(t *T) {
    			t.Run("", func(t *T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 21:27:08 UTC 2023
    - 23.8K bytes
    - Viewed (0)
  3. docs/fr/docs/async.md

    #### Burgers parallèles
    
    Imaginons désormais que ce ne sont pas des "burgers concurrents" mais des "burgers parallèles".
    
    Vous allez avec votre crush 😍 dans un fast food 🍔 parallélisé.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Mar 31 23:52:53 UTC 2024
    - 24K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. src/testing/benchmark.go

    		} else {
    			return false
    		}
    	}
    	pb.cache--
    	return true
    }
    
    // RunParallel runs a benchmark in parallel.
    // It creates multiple goroutines and distributes b.N iterations among them.
    // The number of goroutines defaults to GOMAXPROCS. To increase parallelism for
    // non-CPU-bound benchmarks, call [B.SetParallelism] before RunParallel.
    // RunParallel is usually used with the go test -cpu flag.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top