Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 46 for describeTo (0.21 sec)

  1. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * the query result cursor will both be closed, even if the operation is cancelled or fails.
     *
     * <p>Note that if you don't call {@code closeAsync()}, the captured objects will not be closed. The
     * automatic-closing approach described above is safer.
     *
     * @param <V> the type of the value of this step
     * @since 30.0
     */
    // TODO(dpb): Consider reusing one CloseableList for the entire pipeline, modulo combinations.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  2. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     * the query result cursor will both be closed, even if the operation is cancelled or fails.
     *
     * <p>Note that if you don't call {@code closeAsync()}, the captured objects will not be closed. The
     * automatic-closing approach described above is safer.
     *
     * @param <V> the type of the value of this step
     * @since 30.0
     */
    // TODO(dpb): Consider reusing one CloseableList for the entire pipeline, modulo combinations.
    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. cmd/bucket-replication.go

    	ReplicateHealDelete = "replicate:heal:delete"
    )
    
    var (
    	globalReplicationPool  *ReplicationPool
    	globalReplicationStats *ReplicationStats
    )
    
    // ReplicationPool describes replication pool
    type ReplicationPool struct {
    	// atomic ops:
    	activeWorkers    int32
    	activeMRFWorkers int32
    
    	objLayer   ObjectLayer
    	ctx        context.Context
    	priority   string
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  4. cmd/object-handlers.go

    	rt, ok := remoteInstanceTransport.Load().(http.RoundTripper)
    	if ok {
    		return rt
    	}
    	return nil
    }
    
    // Returns a minio-go Client configured to access remote host described by destDNSRecord
    // Applicable only in a federated deployment
    var getRemoteInstanceClient = func(r *http.Request, host string) (*miniogo.Core, error) {
    	cred := getReqAccessCred(r, globalSite.Region())
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

    bool ShapeInference::InferShapeForReduceDataset(ReduceDatasetOp op,
                                                    int64_t max_iterations) {
      // ReduceDatasetOp's relationship with its associated reduce function is
      // described as follows: The reduce function will in general have (X + Y + Z)
      // arguments, where X is the number of tensor components that represent the
      // state, Y is the number of tensor components that represent the input
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/work/exec.go

    	return envList("PKG_CONFIG", cfg.DefaultPkgConfig)[0]
    }
    
    // splitPkgConfigOutput parses the pkg-config output into a slice of flags.
    // This implements the shell quoting semantics described in
    // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_02,
    // except that it does not support parameter or arithmetic expansion or command
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

        return success();
      }
    
      // Checks if the shape of `updates` is a tensor of shape
      // `indices.shape[:-1] + shape[indices.shape[-1]:]`, as described in
      // ScatterNd op description.
    
      auto outer_dims = indices_type.getRank() - 1;
      auto outermost_dim = indices_type.getDimSize(outer_dims);
      // Checks whether the first `outer_dims` dimensions of `indices` and
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  8. src/reflect/all_test.go

    	for i := 0; i < 3; i++ {
    		c <- i
    	}
    	if l, m := cv.Len(), cv.Cap(); l != len(c) || m != cap(c) {
    		t.Errorf("Len/Cap = %d/%d want %d/%d", l, m, len(c), cap(c))
    	}
    }
    
    // caseInfo describes a single case in a select test.
    type caseInfo struct {
    	desc      string
    	canSelect bool
    	recv      Value
    	closed    bool
    	helper    func()
    	panic     bool
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  9. src/net/http/server.go

    	[]byte("Connection"),
    	[]byte("Transfer-Encoding"),
    }
    
    var (
    	headerContentLength = []byte("Content-Length: ")
    	headerDate          = []byte("Date: ")
    )
    
    // Write writes the headers described in h to w.
    //
    // This method has a value receiver, despite the somewhat large size
    // of h, because it prevents an allocation. The escape analysis isn't
    // smart enough to realize this function doesn't mutate h.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        TFL_OperandHasRankAtMost<1, 1>,
        TFL_OperandHasRankAtMost<2, 1>]> {
      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
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
Back to top