Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 37 of 37 for Identical (0.2 sec)

  1. src/database/sql/sql.go

    	// from db and determine if it must prepare the stmt again by
    	// inspecting css.
    	cg   stmtConnGrabber
    	cgds *driverStmt
    
    	// parentStmt is set when a transaction-specific statement
    	// is requested from an identical statement prepared on the same
    	// conn. parentStmt is used to track the dependency of this statement
    	// on its originating ("parent") statement so that parentStmt may
    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. tests/integration/pilot/common/routing.go

    //     The cluster is distinct.
    //  4. Another service, B', with P' -> T'. There is no conflicts here at all.
    func serviceCases(t TrafficContext) {
    	for _, c := range t.Apps.A {
    		c := c
    
    		// Case 1
    		// Identical to port "http" or service B, just behind another service name
    		svc := fmt.Sprintf(`apiVersion: v1
    kind: Service
    metadata:
      name: b-alt-1
      labels:
        app: b
    spec:
      ports:
      - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

      // TensorListReserveOp, EmptyTensorListOp and TensorListFromTensor ops. It
      // refines the element shape if all tensors written to the list across all
      // mutations have identical static shape.
      bool InferShapeForTensorListInitOps(Operation* op);
    
      // Conservatively infers shape of output tenorlist and item based on
      // input tensorlist's element shape.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/ARM64.rules

    (BitRev8    x) => (SRLconst [56] (RBIT <typ.UInt64> x))
    
    // In fact, UMOD will be translated into UREM instruction, and UREM is originally translated into
    // UDIV and MSUB instructions. But if there is already an identical UDIV instruction just before or
    // after UREM (case like quo, rem := z/y, z%y), then the second UDIV instruction becomes redundant.
    // The purpose of this rule is to have this extra UDIV instruction removed in CSE pass.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 113.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

    //
    // The linearized index paths can be returned back to a structured
    // representation (e.g. to emit C structs matching a signature) with a simple
    // algorithm that recurses on each run of index paths with identical first
    // elements.
    class StructuredValueLinearizer {
     public:
      StructuredValueLinearizer(const StructuredValue& value,
                                mlir::MLIRContext* context);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. src/net/http/transport_test.go

    				}
    				res.Body.Close()
    				if res.Request != req {
    					t.Errorf("Response.Request != original request; want identical Request")
    				}
    			}
    
    			mu.Lock()
    			got := logbuf.String()
    			mu.Unlock()
    			want := fmt.Sprintf(`Dial
    Write("%s")
    Handler
    intentional write failure
    Retried.
    Dial
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  7. src/reflect/all_test.go

    		f = MakeFunc(TypeOf(f), func([]Value) []Value {
    			var c <-chan int = make(chan int)
    			return []Value{ValueOf(c)}
    		}).Interface().(func() chan int)
    		f()
    	})
    	// Two named types which are otherwise identical.
    	shouldPanic("", func() {
    		type T struct{ a, b, c int }
    		type U struct{ a, b, c int }
    		var f func() T
    		f = MakeFunc(TypeOf(f), func([]Value) []Value {
    			return []Value{ValueOf(U{a: 1, b: 2, c: 3})}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top