Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for androidLoadTzinfoFromTzdata (0.37 sec)

  1. src/time/zoneinfo_android.go

    	localLoc = *UTC
    }
    
    func init() {
    	loadTzinfoFromTzdata = androidLoadTzinfoFromTzdata
    }
    
    var allowGorootSource = true
    
    func gorootZoneSource(goroot string) (string, bool) {
    	if goroot == "" || !allowGorootSource {
    		return "", false
    	}
    	return goroot + "/lib/time/zoneinfo.zip", true
    }
    
    func androidLoadTzinfoFromTzdata(file, name string) ([]byte, error) {
    	const (
    		headersize = 12 + 3*4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 20:57:35 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top