Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MDT (0.06 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)
  4. tensorflow/cc/saved_model/testdata/chunked_saved_model/chunked_model/saved_model.pbtxt

    y\013Q\326?Ruay+\033\332?\347\361?X-\333\342?\200F\256(;\263\303?\3007\013\373\352\313\242?\354+\t\354u\365\332?>=Hv\307\345\340?R\344\312(Zc\352?\374LI\360\r\r\310?Lp\214\202a\001\351?h\032\260\013z\243\270?\226\355\323\2129x\341?p/G\360\357d\313?mDT\023\017\247\341?\260=d\364\3472\244?\344L\037*\301\221\334?\200-\367\263t\343~?\363\256\374\205\004\364\356?6\'\240$7Z\357?\270\211\236\313p\245\340?\246\263\242\377\033\340\331?\270\327\357\317\2026\313?$u\331/ l\347?k\r\304\200\"\032\341?\262\346
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 08 21:43:11 UTC 2023
    - 531.2K bytes
    - Viewed (0)
Back to top