Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for RFC1123Z (0.1 sec)

  1. internal/amztime/parse.go

    	// Do not change this order, x-amz-date format is usually in
    	// iso8601Format rest are meant for relaxed handling of other
    	// odd SDKs that might be out there.
    	"20060102T150405Z",
    	time.RFC1123,
    	time.RFC1123Z,
    	// Add new AMZ date formats here.
    }
    
    // ErrMalformedDate always returned for dates that cannot be parsed.
    var ErrMalformedDate = errors.New("malformed date")
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  2. src/go/internal/gccgoimporter/testdata/time.gox

     func (e <type 52 *<type 50>>) Error () <type -16>;
    >;
    func ParseInLocation (layout <type -16>, value <type -16>, loc <type 53 *<type 6>>) (? <type 3>, ? <type -19>);
    const RFC1123 = "Mon, 02 Jan 2006 15:04:05 MST";
    const RFC1123Z = "Mon, 02 Jan 2006 15:04:05 -0700";
    const RFC3339 = "2006-01-02T15:04:05Z07:00";
    const RFC3339Nano = "2006-01-02T15:04:05.999999999Z07:00";
    const RFC822 = "02 Jan 06 15:04 MST";
    const RFC822Z = "02 Jan 06 15:04 -0700";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
Back to top