Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getMaxCount (0.11 sec)

  1. src/testing/quick/quick.go

    func (c *Config) getRand() *rand.Rand {
    	if c.Rand == nil {
    		return rand.New(rand.NewSource(time.Now().UnixNano()))
    	}
    	return c.Rand
    }
    
    // getMaxCount returns the maximum number of iterations to run for a given
    // Config.
    func (c *Config) getMaxCount() (maxCount int) {
    	maxCount = c.MaxCount
    	if maxCount == 0 {
    		if c.MaxCountScale != 0 {
    			maxCount = int(c.MaxCountScale * float64(*defaultMaxCount))
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top