Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 458 for Parallel (0.17 sec)

  1. src/cmd/cgo/internal/testplugin/plugin_test.go

    	goCmd(t, "build", "-o", "issue25756.exe", "./issue25756/main.go")
    	// Fails intermittently, but 20 runs should cause the failure
    	for n := 20; n > 0; n-- {
    		t.Run(fmt.Sprint(n), func(t *testing.T) {
    			t.Parallel()
    			run(t, "./issue25756.exe")
    		})
    	}
    }
    
    // Test with main using -buildmode=pie with plugin for issue #43228
    func TestIssue25756pie(t *testing.T) {
    	globalSkip(t)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/unitchecker/unitchecker.go

    	if err != nil {
    		return nil, err
    	}
    
    	// In parallel, execute the DAG of analyzers.
    	var exec func(a *analysis.Analyzer) *action
    	var execAll func(analyzers []*analysis.Analyzer)
    	exec = func(a *analysis.Analyzer) *action {
    		act := actions[a]
    		act.once.Do(func() {
    			execAll(a.Requires) // prefetch dependencies in parallel
    
    			// The inputs to this analysis are the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 13K bytes
    - Viewed (0)
  3. src/runtime/proc_test.go

    			// sends to the same channel. (The addition of
    			// `wakeDelay` improves the probability that the
    			// receiver will be blocking when the send occurs when
    			// the goroutines execute in parallel.)
    			//
    			// In each iteration of the benchmark, each goroutine
    			// acts once as sender and once as receiver, so each
    			// goroutine spins for delay twice.
    			//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildOperationsIntegrationTest.groovy

            runMainTasks.parentId == root.id
    
            def runTasksOps = operations.all(Pattern.compile("Run tasks.*"))
            runTasksOps.size() == 2
            // Build operations are run in parallel, so can appear in either order
            [runTasksOps[0].displayName, runTasksOps[1].displayName].sort() == ["Run tasks", "Run tasks (:buildB)"]
            runTasksOps[0].parentId == runMainTasks.id
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 13:43:40 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/coderepo_test.go

    	for _, tt := range codeRepoTests {
    		f := func(tt codeRepoTest) func(t *testing.T) {
    			return func(t *testing.T) {
    				if strings.Contains(tt.path, "gopkg.in") {
    					testenv.SkipFlaky(t, 54503)
    				}
    
    				t.Parallel()
    				if tt.vcs != "mod" {
    					testenv.MustHaveExecPath(t, tt.vcs)
    				}
    				ctx := context.Background()
    
    				repo := Lookup(ctx, "direct", tt.path)
    
    				if tt.mpath == "" {
    					tt.mpath = tt.path
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  6. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                    SpecificBuild.FlakyTestQuarantineWindows,
                    SpecificBuild.GradleceptionWithMaxLtsJdk,
                ),
                functionalTests = listOf(
                    TestCoverage(7, TestType.parallel, Os.LINUX, JvmCategory.MAX_LTS_VERSION, DEFAULT_LINUX_FUNCTIONAL_TEST_BUCKET_SIZE),
                    TestCoverage(8, TestType.soak, Os.LINUX, JvmCategory.MAX_LTS_VERSION, 1),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/debug/buildinfo/buildinfo_test.go

    			}
    			for _, mode := range buildModes {
    				mode := mode
    				t.Run(mode, func(t *testing.T) {
    					for _, tc := range cases {
    						tc := tc
    						t.Run(tc.name, func(t *testing.T) {
    							t.Parallel()
    							name := tc.build(t, p.goos, p.goarch, mode)
    							if info, err := buildinfo.ReadFile(name); err != nil {
    								if tc.wantErr == "" {
    									t.Fatalf("unexpected error: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 16:22:42 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

                    <plugins>
                        <plugin>
                            <artifactId>maven-surefire-plugin</artifactId>
                            <configuration>
                                <parallel>classes</parallel>
                                <threadCountClasses>2</threadCountClasses>
                            </configuration>
                            <dependencies>
                                <dependency>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tfrt/ir/mlrt/tf_mlrt_ops.td

      }];
    }
    
    def MapFnOp : TensorflowMlrt_Op<"map_fn", [AttrSizedOperandSegments, Pure]> {
      let summary = "The Parallel Map for tf_mlrt dialect";
      let description = [{
        The Pmap executes body function in parallel for all ranges up to $max_iterations.
    
        The pseudo code:
          for(int i = 0; i < $max_iterations; i++) {
            body_fn(MlrtFture($tensor_list_or_flow_in[i]),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 20:44:15 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildDependencyGraphIntegrationTest.groovy

                }
            }
    
            where:
            name                  | args
            "regular build"       | []
            "configure on demand" | ["--configure-on-demand"]
            "parallel"            | ["--parallel"]
        }
    
        def "substitutes dependency in composite containing participants with same root directory name"() {
            given:
            buildA.buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 19:37:49 UTC 2024
    - 25.7K bytes
    - Viewed (0)
Back to top