Searched refs:memoryLimit (Results 1 – 4 of 4) sorted by relevance
53 public function setMemoryLimit(ConfigManagementQuantity $memoryLimit) argument55 $this->memoryLimit = $memoryLimit;62 return $this->memoryLimit;
25 private $memoryLimit; variable in SebastianBergmann\\Diff\\LCS\\LongestCommonSubsequenceTest34 $this->memoryLimit = \ini_get('memory_limit');47 \ini_set('memory_limit', $this->memoryLimit);
315 $memoryLimit = 100 * 1024 * 1024;317 if ($this->calculateEstimatedFootprint($from, $to) > $memoryLimit) {
276 $memoryLimit = ini_get('memory_limit');277 if (preg_match('#([0-9]+) ?M#i', $memoryLimit, $matches)) {279 $memoryLimit = $matches[1] * 1048576;280 …} elseif (preg_match('#([0-9]+) ?G#i', $memoryLimit, $matches)) { // The 'G' modifier is available…282 $memoryLimit = $matches[1] * 1073741824;284 $this->memory_limit = $memoryLimit;