Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for totalDuration (0.37 sec)

  1. src/internal/fuzz/worker.go

    				canMinimize = false
    			}
    			result := fuzzResult{
    				limit:         input.limit,
    				count:         resp.Count,
    				totalDuration: resp.TotalDuration,
    				entryDuration: resp.InterestingDuration,
    				entry:         entry,
    				crasherMsg:    resp.Err,
    				coverageData:  resp.CoverageData,
    				canMinimize:   canMinimize,
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/internal/fuzz/fuzz.go

    	// to test. 0 if there was no limit.
    	limit int64
    
    	// count is the number of values the worker actually tested.
    	count int64
    
    	// totalDuration is the time the worker spent testing inputs.
    	totalDuration time.Duration
    
    	// entryDuration is the time the worker spent execution an interesting result
    	entryDuration time.Duration
    }
    
    type fuzzMinimizeInput struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  3. src/internal/trace/traceviewer/static/trace_viewer_full.html

    totalStats[key]+=value;totalDuration+=value;}}
    if(!(SCHEDULING_STATE.RUNNING in totalStats)||totalDuration===0||totalDuration-totalStats[SCHEDULING_STATE.RUNNING]<3){return;}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top