MCPcopy Index your code
hub / github.com/devploit/nomore403 / done

Method done

cmd/progress.go:68–77  ·  view source on GitHub ↗

done increments the completed counter and redraws the progress bar.

()

Source from the content-addressed store, hash-verified

66
67// done increments the completed counter and redraws the progress bar.
68func (p *progress) done() {
69 if p.total <= 0 || !progressEnabled() {
70 return
71 }
72 c := atomic.AddInt64(&p.completed, 1)
73
74 printMutex.Lock()
75 defer printMutex.Unlock()
76 p.renderLocked(c)
77}
78
79// finish clears the progress bar for good.
80func (p *progress) finish() {

Callers 15

requestMethodsFunction · 0.80
requestHeadersFunction · 0.80
requestEndPathsFunction · 0.80
requestMidPathsFunction · 0.80
requestDoubleEncodingFunction · 0.80
requestUnicodeEncodingFunction · 0.80
requestPayloadPositionsFunction · 0.80
requestPathCaseSwitchingFunction · 0.80
requestHopByHopFunction · 0.80

Calls 1

renderLockedMethod · 0.95

Tested by

no test coverage detected