Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MinimizeLimit (0.29 sec)

  1. src/testing/internal/testdeps/deps.go

    	defer cancel()
    	err = fuzz.CoordinateFuzzing(ctx, fuzz.CoordinateFuzzingOpts{
    		Log:             os.Stderr,
    		Timeout:         timeout,
    		Limit:           limit,
    		MinimizeTimeout: minimizeTimeout,
    		MinimizeLimit:   minimizeLimit,
    		Parallel:        parallel,
    		Seed:            seed,
    		Types:           types,
    		CorpusDir:       corpusDir,
    		CacheDir:        cacheDir,
    	})
    	if err == ctx.Err() {
    		return nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 14:01:23 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/internal/fuzz/fuzz.go

    	// MinimizeTimeout is the amount of wall clock time to spend minimizing
    	// after discovering a crasher. If zero, there will be no time limit. If
    	// MinimizeTimeout and MinimizeLimit are both zero, then minimization will
    	// be disabled.
    	MinimizeTimeout time.Duration
    
    	// MinimizeLimit is the maximum number of calls to the fuzz function to be
    	// made while minimizing after finding a crash. If zero, there will be no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top