Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 153 for book (0.14 sec)

  1. src/database/sql/sql_test.go

    	db := newTestDB(t, "foo")
    	defer closeDB(t, db)
    	exec(t, db, "CREATE|t1|name=string,age=int32,dead=bool")
    
    	simulateBadConn := func(name string, hook *func() bool, op func() error) {
    		broken, retried := false, false
    		numOpen := db.numOpen
    
    		// simulate a broken connection on the first try
    		*hook = func() bool {
    			if !broken {
    				broken = true
    				return true
    			}
    			retried = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/ast.go

    		s = s[:max]
    	}
    	return s
    }
    
    // The printState type holds information needed to print an AST.
    type printState struct {
    	tparams         bool // whether to print template parameters
    	enclosingParams bool // whether to print enclosing parameters
    	llvmStyle       bool
    	max             int // maximum output length
    
    	// The scopes field is used to avoid unnecessary parentheses
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 105.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssa/rewriteLOONG64.go

    	return false
    }
    func rewriteValueLOONG64_OpAddr(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (MOVVaddr {sym} base)
    	for {
    		sym := auxToSym(v.Aux)
    		base := v_0
    		v.reset(OpLOONG64MOVVaddr)
    		v.Aux = symToAux(sym)
    		v.AddArg(base)
    		return true
    	}
    }
    func rewriteValueLOONG64_OpAtomicCompareAndSwap32(v *Value) bool {
    	v_3 := v.Args[3]
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 19:26:25 UTC 2023
    - 195.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewriteMIPS64.go

    	}
    	return false
    }
    func rewriteValueMIPS64_OpAddr(v *Value) bool {
    	v_0 := v.Args[0]
    	// match: (Addr {sym} base)
    	// result: (MOVVaddr {sym} base)
    	for {
    		sym := auxToSym(v.Aux)
    		base := v_0
    		v.reset(OpMIPS64MOVVaddr)
    		v.Aux = symToAux(sym)
    		v.AddArg(base)
    		return true
    	}
    }
    func rewriteValueMIPS64_OpAtomicAnd8(v *Value) bool {
    	v_2 := v.Args[2]
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 31 03:59:48 UTC 2023
    - 211.6K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    				c.healBuckets(ctx, objAPI)   // heal buckets subsequently
    
    				took := time.Since(refreshStart).Seconds()
    				if took > maxRefreshDurationSecondsForLog {
    					// Log if we took a lot of time.
    					logger.Info("Site replication healing refresh took %.2fs", took)
    				}
    
    				// wait for 200 millisecond, if we are experience lot of I/O
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/rewriteRISCV64.go

    		return true
    	}
    }
    func rewriteValueRISCV64_OpEqB(v *Value) bool {
    	v_1 := v.Args[1]
    	v_0 := v.Args[0]
    	b := v.Block
    	typ := &b.Func.Config.Types
    	// match: (EqB x y)
    	// result: (SEQZ (SUB <typ.Bool> x y))
    	for {
    		x := v_0
    		y := v_1
    		v.reset(OpRISCV64SEQZ)
    		v0 := b.NewValue0(v.Pos, OpRISCV64SUB, typ.Bool)
    		v0.AddArg2(x, y)
    		v.AddArg(v0)
    		return true
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 205.1K bytes
    - Viewed (0)
  7. src/net/http/transport_test.go

    	run(t, testTransportRespectRequestWantsClose, []testMode{http1Mode})
    }
    func testTransportRespectRequestWantsClose(t *testing.T, mode testMode) {
    	tests := []struct {
    		disableKeepAlives bool
    		close             bool
    	}{
    		{disableKeepAlives: false, close: false},
    		{disableKeepAlives: false, close: true},
    		{disableKeepAlives: true, close: false},
    		{disableKeepAlives: true, close: true},
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // metadata in the exported flatbuffer file.
      tflite::ModelControlDependencies model_control_dependencies_;
    
      // Decide if we convert stablehlo ops in flatbuffer
      bool convert_stablehlo_ = true;
    
      bool use_buffer_offset_ = false;
    
      bool require_use_buffer_offset_ = false;
    
      std::optional<size_t> custom_option_alignment_ = std::nullopt;
    
      // Map from mlir constant attribute to the buffer index. This is used to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. fastapi/routing.py

        response_content: Any,
        include: Optional[IncEx] = None,
        exclude: Optional[IncEx] = None,
        by_alias: bool = True,
        exclude_unset: bool = False,
        exclude_defaults: bool = False,
        exclude_none: bool = False,
        is_coroutine: bool = True,
    ) -> Any:
        if field:
            errors = []
            if not hasattr(field, "serialize"):
                # pydantic v1
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    // true.
    bool VerifyOperandsHaveSameShapesOrBroadcastableShape(
        Operation* op, ArrayRef<unsigned> indices, int max_bcast_rank) {
      if (indices.empty()) return true;
    
      // First, it checks there are any inputs that has unknown rank.
      bool has_unknown_shape_input = false;
      bool has_same_shape = true;
      bool reach_first_known_shape = false;
      int64_t max_rank = -1;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top