Repositories (3)

screenr
1 snippets stored for this repo
C++ IconC++
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
Rust IconRust
/// Implements high-level routines that are useful when performing taint tracking
/// operations
Rust IconRust
/// 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.)