duplicates = multiple editions
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
A Classical Introduction to Modern Number Theory, Kenneth Ireland Michael Rosen
# OSD/ObjectStore | |
# make rocksdb statically | |
if(NOT ALLOCATOR STREQUAL "jemalloc") | |
set(ROCKSDB_JEMALLOC "DISABLE_JEMALLOC=1") | |
endif() | |
set(ROCKSDB_EXTRA_CXXFLAG "-fPIC -Wno-unused-variable") | |
if(NOT CMAKE_BUILD_TYPE STREQUAL Debug) | |
set(ROCKSDB_EXTRA_CXXFLAG "${ROCKSDB_EXTRA_CXXFLAG} -DNDEBUG") | |
endif(NOT CMAKE_BUILD_TYPE STREQUAL Debug) |
The standard way of understanding the HTTP protocol is via the request reply pattern. Each HTTP transaction consists of a finitely bounded HTTP request and a finitely bounded HTTP response.
However it's also possible for both parts of an HTTP 1.1 transaction to stream their possibly infinitely bounded data. The advantages is that the sender can send data that is beyond the sender's memory limit, and the receiver can act on
--# Main | |
-- Use this function to perform your initial setup | |
function setup() | |
displayMode(STANDARD) | |
availableTests = { Test2(), Test1() } | |
currentTest = availableTests[1] |
<!DOCTYPE HTML> | |
<html lang="en-US"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>test upload by chunk</title> | |
</head> | |
<body> | |
<input type="file" id="f" /> | |
<script src="script.js"></script> |
#ifdef _MSC_VER | |
#include <boost/config/compiler/visualc.hpp> | |
#endif | |
#include <boost/property_tree/ptree.hpp> | |
#include <boost/property_tree/json_parser.hpp> | |
#include <boost/foreach.hpp> | |
#include <cassert> | |
#include <exception> | |
#include <iostream> | |
#include <sstream> |