Home
last modified time | relevance | path

Searched refs:memoize (Results 1 – 25 of 39) sorted by relevance

12

/plugin/asciidocjs/node_modules/lodash/
Dmemoize.js50 function memoize(func, resolver) { function
66 memoized.cache = new (memoize.Cache || MapCache);
71 memoize.Cache = MapCache;
73 module.exports = memoize;
D_memoizeCapped.js1 var memoize = require('./memoize'); variable
15 var result = memoize(func, function(key) {
Dlodash.js6489 var result = memoize(func, function(key) {
10608 function memoize(func, resolver) { function
10624 memoized.cache = new (memoize.Cache || MapCache);
10629 memoize.Cache = MapCache;
16688 lodash.memoize = memoize;
/plugin/asciidocjs/node_modules/async/
Dmemoize.js6 exports.default = memoize;
62 function memoize(fn, hasher = v => v) { function
Dindex.js7 … = exports.parallelLimit = exports.parallel = exports.nextTick = exports.memoize = exports.mapValu…
423 memoize: _memoize2.default, property
529 exports.memoize = _memoize2.default;
DCHANGELOG.md61 - `memoize` no longer memoizes errors (#1465, #1466)
225 - Allow using `"constructor"` as an argument in `memoize` ([#998](https://github.com/caolan/async/i…
/plugin/asciidocjs/node_modules/neo-async/
Dmemoize.js3 module.exports = require('./async').memoize;
DREADME.md181 - [`memoize`](#memoize)
Dasync.js2081 memoize: memoize, property
8942 function memoize(fn, hasher) { function
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/test/
Dfunctions.js134 fib = _.memoize(fib); // Redefine `fib` for memoization
140 var fastO = _.memoize(o);
145 var upper = _.memoize(function(s) {
155 var hashed = _.memoize(function(key) {
166 var objCacher = _.memoize(function(value, key) {
/plugin/sequencediagram/bower_components/underscore/
Dunderscore.js752 _.memoize = function(func, hasher) { function
753 var memoize = function(key) { function
754 var cache = memoize.cache;
759 memoize.cache = {};
760 return memoize;
Dunderscore-min.js5 …n names");for(t=1;e>t;t++)r=arguments[t],n[r]=m.bind(n[r],n);return n},m.memoize=function(n,t){var…
Dunderscore-min.map1 …or","bound","concat","partial","boundArgs","position","bindAll","Error","memoize","hasher","cache"…
/plugin/sequencediagram/bower_components/lodash/vendor/underscore/
Dunderscore.js782 _.memoize = function(func, hasher) { function
783 var memoize = function(key) { function
784 var cache = memoize.cache;
789 memoize.cache = {};
790 return memoize;
Dunderscore-min.js5 …n names");for(t=1;e>t;t++)r=arguments[t],n[r]=m.bind(n[r],n);return n},m.memoize=function(n,t){var…
/plugin/asciidocjs/node_modules/async/dist/
Dasync.js3595 function memoize(fn, hasher = v => v) { function
5888 memoize,
5996 exports.memoize = memoize;
Dasync.min.js1memoize:K,nextTick:ct,parallel:X,parallelLimit:Z,priorityQueue:ae,queue:$,race:ft,reduce:qe,reduce…
Dasync.mjs3564 * returned by `memoize`.
3566 * @name memoize
3582 * var fn = async.memoize(slow_fn);
3589 function memoize(fn, hasher = v => v) { function
3602 // #1465 don't memoize if an error occurred
5598 * Undoes a [memoize]{@link module:Utils.memoize}d function, reverting it to the original,
5605 * @see [async.memoize]{@link module:Utils.memoize}
5882 memoize,
5947 …pSeries, mapValues, mapValuesLimit$1 as mapValuesLimit, mapValuesSeries, memoize, nextTick, parall…
/plugin/emoji/script/
Djquery.textcomplete.js887 var memoize = function (func) { function
903 if (this.cache) { this.search = memoize(this.search); }
/plugin/sequencediagram/bower_components/lodash/
Dlodash.js6425 var result = memoize(func, function(key) {
10540 function memoize(func, resolver) { function
10556 memoized.cache = new (memoize.Cache || MapCache);
10561 memoize.Cache = MapCache;
16591 lodash.memoize = memoize;
/plugin/sequencediagram/bower_components/lodash/dist/
Dlodash.js6425 var result = memoize(func, function(key) {
10540 function memoize(func, resolver) { function
10556 memoized.cache = new (memoize.Cache || MapCache);
10561 memoize.Cache = MapCache;
16591 lodash.memoize = memoize;
/plugin/sequencediagram/bower_components/lodash/test/
Dtest.js349 var MapCache = (_.memoize || lodashStable.memoize).Cache;
902 var map = new lodashBizarro.memoize.Cache;
14686 var memoized = _.memoize(function(a, b, c) {
14698 memoized = _.memoize(fn, fn);
14708 memoized = _.memoize(fn, fn);
14721 assert.raises(function() { _.memoize(noop, true); }, TypeError);
14732 return _.isFunction(index ? _.memoize(noop, resolver) : _.memoize(noop));
14752 var memoized = _.memoize(identity);
14771 var memoized = _.memoize(function() {
14791 var oldCache = _.memoize.Cache;
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
D12.12.js.map1 … 'mapv',\n 'max',\n 'max-key',\n 'memfn',\n 'memoize',\n 'merge…
/plugin/codemirror/dist/modes/
Dclojure.min.js.map1 …"map?\", \"mapcat\", \"mapv\", \"max\",\n \"max-key\", \"memfn\", \"memoize\", \"merge\", \"m…
/plugin/sequencediagram/bower_components/lodash/doc/
DREADME.md131 * <a href="#_memoizefunc-resolver">`_.memoize`</a>
3972 <h3 id="_memoizefunc-resolver"><code>_.memoize(func, [resolver])</code></h3>
3973 …L10540 "View in source") [&#x24C3;](https://www.npmjs.com/package/lodash.memoize "See the npm pack…
3983 function. Its creation may be customized by replacing the `_.memoize.Cache`
4003 var values = _.memoize(_.values);
4019 // Replace `_.memoize.Cache`.
4020 _.memoize.Cache = WeakMap;
8597 `memoize`, `merge`, `mergeWith`, `method`, `methodOf`, `mixin`, `negate`,

12