Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 546 for begin7_ (0.27 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

            : base_(base),
              begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
              begin2_(g2.begin()), end2_(g2.end()), current2_(current2),
              begin3_(g3.begin()), end3_(g3.end()), current3_(current3),
              begin4_(g4.begin()), end4_(g4.end()), current4_(current4),
              begin5_(g5.begin()), end5_(g5.end()), current5_(current5),
              begin6_(g6.begin()), end6_(g6.end()), current6_(current6)    {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

            : base_(base),
              begin1_(g1.begin()), end1_(g1.end()), current1_(current1),
              begin2_(g2.begin()), end2_(g2.end()), current2_(current2),
              begin3_(g3.begin()), end3_(g3.end()), current3_(current3),
              begin4_(g4.begin()), end4_(g4.end()), current4_(current4),
              begin5_(g5.begin()), end5_(g5.end()), current5_(current5),
              begin6_(g6.begin()), end6_(g6.end()), current6_(current6)    {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  3. logger/logger.go

    type traceRecorder struct {
    	Interface
    	BeginAt      time.Time
    	SQL          string
    	RowsAffected int64
    	Err          error
    }
    
    // New trace recorder
    func (l *traceRecorder) New() *traceRecorder {
    	return &traceRecorder{Interface: l.Interface, BeginAt: time.Now()}
    }
    
    // Trace implement logger interface
    func (l *traceRecorder) Trace(ctx context.Context, begin time.Time, fc func() (string, int64), err error) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Tue Nov 07 02:19:41 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  4. src/database/sql/ctxutil.go

    		}
    
    		// If a read-only transaction is requested return an error as the
    		// BeginTx driver value is not supported.
    		if opts.ReadOnly {
    			return nil, errors.New("sql: driver does not support read-only transactions")
    		}
    	}
    
    	if ctx.Done() == nil {
    		return ci.Begin()
    	}
    
    	txi, err := ci.Begin()
    	if err == nil {
    		select {
    		default:
    		case <-ctx.Done():
    			txi.Rollback()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 02 12:57:37 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    class RangeGenerator : public ParamGeneratorInterface<T> {
     public:
      RangeGenerator(T begin, T end, IncrementT step)
          : begin_(begin), end_(end),
            step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
      virtual ~RangeGenerator() {}
    
      virtual ParamIteratorInterface<T>* Begin() const {
        return new Iterator(this, begin_, 0, step_);
      }
      virtual ParamIteratorInterface<T>* End() const {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.cc

        }
        auto begin = data.begin();
        if (offset > pos) {
          // The block begins before the slice we're reading.
          begin += offset - pos;
        }
        auto end = data.end();
        if (pos + data.size() > offset + n) {
          // The block extends past the end of the slice we're reading.
          end -= (pos + data.size()) - (offset + n);
        }
        if (begin < end) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 16 01:39:09 UTC 2020
    - 11.1K bytes
    - Viewed (0)
  7. prepare_stmt.go

    	db.PreparedSQL = append(db.PreparedSQL, query)
    	db.Mux.Unlock()
    
    	return cacheStmt, nil
    }
    
    func (db *PreparedStmtDB) BeginTx(ctx context.Context, opt *sql.TxOptions) (ConnPool, error) {
    	if beginner, ok := db.ConnPool.(TxBeginner); ok {
    		tx, err := beginner.BeginTx(ctx, opt)
    		return &PreparedStmtTX{PreparedStmtDB: db, Tx: tx}, err
    	}
    
    	beginner, ok := db.ConnPool.(ConnPoolBeginner)
    	if !ok {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Mar 28 08:47:39 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  8. finisher_api.go

    		if err = fc(tx); err == nil {
    			panicked = false
    			return tx.Commit().Error
    		}
    	}
    
    	panicked = false
    	return
    }
    
    // Begin begins a transaction with any transaction options opts
    func (db *DB) Begin(opts ...*sql.TxOptions) *DB {
    	var (
    		// clone statement
    		tx  = db.getInstance().Session(&Session{Context: db.Statement.Context, NewDB: db.clone == 1})
    		opt *sql.TxOptions
    		err error
    	)
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Jan 12 08:42:21 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. src/internal/txtar/archive.go

    //
    // A txtar archive is zero or more comment lines and then a sequence of file entries.
    // Each file entry begins with a file marker line of the form "-- FILENAME --"
    // and is followed by zero or more file content lines making up the file data.
    // The comment or file content ends at the next file marker line.
    // The file marker line must begin with the three-byte sequence "-- "
    // and end with the three-byte sequence " --", but the enclosed
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 20 02:13:02 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

    // Verifies that:
    //
    // - operands begin and size are 1D with the same number of elements.
    // - if the input is a ranked tensor, the rank of the input equals the number
    //   of elements in operands begin and size.
    // - if begin are constants, that
    //   0 <= begin[i] <= begin[i] + size[i] <= input_ty.getShape()[i]
    //   and
    //   size[i] == output_ty.getShape()[i]
    // - if begins aren't constant but the input is a ranked tensor, that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
Back to top