Questions tagged «schedule»

7
安排R脚本
我编写了一个R脚本,该脚本从数据库中提取一些数据,对该数据库执行一些操作,然后将输出发布到新数据库中。 我希望该脚本每天在特定时间运行,但是我找不到有效地执行此操作的任何方法。 谁能推荐我可以用来解决这个问题的资源?我正在Windows计算机上运行此脚本。
113 r  windows  schedule  r-faq 

4
如何安排任务定期运行?
我正在尝试一些代码以实现预定任务,并提出了这些代码。 import java.util.*; class Task extends TimerTask { int count = 1; // run is a abstract method that defines task performed at scheduled time. public void run() { System.out.println(count+" : Mahendra Singh"); count++; } } class TaskScheduling { public static void main(String[] args) { Timer timer = new Timer(); …
76 java  timer  schedule 

10
Jenkins如何建立时间表?
如何安排Jenkins构建,使其只能在每天的特定时间构建? 例如从下午4点开始 0 16 1-7 * * 我的理解是:每个月的星期一至星期日下午4点为0分钟,但是每分钟都会生成一次:( 如有任何建议,我将不胜感激。谢谢!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.