- Use HTTPS repo URLs, not SSH repo URLs. The outbound firewall appears to block SSH for prod-tobacco.
- Avoid
(gnome-ssh-askpass:7171): Gtk-WARNING **: cannot open display:
:
unset SSH_ASKPASS
'use strict'; | |
var assert = require('assert'); | |
// Here we are testing the HTTP server module's flood prevention mechanism. | |
// When writeable.write returns false (ie the underlying send() indicated the | |
// native buffer is full), the HTTP server cork()s the readable part of the | |
// stream. This means that new requests will not be read (however request which | |
// have already been read, but are awaiting processing will still be | |
// processed). |
'use strict'; | |
var assert = require('assert'); | |
// Here we are testing the HTTP server module's flood prevention mechanism. | |
// When writeable.write returns false (ie the underlying send() indicated the | |
// native buffer is full), the HTTP server cork()s the readable part of the | |
// stream. This means that new requests will not be read (however request which | |
// have already been read, but are awaiting processing will still be | |
// processed). |
'use strict'; | |
const util = require('util'); | |
const EventEmitter = require('events'); | |
function MyEventEmitter() { | |
EventEmitter.call(this); | |
} | |
// Inherit functions from `EventEmitter`'s prototype | |
util.inherits(MyEventEmitter, EventEmitter); |
./node tools/eslint/bin/eslint.js src lib test tools/eslint-rules \ | |
--rulesdir tools/eslint-rules --quiet | |
/Users/trott/io.js/lib/_tls_common.js | |
63:16 error "i" is already defined no-redeclare | |
76:16 error "i" is already defined no-redeclare | |
111:16 error "i" is already defined no-redeclare | |
111:23 error "len" is already defined no-redeclare | |
/Users/trott/io.js/lib/buffer.js |
Releases wishlist:
LTS release candidates as opposed to just release candidates for semver major releases (@brycebaril, @codepilot)
Nightlies with a unique identifier in the version (@codepilot)
Release candidates ought to be release candidates (@trott)
Need for a 5.x.x-staging branch and a 6.x.x-staging branch (@brycebaril)
'use strict'; | |
var assert = require('assert'); | |
var tls = require('tls'); | |
var net = require('net'); | |
var fs = require('fs'); | |
var options = { | |
key: fs.readFileSync('/Users/trott/io.js/test/fixtures/keys/agent1-key.pem'), |
'use strict'; | |
var assert = require('assert'); | |
var tls = require('tls'); | |
var net = require('net'); | |
var fs = require('fs'); | |
var options = { | |
key: fs.readFileSync(__dirname + '/../fixtures/keys/agent1-key.pem'), | |
cert: fs.readFileSync(__dirname + '/../fixtures/keys/agent1-cert.pem') |
/Users/trott/io.js/lib/_debugger.js | |
190:31 error Expected '===' and instead saw '==' eqeqeq | |
205:24 error Expected '===' and instead saw '==' eqeqeq | |
215:24 error Expected '===' and instead saw '==' eqeqeq | |
221:41 error Expected '===' and instead saw '==' eqeqeq | |
225:41 error Expected '===' and instead saw '==' eqeqeq | |
229:41 error Expected '===' and instead saw '==' eqeqeq | |
233:41 error Expected '===' and instead saw '==' eqeqeq | |
331:25 error Expected '===' and instead saw '==' eqeqeq |