Search Options

Results per page
Sort
Preferred Languages
Advance

Results 221 - 230 of 1,023 for Parallel (0.13 sec)

  1. src/cmd/link/internal/ld/issue33808_test.go

    import "log"
    
    func main() {
    	log.Fatalf("HERE")
    }
    `
    
    func TestIssue33808(t *testing.T) {
    	if runtime.GOOS != "darwin" {
    		return
    	}
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    	t.Parallel()
    
    	dir := t.TempDir()
    
    	f := gobuild(t, dir, prog, "-ldflags=-linkmode=external")
    	f.Close()
    
    	syms, err := f.Symbols()
    	if err != nil {
    		t.Fatalf("Error reading symbols: %v", err)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 08 20:03:01 UTC 2021
    - 792 bytes
    - Viewed (0)
  2. src/cmd/cover/cover_test.go

    //	testcover -mode=count -var=CoverTest -o ./testdata/test_cover.go testdata/test_line.go
    //	go run ./testdata/main.go ./testdata/test.go
    func TestCover(t *testing.T) {
    	testenv.MustHaveGoRun(t)
    	t.Parallel()
    	dir := tempDir(t)
    
    	// Read in the test file (testTest) and write it, with LINEs specified, to coverInput.
    	testTest := filepath.Join(testdata, "test.go")
    	file, err := os.ReadFile(testTest)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:28 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/FinalizerTaskIntegrationTest.groovy

                // TODO - should fail
                succeeds 'b', 'a'
            }
        }
    
        void 'finalizer tasks are executed as expected in parallel builds'() {
            setupMultipleProjects()
            executer.beforeExecute {
                withArguments('--parallel')
            }
    
            expect:
            2.times {
                succeeds 'a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  4. guava/src/com/google/common/graph/GraphConstants.java

      static final String MULTIPLE_EDGES_CONNECTING =
          "Cannot call edgeConnecting() when parallel edges exist between %s and %s. Consider calling "
              + "edgesConnecting() instead.";
      static final String PARALLEL_EDGES_NOT_ALLOWED =
          "Nodes %s and %s are already connected by a different edge. To construct a graph "
              + "that allows parallel edges, call allowsParallelEdges(true) on the Builder.";
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  5. platforms/jvm/language-jvm/src/testFixtures/groovy/org/gradle/api/tasks/compile/AbstractCompilerDaemonReuseIntegrationTest.groovy

                }
            """
        }
    
        @Requires(IntegTestPreconditions.NotParallelExecutor)
        @UnsupportedWithConfigurationCache(because = "parallel by default")
        def "reuses compiler daemons within a single project build"() {
            withSingleProjectSources()
    
            when:
            succeeds("compileAll")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  6. src/testing/internal/testdeps/deps.go

    		Log:             os.Stderr,
    		Timeout:         timeout,
    		Limit:           limit,
    		MinimizeTimeout: minimizeTimeout,
    		MinimizeLimit:   minimizeLimit,
    		Parallel:        parallel,
    		Seed:            seed,
    		Types:           types,
    		CorpusDir:       corpusDir,
    		CacheDir:        cacheDir,
    	})
    	if err == ctx.Err() {
    		return nil
    	}
    	return err
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  7. src/math/rand/default_test.go

    	}
    
    	const env = "GO_RAND_TEST_HELPER_CODE"
    	if v := os.Getenv(env); v != "" {
    		doDefaultTest(t, v)
    		return
    	}
    
    	t.Parallel()
    
    	for i := 0; i < 6; i++ {
    		i := i
    		t.Run(strconv.Itoa(i), func(t *testing.T) {
    			t.Parallel()
    			exe, err := os.Executable()
    			if err != nil {
    				exe = os.Args[0]
    			}
    			cmd := testenv.Command(t, exe, "-test.run=TestDefaultRace")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 07 23:39:35 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/test_fuzz_io_error.txt

    [short] skip
    [!fuzz] skip
    env GOCACHE=$WORK/cache
    
    # If the I/O error occurs before F.Fuzz is called, the coordinator should
    # stop the worker and say that.
    ! go test -fuzz=FuzzClosePipeBefore -parallel=1
    stdout '\s*fuzzing process terminated without fuzzing:'
    ! stdout 'communicating with fuzzing process'
    ! exists testdata
    
    # If the I/O error occurs after F.Fuzz is called (unlikely), just exit.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 16 16:53:11 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. test/fixedbugs/bug502.go

    // because the private method in testing.TB led gccgo to assume that
    // the interface method table would be defined in the testing package.
    
    package main
    
    import "testing"
    
    type I interface {
    	testing.TB
    	Parallel()
    }
    
    func F(i I) {
    	i.Log("F")
    }
    
    var t testing.T
    
    func main() {
    	F(&t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 08 03:58:11 UTC 2017
    - 520 bytes
    - Viewed (0)
  10. src/cmd/internal/objabi/flag_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package objabi
    
    import "testing"
    
    func TestDecodeArg(t *testing.T) {
    	t.Parallel()
    	tests := []struct {
    		arg, want string
    	}{
    		{"", ""},
    		{"hello", "hello"},
    		{"hello\\n", "hello\n"},
    		{"hello\\nthere", "hello\nthere"},
    		{"hello\\\\there", "hello\\there"},
    		{"\\\\\\n", "\\\n"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 10 22:14:50 UTC 2020
    - 610 bytes
    - Viewed (0)
Back to top