Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 458 for Parallel (0.31 sec)

  1. platforms/documentation/docs/src/docs/userguide/img/performance/parallel-task-fast.png

    parallel-task-fast.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/img/performance/parallel-task-slow.png

    parallel-task-slow.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/execution/taskgraph/ParallelTaskExecutionIntegrationTest.groovy

                run ":aPing", ":bPing", ":cPing", ":dPing"
            }
        }
    
        def "tasks are run in parallel if there are tasks without async work running in a different project using --parallel"() {
            given:
            executer.beforeExecute {
                withArgument("--parallel")
            }
            withParallelThreads(3)
    
            expect:
            2.times {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 14:00:51 UTC 2024
    - 21K bytes
    - Viewed (0)
  4. src/testing/testing_test.go

    		if got := recover(); got != want {
    			t.Fatalf("expected panic; got %#v want %q", got, want)
    		}
    	}()
    
    	t.Parallel()
    
    	t.Setenv("GO_TEST_KEY_1", "value")
    }
    
    func TestSetenvWithParallelParentBeforeSetenv(t *testing.T) {
    	t.Parallel()
    
    	t.Run("child", func(t *testing.T) {
    		defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 19:10:41 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. pkg/test/framework/test.go

    	Run(fn func(t TestContext))
    	// RunParallel runs this test in parallel with other children of the same parent test/suite. Under the hood,
    	// this relies on Go's t.Parallel() and will, therefore, have the same behavior.
    	//
    	// A parallel test will run in parallel with siblings that share the same parent test. The parent test function
    	// will exit before the parallel children are executed. It should be noted that if the parent test is prevented
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

                                                    bool is_fetch_op) const;
    
      // Returns the parallel ids of the op.
      ParallelIdsMap GetParallelIdsMap(Operation* op);
    
      // Converts from read/write state that relates ops with the same parallel id
      // to a set of last accesses for use with other parallel ids. Reads/writes
      // between parallel ids are conservatively approximated as writes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  7. tensorflow/c/eager/parallel_device/parallel_device.cc

                status, TF_INVALID_ARGUMENT,
                absl::StrCat(
                    "Got a non-parallel tensor ",
                    tensorflow::unwrap(absl::get<TFE_TensorHandle*>(input))
                        ->DebugString(),
                    " as input to a parallel operation. First pack non-parallel "
                    "tensors for each device into a parallel tensor explicitly.")
                    .c_str());
            return absl::nullopt;
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 29 22:05:31 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/loopclosure.go

    // function literal that calls t.Parallel.
    //
    // In practice, users rely on the fact that statements before the call to
    // t.Parallel are synchronous. For example by declaring test := test inside the
    // function literal, but before the call to t.Parallel.
    //
    // Therefore, we only flag references in statements that are obviously
    // dominated by a call to t.Parallel. As a simple heuristic, we only consider
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/runtime/crash_cgo_test.go

    	"internal/testenv"
    	"os"
    	"os/exec"
    	"runtime"
    	"strconv"
    	"strings"
    	"testing"
    	"time"
    )
    
    func TestCgoCrashHandler(t *testing.T) {
    	t.Parallel()
    	testCrashHandler(t, true)
    }
    
    func TestCgoSignalDeadlock(t *testing.T) {
    	// Don't call t.Parallel, since too much work going on at the
    	// same time can cause the testprogcgo code to overrun its
    	// timeouts (issue #18598).
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 16:44:47 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  10. src/net/net_test.go

    	case "plan9":
    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    	t.Parallel()
    
    	for _, network := range []string{"tcp", "unix", "unixpacket"} {
    		network := network
    		t.Run(network, func(t *testing.T) {
    			if !testableNetwork(network) {
    				t.Skipf("network %s is not testable on the current platform", network)
    			}
    			t.Parallel()
    
    			ln := newLocalListener(t, network)
    			switch network {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 21:04:44 UTC 2024
    - 13.3K bytes
    - Viewed (0)
Back to top