gitextract_qzbt7970/ ├── .gitignore ├── LICENSE ├── README.md ├── bench_test.go ├── cache.go ├── cache_test.go ├── cachecontrol.go ├── cachecontrol_test.go ├── cli/ │ └── httpcache.go ├── handler.go ├── header.go ├── httplog/ │ └── log.go ├── key.go ├── key_test.go ├── logger.go ├── resource.go ├── spec_test.go ├── util_test.go ├── validator.go ├── vendor/ │ ├── github.com/ │ │ ├── rainycape/ │ │ │ └── vfs/ │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── bench_test.go │ │ │ ├── chroot.go │ │ │ ├── doc.go │ │ │ ├── file.go │ │ │ ├── file_util.go │ │ │ ├── fs.go │ │ │ ├── map.go │ │ │ ├── mem.go │ │ │ ├── mounter.go │ │ │ ├── open.go │ │ │ ├── open_test.go │ │ │ ├── rewriter.go │ │ │ ├── ro.go │ │ │ ├── testdata/ │ │ │ │ ├── download-data.sh │ │ │ │ ├── fs/ │ │ │ │ │ ├── a/ │ │ │ │ │ │ └── b/ │ │ │ │ │ │ └── c/ │ │ │ │ │ │ └── d │ │ │ │ │ └── empty │ │ │ │ ├── fs.tar.bz2 │ │ │ │ └── update-fs.sh │ │ │ ├── util.go │ │ │ ├── vfs.go │ │ │ ├── vfs_test.go │ │ │ ├── write.go │ │ │ └── write_test.go │ │ └── stretchr/ │ │ └── testify/ │ │ ├── assert/ │ │ │ ├── assertions.go │ │ │ ├── assertions_test.go │ │ │ ├── doc.go │ │ │ ├── errors.go │ │ │ ├── forward_assertions.go │ │ │ ├── forward_assertions_test.go │ │ │ ├── http_assertions.go │ │ │ └── http_assertions_test.go │ │ └── require/ │ │ ├── doc.go │ │ ├── requirements.go │ │ └── requirements_test.go │ ├── gopkg.in/ │ │ └── djherbis/ │ │ └── stream.v1/ │ │ ├── LICENSE │ │ ├── README.md │ │ ├── fs.go │ │ ├── memfs.go │ │ ├── reader.go │ │ ├── stream.go │ │ ├── stream_test.go │ │ └── sync.go │ └── vendor.json └── wercker.yml