Home
last modified time | relevance | path

Searched refs:memoryLimit (Results 1 – 4 of 4) sorted by relevance

/plugin/authgooglesheets/vendor/google/apiclient-services/src/GKEHub/
H A DConfigManagementContainerResourceRequirements.php53 public function setMemoryLimit(ConfigManagementQuantity $memoryLimit) argument
55 $this->memoryLimit = $memoryLimit;
62 return $this->memoryLimit;
/plugin/findologicxmlexport/vendor/sebastian/diff/tests/LCS/
H A DLongestCommonSubsequenceTest.php25 private $memoryLimit; variable in SebastianBergmann\\Diff\\LCS\\LongestCommonSubsequenceTest
34 $this->memoryLimit = \ini_get('memory_limit');
47 \ini_set('memory_limit', $this->memoryLimit);
/plugin/findologicxmlexport/vendor/sebastian/diff/src/
H A DDiffer.php315 $memoryLimit = 100 * 1024 * 1024;
317 if ($this->calculateEstimatedFootprint($from, $to) > $memoryLimit) {
/plugin/jplayer/vendor/james-heinrich/getid3/getid3/
H A Dgetid3.php276 $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;