Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/archive/tar/common.go

    		}
    	}
    	verifyNumeric := func(n int64, size int, name, paxKey string) {
    		if !fitsInBase256(size, n) {
    			whyNoGNU = fmt.Sprintf("GNU cannot encode %s=%d", name, n)
    			format.mustNotBe(FormatGNU)
    		}
    		if !fitsInOctal(size, n) {
    			whyNoUSTAR = fmt.Sprintf("USTAR cannot encode %s=%d", name, n)
    			format.mustNotBe(FormatUSTAR)
    			if paxKey == paxNone {
    				whyNoPAX = fmt.Sprintf("PAX cannot encode %s=%d", name, n)
    Registered: Tue Dec 30 11:13:12 UTC 2025
    - Last Modified: Tue Oct 07 19:46:36 UTC 2025
    - 24.5K bytes
    - Viewed (0)
Back to top