- 19 5月, 2015 5 次提交
-
-
Following: https://github.com/ipfs/infrastructure/issues/20#issuecomment-102665147 License: MIT Signed-off-by:
Christian Couder <chriscool@tuxfamily.org>
由 Christian Couder 提交于 -
bitswap/test: fix timeout on travis
由 Juan Batiz-Benet 提交于 -
Seems to be too unstable?
由 Juan Batiz-Benet 提交于 -
由 Juan Batiz-Benet 提交于
-
Add gofmt check
由 Juan Batiz-Benet 提交于
-
- 18 5月, 2015 7 次提交
-
-
由 rht 提交于
-
由 rht 提交于
-
remove unnecessary flush, and buffer output channel
由 Juan Batiz-Benet 提交于 -
removed braintree/manners
由 Juan Batiz-Benet 提交于 -
由 Jeromy 提交于
-
Improve stdin parsing
由 Jeromy Johnson 提交于 -
由 Vijayee Kulkaa 提交于
-
- 17 5月, 2015 7 次提交
-
-
License: MIT Signed-off-by:Christian Couder <chriscool@tuxfamily.org>
由 Christian Couder 提交于 -
This should fix issue #1196 (Can't launch a command line process from Qt). The check was bad because it took stdin into account, but it really shouldn't. License: MIT Signed-off-by:Christian Couder <chriscool@tuxfamily.org>
由 Christian Couder 提交于 -
License: MIT Signed-off-by:Christian Couder <chriscool@tuxfamily.org>
由 Christian Couder 提交于 -
License: MIT Signed-off-by:Christian Couder <chriscool@tuxfamily.org>
由 Christian Couder 提交于 -
License: MIT Signed-off-by:Christian Couder <chriscool@tuxfamily.org>
由 Christian Couder 提交于 -
This should fix issue #1141 (ipfs cat "multihash too short" error when using stdin) and perhaps others. License: MIT Signed-off-by:Christian Couder <chriscool@tuxfamily.org>
由 Christian Couder 提交于 -
License: MIT Signed-off-by:Christian Couder <chriscool@tuxfamily.org>
由 Christian Couder 提交于
-
- 15 5月, 2015 1 次提交
-
-
Fix documentation on swarm connect.
由 Juan Batiz-Benet 提交于
-
- 14 5月, 2015 1 次提交
-
-
Get travis to test all commits
由 Juan Batiz-Benet 提交于
-
- 13 5月, 2015 2 次提交
-
-
go-peerstream update (accept concurrency)
由 Juan Batiz-Benet 提交于
-
- 12 5月, 2015 6 次提交
-
-
由 Tim Groeneveld 提交于
-
Add CORS middleware handler to the API.
由 Juan Batiz-Benet 提交于 -
net/p2p + secio: parallelize crypto handshake
由 Juan Batiz-Benet 提交于 -
After losing jenkins, it's been difficult to test all commits manually. This commit adds a Makefile target that makes travis do it. Unfortunately, this is way too slow. It takes longer than the allotted 10min. After asking the travis people what to do, someone suggested making sure that each commit is pushed to github independently. This makes travis run CI on every single commit in the PR, and gives us nice status indicators on each one (so we know which ones did not pass). This approach means that we need to push a branch to the repo for each commit in the PR-- otherwise travis may cancel its run if it detects that the branch is no longer there. We could automate this with a bot that essentially does: for each PR: git fetch the PR branch push a branch per commit: <branch>-<commit> for each closed PR: delete all branches with pattern <branch>-<commit>由 Juan Batiz-Benet 提交于 -
Add option to allow unrestricted API access
由 Juan Batiz-Benet 提交于 -
We had a very nasty problem: handshakes were serial so incoming dials would wait for each other to finish handshaking. this was particularly problematic when handshakes hung-- nodes would not recover quickly. This led to gateways not bootstrapping peers fast enough. The approach taken here is to do what crypto/tls does: defer the handshake until Read/Write[1]. There are a number of reasons why this is _the right thing to do_: - it delays handshaking until it is known to be necessary (doing io) - it "accepts" before the handshake, getting the handshake out of the critical path entirely. - it defers to the user's parallelization of conn handling. users must implement this in some way already so use that, instead of picking constants surely to be wrong (how many handshakes to run in parallel?) [0] http://golang.org/src/crypto/tls/conn.go#L886
由 Juan Batiz-Benet 提交于
-
- 11 5月, 2015 1 次提交
-
-
Refactor/http gateway
由 Juan Batiz-Benet 提交于
-
- 10 5月, 2015 10 次提交
-
-
由 Kristoffer Ström 提交于
-
由 David Braun 提交于
-
由 Henry 提交于
-
(I'll add the changelog later today)
由 Juan Batiz-Benet 提交于 -
由 Juan Batiz-Benet 提交于
-
Refactor/http gateway quickfix (1191)
由 Juan Batiz-Benet 提交于 -
travis is experimenting with a setup using KVM, instead of independently provisioned VMs. It promises to be much faster. We're testing it out.
由 Juan Batiz-Benet 提交于 -
This may take care of the daemon clashing on travis.
由 Juan Batiz-Benet 提交于 -
This commit allows arbitrary json input to set. It also tests this with sharness.
由 Juan Batiz-Benet 提交于 -
some golinting along the way
由 Henry 提交于
-