Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ipfs/kubo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: e5d76c622b47
Choose a base ref
...
head repository: ipfs/kubo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: aac0e198ce70
Choose a head ref
  • 2 commits
  • 34 files changed
  • 1 contributor

Commits on Jun 27, 2015

  1. revendored go-blocks (blockservice)

    License: MIT
    Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
    jbenet committed Jun 27, 2015

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    4c06b8f View commit details
  2. moved blockservice out

    License: MIT
    Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
    jbenet committed Jun 27, 2015
    Copy the full SHA
    aac0e19 View commit details
Showing with 573 additions and 167 deletions.
  1. +1 −1 Godeps/Godeps.json
  2. +15 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/.travis.yml
  3. +21 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/LICENSE
  4. +3 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/Makefile
  5. +3 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/README.md
  6. +4 −14 { → Godeps/_workspace/src/github.com/ipfs/go-blocks}/blockservice/blockservice.go
  7. +26 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/blockservice/exchange/interface.go
  8. +68 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/blockservice/exchange/offline/offline.go
  9. +77 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/blockservice/exchange/offline/offline_test.go
  10. +96 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/blockservice/test/blocks_test.go
  11. +31 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/blockservice/test/mock.go
  12. +6 −6 { → Godeps/_workspace/src/github.com/ipfs/go-blocks}/blockservice/worker/bench/main.go
  13. +1 −1 { → Godeps/_workspace/src/github.com/ipfs/go-blocks}/blockservice/worker/bench_worker_test.go
  14. +5 −8 { → Godeps/_workspace/src/github.com/ipfs/go-blocks}/blockservice/worker/worker.go
  15. 0 { → Godeps/_workspace/src/github.com/ipfs/go-blocks}/blockservice/worker/worker_test.go
  16. +18 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/blockstore/blockstore.go
  17. +37 −1 Godeps/_workspace/src/github.com/ipfs/go-blocks/blockstore/blockstore_test.go
  18. +4 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/blockstore/write_cache.go
  19. +24 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/thirdparty/datastore2/datastore_closer.go
  20. +43 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/thirdparty/datastore2/delayed.go
  21. +15 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/thirdparty/datastore2/threadsafe.go
  22. +46 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/thirdparty/delay/delay.go
  23. +19 −0 Godeps/_workspace/src/github.com/ipfs/go-blocks/thirdparty/waitable/waitable.go
  24. +0 −95 blockservice/test/blocks_test.go
  25. +0 −31 blockservice/test/mock.go
  26. +1 −1 core/core.go
  27. +1 −1 core/coreunix/metadata_test.go
  28. +1 −1 core/mock/mock.go
  29. +1 −1 merkledag/merkledag.go
  30. +2 −2 merkledag/merkledag_test.go
  31. +1 −1 merkledag/test/utils.go
  32. +1 −1 path/resolver_test.go
  33. +1 −1 pin/pin_test.go
  34. +1 −1 unixfs/mod/dagmodifier_test.go
2 changes: 1 addition & 1 deletion Godeps/Godeps.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

15 changes: 15 additions & 0 deletions Godeps/_workspace/src/github.com/ipfs/go-blocks/.travis.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions Godeps/_workspace/src/github.com/ipfs/go-blocks/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Godeps/_workspace/src/github.com/ipfs/go-blocks/Makefile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Godeps/_workspace/src/github.com/ipfs/go-blocks/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading