-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
703760e
commit 4f034a4
Showing
1,102 changed files
with
227 additions
and
702,603 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
The MIT License (MIT) | ||
===================== | ||
|
||
**Copyright (c) 2017-2018 Anish Athalye ([email protected])** | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
this software and associated documentation files (the "Software"), to deal in | ||
the Software without restriction, including without limitation the rights to | ||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies | ||
of the Software, and to permit persons to whom the Software is furnished to do | ||
so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.10 | ||
FROM golang:1.11 | ||
MAINTAINER [email protected] | ||
|
||
RUN apt-get -y -q update && \ | ||
|
@@ -8,7 +8,7 @@ RUN apt-get -y -q update && \ | |
git \ | ||
gnuplot \ | ||
wget \ | ||
vim # not required by chaos itself, just for ease of use | ||
less vim # not required by chaos itself, just for ease of use | ||
|
||
# You need to locate chaos in this directory (up.sh does that automatically) | ||
ADD chaos /go/src/github.com/siddontang/chaos | ||
|
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,16 @@ | ||
module github.com/siddontang/chaos | ||
|
||
require ( | ||
github.com/anishathalye/porcupine v0.0.0-20180912012540-c95d370e6abb | ||
github.com/coreos/bbolt v1.3.1-coreos.6 // indirect | ||
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect | ||
github.com/go-sql-driver/mysql v1.4.1 | ||
github.com/pingcap/kvproto v0.0.0-20181130084342-6bbef21532da // indirect | ||
github.com/pingcap/tidb v0.0.0-20181203021530-741adcee43e2 | ||
github.com/pingcap/tipb v0.0.0-20181126132056-a7fd2aaa9719 // indirect | ||
github.com/prometheus/client_golang v0.9.1 // indirect | ||
github.com/prometheus/common v0.0.0-20181126121408-4724e9255275 // indirect | ||
github.com/prometheus/procfs v0.0.0-20181129180645-aa55a523dc0a // indirect | ||
golang.org/x/net v0.0.0-20181201002055-351d144fa1fc // indirect | ||
golang.org/x/sync v0.0.0-20181108010431-42b317875d0f // indirect | ||
) |
Oops, something went wrong.