Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for trimLimit (0.07 sec)

  1. src/cmd/go/internal/cache/cache.go

    // at least trimLimit (5 days). Statistics gathered from a month of usage by
    // Go developers found that essentially all reuse of cached entries happened
    // within 5 days of the previous reuse. See golang.org/issue/22990.
    const (
    	mtimeInterval = 1 * time.Hour
    	trimInterval  = 24 * time.Hour
    	trimLimit     = 5 * 24 * time.Hour
    )
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 14:19:39 UTC 2024
    - 20.3K bytes
    - Viewed (0)
Back to top