Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 458 for Parallel (0.48 sec)

  1. docs/de/docs/async.md

    <img src="/img/async/parallel-burgers/parallel-burgers-01.png" class="illustration">
    
    Dann sind Sie endlich an der Reihe und bestellen zwei sehr leckere Burger für Ihren Schwarm und Sie.
    
    Sie zahlen 💸.
    
    <img src="/img/async/parallel-burgers/parallel-burgers-02.png" class="illustration">
    
    Der Kassierer geht in die Küche.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:06:16 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  2. src/net/timeout_test.go

    		t.Skipf("not supported on %s", runtime.GOOS)
    	}
    
    	t.Parallel()
    
    	ln := newLocalListener(t, "tcp")
    	defer func() {
    		if err := ln.Close(); err != nil {
    			t.Error(err)
    		}
    	}()
    
    	for _, tt := range dialTimeoutTests {
    		t.Run(fmt.Sprintf("%v/%v", tt.initialTimeout, tt.initialDelta), func(t *testing.T) {
    			// We don't run these subtests in parallel because we don't know how big
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 18:06:55 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. tensorflow/c/eager/parallel_device/parallel_device_lib.h

                                                           TF_Status* status) const;
    
      // Construct a parallel tensor consisting of the scalar values from `values`.
      template <typename DataType>
      std::unique_ptr<ParallelTensor> ScalarsFromSequence(
          absl::Span<const DataType> values, TFE_Context* context,
          TF_Status* status) const;
    
      // A parallel tensor with scalar integers numbering component devices.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 25 15:21:13 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  4. src/cmd/covdata/tool_test.go

    		t.Parallel()
    		testMergeCombinePrograms(t, s)
    	})
    	t.Run("Dump", func(t *testing.T) {
    		t.Parallel()
    		testDump(t, s)
    	})
    	t.Run("Percent", func(t *testing.T) {
    		t.Parallel()
    		testPercent(t, s)
    	})
    	t.Run("PkgList", func(t *testing.T) {
    		t.Parallel()
    		testPkgList(t, s)
    	})
    	t.Run("Textfmt", func(t *testing.T) {
    		t.Parallel()
    		testTextfmt(t, s)
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/parallel_execute_to_islands.cc

        // end of the pipeline. Mostly, it will rely on side effect analysis by
        // considering accessing resource only. However, for branches under parallel
        // group, there should not be any control deps between them even side effect
        // analysis indicate some control deps. Therefore, we will mark parallel
        // group and branch information here so that `UpdateControlDependenciesPass`
        // can fetch the related information later.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 19 19:47:16 UTC 2023
    - 11.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/graph/Network.java

       * an edge connecting node A to node B if this {@link Network} has an edge connecting A to B.
       *
       * <p>If this network {@link #allowsParallelEdges() allows parallel edges}, parallel edges will be
       * treated as if collapsed into a single edge. For example, the {@link #degree(Object)} of a node
       * in the {@link Graph} view may be less than the degree of the same node in this {@link Network}.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  7. src/cmd/cgo/internal/testcshared/cshared_test.go

    		t.Errorf("%v%s", args, out)
    	}
    }
    
    // test4: test signal handlers
    func TestSignalHandlers(t *testing.T) {
    	t.Parallel()
    	testSignalHandlers(t, "./libgo4", "main4.c", "testp4")
    }
    
    // test5: test signal handlers with os/signal.Notify
    func TestSignalHandlersWithNotify(t *testing.T) {
    	t.Parallel()
    	testSignalHandlers(t, "./libgo5", "main5.c", "testp5")
    }
    
    func TestPIE(t *testing.T) {
    	switch GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultWorkerLeaseService.java

            LOGGER.info("Using {} worker leases.", this.workerLimits.getMaxWorkerCount());
        }
    
        @Override
        public void startProjectExecution(boolean parallel) {
            Registries current = registries.get();
            Registries next = current.startProjectExecution(parallel);
            setProjectExecutionState(current, next);
        }
    
        @Override
        public void finishProjectExecution() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 04:43:28 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. src/internal/coverage/cfile/emitdata_test.go

    	t.Run("emitToDir", func(t *testing.T) {
    		t.Parallel()
    		testEmitToDir(t, atomicHarnessPath, dir)
    	})
    	t.Run("emitToWriter", func(t *testing.T) {
    		t.Parallel()
    		testEmitToWriter(t, atomicHarnessPath, dir)
    	})
    	t.Run("emitToNonexistentDir", func(t *testing.T) {
    		t.Parallel()
    		testEmitToNonexistentDir(t, atomicHarnessPath, dir)
    	})
    	t.Run("emitToNilWriter", func(t *testing.T) {
    		t.Parallel()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  10. src/cmd/link/elf_test.go

    func main() {}
    `
    
    // The linker used to crash if an ELF input file had multiple text sections
    // with the same name.
    func TestSectionsWithSameName(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	testenv.MustHaveCGO(t)
    	t.Parallel()
    
    	objcopy, err := exec.LookPath("objcopy")
    	if err != nil {
    		t.Skipf("can't find objcopy: %v", err)
    	}
    
    	dir := t.TempDir()
    
    	gopath := filepath.Join(dir, "GOPATH")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 16:34:01 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top