Home
last modified time | relevance | path

Searched refs:mainError (Results 1 – 13 of 13) sorted by relevance

/third_party/node/deps/npm/node_modules/retry/test/integration/
Dtest-retry-operation.js29 assert.strictEqual(operation.mainError(), error);
65 assert.strictEqual(operation.mainError(), error);
76 assert.strictEqual(operation.mainError(), error2);
112 assert.strictEqual(operation.mainError(), error);
138 assert.strictEqual(operation.mainError(), error);
177 assert.strictEqual(operation.mainError(), error);
203 assert.strictEqual(operation.mainError(), error);
250 assert.strictEqual(operation.mainError(), error);
/third_party/node/deps/npm/node_modules/promise-retry/node_modules/retry/test/integration/
Dtest-retry-operation.js26 assert.strictEqual(operation.mainError(), error);
37 assert.strictEqual(operation.mainError(), error2);
74 assert.strictEqual(operation.mainError(), error);
100 assert.strictEqual(operation.mainError(), error);
139 assert.strictEqual(operation.mainError(), error);
165 assert.strictEqual(operation.mainError(), error);
/third_party/node/deps/npm/node_modules/promise-retry/node_modules/retry/lib/
Dretry_operation.js120 RetryOperation.prototype.mainError = function() { method in RetryOperation
126 var mainError = null;
137 mainError = error;
142 return mainError;
Dretry.js88 arguments[0] = op.mainError();
/third_party/node/deps/npm/node_modules/retry/lib/
Dretry_operation.js135 RetryOperation.prototype.mainError = function() { method in RetryOperation
141 var mainError = null;
152 mainError = error;
157 return mainError;
Dretry.js89 arguments[0] = op.mainError();
/third_party/node/deps/npm/node_modules/normalize-package-data/node_modules/resolve/lib/
Dsync.js125 … var mainError = new TypeError('package “' + pkg.name + '” `main` must be a string');
126 mainError.code = 'INVALID_PACKAGE_MAIN';
127 throw mainError;
Dasync.js180 … var mainError = new TypeError('package “' + pkg.name + '” `main` must be a string');
181 mainError.code = 'INVALID_PACKAGE_MAIN';
182 return cb(mainError);
/third_party/node/deps/npm/node_modules/promise-retry/node_modules/retry/example/
Ddns.js20 cb(operation.mainError(), operation.errors(), addresses);
Dstop.js25 cb(operation.mainError(), operation.errors(), result);
/third_party/node/deps/npm/node_modules/retry/example/
Ddns.js20 cb(operation.mainError(), operation.errors(), addresses);
Dstop.js25 cb(operation.mainError(), operation.errors(), result);
/third_party/node/deps/npm/node_modules/promise-retry/node_modules/retry/
DREADME.md32 cb(err ? operation.mainError() : null, addresses);
149 #### retryOperation.mainError()