opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
symplify
/
easy-parallel
/
src
➕ New
📤 Upload
✎ Editing:
ScheduleFactory.php
← Back
<?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); } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel