Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for MDT (0.02 sec)

  1. src/net/mail/message.go

    		p.s = p.s[ind+5:]
    	} else {
    		ind := strings.Index(p.s, "T")
    		if ind == 0 {
    			// In this case we have the following date formats:
    			// * Thu, 20 Nov 1997 09:55:06 MDT
    			// * Thu, 20 Nov 1997 09:55:06 MDT (MDT)
    			// * Thu, 20 Nov 1997 09:55:06 MDT (This comment)
    			ind = strings.Index(p.s[1:], "T")
    			if ind != -1 {
    				ind++
    			}
    		}
    
    		if ind != -1 && len(p.s) >= ind+5 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  2. src/time/zoneinfo_abbrs_windows.go

    	"Central Standard Time":           {"CST", "CDT"},     // America/Chicago
    	"Central Brazilian Standard Time": {"-04", "-04"},     // America/Cuiaba
    	"Mountain Standard Time":          {"MST", "MDT"},     // America/Denver
    	"Greenland Standard Time":         {"-03", "-02"},     // America/Godthab
    	"Turks And Caicos Standard Time":  {"EST", "EDT"},     // America/Grand_Turk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  3. src/net/mail/message_test.go

    		},
    		// Commonly found format not specified by RFC 5322.
    		{
    			"Fri, 21 Nov 1997 09:55:06 -0600 (MDT)",
    			time.Date(1997, 11, 21, 9, 55, 6, 0, time.FixedZone("", -6*60*60)),
    		},
    		{
    			"Thu, 20 Nov 1997 09:55:06 -0600 (MDT)",
    			time.Date(1997, 11, 20, 9, 55, 6, 0, time.FixedZone("", -6*60*60)),
    		},
    		{
    			"Thu, 20 Nov 1997 09:55:06 GMT (GMT)",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
Back to top