Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 27 of 27 for Region (0.4 sec)

  1. src/database/sql/sql.go

    	err = db.retry(func(strategy connReuseStrategy) error {
    		tx, err = db.begin(ctx, opts, strategy)
    		return err
    	})
    
    	return tx, err
    }
    
    // Begin starts a transaction. The default isolation level is dependent on
    // the driver.
    //
    // Begin uses [context.Background] internally; to specify the context, use
    // [DB.BeginTx].
    func (db *DB) Begin() (*Tx, error) {
    	return db.BeginTx(context.Background(), nil)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf.mlir

      // CHECK-LABEL: strided_slice_with_constant_attributes
      // CHECK-DAG: [[BEGIN:%cst.*]] = arith.constant dense<-1> : tensor<1xi32>
      // CHECK-DAG: [[END:%cst.*]] = arith.constant dense<0> : tensor<1xi32>
      // CHECK-DAG: [[STRIDES:%cst.*]] = arith.constant dense<1> : tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 05 01:54:33 UTC 2024
    - 153.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			mile("BeginCreate")
    			return func(_ context.Context, success bool) {
    				mile(fmt.Sprintf("FinishCreate(%v)", success))
    			}, fmt.Errorf("begin")
    		},
    		expectMilestones: []string{"BeginCreate"},
    	}}
    
    	for _, tc := range testCases {
    		t.Run(tc.name, func(t *testing.T) {
    			pod := &example.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/ops.mlir

      }) : (tensor<i1>) -> (tensor<1xf32>)
      func.return %0 : tensor<1xf32>
    }
    
    func.func @if_then(%arg0: tensor<i1>, %arg1: tensor<1xf32>) -> tensor<1xf32> {
      // expected-error @+1 {{'tfl.if' op expected 2 regions}}
      %0 = "tfl.if"(%arg0) ({
        %1 = "tfl.sub"(%arg1, %arg1) {fused_activation_function = "NONE"} : (tensor<1xf32>, tensor<1xf32>) -> tensor<1xf32>
        "tfl.yield"(%1) : (tensor<1xf32>) -> ()
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 189.2K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // StripPrefix returns a handler that serves HTTP requests by removing the
    // given prefix from the request URL's Path (and RawPath if set) and invoking
    // the handler h. StripPrefix handles a request for a path that doesn't begin
    // with prefix by replying with an HTTP 404 not found error. The prefix must
    // match exactly: if the prefix in the request contains escaped characters
    // the reply is also an HTTP 404 not found error.
    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/cmd/internal/obj/ppc64/asm9.go

    	} else {
    		switch form {
    		case D_FORM:
    			rel.Type = objabi.R_ADDRPOWER
    		case DS_FORM:
    			rel.Type = objabi.R_ADDRPOWER_DS
    		}
    	}
    	return
    }
    
    // Determine the mask begin (mb) and mask end (me) values
    // for a valid word rotate mask. A valid 32 bit mask is of
    // the form 1+0*1+ or 0*1+0*.
    //
    // Note, me is inclusive.
    func decodeMask32(mask uint32) (mb, me uint32, valid bool) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	// uses cgo as well, cgo will be processing both and will
    	// translate both into x.cgo1.go in the objdir, overwriting one.
    	// Rename x.go to _x_swig.go to avoid this problem.
    	// We ignore files in the original dir that begin with underscore
    	// so _x_swig.go cannot conflict with an original file we were
    	// going to compile.
    	goFile = objdir + goFile
    	newGoFile := objdir + "_" + base + "_swig.go"
    	if cfg.BuildX || cfg.BuildN {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
Back to top