Home
last modified time | relevance | path

Searched refs:dataroot (Results 1 – 25 of 3270) sorted by relevance

12345678910>>...131

/dports/www/elgg/elgg-3.3.23/vendor/elgg/elgg/engine/tests/test_files/
H A D.gitignore9 /dataroot/*
10 !/dataroot/1
11 !/dataroot/1/1
12 !/dataroot/1/1/75x125.jpg
13 !/dataroot/1/1/300x300.jpg
14 !/dataroot/1/1/300x600.jpg
15 !/dataroot/1/1/400x300.gif
16 !/dataroot/1/1/400x300.png
17 !/dataroot/1/1/600x300.jpg
18 !/dataroot/1/1/foobar.txt
/dports/www/elgg/elgg-3.3.23/vendor/elgg/elgg/engine/tests/phpunit/unit/
H A DElggFileUnitTest.php27 $dataroot = _elgg_config()->dataroot;
30 elgg_delete_directory($dataroot . '1/2/');
34 $dataroot = _elgg_config()->dataroot;
37 elgg_delete_directory($dataroot . '1/2/');
162 $dataroot = _elgg_config()->dataroot;
242 $dataroot = _elgg_config()->dataroot;
251 $filestorename = "$dataroot$dir$filename";
259 $dataroot = _elgg_config()->dataroot;
264 unlink("$dataroot$dir$symlink_name");
373 $dataroot = _elgg_config()->dataroot;
[all …]
H A DElggInstallerUnitTest.php132 'dataroot' => \Elgg\Project\Paths::sanitize(Paths::elgg() . 'engine/tests/test_files/dataroot/'),
332 $dataroot = dirname(Paths::elgg()) . '/_installer_testing_dataroot/';
333 elgg_delete_directory($dataroot);
335 mkdir($dataroot);
345 'dataroot' => $dataroot,
378 'dataroot' => $dataroot,
393 elgg_delete_directory($dataroot);
643 'dataroot' => getenv('HOME') . '/engine/tests/test_files/dataroot/',
/dports/www/moodle310/moodle/lib/
H A Dinstalllib.php91 if (file_exists($dataroot) and !is_dir($dataroot)) {
97 if (!file_exists($dataroot)) {
103 @chmod($dataroot, $dirpermissions);
105 if (!is_writable($dataroot)) {
110 if (!is_dir("$dataroot/temp")) {
115 if (!is_writable("$dataroot/temp")) {
120 if (!is_dir("$dataroot/cache")) {
125 if (!is_writable("$dataroot/cache")) {
130 if (!is_dir("$dataroot/lang")) {
135 if (!is_writable("$dataroot/lang")) {
[all …]
H A Dsetup.php143 $CFG->dataroot = $CFG->behat_dataroot;
148 if (!isset($CFG->dataroot)) {
155 $CFG->dataroot = realpath($CFG->dataroot);
156 if ($CFG->dataroot === false) {
162 } else if (!is_writable($CFG->dataroot)) {
194 $CFG->tempdir = "$CFG->dataroot/temp";
204 $CFG->cachedir = "$CFG->dataroot/cache";
209 $CFG->localcachedir = "$CFG->dataroot/localcache";
219 $CFG->langotherroot = $CFG->dataroot.'/lang';
224 $CFG->langlocalroot = $CFG->dataroot.'/lang';
[all …]
/dports/www/moodle311/moodle/lib/
H A Dinstalllib.php91 if (file_exists($dataroot) and !is_dir($dataroot)) {
97 if (!file_exists($dataroot)) {
103 @chmod($dataroot, $dirpermissions);
105 if (!is_writable($dataroot)) {
110 if (!is_dir("$dataroot/temp")) {
115 if (!is_writable("$dataroot/temp")) {
120 if (!is_dir("$dataroot/cache")) {
125 if (!is_writable("$dataroot/cache")) {
130 if (!is_dir("$dataroot/lang")) {
135 if (!is_writable("$dataroot/lang")) {
[all …]
H A Dsetup.php143 $CFG->dataroot = $CFG->behat_dataroot;
148 if (!isset($CFG->dataroot)) {
155 $CFG->dataroot = realpath($CFG->dataroot);
156 if ($CFG->dataroot === false) {
162 } else if (!is_writable($CFG->dataroot)) {
194 $CFG->tempdir = "$CFG->dataroot/temp";
204 $CFG->cachedir = "$CFG->dataroot/cache";
209 $CFG->localcachedir = "$CFG->dataroot/localcache";
219 $CFG->langotherroot = $CFG->dataroot.'/lang';
224 $CFG->langlocalroot = $CFG->dataroot.'/lang';
[all …]
/dports/www/moodle39/moodle/lib/
H A Dinstalllib.php91 if (file_exists($dataroot) and !is_dir($dataroot)) {
97 if (!file_exists($dataroot)) {
103 @chmod($dataroot, $dirpermissions);
105 if (!is_writable($dataroot)) {
110 if (!is_dir("$dataroot/temp")) {
115 if (!is_writable("$dataroot/temp")) {
120 if (!is_dir("$dataroot/cache")) {
125 if (!is_writable("$dataroot/cache")) {
130 if (!is_dir("$dataroot/lang")) {
135 if (!is_writable("$dataroot/lang")) {
[all …]
H A Dsetup.php142 $CFG->dataroot = $CFG->behat_dataroot;
147 if (!isset($CFG->dataroot)) {
154 $CFG->dataroot = realpath($CFG->dataroot);
155 if ($CFG->dataroot === false) {
161 } else if (!is_writable($CFG->dataroot)) {
193 $CFG->tempdir = "$CFG->dataroot/temp";
203 $CFG->cachedir = "$CFG->dataroot/cache";
208 $CFG->localcachedir = "$CFG->dataroot/localcache";
213 $CFG->langotherroot = $CFG->dataroot.'/lang';
218 $CFG->langlocalroot = $CFG->dataroot.'/lang';
[all …]
/dports/www/moodle310/moodle/
H A Dinstall.php137 $config->dataroot = trim($_POST['dataroot']);
153 …$config->dataroot = empty($distro->dataroot) ? null : $distro->dataroot; // initialised later aft…
164 $CFG->dataroot = $config->dataroot;
165 $CFG->tempdir = $CFG->dataroot.'/temp';
167 $CFG->cachedir = $CFG->dataroot.'/cache';
322 if (empty($CFG->dataroot)) {
329 } else if (!file_exists($CFG->dataroot)) {
331 $a->parent = dirname($CFG->dataroot);
332 $a->dataroot = $CFG->dataroot;
388 $a->dest = $CFG->dataroot.'/lang';
[all …]
/dports/www/moodle39/moodle/
H A Dinstall.php137 $config->dataroot = trim($_POST['dataroot']);
153 …$config->dataroot = empty($distro->dataroot) ? null : $distro->dataroot; // initialised later aft…
164 $CFG->dataroot = $config->dataroot;
165 $CFG->tempdir = $CFG->dataroot.'/temp';
167 $CFG->cachedir = $CFG->dataroot.'/cache';
322 if (empty($CFG->dataroot)) {
329 } else if (!file_exists($CFG->dataroot)) {
331 $a->parent = dirname($CFG->dataroot);
332 $a->dataroot = $CFG->dataroot;
388 $a->dest = $CFG->dataroot.'/lang';
[all …]
/dports/www/moodle311/moodle/
H A Dinstall.php137 $config->dataroot = trim($_POST['dataroot']);
153 …$config->dataroot = empty($distro->dataroot) ? null : $distro->dataroot; // initialised later aft…
164 $CFG->dataroot = $config->dataroot;
165 $CFG->tempdir = $CFG->dataroot.'/temp';
167 $CFG->cachedir = $CFG->dataroot.'/cache';
322 if (empty($CFG->dataroot)) {
329 } else if (!file_exists($CFG->dataroot)) {
331 $a->parent = dirname($CFG->dataroot);
332 $a->dataroot = $CFG->dataroot;
388 $a->dest = $CFG->dataroot.'/lang';
[all …]
/dports/www/moodle310/moodle/admin/cli/
H A Dmaintenance.php65 if (file_exists("$CFG->dataroot/climaintenance.html")) {
78 if (file_exists("$CFG->dataroot/climaintenance.html")) {
97 if (file_exists("$CFG->dataroot/climaintenance.html")) {
98 unlink("$CFG->dataroot/climaintenance.html");
104 if (!empty($CFG->maintenance_enabled) or file_exists("$CFG->dataroot/climaintenance.html")) {
/dports/www/moodle311/moodle/admin/cli/
H A Dmaintenance.php65 if (file_exists("$CFG->dataroot/climaintenance.html")) {
78 if (file_exists("$CFG->dataroot/climaintenance.html")) {
97 if (file_exists("$CFG->dataroot/climaintenance.html")) {
98 unlink("$CFG->dataroot/climaintenance.html");
104 if (!empty($CFG->maintenance_enabled) or file_exists("$CFG->dataroot/climaintenance.html")) {
/dports/www/moodle39/moodle/admin/cli/
H A Dmaintenance.php65 if (file_exists("$CFG->dataroot/climaintenance.html")) {
78 if (file_exists("$CFG->dataroot/climaintenance.html")) {
97 if (file_exists("$CFG->dataroot/climaintenance.html")) {
98 unlink("$CFG->dataroot/climaintenance.html");
104 if (!empty($CFG->maintenance_enabled) or file_exists("$CFG->dataroot/climaintenance.html")) {
/dports/devel/gdcm/gdcm-3.0.10/Testing/Source/Common/Python/
H A DTestDirectory.py20 dataroot = t.GetDataRoot() variable
23 if not system.FileIsDirectory(dataroot):
26 nfiles = dir.Load(dataroot)
/dports/dns/dsp/dsp-2.0.1/grapher/
H A Ddsc-grapher-cli.pl.in61 dataroot => $args{dataroot} ? $args{dataroot} : '@DSC_DATA_DIR@',
/dports/www/moodle310/moodle/filter/tex/
H A Dlib.php136 if (file_exists("$CFG->dataroot/filter/tex")) {
137 remove_dir("$CFG->dataroot/filter/tex");
139 if (file_exists("$CFG->dataroot/filter/algebra")) {
140 remove_dir("$CFG->dataroot/filter/algebra");
/dports/www/moodle311/moodle/filter/tex/
H A Dlib.php141 if (file_exists("$CFG->dataroot/filter/tex")) {
142 remove_dir("$CFG->dataroot/filter/tex");
144 if (file_exists("$CFG->dataroot/filter/algebra")) {
145 remove_dir("$CFG->dataroot/filter/algebra");
/dports/www/moodle39/moodle/filter/tex/
H A Dlib.php128 if (file_exists("$CFG->dataroot/filter/tex")) {
129 remove_dir("$CFG->dataroot/filter/tex");
131 if (file_exists("$CFG->dataroot/filter/algebra")) {
132 remove_dir("$CFG->dataroot/filter/algebra");
/dports/math/singular/Singular-Release-4-2-1/ppcc/gclib/
H A Dtinygc.c1098 dataroot = (pred = dataroot)->next; in GC_roots_del_inside()
1113 while (dataroot != NULL && begin_addr >= dataroot->end_addr) in GC_roots_exclude()
1114 dataroot = dataroot->next; in GC_roots_exclude()
1115 if (dataroot != NULL && dataroot->begin_addr < end_addr) in GC_roots_exclude()
1139 if ((dataroot = dataroot->next) != NULL && in GC_roots_exclude()
1173 if (dataroot == NULL || end_addr < dataroot->begin_addr) in GC_roots_add()
1197 dataroot = dataroot->next; in GC_roots_add()
1198 while (dataroot != NULL && end_addr >= dataroot->begin_addr) in GC_roots_add()
1203 dataroot = (new_dataroot = dataroot)->next; in GC_roots_add()
1679 } while ((dataroot = dataroot->next) != NULL); in GC_roots_scan()
[all …]
/dports/www/moodle310/moodle/admin/tool/dbtransfer/
H A Dlocallib.php188 file_put_contents("$CFG->dataroot/climaintenance.html", $html);
189 @chmod("$CFG->dataroot/climaintenance.html", $CFG->filepermissions);
204 if (file_exists("$CFG->dataroot/climaintenance.html")) {
206 unlink("$CFG->dataroot/climaintenance.html");
/dports/www/moodle311/moodle/admin/tool/dbtransfer/
H A Dlocallib.php188 file_put_contents("$CFG->dataroot/climaintenance.html", $html);
189 @chmod("$CFG->dataroot/climaintenance.html", $CFG->filepermissions);
204 if (file_exists("$CFG->dataroot/climaintenance.html")) {
206 unlink("$CFG->dataroot/climaintenance.html");
/dports/www/moodle39/moodle/admin/tool/dbtransfer/
H A Dlocallib.php188 file_put_contents("$CFG->dataroot/climaintenance.html", $html);
189 @chmod("$CFG->dataroot/climaintenance.html", $CFG->filepermissions);
204 if (file_exists("$CFG->dataroot/climaintenance.html")) {
206 unlink("$CFG->dataroot/climaintenance.html");
/dports/www/elgg/elgg-3.3.23/vendor/elgg/elgg/engine/tests/phpunit/unit/Elgg/
H A DUploadServiceUnitTest.php34 $this->owner_dir_path = _elgg_config()->dataroot . $dir;
72 $tmp->write(file_get_contents(_elgg_config()->dataroot . '1/1/400x300.gif'));
96 $tmp->write(file_get_contents(_elgg_config()->dataroot . '1/1/400x300.gif'));
106 $tmp->write(file_get_contents(_elgg_config()->dataroot . '1/1/400x300.png'));
143 $tmp->write(file_get_contents(_elgg_config()->dataroot . '1/1/400x300.gif'));
177 $tmp->write(file_get_contents(_elgg_config()->dataroot . '1/1/400x300.gif'));

12345678910>>...131