Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for startIdle (0.08 sec)

  1. src/time/zoneinfo.go

    		s = ",M3.2.0,M11.1.0"
    	}
    	// The TZ definition does not mention ';' here but tzcode accepts it.
    	if s[0] != ',' && s[0] != ';' {
    		return "", 0, 0, 0, false, false
    	}
    	s = s[1:]
    
    	var startRule, endRule rule
    	startRule, s, ok = tzsetRule(s)
    	if !ok || len(s) == 0 || s[0] != ',' {
    		return "", 0, 0, 0, false, false
    	}
    	s = s[1:]
    	endRule, s, ok = tzsetRule(s)
    	if !ok || len(s) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top