Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 727 for Parallel (0.12 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/attribute_utils.h

    //          which represents the first branch of replicate group 0 and
    //          the first branch of parallel group 0.
    // Second instance of "tf.OpC" after flattening will have
    //          `_parallel_execution_ids = "r0:1,p0:0"`
    //          which represents the second branch of replicate group 0 and
    //          the first branch of parallel group 0.
    // First instance of "tf.OpD" after flattening will have
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 22 19:47:48 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  2. docs/en/docs/async.md

    <img src="/img/async/parallel-burgers/parallel-burgers-01.png" class="illustration">
    
    Then it's finally your turn, you place your order of 2 very fancy burgers for your crush and you.
    
    You pay 💸.
    
    <img src="/img/async/parallel-burgers/parallel-burgers-02.png" class="illustration">
    
    The cashier goes to the kitchen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 00:24:48 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/initialization/ParallelismBuildOptions.java

            public static final String GRADLE_PROPERTY = "org.gradle.parallel";
    
            public ParallelOption() {
                super(GRADLE_PROPERTY, BooleanCommandLineOptionConfiguration.create("parallel", "Build projects in parallel. Gradle will attempt to determine the optimal number of executor threads to use.", "Disables parallel execution to build projects."));
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 19:00:19 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildController.java

         * Returns {@code false} when the models will not be queried in parallel, for example because the target Gradle version does not support parallel execution,
         * or because some build configuration disables the parallel execution, or because the queries are unsafe to perform in parallel.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. 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)
  6. .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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top