Home
last modified time | relevance | path

Searched refs:CronTab (Results 1 – 25 of 36) sorted by relevance

12

/dports/sysutils/py-python-crontab/python-crontab-ba23056ddf1a00ecfd14b0a31c2e0cdad132f8d0/tests/
H A Dtest_range.py22 from crontab import CronTab, CronSlice, PY3
39 self.crontab = CronTab(tab="")
43 tab = CronTab(tab="""
60 tab = CronTab(tab="""
77 tab = CronTab(tab="""
94 tab = CronTab(tab="""
106 tab = CronTab(tab="""
114 tab = CronTab(tab="/10 * * * * command")
131 tab = CronTab(tab="* * * * 3-1 command")
H A Dtest_system_cron.py28 from crontab import CronTab
43 self.crontab = CronTab(tab=INITIAL_TAB, user=False)
70 tab = CronTab(user=False)
98 crontab = CronTab(user=False, tab="""
104 crontab = CronTab(user=False, tab="* * * * * user command")
106 crontab = CronTab(user=False, tab="* * * * * user command\n")
112 self.crontab = CronTab(tab=str(self.crontab))
118 crontab = CronTab(user=False, tabfile=TEST_FILE)
H A Dtest_env.py31 from crontab import CronTab
55 self.crontab = CronTab(tab=INITIAL_TAB)
63 crontab = CronTab(tab="SHELL=dash\n")
122 cron = CronTab(tab="""
134 cron = CronTab(tab="""
142 cron = CronTab(tab="""
180 self.assertEqual(str(CronTab(tab=tab)), tab)
191 cron = CronTab(tab=tab)
H A Dtest_usage.py75 cron = crontab.CronTab()
82 cron = crontab.CronTab(user='basic')
88 cron = crontab.CronTab(tab='')
100 cron = crontab.CronTab(user=True)
107 cron = crontab.CronTab(user='nouser')
112 cron = crontab.CronTab(tab=USER)
122 cron = crontab.CronTab(tab=USER)
133 cron = crontab.CronTab(user='error')
138 cron = crontab.CronTab()
211 cron = crontab.CronTab(tab="02 3-5 2,4 */2 01 cmd")
[all …]
H A Dtest_compatibility.py41 tab = crontab.CronTab(user='foo')
43 tab = crontab.CronTab(user=crontab.current_user())
58 self.crontab = crontab.CronTab(tab=INITAL_TAB)
86 tab = crontab.CronTab(tabfile=os.path.join(TEST_DIR, 'data', 'specials.tab'))
101 cron = crontab.CronTab(tab="""
111 cron = crontab.CronTab(tab="""
H A Dtest_removal.py28 from crontab import CronTab, PY3
47 self.crontab = CronTab(tab=START_TAB.strip())
104 crontab = CronTab()
108 crontab = CronTab(tabfile=filename)
114 crontab = CronTab(tabfile=filename)
119 crontab = CronTab()
H A Dtest_equality.py24 from crontab import CronTab
47 self.crontab1 = CronTab(tab=CRONTAB1)
48 self.crontab2 = CronTab(tab=CRONTAB2)
H A Dtest_utf8.py28 from crontab import CronTab, PY3
47 self.crontab = CronTab(tab=content)
57 crontab = CronTab(tabfile=filename)
105 cron = CronTab(tabfile=filename + '.in')
H A Dtest_interaction.py26 from crontab import CronTab, CronSlices, CronSlice, PY3
73 self.crontab = CronTab(tabfile=os.path.join(TEST_DIR, 'data', 'test.tab'))
275 crontab = CronTab(tab=cron)
278 crontab = CronTab(tab=cron)
303 tab = CronTab(tabfile=os.path.join(TEST_DIR, 'data', 'specials_enc.tab'))
309 tab = CronTab(tabfile=os.path.join(TEST_DIR, 'data', 'specials.tab'))
315 tab = CronTab(tabfile=os.path.join(TEST_DIR, 'data', 'specials.tab'))
356 cron = CronTab(tab='')
H A Dtest_enums.py28 from crontab import CronTab
60 self.crontab = CronTab(tab=INITAL_TAB)
H A Dtest_every.py28 from crontab import CronTab, PY3
42 self.crontab = CronTab(tabfile=os.path.join(TEST_DIR, 'data', 'test.tab'))
H A Dtest_log.py27 from crontab import CronTab
81 self.crontab = CronTab(tab=INITAL_TAB, log=self.log)
H A Dtest_frequency.py28 from crontab import CronTab, PY3
43 self.crontab = CronTab(tab=START_TAB.strip())
H A Dtest_description.py40 self.crontab = crontab.CronTab(tab=INITAL_TAB)
H A Dtest_croniter.py43 self.crontab = crontab.CronTab(tab=INITAL_TAB)
H A Dtest_crontabs.py53 self.append(crontab.CronTab(user=False, tab="%s root anacron_cmd %s" \
/dports/sysutils/py-python-crontab/python-crontab-ba23056ddf1a00ecfd14b0a31c2e0cdad132f8d0/
H A Dcrontabs.py28 from crontab import CronTab
38 tab = CronTab(user=True)
59 return CronTab(tabfile=path)
60 return CronTab(user=username)
71 self.append(CronTab(user=False, tabfile=path))
73 self.append(CronTab(user=False, tabfile=loc))
80 self.append(CronTab(user=False))
138 self._all = CronTab(user=False)
H A DREADME.rst69 from crontab import CronTab
71 empty_cron = CronTab()
72 my_user_cron = CronTab(user=True)
73 users_cron = CronTab(user='username')
77 file_cron = CronTab(tabfile='filename.tab')
78 mem_cron = CronTab(tab="""
84 system_cron = CronTab(tabfile='/etc/crontab', user=False)
197 Write CronTab back to system or filename::
201 Write CronTab to new filename::
287 tab = CronTab(tabfile='MyScripts.tab')
[all …]
/dports/sysutils/luckybackup/luckybackup-0.5.0/src/
H A DscheduleDialog.cpp427 CronTab = ""; in viewCrontab()
437 if (CronTab == "") in viewCrontab()
438 CronTab = currentUser + " - " + tr("no crontab entries exist"); in viewCrontab()
441 textDialog textdialog ("ViewCurrentCrontab", CronTab, this); in viewCrontab()
709 CronTab = ""; in createCron()
713 int x = CronTab.indexOf(luckyEntryStart); in createCron()
714 int y = CronTab.indexOf(luckyEntryEnd) + luckyEntryEnd.size() - x; in createCron()
796 CronTab.remove (x,y); //remove luckyBackup entries from CronTab in createCron()
875 CronTab = ""; in createCron()
879 if (CronTab == luckyEntryStart + luckyEntryEnd) in createCron()
[all …]
H A DscheduleDialog.h52 QString CronTab; //QString to hold the user's crontab variable
H A Dfunctions.cpp586 QString CronTab = ""; in loadCurrentProfile() local
595 CronTab.append(in.readLine()); in loadCurrentProfile()
596 if (CronTab.contains(profileCheckCron, Qt::CaseInsensitive)) in loadCurrentProfile()
647 QString CronTab = ""; in saveCurrentProfile() local
654 CronTab.append(in.readLine()); in saveCurrentProfile()
655 if (CronTab.contains(profileName, Qt::CaseInsensitive)) in saveCurrentProfile()
/dports/devel/p5-Pegex/Pegex-0.75/lib/Pegex/
H A DResources.pod58 =item * L<A CronTab Grammar|https://github.com/ingydotnet/crontab-pgx>
74 =item * L<A CronTab Parser Perl Module|https://github.com/ingydotnet/pegex-crontab-pm>
/dports/www/habari/habari-0.8/system/handlers/
H A Dinstallhandler.php772 CronTab::add_daily_cron( 'trim_log', array( 'EventLog', 'trim' ), _t( 'Trim the log table' ) );
775CronTab::add_daily_cron( 'update_check', array( 'Update', 'cron' ), _t( 'Perform a check for plugi…
1420 if ( ! CronTab::get_cronjob( 'truncate_log' ) ) {
1421CronTab::add_daily_cron( 'truncate_log', array( 'Utils', 'truncate_log' ), _t( 'Truncate the log t…
1673 CronTab::delete_cronjob( 'truncate_log' );
1676 CronTab::add_daily_cron( 'trim_log', array( 'EventLog', 'trim' ), _t( 'Trim the log table' ) );
1684CronTab::add_daily_cron( 'update_check', array( 'Update', 'cron' ), _t( 'Perform a check for plugi…
/dports/www/habari/habari-0.8/system/
H A Dindex.php190 CronTab::run_cron( true );
/dports/net-mgmt/mrtg/mrtg-2.17.4/contrib/nt-services/
H A DREADME41 Default: C:\Etc\CronTab

12