Home
last modified time | relevance | path

Searched refs:cluster (Results 1 – 17 of 17) sorted by relevance

/developtools/ace_js2bundle/ace-loader/src/
Dmanage-bundle-workers.js17 import cluster from "cluster";
38 if ((useNewApi && cluster.isPrimary) || (!useNewApi && cluster.isMaster)) {
40 cluster.setupPrimary({
44 cluster.setupMaster({
54 cluster.fork(workerData);
56 cluster.on("exit", (worker, code, signal) => {
Dgen-abc.js18 const cluster = require('cluster'); constant
42 if (cluster.isWorker && process.env["inputs"] !== undefined && process.env["cmd"] !== undefined) {
DgenAbc-plugin.js18 const cluster = require('cluster'); constant
702 if (useNewApi && cluster.isPrimary || !useNewApi && cluster.isMaster) {
704 cluster.setupPrimary({
708 cluster.setupMaster({
718 cluster.fork(workerData);
721 cluster.on('exit', (worker, code, signal) => {
Dcompile-plugin.js29 import cluster from 'cluster';
245 let workerNum = Object.keys(cluster.workers).length;
/developtools/ace_ets2bundle/compiler/src/
Dmanage_workers.ts17 import cluster from "cluster";
47 if ((useNewApi && cluster.isPrimary) || (!useNewApi && cluster.isMaster)) {
53 cluster.setupPrimary({
57 cluster.setupMaster({
73 cluster.fork(workerData);
76 cluster.on("exit", (worker, code, signal) => {
Dgen_abc.ts18 import cluster from 'cluster';
49 logger.debug('gen_abc isWorker is: ', cluster.isWorker);
50 if (cluster.isWorker && process.env['inputs'] !== undefined && process.env['cmd'] !== undefined) {
51 logger.debug('==>worker #', cluster.worker.id, 'started!');
Dgen_module_abc.ts20 import cluster from 'cluster';
61 logger.debug('gen_abc isWorker is: ', cluster.isWorker);
62 if (cluster.isWorker && process.env['inputs'] !== undefined && process.env['cmd'] !== undefined
64 logger.debug('==>worker #', cluster.worker.id, 'started!');
Dgen_abc_plugin.ts18 import cluster from 'cluster';
1308 if (useNewApi && cluster.isPrimary || !useNewApi && cluster.isMaster) {
1314 cluster.setupPrimary({
1318 cluster.setupMaster({
1334 cluster.fork(workerData);
1337 cluster.on('exit', (worker, code, signal) => {
Dcompile_info.ts65 import cluster from 'cluster';
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dcommon_mode.ts116 setupCluster(cluster: any): void {
117 cluster.removeAllListeners('exit');
119 cluster.setupPrimary({
124 cluster.setupMaster({
Dgen_abc.ts17 import cluster from 'cluster';
88 if (cluster.isWorker && process.env['inputs'] !== undefined && process.env['cmd'] !== undefined &&
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/
Dutils.ts16 import cluster from 'cluster';
62 return ((nodeLargeOrEqualTargetVersion(16) && cluster.isPrimary) ||
63 (!nodeLargeOrEqualTargetVersion(16) && cluster.isMaster));
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/bundle/
Dbundle_mode.ts18 import cluster from 'cluster';
267 this.setupCluster(cluster);
276 const worker: any = cluster.fork(workerData);
285 cluster.on('exit', (worker, code, signal) => {
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts19 import cluster from 'cluster';
489 this.setupCluster(cluster);
502 const worker: any = cluster.fork(workerData);
516 cluster.on('exit', (worker, code, signal) => {
/developtools/profiler/host/smartperf/ide/src/
Dicon.svg645 <symbol id="icon-cluster" viewBox="0 0 1024 1024">
/developtools/smartperf_host/ide/src/
Dicon.svg645 <symbol id="icon-cluster" viewBox="0 0 1024 1024">
/developtools/profiler/hiebpf/include/
Dvmlinux.h103480 unsigned int cluster; member