Home
last modified time | relevance | path

Searched refs:memory (Results 101 – 111 of 111) sorted by path

12345

/plugin/subjectindex/plugins/
H A Dbible_verses.txt5777 The Rock who fathered you, you proceeded to forget,And you began to leave God out of memory, the On…
20372 You also do a casting off so that there is no peace for my soul. I have lost memory of what good is.
/plugin/syntaxhighlighter4/dist/
H A Dsyntaxhighlighter.js.map1memory|time (stamp|to GMT)|replacing|ASCII (character|number)|localized string|from table|offset|s…
/plugin/tuxquote/
H A Dquotes.txt631 Time heals nothing, it merely re-arranges our memory. <BR> -- Gary Numan
729 Happiness is good health and a bad memory. <BR> -- Ingrid Bergman (1917-1982)
1602 A clear conscience is usually the sign of a bad memory. <BR> -- Steven Wright, (1955--), U.S. comed…
2052 Unless a man feels he has a good enough memory, he should never venture to lie. <BR> -- Michel de M…
2374 A strong memory is commonly coupled with infirm judgment. <BR> -- Michel de Montaigne (1533-1592), …
2376 I've a grand memory for forgetting. <BR> -- Robert Louis Stevenson (1854-1894), English author
4003 Short term memory is always the first to go.
4004 #define struct union /* Reduce memory usage */
4100 If a 6600 used paper tape instead of core memory, it would use up tape at about 30 miles/second. <B…
/plugin/upgrade/vendor/splitbrain/php-archive/
H A DREADME.md43 // To create a new TAR archive directly on the filesystem (low memory
52 // To create a TAR archive directly in memory, create() it, add*()
/plugin/upgrade/vendor/splitbrain/php-archive/src/
H A DTar.php23 protected $memory = ''; variable in splitbrain\\PHPArchive\\Tar
102 * for memory efficiency.
227 * If $file is empty, the tar file will be created in memory
236 $this->memory = '';
390 * Returns the created in-memory archive data
404 return gzencode($this->memory, $this->complevel);
407 return bzcompress($this->memory);
409 return $this->memory;
413 * Save the created in-memory archive data
415 * Note: It more memory effectiv
[all...]
H A DZip.php22 protected $memory = ''; variable in splitbrain\\PHPArchive\\Zip
88 * for memory efficiency.
266 * If $file is empty, the zip file will be created in memory
274 $this->memory = '';
507 * Returns the created in-memory archive data
516 return $this->memory;
520 * Save the created in-memory archive data
522 * Note: It's more memory effective to specify the filename in the create() function and
784 * Write to the open filepointer or memory
793 $this->memory
[all...]
/plugin/webdav/vendor/sabre/dav/
H A DCHANGELOG.md204 * Massive calendars and addressbooks should see a big drop in peak memory
1550 result in much lower memory use.
2291 require to hold entire files in memory, which can be an issue if you're
/plugin/webdav/vendor/sabre/vobject/
H A DCHANGELOG.md193 * Lots of speedups and reduced memory usage!
212 circular references, allowing PHP to free up memory.
650 and use less memory.
/plugin/webdavclient/vendor/sabre/vobject/
H A DChangeLog.md424 and use less memory.
/plugin/zip/pear/File/
H A DArchive.php701 * @param string $memory content of the file
709 function readMemory($memory, $filename, $stat=array(), $mime=null) argument
712 return new File_Archive_Reader_Memory($memory, $filename, $stat, $mime);
/plugin/zip/pear/File/Archive/Reader/
H A DMemory.php58 var $memory; variable in File_Archive_Reader_Memory
71 * @param string $memory is the content of the file.
79 function File_Archive_Reader_Memory(&$memory, $filename, argument
82 $this->memory = &$memory;
124 if ($this->offset == strlen($this->memory)) {
207 $this->memory = substr($this->memory, $this->offset + $seek);
212 $data .= substr($this->memory, 0, $length);
214 $this->memory = substr($this->memory, $length);
218 $this->memory = $data . $this->memory;
220 $this->memory = $data;
[all …]

12345