Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 546 for begin7_ (0.2 sec)

  1. src/database/sql/example_test.go

    			log.Fatal(err)
    		}
    	}
    	if err := tx.Commit(); err != nil {
    		log.Fatal(err)
    	}
    }
    
    func ExampleDB_BeginTx() {
    	tx, err := db.BeginTx(ctx, &sql.TxOptions{Isolation: sql.LevelSerializable})
    	if err != nil {
    		log.Fatal(err)
    	}
    	id := 37
    	_, execErr := tx.Exec(`UPDATE users SET status = ? WHERE id = ?`, "paid", id)
    	if execErr != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 28 14:05:09 UTC 2020
    - 8.5K bytes
    - Viewed (0)
  2. src/text/scanner/example_test.go

    	// default:1:2: var1
    	// default:1:7: var2
    	// default:1:11: %
    	//
    	// percent:1:1: %var1
    	// percent:1:7: var2
    	// percent:1:11: %
    }
    
    func Example_mode() {
    	const src = `
        // Comment begins at column 5.
    
    This line should not be included in the output.
    
    /*
    This multiline comment
    should be extracted in
    its entirety.
    */
    `
    
    	var s scanner.Scanner
    	s.Init(strings.NewReader(src))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 10 02:01:58 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  3. docs/de/docs/tutorial/static-files.md

    ## Einzelheiten
    
    Das erste `"/static"` bezieht sich auf den Unterpfad, auf dem diese „Unteranwendung“ „gemountet“ wird. Daher wird jeder Pfad, der mit `"/static"` beginnt, von ihr verarbeitet.
    
    Das `directory="static"` bezieht sich auf den Namen des Verzeichnisses, das Ihre statischen Dateien enthält.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:27:14 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. 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)
  5. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

            if begin is None:
              begin = self._ssa_name('begin')
              self._emit_with_loc('\n{} = arith.constant 0 : index'.format(begin),
                                  node)
            elif begin_ty != TFRTypes.INDEX:
              begin_ = self._ssa_name('begin')
              self._emit_with_loc(
                  '\n{} = arith.index_cast {} : {} to index'.format(
                      begin_, begin, begin_ty), node)
              begin = begin_
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tutorial/partr2_build_lifecycle.adoc

    Phase 3 - Execution  :: During the execution phase, Gradle executes each of the selected tasks.
    
    When Gradle is invoked to execute a task, the lifecycle begins.
    Let's see it in action.
    
    image::gradle-build-lifecycle.png[]
    
    == Step 2. Update the Settings File
    
    Add the following line to the top of the Settings file:
    
    [.multi-language-sample]
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 05:44:04 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass.cc

              constant_pool.Get1DHostConstant(slice_inputs.size_as_vector[i]));
          continue;
        }
    
        DCHECK_EQ(slice_inputs.size_as_vector[i], -1);
    
        Output begin_i = ops::Slice(
            host_scope.WithOpName("begin_", i), slice_inputs.begin,
            constant_pool.Get1DHostConstant(i), constant_pool.Get1DHostConstant(1));
    
        Output input_shape_i = ops::Slice(
            host_scope.WithOpName("input_shape_", i), input_shape,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/tests/tf-ops.mlir

    func.func @testSlice_begin_negative(%arg0: tensor<4xi32>) -> tensor<2xi32> {
      %begins = "tf.Const"() {value = dense<[-1]> : tensor<1xi64>} : () -> (tensor<1xi64>)
      %sizes = "tf.Const"() {value = dense<[2]> : tensor<1xi64>} : () -> (tensor<1xi64>)
      // expected-error @+1 {{requires 0 <= begin[i] <= begin[i] + size[i] <= Di}}
      %0 = "tf.Slice"(%arg0, %begins, %sizes) : (tensor<4xi32>, tensor<1xi64>, tensor<1xi64>) -> tensor<2xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 23 14:40:35 UTC 2023
    - 236.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/proxy/doc.go

    // the TunnelingConnection. A lot of the other code in streamtunnel.go
    // is for properly upgrading both the upstream SPDY connection and the
    // downstream WebSocket connection before streaming begins.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 09 17:56:46 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
Back to top