shapeio icon indicating copy to clipboard operation
shapeio copied to clipboard

Traffic shaper for Golang io.Reader and io.Writer

Results 2 shapeio issues
Sort by recently updated
recently updated
newest added

If a single read or write exceeds the amount specified in the rate limit, then nothing stops that read or write from exceeding the rate limit. For example, if I...

以下のテストを追加して`go test -race` すると色々でてきます。 そもそもこういう使い方はありえないのかもしれませんが、最近こういうのを自分のコードで見つけるのに凝ってるので… ``` diff diff --git a/shapeio_test.go b/shapeio_test.go index bd9b545..32d4e09 100644 --- a/shapeio_test.go +++ b/shapeio_test.go @@ -2,10 +2,12 @@ package shapeio_test import ( "bytes" + "context" "io"...