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
real 135m58.539s | |
user 216m42.077s | |
sys 2m12.026s |
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
type mismatch: the type `[closure@src/service_router.rs:28:37: 32:6 c2:T]` implements the trait | |
`for<'r, 'r, 'r> core::ops::Fn<(&'r mut iron::request::Request<'r, 'r>,)>`, | |
but the trait | |
`for<'r, 'r, 'r> core::ops::Fn<(&'r mut iron::request::Request<'r, 'r>,)>` | |
is required | |
(expected struct | |
`iron::request::Request`, | |
found a different struct | |
`iron::request::Request` | |
) |
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
E/Gecko ( 9982): ShmemAndroid::Create():open: Bad address (14) | |
I/Gecko ( 9982): [GFX1]: [Tiling:Client] Failed to allocate a TextureClient | |
I/Gecko ( 9982): [GFX1]: ValidateTile failed |
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
. | |
├── JSONStream | |
│ ├── LICENSE.APACHE2 | |
│ ├── LICENSE.MIT | |
│ ├── examples | |
│ │ └── all_docs.js | |
│ ├── index.js | |
│ ├── package.json | |
│ ├── readme.markdown | |
│ └── test |
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
Breakpoint 1, mozilla::dom::BlobParent::IDTableEntry::GetOrCreateInternal (aID=..., aProcessID=aProcessID@entry=0, aBlobImpl=aBlobImpl@entry=0x8c50ccf0, | |
aMayCreate=aMayCreate@entry=true, aMayGet=aMayGet@entry=true, aIgnoreProcessID=false) at /Users/sam/code/mozilla/mozilla-central/dom/ipc/Blob.cpp:*4549* | |
4549 entry = new IDTableEntry(aID, aProcessID, aBlobImpl); | |
(gdb) info breakpoints | |
Num Type Disp Enb Address What | |
1 breakpoint keep y 0x82ab12d4 in mozilla::dom::BlobParent::IDTableEntry::GetOrCreateInternal(nsID const&, int, mozilla::dom::BlobImpl*, bool, bool, bool) | |
at /Users/sam/code/mozilla/mozilla-central/dom/ipc/Blob.cpp:*4544* |
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
// vim: set ts=4 sw=4 tw=78 noet : | |
const latest = require('./lib/sources').latest; | |
const path = require('path'); | |
const fs = require('fs'); | |
latest.listPolyfills().then(function(polyfills) { | |
return Promise.all(polyfills.map(function(polyfill) { | |
return latest.getPolyfill(polyfill).then(function(polyfill) { | |
const config = path.join(polyfill.baseDir, 'config.json'); |
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
Launching org.mozilla.b2gdroid... | |
Starting: Intent { cmp=org.mozilla.b2gdroid/.App } | |
Error type 3 | |
Error: Activity class {org.mozilla.b2gdroid/org.mozilla.b2gdroid.App} does not exist. | |
/Users/sam/code/c/jimdb-arm/bin/../utils/gdbinit:136: Error in sourced command file: | |
Error while launching org.mozilla.b2gdroid. |
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
// Polyfill | |
// String.prototype.includes | |
String.prototype.includes = function (string, index) { | |
if (typeof string === 'object' && string instanceof RegExp) throw new TypeError("First argument to String.prototype.includes must not be a regular expression"); | |
return this.indexOf(string, index) !== -1; | |
}; | |
// Array.prototype.includes | |
Array.prototype.includes = function includes(searchElement /*, fromIndex*/ ) {'use strict'; | |
var O = Object(this); |
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
/** Method 1. Use a PassThrough stream */ | |
var PassThrough = require('stream').PassThrough; | |
function myAsyncContent() { | |
var myContentStream = new PassThrough(); | |
var streamPromise = getAsyncInfo().then(function(info) { | |
return createStreamFromInfo(info); | |
}); | |
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
// Usage: | |
// | |
// ```JS | |
// var timer = new Timer(); | |
// | |
// timer.start("javascript"); | |
// | |
// compile(function(e, callback) { | |
// var timeInSecs = timer.end("javascript"); | |
// console.log("It took: ", timeInSecs, "s"); |