Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,023 for Parallel (0.32 sec)

  1. src/os/timeout_test.go

    	}
    }
    
    // There is a very similar copy of this in net/timeout_test.go.
    func TestVariousDeadlines(t *testing.T) {
    	t.Parallel()
    	testVariousDeadlines(t)
    }
    
    // There is a very similar copy of this in net/timeout_test.go.
    func TestVariousDeadlines1Proc(t *testing.T) {
    	// Cannot use t.Parallel - modifies global GOMAXPROCS.
    	if testing.Short() {
    		t.Skip("skipping in short mode")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 17.1K bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/test_finished_subtest_goroutines.txt

    # Regression test for https://golang.org/issue/45127:
    # Goroutines for completed parallel subtests should exit immediately,
    # not block until earlier subtests have finished.
    
    [short] skip
    
    ! go test .
    stdout 'panic: slow failure'
    ! stdout '\[chan send'
    
    -- go.mod --
    module golang.org/issue45127
    
    go 1.16
    -- issue45127_test.go --
    package main
    
    import (
    	"fmt"
    	"runtime"
    	"runtime/debug"
    	"sync"
    	"testing"
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 19 17:34:25 UTC 2021
    - 1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/templates/java-android-application/gradle.properties

    org.gradle.jvmargs=-Xmx1536m
    # When configured, Gradle will run in incubating parallel mode.
    # This option should only be used with decoupled projects. More details, visit
    # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
    # org.gradle.parallel=true
    # AndroidX package structure to make it clearer which packages are bundled with the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. pkg/probe/util_test.go

    limitations under the License.
    */
    
    package probe
    
    import (
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    func TestFindPortByName(t *testing.T) {
    	t.Parallel()
    	type args struct {
    		container *v1.Container
    		portName  string
    	}
    	tests := []struct {
    		name    string
    		args    args
    		want    int
    		wantErr bool
    	}{
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 10 06:14:41 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. src/os/read_test.go

    		t.Fatalf("Stat %q (looking for size %d): %s", path, size, err)
    	}
    	if dir.Size() != size {
    		t.Errorf("Stat %q: size %d want %d", path, dir.Size(), size)
    	}
    }
    
    func TestReadFile(t *testing.T) {
    	t.Parallel()
    
    	filename := "rumpelstilzchen"
    	contents, err := ReadFile(filename)
    	if err == nil {
    		t.Fatalf("ReadFile %s: error expected, none found", filename)
    	}
    
    	filename = "read_test.go"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 02:36:46 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/DestroyerTaskCommandLineOrderIntegrationTest.groovy

            def generate = rootBuild.task('generate').dependsOn(generateBar).dependsOn(generateFoo)
    
            writeAllFiles()
    
            expect:
            2.times {
                args '--parallel', '--max-workers=2'
                succeeds(clean.path, generate.path)
    
                result.assertTaskOrder(cleanFoo.fullPath, cleanBar.fullPath, clean.fullPath)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 23 14:13:02 UTC 2022
    - 21.1K bytes
    - Viewed (0)
Back to top