Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MaxIdleTimeClosed (0.31 sec)

  1. api/go1.15.txt

    pkg crypto/x509, type RevocationList struct, ThisUpdate time.Time
    pkg database/sql, method (*DB) SetConnMaxIdleTime(time.Duration)
    pkg database/sql, method (*Row) Err() error
    pkg database/sql, type DBStats struct, MaxIdleTimeClosed int64
    pkg database/sql/driver, type Validator interface { IsValid }
    pkg database/sql/driver, type Validator interface, IsValid() bool
    pkg debug/pe, const IMAGE_DLLCHARACTERISTICS_APPCONTAINER = 4096
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jul 17 02:15:01 UTC 2020
    - 7.6K bytes
    - Viewed (0)
  2. src/database/sql/sql.go

    		InUse:           db.numOpen - len(db.freeConn),
    
    		WaitCount:         db.waitCount,
    		WaitDuration:      time.Duration(wait),
    		MaxIdleClosed:     db.maxIdleClosed,
    		MaxIdleTimeClosed: db.maxIdleTimeClosed,
    		MaxLifetimeClosed: db.maxLifetimeClosed,
    	}
    	return stats
    }
    
    // Assumes db.mu is locked.
    // If there are connRequests and the connection limit hasn't been reached,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  3. src/database/sql/sql_test.go

    			db.SetMaxOpenConns(usedConns)
    			db.SetMaxIdleConns(usedConns)
    			db.SetConnMaxIdleTime(item.wantMaxIdleTime)
    			db.SetConnMaxLifetime(item.wantMaxLifetime)
    
    			preMaxIdleClosed := db.Stats().MaxIdleTimeClosed
    
    			// Busy usedConns.
    			testUseConns(t, usedConns, baseTime, db)
    
    			tm := baseTime.Add(item.timeOffset)
    
    			// Reuse connections which should never be considered idle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Conn", Type, 9},
    		{"DB", Type, 0},
    		{"DBStats", Type, 5},
    		{"DBStats.Idle", Field, 11},
    		{"DBStats.InUse", Field, 11},
    		{"DBStats.MaxIdleClosed", Field, 11},
    		{"DBStats.MaxIdleTimeClosed", Field, 15},
    		{"DBStats.MaxLifetimeClosed", Field, 11},
    		{"DBStats.MaxOpenConnections", Field, 11},
    		{"DBStats.OpenConnections", Field, 5},
    		{"DBStats.WaitCount", Field, 11},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top