PHP 8.2.31
Preview: ScheduleFactory.php Size: 746 B
//opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/symplify/easy-parallel/src/ScheduleFactory.php

<?php

declare (strict_types=1);
namespace RectorPrefix202411\Symplify\EasyParallel;

use RectorPrefix202411\Symplify\EasyParallel\ValueObject\Schedule;
/**
 * Used from
 * https://github.com/phpstan/phpstan-src/blob/9124c66dcc55a222e21b1717ba5f60771f7dda92/src/Parallel/Scheduler.php
 *
 * @api
 */
final class ScheduleFactory
{
    /**
     * @param array<string> $files
     */
    public function create(int $cpuCores, int $jobSize, int $maxNumberOfProcesses, array $files) : Schedule
    {
        $jobs = \array_chunk($files, $jobSize);
        $numberOfProcesses = \min(\count($jobs), $cpuCores);
        $numberOfProcesses = \min($maxNumberOfProcesses, $numberOfProcesses);
        return new Schedule($numberOfProcesses, $jobs);
    }
}

Directory Contents

Dirs: 6 × Files: 2

Name Size Perms Modified Actions
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
Contract DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
Enum DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
Exception DIR
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
- drwxr-xr-x 2024-11-08 13:59:10
Edit Download
569 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download
746 B lrw-r--r-- 2024-11-08 13:59:10
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).