Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for fixedNonce (0.15 sec)

  1. src/time/format.go

    		// - use LoadLocation(loc.name), which will cause a syntax error when
    		// embedded and also would require us to escape the string without
    		// importing fmt or strconv
    		// - try to use FixedZone, which would also require escaping the name
    		// and would represent e.g. "America/Los_Angeles" daylight saving time
    		// shifts inaccurately
    		// - use the pointer format, which is no worse than you'd get with the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. src/net/http/serve_test.go

    		}
    	default:
    		t.Error("handler was never called")
    	}
    }
    
    func TestAppendTime(t *testing.T) {
    	var b [len(TimeFormat)]byte
    	t1 := time.Date(2013, 9, 21, 15, 41, 0, 0, time.FixedZone("CEST", 2*60*60))
    	res := ExportAppendTime(b[:0], t1)
    	t2, err := ParseTime(string(res))
    	if err != nil {
    		t.Fatalf("Error parsing time: %s", err)
    	}
    	if !t1.Equal(t2) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
Back to top