Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/go/internal/gccgoimporter/testdata/time.gox

    const StampMilli = "Jan _2 15:04:05.000";
    const StampNano = "Jan _2 15:04:05.000000000";
    const Sunday <type 19> = 0 ;
    const Thursday <type 19> = 4 ;
    func Tick (d <type 1>) <type 54 chan <- <type 3>>;
    type <type 46>;
    type <type 3>;
    type <type 33>;
    const Tuesday <type 19> = 2 ;
    var UTC <type 15>;
    func Unix (sec <type -4>, nsec <type -4>) <type 3>;
    const UnixDate = "Mon Jan _2 15:04:05 MST 2006";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 30 21:33:51 UTC 2021
    - 7.3K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http/HttpDateTest.kt

        // RFC 850, obsoleted by RFC 1036 with any TZ.
        assertThat("Thursday, 01-Jan-1970 00:00:00 GMT-01:00".toHttpDateOrNull()!!.time)
          .isEqualTo(3600000L)
        assertThat("Thursday, 01-Jan-1970 00:00:00 PST".toHttpDateOrNull()!!.time)
          .isEqualTo(28800000L)
        // Ignore trailing junk
        assertThat("Thursday, 01-Jan-1970 00:00:00 PST JUNK".toHttpDateOrNull()!!.time)
          .isEqualTo(28800000L)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top