Displaying 2 results from an estimated 2 matches for "natsort".
2006 Jan 11
3
natural sorting
It would be nifty to incorporate this into R or into an R package:
http://sourcefrog.net/projects/natsort/
2005 Apr 04
0
io timeout after 180 seconds
...e {
~ $tmp_max = $a_backupTypeSettings[$s_backupType]['limit'];
~ }
~ // If the max is 1 (backing up only once a day) then don't
rotate anything
~ if ($tmp_max > 1) {
~ // go through directories in reverse order and rotate them
~ natsort($a_dirList);
~ $a_dirList = array_reverse($a_dirList);
~ foreach ($a_dirList as $tmp_dir) {
~ $tmp_key = preg_replace(':.*\.(\d+)$:', '\\1', $tmp_dir);
~ // rotate off any of the old backups
~ if (($tmp_key + 1) >...