MCPcopy Index your code
hub / github.com/git/git / get_default_delay

Function get_default_delay

progress.c:281–289  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

279}
280
281static int get_default_delay(void)
282{
283 static int delay_in_secs = -1;
284
285 if (delay_in_secs < 0)
286 delay_in_secs = git_env_ulong("GIT_PROGRESS_DELAY", 1);
287
288 return delay_in_secs;
289}
290
291struct progress *start_delayed_progress(struct repository *r,
292 const char *title, uint64_t total)

Callers 2

start_delayed_progressFunction · 0.85

Calls 1

git_env_ulongFunction · 0.85

Tested by

no test coverage detected