Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,023 for Parallel (0.19 sec)

  1. platforms/enterprise/enterprise-plugin-performance/src/templates/root/gradle.properties

    <% if (binding.hasVariable("daemonMemory")) { %>org.gradle.jvmargs=-Xms${binding.getVariable("daemonMemory")} -Xmx${binding.getVariable("daemonMemory")}<% } %>
    <% if (binding.hasVariable("parallel")) { %>org.gradle.parallel=true<% } %>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 349 bytes
    - Viewed (0)
  2. .teamcity/performance-test-durations.json

      "durations" : [ {
        "testProject" : "excludeRuleMergingBuild",
        "linux" : 229
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.LargeDependencyGraphPerformanceTest.resolve large dependency graph (parallel = false, locking = true)",
      "durations" : [ {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/isolated_projects.adoc

    You can also use `-Dorg.gradle.internal.invalidate-coupled-projects=false` to force parallel configuration when there are access problems.
    
    Please be aware that these options disable the validation that makes execution parallel- and caching-safe when isolated projects is enabled,
    so you may see some unexpected behaviour when using them.
    
    == Build logic constraints
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 13:53:18 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  4. src/os/exec/exec_test.go

    		}
    	}
    }
    
    func TestEcho(t *testing.T) {
    	t.Parallel()
    
    	bs, err := helperCommand(t, "echo", "foo bar", "baz").Output()
    	if err != nil {
    		t.Errorf("echo: %v", err)
    	}
    	if g, e := string(bs), "foo bar baz\n"; g != e {
    		t.Errorf("echo: want %q, got %q", e, g)
    	}
    }
    
    func TestCommandRelativeName(t *testing.T) {
    	t.Parallel()
    
    	cmd := helperCommand(t, "echo", "foo")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 48.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/caching/ParallelDependencyResolutionIntegrationTest.groovy

    import org.junit.Rule
    
    @Requires(IntegTestPreconditions.NotParallelExecutor)
    // no point, always runs in parallel
    class ParallelDependencyResolutionIntegrationTest extends AbstractHttpDependencyResolutionTest {
        @Rule BlockingHttpServer blockingServer = new BlockingHttpServer()
    
        def setup() {
            executer.withArgument('--parallel')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  6. pkg/test/framework/integration/framework_test.go

    	newLevels().
    		// Level 1: bf=20(parallel)
    		Add(20, true).
    		// Level 2: bf=5(parallel)
    		Add(5, true).
    		// Level 3: bf=2(parallel)
    		Add(2, true).
    		Build().
    		Run(t)
    }
    
    func TestMix(t *testing.T) {
    	// Root is always run sync.
    	newLevels().
    		// Level 1: bf=20(parallel)
    		Add(20, true).
    		// Level 2: bf=5(sync)
    		Add(5, false).
    		// Level 3: bf=2(parallel)
    		Add(2, true).
    		Build().
    		Run(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/concurrent/TaskRunnerTest.kt

          log += "three:run@${taskFaker.nanoTime} parallel=${taskFaker.isParallel}"
        }
    
        taskFaker.advanceUntil(0.µs)
        assertThat(log).isEmpty()
    
        taskFaker.advanceUntil(100.µs)
        assertThat(log).containsExactlyInAnyOrder(
          "one:run@100000 parallel=true",
          "two:run@100000 parallel=true",
          "three:run@100000 parallel=true",
        )
    
        taskFaker.assertNoMoreTasks()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 29 00:33:04 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/EnablingParallelExecutionIntegrationTest.groovy

    @Requires(IntegTestPreconditions.NotParallelExecutor)
    class EnablingParallelExecutionIntegrationTest extends AbstractIntegrationSpec {
    
        def "parallel mode enabled via gradle.properties"() {
            file("gradle.properties") << "org.gradle.parallel=true"
            buildFile << "assert gradle.startParameter.parallelProjectExecutionEnabled"
            expect:
            run()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/lockedfile/transform_test.go

    	}
    	if err := lockedfile.Write(path, bytes.NewReader(buf[:8]), 0666); err != nil {
    		t.Fatal(err)
    	}
    
    	var attempts int64 = 128
    	if !testing.Short() {
    		attempts *= 16
    	}
    	const parallel = 32
    
    	var sem = make(chan bool, parallel)
    
    	for n := attempts; n > 0; n-- {
    		sem <- true
    		go func() {
    			defer func() { <-sem }()
    
    			time.Sleep(time.Duration(rand.Intn(100)) * time.Microsecond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 22:37:50 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  10. src/os/exec/exec_windows_test.go

    	_, err := fmt.Fprint(pipe, args[1])
    	if err != nil {
    		fmt.Fprintf(os.Stderr, "writing to pipe failed: %v\n", err)
    		os.Exit(1)
    	}
    	pipe.Close()
    }
    
    func TestPipePassing(t *testing.T) {
    	t.Parallel()
    
    	r, w, err := os.Pipe()
    	if err != nil {
    		t.Error(err)
    	}
    	const marker = "arrakis, dune, desert planet"
    	childProc := helperCommand(t, "pipehandle", strconv.FormatUint(uint64(w.Fd()), 16), marker)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 23:07:55 UTC 2023
    - 2.4K bytes
    - Viewed (0)
Back to top