Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 1e1000000 (0.13 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	CLONE_ARGS_SIZE_VER1                        = 0x50
    	CLONE_ARGS_SIZE_VER2                        = 0x58
    	CLONE_CHILD_CLEARTID                        = 0x200000
    	CLONE_CHILD_SETTID                          = 0x1000000
    	CLONE_CLEAR_SIGHAND                         = 0x100000000
    	CLONE_DETACHED                              = 0x400000
    	CLONE_FILES                                 = 0x400
    	CLONE_FS                                    = 0x200
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  2. src/database/sql/sql_test.go

    	stats = db.Stats()
    	if got := stats.OpenConnections; got != 0 {
    		t.Errorf("stats.OpenConnections = %d; want 0", got)
    	}
    }
    
    func TestConnMaxLifetime(t *testing.T) {
    	t0 := time.Unix(1000000, 0)
    	offset := time.Duration(0)
    
    	nowFunc = func() time.Time { return t0.Add(offset) }
    	defer func() { nowFunc = time.Now }()
    
    	db := newTestDB(t, "magicquery")
    	defer closeDB(t, db)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    		if *cgo_yield != nil {
    			asmcgocall(*cgo_yield, nil)
    		}
    		// poll network if not polled for more than 10ms
    		lastpoll := sched.lastpoll.Load()
    		if netpollinited() && lastpoll != 0 && lastpoll+10*1000*1000 < now {
    			sched.lastpoll.CompareAndSwap(lastpoll, now)
    			list, delta := netpoll(0) // non-blocking - returns list of goroutines
    			if !list.empty() {
    				// Need to decrement number of idle locked M's
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  4. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    in going through the Glass towards the first, second, third, and fourth Rings of Colours,) and if the first thickness be divided into 100000000 equal parts, the increased thicknesses will be 100002908, 100005816, 100008725, and 100011633, and the Angles of which these thicknesses are Secants will be 26´ 13´´, 37´ 5´´, 45´ 6´´, and 52´ 26´´, the Radius being 100000000; and the Sines of these Angles are 762, 1079, 1321, and 1525, and the proportional Sines of Refraction 1172, 1659, 2031, and 2345, the...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
Back to top