Skip to content

Commit 7ce1e2c

Browse files
authored
Merge pull request #1 from timonwong/add-first-implementation
Add first strftime implementation
2 parents 4d77737 + 7fbd70a commit 7ce1e2c

File tree

7 files changed

+474
-0
lines changed

7 files changed

+474
-0
lines changed

.travis.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
sudo: false
2+
language: go
3+
go:
4+
- '1.7'
5+
- '1.8'
6+
- '1.9'
7+
- '1.10'
8+
- master
9+
10+
go_import_path: github.com/imperfectgo/go-strftime
11+
12+
notifications:
13+
email: false

LICENSE

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2018 Timon Wong. All rights reserved.
2+
Copyright (c) 2009 The Go Authors. All rights reserved.
3+
4+
Redistribution and use in source and binary forms, with or without
5+
modification, are permitted provided that the following conditions are
6+
met:
7+
8+
* Redistributions of source code must retain the above copyright
9+
notice, this list of conditions and the following disclaimer.
10+
* Redistributions in binary form must reproduce the above
11+
copyright notice, this list of conditions and the following disclaimer
12+
in the documentation and/or other materials provided with the
13+
distribution.
14+
* Neither the name of Google Inc. nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22+
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@
33
High performance C99-compatible `strftime` formatter for Go.
44

55
**EXPERIMENTAL** Please DO NOT USE for now.
6+
7+
## License
8+
9+
See [License](./LICENSE) file.

benchmark_test.go

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
// Copyright 2018 Timon Wong. All rights reserved.
2+
// Copyright 2009 The Go Authors. All rights reserved.
3+
// Use of this source code is governed by a BSD-style
4+
// license that can be found in the LICENSE file.
5+
6+
package strftime
7+
8+
import (
9+
"testing"
10+
"time"
11+
)
12+
13+
func BenchmarkStdTimeFormat(b *testing.B) {
14+
now := time.Now()
15+
for i := 0; i < b.N; i++ {
16+
now.Format(time.RFC3339Nano)
17+
}
18+
}
19+
20+
func BenchmarkGoStrftime(b *testing.B) {
21+
const layout = "%Y-%m-%dT%H:%M:%S.%f%z"
22+
now := time.Now()
23+
for i := 0; i < b.N; i++ {
24+
Format(now, layout)
25+
}
26+
}

0 commit comments

Comments
 (0)