Top "Scheduler" questions

A scheduler is a software component responsible for starting tasks at a given time.

Running batch files sequentially in win 7 task scheduler

I have 2 batch files as "actions" in a single task. The first one does a scan for viruses using microsoft …

windows task scheduler
How to create a new Linux kernel scheduler

Looking through the scheduler source code (2.6.34, kernel/sched.c), I can see how the "pluggable" schedulers are used, and I …

c linux linux-kernel scheduling scheduler
What is round-robin scheduling?

In a multitasking operating system context, sometimes you hear the term round-robin scheduling. What does it refer to? What other …

operating-system computer-science scheduler
ScheduledExecutorService start stop several times

I am using ScheduledExecutorService, and after I call it's shutdown method, I can't schedule a Runnable on it. Calling scheduleAtFixedRate(…

java scheduled-tasks scheduler
DBMS_JOB vs DBMS_SCHEDULER

What is the difference between DBMS_JOB and DBMS_SCHEDULER ?

oracle scheduler job-scheduling dbms-scheduler dbms-job
What is the difference between the fair and capacity schedulers?

I am new to the world of Hadoop and want to know the difference between fair and capacity schedulers. Also …

hadoop scheduler
python apscheduler - skipped: maximum number of running instances reached

I am executing a function every second using Python apscheduler (version 3.0.1) code: scheduler = BackgroundScheduler() scheduler.add_job(runsync, 'interval', seconds=1) …

python cron scheduler apscheduler
GWT: Timer and Scheduler Classes

I have read this page over several times, and am just not seeing some of the inherent differences between GWT's …

java gwt scheduler
How does cron internally schedule jobs?

How do "modern" cron daemons internally schedule their jobs? Some cronds used to schedule a run every so often via …

linux unix cron crontab scheduler
Can I set a timer on a Java Swing JDialog box to close after a number of milliseconds

Hi is it possible to create a Java Swing JDialog box (or an alternative Swing object type), that I can …

java swing timer scheduler jdialog