Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for begins (0.11 sec)

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

       * @deprecated Creating {@link Future}s of closeable types is dangerous in general because the
       *     underlying value may never be closed if the {@link Future} is canceled after its operation
       *     begins. Consider replacing code that creates {@link ListenableFuture}s of closeable types,
       *     including those that pass them to this method, with {@link #submit(ClosingCallable,
    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

       * @deprecated Creating {@link Future}s of closeable types is dangerous in general because the
       *     underlying value may never be closed if the {@link Future} is canceled after its operation
       *     begins. Consider replacing code that creates {@link ListenableFuture}s of closeable types,
       *     including those that pass them to this method, with {@link #submit(ClosingCallable,
    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. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    transparent Substances, may, by evacuating their Pores, or separating their parts, be render'd sufficiently opake; as Salts or wet Paper, or the _Oculus Mundi_ Stone by being dried, Horn by being scraped, Glass by being reduced to Powder, or otherwise flawed; Turpentine by being stirred about with Water till they mix imperfectly, and Water by being form'd into many small Bubbles, either alone in the form of Froth, or by shaking it together with Oil of Turpentine, or Oil Olive, or with some other convenient...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <p>
     * The wildcard expression may consist of two special meta
     * characters in addition to the normal filename characters. The '*'
     * character matches any number of characters in part of a name. If
     * the expression begins with one or more '?'s then exactly that
     * many characters will be matched whereas if it ends with '?'s
     * it will match that many characters <i>or less</i>.
     * <p>
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  5. src/net/http/server.go

    //
    // Patterns can match the method, host and path of a request.
    // Some examples:
    //
    //   - "/index.html" matches the path "/index.html" for any host and method.
    //   - "GET /static/" matches a GET request whose path begins with "/static/".
    //   - "example.com/" matches any request to the host "example.com".
    //   - "example.com/{$}" matches requests with host "example.com" and path "/".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. src/database/sql/sql.go

    // Begin uses [context.Background] internally; to specify the context, use
    // [DB.BeginTx].
    func (db *DB) Begin() (*Tx, error) {
    	return db.BeginTx(context.Background(), nil)
    }
    
    func (db *DB) begin(ctx context.Context, opts *TxOptions, strategy connReuseStrategy) (tx *Tx, err error) {
    	dc, err := db.conn(ctx, strategy)
    	if err != nil {
    		return nil, err
    	}
    	return db.beginDC(ctx, dc, dc.releaseConn, opts)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  7. src/crypto/x509/verify_test.go

    	return strings.Join(name.Country, ",") + "/" + strings.Join(name.Organization, ",") + "/" + strings.Join(name.OrganizationalUnit, ",") + "/" + name.CommonName
    }
    
    const gtsIntermediate = `-----BEGIN CERTIFICATE-----
    MIIFljCCA36gAwIBAgINAgO8U1lrNMcY9QFQZjANBgkqhkiG9w0BAQsFADBHMQsw
    CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU
    MBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMjAwODEzMDAwMDQyWhcNMjcwOTMwMDAw
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/transforms/optimize.cc

    // Returns true if we can eliminate the SliceOp. When the values of `begin` are
    // all 0s and `size[i]` is equal to either -1 or `input.shape[i]`
    // for each dim i, the output tensor is identical to `input`.
    bool CanOptimizeIdentitySliceOp(Value input, Attribute begin, Attribute size) {
      // Checks if `begin` and `size` are i32 or i64.
      auto begin_attr = mlir::dyn_cast<DenseIntElementsAttr>(begin);
      auto size_attr = mlir::dyn_cast<DenseIntElementsAttr>(size);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

          }
          axis++;
        }
      }
    
      if (begin && size && input_type.hasStaticShape()) {
        for (uint64_t i = 0, end = begin.getNumElements(); i < end; i++) {
          int begin_i = begin.getValues<APInt>()[i].getSExtValue();
          int size_i = size.getValues<APInt>()[i].getSExtValue();
          int dim_i = input_type.getShape()[i];
          if (begin_i > dim_i) {
            return op.emitOpError(llvm::formatv(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::vector<int64_t> update_window_dims_vec(update_window_dims_mlir.begin(),
                                                  update_window_dims_mlir.end());
      std::vector<int64_t> inserted_window_dims_vec(
          inserted_window_dims_mlir.begin(), inserted_window_dims_mlir.end());
      std::vector<int64_t> scatter_dims_to_operand_dims_vec(
          scatter_dims_to_operand_dims_mlir.begin(),
          scatter_dims_to_operand_dims_mlir.end());
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top