Searched refs:path (Results 1 - 25 of 65) sorted by relevance

123

/ec/ECSpooler/
H A Dconfig.py20 # Set path to job and result storage
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.path
[all...]
/ec/ECSpooler/backends/cl/
H A Dconfig.py8 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/haskell/
H A Dconfig.py8 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/haskellext/
H A Dconfig.py7 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/haskellio/
H A Dconfig.py8 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/haskellqc/
H A Dconfig.py20 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/python/
H A Dconfig.py7 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/pyunit/
H A Dconfig.py8 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/sql/
H A Dconfig.py7 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/prolog/
H A Dconfig.py7 from os.path import join, dirname, abspath
/ec/ECSpooler/lib/util/
H A Dsettings.py53 if (not os.path.exists(LOG_DIR) and not os.path.isdir(LOG_DIR)):
55 path = os.path.join(LOG_DIR, filename + '.log')
56 hdlr = RotatingFileHandler(path, maxBytes=maxBytes, backupCount=backupCount)
H A Dutils.py35 Generates a absolute path string including the path to main temp dir,
39 @return: A string with absolute file path
41 return os.path.join(tempfile.gettempdir(), name + suffix)
49 @param: filename The absolut e file path.
53 d = os.path.dirname(filename)
55 if not os.path.exists(d):
66 def removeDirectory(path):
71 @param: path absolute path
[all...]
/ec/ECSpooler/tests/
H A Drunalltests18 # add parent directory to the system path
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__))))
H A Druntests18 # add parent directory to the system path
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 DtestUtil.py32 __pid_filename = os.path.join(tempfile.gettempdir(), 'test_utils.pid')
53 self.assertTrue(os.path.exists(self.__pid_filename))
74 self.assertTrue(os.path.exists(self.__pid_filename))
76 self.assertFalse(os.path.exists(self.__pid_filename))
/ec/ECSpooler/backends/erlang/
H A Dconfig.py7 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/java/
H A Dconfig.py7 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/javare/
H A Dconfig.py7 from os.path import join, dirname, abspath
/ec/ECSpooler/backends/scheme/
H A Dconfig.py8 from os.path import join, dirname, abspath
14 # construct path for stream lib
/ec/ECSpooler/backends/xml/
H A Dconfig.py8 from os.path import join, dirname, abspath
/ec/ECSpooler/lib/
H A DSecureXMLRPCServer.py15 __CERT_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), '..', 'certs')
17 KEYFILE = os.path.join(__CERT_PATH, 'key.pem')
18 CERTFILE = os.path.join(__CERT_PATH, 'cert.pem')
/ec/ECAssignmentBox/
H A Dsetup.py12 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
/ec/ECAutoAssessmentBox/
H A Dsetup.py9 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
/ec/ECLecture/
H A Dsetup.py10 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
/ec/ECQuiz/
H A Dsetup.py9 return open(os.path.join(os.path.dirname(__file__), *rnames)).read()

Completed in 656 milliseconds

123