This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
info: starting | lodash | |
info: lookup | lodash | |
info: lookup-found | lodash | |
info: lookup-replace | https://github.com/lodash/lodash/archive/4.17.4.tar.gz | |
info: npm: | Downloading project: https://github.com/lodash/lodash/archive/4.17.4.tar.gz | |
info: npm: | Project downloaded lodash-4.17.4.tgz | |
info: npm: | install started | |
info: npm: | install successfully completed | |
info: npm: | test suite started | |
info: duration | test duration: 59864ms |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
info: cores | running tests using 8 cores | |
info: starting | lodash | |
info: starting | underscore | |
info: starting | request | |
info: starting | commander | |
info: starting | express | |
info: starting | q | |
info: starting | coffee-script | |
info: starting | through2 | |
info: through2 npm: | Downloading project: https://github.com/rvagg/through2/archive/v2.0.3.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const http = require('http'); | |
var len = 1024 * 1024; | |
var chunk = Buffer.alloc(len, 'x'); | |
var server = http.createServer(function(req, res) { | |
res.write(chunk); | |
res.end() | |
}); | |
server.listen(1234, function() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcc -Wall -Wextra -Wno-unused-parameter -Iinclude -Isrc -Isrc/win -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0600 -c -o src/fs-poll.o src/fs-poll.c | |
gcc -Wall -Wextra -Wno-unused-parameter -Iinclude -Isrc -Isrc/win -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0600 -c -o src/inet.o src/inet.c | |
gcc -Wall -Wextra -Wno-unused-parameter -Iinclude -Isrc -Isrc/win -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0600 -c -o src/threadpool.o src/threadpool.c | |
gcc -Wall -Wextra -Wno-unused-parameter -Iinclude -Isrc -Isrc/win -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0600 -c -o src/uv-common.o src/uv-common.c | |
gcc -Wall -Wextra -Wno-unused-parameter -Iinclude -Isrc -Isrc/win -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0600 -c -o src/version.o src/version.c | |
gcc -Wall -Wextra -Wno-unused-parameter -Iinclude -Isrc -Isrc/win -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0600 -c -o src/win/async.o src/win/async.c | |
gcc -Wall -Wextra -Wno-unused-parameter -Iinclude -Isrc -Isrc/win -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0600 -c -o src/win/core.o src/win/core.c | |
src/wi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gcc -Wall -Wextra -Wno-unused-parameter -Iinclude -Isrc -Isrc/win -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0600 -c -o src/win/util.o src/win/util.c | |
src/win/util.c: In function 'uv__getpwuid_r': | |
src/win/util.c:1314:20: error: 'UNLEN' undeclared (first use in this function) | |
wchar_t username[UNLEN + 1]; | |
^ | |
src/win/util.c:1314:20: note: each undeclared identifier is reported only once for each function it appears in | |
src/win/util.c:1314:11: warning: unused variable 'username' [-Wunused-variable] | |
wchar_t username[UNLEN + 1]; | |
^ | |
make.exe: *** [src/win/util.o] Error 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <intrin.h> | |
#include <cstdint> | |
#include <iostream> | |
#pragma intrinsic(_BitScanReverse64) | |
#pragma intrinsic(_BitScanReverse) | |
using namespace std; | |
unsigned long old_version(int64_t value) | |
{ |
NewerOlder