8000 Tags · ekuric/warp · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: ekuric/warp

Tags

v0.4.1

Toggle v0.4.1's commit message
add --serve flag to all benchmarks

v0.4.0

Toggle v0.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
allow use of standard cert pools load from k8s (minio#176)

v0.3.47

Toggle v0.3.47's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: TiB throughput string (minio#174)

Fix missing division and do division on float data.

v0.3.46

Toggle v0.3.46's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
add custom prefix support (minio#175)

v0.3.45

Toggle v0.3.45's commit message
fix: double ellipses expansion

v0.3.44

Toggle v0.3.44's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
add service file automatically upon install (minio#173)

v0.3.43

Toggle v0.3.43's commit message
update dependencies

v0.3.42

Toggle v0.3.42's commit message
update go mod tidy

v0.3.41

Toggle v0.3.41's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Use fully random input (minio#167)

Instead of using a 10MiB circular buffer with random data,
use an infinite stream that is encrypted continuously.

We use a smaller circular buffer as input, but repeats should not be present.

Provides good solid speed, per thread:

```
BenchmarkWithRandomData/64KB-32         	   83332	     14328 ns/op	4573.91 MB/s	      72 B/op	       4 allocs/op
BenchmarkWithRandomData/1MB-32          	    5216	    222968 ns/op	4702.82 MB/s	      72 B/op	       4 allocs/op
BenchmarkWithRandomData/10MB-32         	     542	   2223248 ns/op	4716.42 MB/s	      72 B/op	       4 a
6472
llocs/op
BenchmarkWithRandomData/1GB-32          	       1	2272999700 ns/op	4723.90 MB/s	      80 B/op	       4 allocs/op
```

v0.3.40

Toggle v0.3.40's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix LIST benchmark (minio#160)

After SDK update recursive setting was missing. This would cause all operations to fail.

* Use correct options for listing.
* Fix object creation progress.
* Fix missing error printing when skipped.

Fixes minio#157
0