/ec/ECSpooler/ |
H A D | config.py | 8 import os namespace 21 DATA_DIR = os.path.join(os.path.dirname(__file__), 'var') 23 JOB_QUEUE_STORAGE = os.path.join(DATA_DIR, 'data.fs') 24 RESULT_QUEUE_STORAGE = os.path.join(DATA_DIR, 'result.fs') 25 RETRY_QUEUE_STORAGE = os.path.join(DATA_DIR, 'retry.fs') 27 ETC_DIR = os.path.join(os.path.dirname(__file__), 'etc') 28 PASSWD_FILE = os.path.join( ETC_DIR, 'passwd') 32 LOG_DIR = os [all...] |
/ec/ECSpooler/backends/cl/ |
H A D | config.py | 8 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/haskell/ |
H A D | config.py | 8 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/haskellext/ |
H A D | config.py | 7 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/haskellio/ |
H A D | config.py | 8 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/haskellqc/ |
H A D | config.py | 20 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/python/ |
H A D | config.py | 7 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/pyunit/ |
H A D | config.py | 8 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/sql/ |
H A D | config.py | 7 from os.path import join, dirname, abspath
|
/ec/ECSpooler/tests/ |
H A D | runalltests | 13 import os namespace 19 sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), os.pardir)) 25 os.chdir(os.path.join(os.path.abspath(os.path.dirname(__file__)))) 30 tests = os [all...] |
H A D | runtests | 13 import os namespace 19 sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), os.pardir)) 24 os.chdir(os.path.join(os.path.abspath(os.path.dirname(__file__))))
|
H A D | testUtil.py | 8 import os namespace 32 __pid_filename = os.path.join(tempfile.gettempdir(), 'test_utils.pid') 42 os.remove(self.__pid_filename) 53 self.assertTrue(os.path.exists(self.__pid_filename)) 68 self.assertEqual(pid, os.getpid()) 74 self.assertTrue(os.path.exists(self.__pid_filename)) 76 self.assertFalse(os.path.exists(self.__pid_filename))
|
/ec/ECSpooler/lib/util/ |
H A D | utils.py | 12 import os namespace 41 return os.path.join(tempfile.gettempdir(), name + suffix) 53 d = os.path.dirname(filename) 55 if not os.path.exists(d): 56 os.makedirs(d) 75 for f in os.listdir(path): 77 file_or_dir = os.path.join(path, f) 79 if os.path.isdir(file_or_dir) and not os.path.islink(file_or_dir): 87 os [all...] |
H A D | settings.py | 9 import os, sys namespace 53 if (not os.path.exists(LOG_DIR) and not os.path.isdir(LOG_DIR)): 54 os.makedirs(LOG_DIR) 55 path = os.path.join(LOG_DIR, filename + '.log')
|
/ec/ECSpooler/backends/prolog/ |
H A D | config.py | 7 from os.path import join, dirname, abspath
|
/ec/ECAssignmentBox/ |
H A D | setup.py | 8 import os namespace 12 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
/ec/ECAutoAssessmentBox/ |
H A D | setup.py | 5 import os namespace 9 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
/ec/ECLecture/ |
H A D | setup.py | 6 import os namespace 10 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
/ec/ECQuiz/Products/ECQuiz/ |
H A D | config.py | 26 import os namespace 35 ret = os.listdir(os.path.dirname(__file__)+'/'+ relativeDir)
|
/ec/ECQuiz/ |
H A D | setup.py | 5 import os namespace 9 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
|
/ec/ECSpooler/backends/erlang/ |
H A D | config.py | 7 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/java/ |
H A D | config.py | 7 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/javare/ |
H A D | config.py | 7 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/scheme/ |
H A D | config.py | 8 from os.path import join, dirname, abspath
|
/ec/ECSpooler/backends/xml/ |
H A D | config.py | 8 from os.path import join, dirname, abspath
|