Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. okhttp/src/test/java/okhttp3/internal/http/HttpDateTest.kt

        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)
    
        // ANSI C's asctime() format
        // This format ignores the timezone entirely even if it is present and uses GMT.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. .github/workflows/update-nightly.yml

    # ============================================================================
    
    on:
      workflow_dispatch:  # Allow manual triggers
      schedule:
        - cron: 0 4 * * *  # 4am UTC is 9pm PDT and 8pm PST
    name: Set nightly branch to master HEAD
    
    permissions: {}
    
    jobs:
      master-to-nightly:
        if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
        runs-on: ubuntu-latest
        permissions:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 12 16:45:56 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. src/time/mono_test.go

    	ticker := NewTicker(1)
    	yes("<-Tick(1)", <-ticker.C)
    	ticker.Stop()
    	no("Date(2009, 11, 23, 0, 0, 0, 0, UTC)", Date(2009, 11, 23, 0, 0, 0, 0, UTC))
    	tp, _ := Parse(UnixDate, "Sat Mar  7 11:06:39 PST 2015")
    	no(`Parse(UnixDate, "Sat Mar  7 11:06:39 PST 2015")`, tp)
    	no("Unix(1486057371, 0)", Unix(1486057371, 0))
    
    	yes("Now()", Now())
    
    	tu := Unix(1486057371, 0)
    	tm := tu
    	SetMono(&tm, 123456)
    	no("tu", tu)
    	yes("tm", tm)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 19 17:10:49 UTC 2022
    - 8.3K bytes
    - Viewed (0)
Back to top