Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for refillInputQueue (0.12 sec)

  1. src/internal/fuzz/fuzz.go

    func (c *coordinator) sentInput(input fuzzInput) {
    	c.inputQueue.dequeue()
    	c.countWaiting += input.limit
    }
    
    // refillInputQueue refills the input queue from the corpus after it becomes
    // empty.
    func (c *coordinator) refillInputQueue() {
    	for _, e := range c.corpus.entries {
    		c.inputQueue.enqueue(e)
    	}
    }
    
    // queueForMinimization creates a fuzzMinimizeInput from result and adds it
    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