MCPcopy Create free account
hub / github.com/apache/mesos / gzip

Function gzip

src/common/command_utils.cpp:204–213  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

202
203
204Future<Nothing> gzip(const Path& input)
205{
206 vector<string> argv = {
207 "gzip",
208 input
209 };
210
211 return launch("gzip", argv)
212 .then([]() { return Nothing(); });
213}
214
215
216Future<Nothing> decompress(const Path& input)

Callers

nothing calls this directly

Calls 3

NothingClass · 0.85
launchFunction · 0.70
thenMethod · 0.45

Tested by

no test coverage detected