Repositories (3)
screenr
1 snippets stored for this repo
std::stringstream stream;
auto date = std::put_time(std::localtime(&time), HttpTimeFormat);
stream << "PUT" << "\n" // we're only uploading shit... for now at least.
<< dataMd5 << "\n"
<< "image/png" << "\n"
<< date << "\n"
party-buffalo
0 snippets stored for this repo
unfuck
2 snippets stored for this repo
/// Implements high-level routines that are useful when performing taint tracking
/// operations
/// We implement a custom Clone routine since, in some scenarios, we want to share
/// the taint tracking across multiple objects in different locations. e.g. we may
/// want to share taint tracking state between our saved objects in our tables (vm vars, names, etc.)