Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 53 for Starting (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        while loop body has a control barrier (`%barrier`) at the end which forces
        a dependency and the two assign variable ops must wait for each other to
        complete before starting the next iteration. Transforming these control
        outputs to data outputs removes the dependency between the two assign
        variable ops, thus allowing them to run in parallel across iterations.
    
        Before:
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *       of the computation. After that result is available (or the computation fails), all objects
     *       captured by any of the steps in the pipeline are closed.
     * </ol>
     *
     * <h3>Starting a pipeline</h3>
     *
     * Start a {@code ClosingFuture} pipeline {@linkplain #submit(ClosingCallable, Executor) from a
     * callable block} that may capture objects for later closing. To start a pipeline from a {@link
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    // an assertion that the first operand (`assert_what`) evaluates to `true`.
    // This is a temporary workaround for unblocking dynamic model conversion
    // because starting from version 7, in presence of shape polymorphism JAX will
    // emit stablehlo.custom_call @shape_assertion to verify at compile time that
    // the code is used with compatible actual shapes.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. src/database/sql/sql.go

    // [DB.PingContext].
    func (db *DB) Ping() error {
    	return db.PingContext(context.Background())
    }
    
    // Close closes the database and prevents new queries from starting.
    // Close then waits for all queries that have started processing on the server
    // to finish.
    //
    // It is rare to Close a [DB], as the [DB] handle is meant to be
    // long-lived and shared between many goroutines.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  5. cmd/server_test.go

    		t.Run(fmt.Sprintf("Test: %d, ServerType: %s", i+1, testCase.serverType), func(t *testing.T) {
    			runAllTests(testCase, &check{t, testCase.serverType})
    		})
    	}
    }
    
    // Setting up the test suite.
    // Starting the Test server with temporary backend.
    func (s *TestSuiteCommon) SetUpSuite(c *check) {
    	if s.secure {
    		cert, key, err := generateTLSCertKey("127.0.0.1")
    		c.Assert(err, nil)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  6. src/cmd/go/internal/load/pkg.go

    	}
    	p.Internal.Imports = imports
    	if p.Error == nil && p.Name == "main" && !p.Internal.ForceLibrary && !p.Incomplete && !opts.SuppressBuildInfo {
    		// TODO(bcmills): loading VCS metadata can be fairly slow.
    		// Consider starting this as a background goroutine and retrieving the result
    		// asynchronously when we're actually ready to build the package, or when we
    		// actually need to evaluate whether the package's metadata is stale.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  7. cluster/gce/util.sh

      ETCD_APISERVER_CLIENT_CERT_BASE64=$(gzip -c "etcd-apiserver-client.pem" | base64 | tr -d '\r\n')
      popd
    }
    
    
    function create-master() {
      echo "Starting master and configuring firewalls"
      gcloud compute firewall-rules create "${MASTER_NAME}-https" \
        --project "${NETWORK_PROJECT}" \
        --network "${NETWORK}" \
        --target-tags "${MASTER_TAG}" \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      let summary = "Return a slice from 'input'.";
    
      let description = [{
    The output tensor is a tensor with dimensions described by 'size'
    whose values are extracted from 'input' starting at the offsets in
    'begin'.
    
    `begin` is zero-based; `size` is one-based. If size[i] is -1, all remaining
    elements in dimension i are included in the slice. In other words, this is
    equivalent to setting:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. cmd/site-replication.go

    		Status:   ResyncStarted.String(),
    		OpType:   "start",
    		ResyncID: rs.ResyncID,
    		Buckets:  res.Buckets,
    	}
    	if len(res.Buckets) > 0 {
    		res.ErrDetail = "partial failure in starting site resync"
    	}
    	if len(buckets) != 0 && len(res.Buckets) == len(buckets) {
    		return res, fmt.Errorf("all buckets resync failed")
    	}
    	return res, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  10. src/net/http/serve_test.go

    	}
    	timeout := 300 * time.Millisecond
    	ts := newClientServerTest(t, mode, TimeoutHandler(handler, timeout, "")).ts
    	defer ts.Close()
    
    	c := ts.Client()
    
    	// Issue was caused by the timeout handler starting the timer when
    	// was created, not when the request. So wait for more than the timeout
    	// to ensure that's not the case.
    	time.Sleep(2 * timeout)
    	res, err := c.Get(ts.URL)
    	if err != nil {
    		t.Fatal(err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top