Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for pst (0.02 sec)

  1. src/time/format_test.go

    	{"", "2006-01-02 15:04:05.999999999 -0700 MST", "2010-02-04 21:00:57.012345678 -0800 PST", true, false, 1, 9},
    	// comma "," separator.
    	{"", "2006-01-02 15:04:05,9999 -0700 MST", "2010-02-04 21:00:57 -0800 PST", true, false, 1, 0},
    	{"", "2006-01-02 15:04:05,999999999 -0700 MST", "2010-02-04 21:00:57 -0800 PST", true, false, 1, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:58:29 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  2. src/time/example_test.go

    	// Output:
    	// default format: 2015-02-25 11:06:39 -0800 PST
    	// Unix format: Wed Feb 25 11:06:39 PST 2015
    	// Same, in UTC: Wed Feb 25 19:06:39 UTC 2015
    	//in Shanghai with seconds: 2015-02-26T03:06:39 +080000
    	//in Shanghai with colon seconds: 2015-02-26T03:06:39 +08:00:00
    	//
    	// Formats:
    	//
    	// Basic full date  "Mon Jan 2 15:04:05 MST 2006" gives "Wed Feb 25 11:06:39 PST 2015"
    	// Basic short date "2006/01/02" gives "2015/02/25"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 01:05:00 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  3. src/time/zoneinfo_test.go

    	for _, test := range []struct {
    		in   string
    		name string
    		out  string
    		ok   bool
    	}{
    		{"", "", "", false},
    		{"X", "", "", false},
    		{"PST", "PST", "", true},
    		{"PST8PDT", "PST", "8PDT", true},
    		{"PST-08", "PST", "-08", true},
    		{"<A+B>+08", "A+B", "+08", true},
    	} {
    		name, out, ok := time.TzsetName(test.in)
    		if name != test.name || out != test.out || ok != test.ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 13 17:06:56 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. 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)
  5. .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)
  6. src/time/time_test.go

    	{2011, 11, 6, 2, 0, 0, 0, Local, 1320573600},   // 2:00:00 PST
    
    	{2011, 3, 13, 1, 0, 0, 0, Local, 1300006800},   // 1:00:00 PST
    	{2011, 3, 13, 1, 59, 59, 0, Local, 1300010399}, // 1:59:59 PST
    	{2011, 3, 13, 3, 0, 0, 0, Local, 1300010400},   // 3:00:00 PDT
    	{2011, 3, 13, 2, 30, 0, 0, Local, 1300008600},  // 2:30:00 PDT ≡ 1:30 PST
    	{2012, 12, 24, 0, 0, 0, 0, Local, 1356336000},  // Leap year
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  7. src/encoding/asn1/marshal_test.go

    	D int `asn1:"private,tag:128"` // tag size should be 3 octet
    }
    
    type numericStringTest struct {
    	A string `asn1:"numeric"`
    }
    
    type testSET []int
    
    var PST = time.FixedZone("PST", -8*60*60)
    
    type marshalTest struct {
    	in  any
    	out string // hex encoded
    }
    
    func farFuture() time.Time {
    	t, err := time.Parse(time.RFC3339, "2100-04-05T12:01:01Z")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 10K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/intervals.go

    			continue
    		}
    		// check for badly ordered starts
    		pst := is[i-1].st
    		pen := is[i-1].en
    		if pst >= st {
    			return fmt.Errorf("range start not ordered %d:%d less than prev %d:%d", st, en,
    				pst, pen)
    		}
    		// check end of last range against start of this range
    		if pen > st {
    			return fmt.Errorf("bad range elem %d:%d overlaps prev %d:%d", st, en,
    				pst, pen)
    		}
    	}
    	return nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. src/time/zoneinfo_abbrs_windows.go

    	"US Eastern Standard Time":        {"EST", "EDT"},     // America/Indianapolis
    	"SA Western Standard Time":        {"-04", "-04"},     // America/La_Paz
    	"Pacific Standard Time":           {"PST", "PDT"},     // America/Los_Angeles
    	"Mountain Standard Time (Mexico)": {"MST", "MST"},     // America/Mazatlan
    	"Central Standard Time (Mexico)":  {"CST", "CST"},     // America/Mexico_City
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 20:01:59 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. 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