PHP WebShell

Текущая директория: /usr/lib/node_modules/bitgo/node_modules/metro-config/src/defaults

Просмотр файла: getMaxWorkers.js.flow

/**
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 *
 * @flow strict
 * @format
 * @oncall react_native
 */

import os from 'os';

export default function getMaxWorkers(workers: ?number): number {
  // $FlowFixMe[prop-missing] Missing Flow lib def for availableParallelism
  const cores = os.availableParallelism();
  return typeof workers === 'number' && Number.isInteger(workers)
    ? Math.min(cores, workers > 0 ? workers : 1)
    : Math.max(1, Math.ceil(cores * (0.5 + 0.5 * Math.exp(-cores * 0.07)) - 1));
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!