-
Notifications
You must be signed in to change notification settings - Fork 358
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat (decoder): support streaming IO * opt: fine tune buffer size factors * feat (encoder): support streaming IO * doc: refactor format and add comments * fix: io.EOF dead loop * build: adjust CI files * doc: update README.md
- Loading branch information
Showing
16 changed files
with
975 additions
and
91 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
.github/workflows/push-check-benchmark.yml → .github/workflows/benchmark.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
name: Pull Request Check | ||
name: Pull Request Benchmark | ||
|
||
on: pull_request | ||
|
||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# name: Push Check Go Windows | ||
|
||
# on: push | ||
|
||
# jobs: | ||
# build: | ||
# strategy: | ||
# matrix: | ||
# go-version: [1.15.x, 1.16.x, 1.17.x, 1.18.x] | ||
# os: [windows-latest] | ||
# runs-on: ${{ matrix.os }} | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
|
||
# - name: Set up Go | ||
# uses: actions/setup-go@v3 | ||
# with: | ||
# go-version: ${{ matrix.go-version }} | ||
|
||
# - name: Unit Test | ||
# run: go test -v -gcflags -d=checkptr=0 -covermode atomic -coverprofile coverage.out ./... | ||
# env: | ||
# GOMAXPROCS: 4 | ||
|
||
# - name: Generic Test | ||
# run: go test -v -gcflags -d=checkptr=0 -covermode atomic ./generic_test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.