- 18 Jan, 2015 2 commits
-
-
Juan Batiz-Benet authored
core/mount: make non-darwin archs see fuseversion
-
Juan Batiz-Benet authored
See the note: // this file is only here to prevent go src tools (like godep) from // thinking fuseversion is not a required package by non-darwin archs.
-
- 17 Jan, 2015 3 commits
-
-
Juan Batiz-Benet authored
basic reprovider implementation
-
Juan Batiz-Benet authored
-
Jeromy authored
-
- 16 Jan, 2015 7 commits
-
-
Juan Batiz-Benet authored
addr-explosion mitigated adding
-
Juan Batiz-Benet authored
mitigated adding our own addresses where received from peers see #573
-
Juan Batiz-Benet authored
moved our d3view to own repo
-
Juan Batiz-Benet authored
d3view is now in its own repo: https://github.com/jbenet/ipfs-diag-net-d3-vis This is so we can iterate on it quickly without having to needlessly waste CI resources. The repo also installs it for you: ```sh git clone github.com/jbenet/ipfs-diag-net-d3-vis d3view cd d3view sudo make install ```
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
-
Jeromy authored
-
- 15 Jan, 2015 21 commits
-
-
Brian Tiger Chow authored
Feat/eventbegin
-
Jeromy authored
-
Jeromy authored
-
Jeromy authored
-
Jeromy authored
-
Juan Batiz-Benet authored
fix: privatize Mux fields
-
Brian Tiger Chow authored
hotfix(FSRepo) allow multiple goroutines to call
-
Brian Tiger Chow authored
doh! I forgot to make sure leveldb is only opened once. thanks for catching this @mappum * You may be wondering why we don't just share pointers to FSRepos. We want to manage the lifecycle of the FSRepo by tracking its `state`. Thus each FSRepo/goroutine requires private instance variables. For this reason, each `fsrepo.At(p)` caller must get its own goroutine. * There's a test in `fsrepo` because callers desire the ability to Open from multiple goroutines. There's a test in `component` because this is where the actual work needs to go in order to provide the desired contract. If the `component` package moves, the assurances need to move along with it. cc @whyrusleeping @jbenet side note: there are a couple packages in FSRepo that it might be worthwhile to extract once the dust settles on this feature-set.
-
Brian Tiger Chow authored
@jbenet will move in upcoming branch/PR
-
Brian Tiger Chow authored
feat(eventlog): e := EventBegin; e.Done()
-
Brian Tiger Chow authored
```Go e := log.EventBegin(ctx, "provide") e.Done() e := log.EventBegin(ctx, "provide") e.Close() // implements io.Closer in case you want to register with some lifecycle management system. ```
-
Juan Batiz-Benet authored
more d3 niceness.
-
Matt Bell authored
-
Brian Tiger Chow authored
race fixes
-
Brian Tiger Chow authored
-
Brian Tiger Chow authored
-
Juan Batiz-Benet authored
-
Juan Batiz-Benet authored
All the datastores used by pinners and so on should be mutex wrapped. One issue with changing all of them from ds.Datastore -> ds.ThreadSafeDatastore is that we wrap the incoming ds.ThreadSafeDatastore with other datastores, which do not implement the interface. Re-wrapping again causes double locking. (which may be ok..., but...) any ideas?
-
Juan Batiz-Benet authored
testutil ci pkgs check env vars
-
Brian Tiger Chow authored
-
Juan Batiz-Benet authored
Good thing, i checked one wrong, too!
-
- 14 Jan, 2015 7 commits
-
-
Juan Batiz-Benet authored
-
Jeromy authored
-
Juan Batiz-Benet authored
diag/net: visualizing in d3 and dot
-
Juan Batiz-Benet authored
-
Brian Tiger Chow authored
refactor(fsrepo.FSRepo): manage the Datastore and daemon.lock
-
Brian Tiger Chow authored
-
Brian Tiger Chow authored
-