Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 436 for Parallel (0.2 sec)

  1. src/cmd/cgo/internal/testsanitizers/tsan_test.go

    	}
    	// The msan tests require support for the -msan option.
    	if !compilerRequiredTsanVersion(goos, goarch) {
    		t.Skipf("skipping on %s/%s; compiler version for -tsan option is too old.", goos, goarch)
    	}
    
    	t.Parallel()
    	requireOvercommit(t)
    	config := configure("thread")
    	config.skipIfCSanitizerBroken(t)
    
    	mustRun(t, config.goCmd("build", "std"))
    
    	cases := []struct {
    		src          string
    		needsRuntime bool
    	}{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 21:14:49 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. testing/performance/src/templates/project-with-source/pom.xml

                    <artifactId>maven-surefire-plugin</artifactId>
                    <!--<version>2.5</version>-->
                    <!--<configuration>-->
                        <!--<parallel>classes</parallel>-->
                        <!--<threadCount>4</threadCount>-->
                    <!--</configuration>-->
                </plugin>
                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 08:47:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/test_fuzz_mutator.txt

    # tests seed values and the worker tests mutated values on the fuzz target.
    
    [short] skip
    env GOCACHE=$WORK/cache
    
    go test -fuzz=FuzzA -fuzztime=100x -parallel=1 -log=fuzz
    go run check_logs.go fuzz fuzz.worker
    
    # TODO(b/181800488): remove -parallel=1, here and below. For now, when a
    # crash is found, all workers keep running, wasting resources and reducing
    # the number of executions available to the minimizer, increasing flakiness.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  4. src/go/doc/testdata/testing.2.golden

    	func (c *T) Log(args ...any)
    
    	// Logf formats its arguments according to the format, analogous ...
    	func (c *T) Logf(format string, args ...any)
    
    	// Parallel signals that this test is to be run in parallel with ...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/EdgesConnecting.java

    /**
     * A class to represent the set of edges connecting an (implicit) origin node to a target node.
     *
     * <p>The {@link #nodeToOutEdge} map means this class only works on networks without parallel edges.
     * See {@link MultiEdgesConnecting} for a class that works with parallel edges.
     *
     * @author James Sexton
     * @param <E> Edge parameter type
     */
    @ElementTypesAreNonnullByDefault
    final class EdgesConnecting<E> extends AbstractSet<E> {
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/integTest/groovy/org/gradle/language/rc/WindowsResourceParallelIntegrationTest.groovy

        def "can execute compile windows resource tasks in parallel"() {
            given:
            withComponentsForAppAndSharedLib()
            createTaskThatRunsInParallelUsingCustomToolchainWith("compileMainLibSharedLibraryMainLibRc")
            buildFile << """
                // prevent windows resource and cpp compile tasks from running in parallel
                // this is because we don't want the cpp compile tasks to accidentally use 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcweb/vcstest/vcstest_test.go

    	t.Run("overview", func(t *testing.T) {
    		t.Parallel()
    
    		time.Sleep(1 * time.Millisecond) // Give the other handlers time to race.
    
    		resp, err := http.Get(srv.URL)
    		if err == nil {
    			io.Copy(io.Discard, resp.Body)
    			resp.Body.Close()
    		} else {
    			t.Error(err)
    		}
    	})
    
    	t.Cleanup(func() {
    		// The subtests spawned by WalkDir run in parallel. When they complete, this
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 16:04:21 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/performance/parallelTestExecution/groovy/settings.gradle

    rootProject.name = 'parallel-test-execution'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 45 bytes
    - Viewed (0)
  9. src/cmd/cgo/internal/testsanitizers/msan_test.go

    		t.Fatal(err)
    	}
    	// The msan tests require support for the -msan option.
    	if !platform.MSanSupported(goos, goarch) {
    		t.Skipf("skipping on %s/%s; -msan option is not supported.", goos, goarch)
    	}
    
    	t.Parallel()
    	// Overcommit is enabled by default on FreeBSD (vm.overcommit=0, see tuning(7)).
    	// Do not skip tests with stricter overcommit settings unless testing shows that FreeBSD has similar issues.
    	if goos == "linux" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:30:58 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. pkg/features/client_adapter.go

    // feature Gate and Registry interfaces. The component-base types Feature, FeatureSpec, and
    // prerelease, and the component-base prerelease constants, are duplicated by parallel types and
    // constants in client-go. The parallel types exist to allow the feature gate mechanism to be used
    // for client-go features without introducing a circular dependency between component-base and
    // client-go.
    type clientAdapter struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 16 17:51:00 UTC 2024
    - 2.4K bytes
    - Viewed (0)
Back to top