Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.73.229
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
webpack /
lib /
cache /
Delete
Unzip
Name
Size
Permission
Date
Action
AddBuildDependenciesPlugin.js
716
B
-rw-rw-r--
2022-08-30 11:49
AddManagedPathsPlugin.js
870
B
-rw-rw-r--
2022-08-30 11:49
IdleFileCachePlugin.js
6.67
KB
-rw-rw-r--
2022-08-30 11:49
MemoryCachePlugin.js
1.48
KB
-rw-rw-r--
2022-08-30 11:49
MemoryWithGcCachePlugin.js
3.77
KB
-rw-rw-r--
2022-08-30 11:49
PackFileCacheStrategy.js
39.65
KB
-rw-rw-r--
2022-08-30 11:49
ResolverCachePlugin.js
10.34
KB
-rw-rw-r--
2022-08-30 11:49
getLazyHashedEtag.js
2.13
KB
-rw-rw-r--
2022-08-30 11:49
mergeEtags.js
1.45
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const Cache = require("../Cache"); /** @typedef {import("webpack-sources").Source} Source */ /** @typedef {import("../Cache").Etag} Etag */ /** @typedef {import("../Compiler")} Compiler */ /** @typedef {import("../Module")} Module */ class MemoryCachePlugin { /** * Apply the plugin * @param {Compiler} compiler the compiler instance * @returns {void} */ apply(compiler) { /** @type {Map<string, { etag: Etag | null, data: any }>} */ const cache = new Map(); compiler.cache.hooks.store.tap( { name: "MemoryCachePlugin", stage: Cache.STAGE_MEMORY }, (identifier, etag, data) => { cache.set(identifier, { etag, data }); } ); compiler.cache.hooks.get.tap( { name: "MemoryCachePlugin", stage: Cache.STAGE_MEMORY }, (identifier, etag, gotHandlers) => { const cacheEntry = cache.get(identifier); if (cacheEntry === null) { return null; } else if (cacheEntry !== undefined) { return cacheEntry.etag === etag ? cacheEntry.data : null; } gotHandlers.push((result, callback) => { if (result === undefined) { cache.set(identifier, null); } else { cache.set(identifier, { etag, data: result }); } return callback(); }); } ); compiler.cache.hooks.shutdown.tap( { name: "MemoryCachePlugin", stage: Cache.STAGE_MEMORY }, () => { cache.clear(); } ); } } module.exports = MemoryCachePlugin;