Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for WithNanoTruncate (0.05 seconds)

  1. src/archive/tar/strconv_test.go

    			want: time.Unix(1, 123456789),
    			ok:   true,
    		},
    		{
    			name: "WithNanoPadding",
    			in:   "1.123",
    			want: time.Unix(1, 123000000),
    			ok:   true,
    		},
    		{
    			name: "WithNanoTruncate",
    			in:   "1.123456789123",
    			want: time.Unix(1, 123456789),
    			ok:   true,
    		},
    		{
    			name: "TrailingError",
    			in:   "1.123abc",
    			want: time.Time{},
    			ok:   false,
    		},
    		{
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Thu Sep 11 17:52:43 GMT 2025
    - 15K bytes
    - Click Count (0)
Back to Top