Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 1,023 for Parallel (0.12 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/UnsafeConfigurationResolutionDeprecationIntegrationTest.groovy

                        bar
                    }
    
                    dependencies {
                        bar "test:test-jar:1.0"
                    }
                }
            """
            executer.withArgument("--parallel")
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 28 20:27:07 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. src/cmd/link/link_test.go

    	// type. This tests that the linker can read symbol names larger than
    	// the bufio buffer. Issue #15104.
    	_ = AuthorPaidByTheColumnInch
    }
    
    func TestIssue21703(t *testing.T) {
    	t.Parallel()
    
    	testenv.MustHaveGoBuild(t)
    	testenv.MustInternalLink(t, false)
    
    	const source = `
    package main
    const X = "\n!\n"
    func main() {}
    `
    
    	tmpdir := t.TempDir()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:02 UTC 2024
    - 43.5K bytes
    - Viewed (0)
  3. 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)
  4. src/cmd/link/internal/ld/dwarf_test.go

    	}
    }
    
    const (
    	DefaultOpt = "-gcflags="
    	NoOpt      = "-gcflags=-l -N"
    	OptInl4    = "-gcflags=-l=4"
    	OptAllInl4 = "-gcflags=all=-l=4"
    )
    
    func TestRuntimeTypesPresent(t *testing.T) {
    	t.Parallel()
    	testenv.MustHaveGoBuild(t)
    
    	mustHaveDWARF(t)
    
    	dir := t.TempDir()
    
    	f := gobuild(t, dir, `package main; func main() { }`, NoOpt)
    	defer f.Close()
    
    	dwarf, err := f.DWARF()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. src/cmd/go/internal/par/queue.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package par
    
    import "fmt"
    
    // Queue manages a set of work items to be executed in parallel. The number of
    // active work items is limited, and excess items are queued sequentially.
    type Queue struct {
    	maxActive int
    	st        chan queueState
    }
    
    type queueState struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 24 21:08:46 UTC 2020
    - 1.9K bytes
    - Viewed (0)
  10. src/net/timeout_test.go

    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    
    	t.Parallel()
    
    	ln := newLocalListener(t, "tcp")
    	defer func() {
    		if err := ln.Close(); err != nil {
    			t.Error(err)
    		}
    	}()
    
    	for _, tt := range dialTimeoutTests {
    		t.Run(fmt.Sprintf("%v/%v", tt.initialTimeout, tt.initialDelta), func(t *testing.T) {
    			// We don't run these subtests in parallel because we don't know how big
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
Back to top