Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
6k views

scheduler like google calendar in MVC

I am trying to integrate a calendar plugin like google calendar with custom database and code with asp.net MVC in C#. It needs to handle Day/Week/Month Events in the Calendar as like google calendar. ...
10
votes
4answers
2k views

Is it possible to run a cron job in a web application?

In a java web application (servlets/spring mvc), using tomcat, is it possible to run a cron job type service? e.g. every 15 minutes, purge the log database. Can you do this in a way that is ...
9
votes
1answer
378 views

Calculate next scheduled time based on cron spec

What's an efficient way to calculate the next run time of an event given the current time and a cron spec? I'm looking for something other than "loop through every minute checking if it matches ...
9
votes
3answers
1k views

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 believe I understand the interface to be implemented. What I don't ...
8
votes
5answers
10k views

What is a good (cheap/free) calendar/schedule control for asp.net?

I need a calendar/scheduler control for asp.net - not a pop-up date picker, but a full page monthly calendar. I'm trying to create an on call rotation / scheduler utility for work, and it'd be great ...
7
votes
3answers
839 views

Android Process Scheduling

I am trying to get a better understanding so I can scope the reliability impact from potential interoperability issues when creating an android app/service. I would like to figure out how process ...
7
votes
5answers
333 views

Linux, need accurate program timing. Scheduler wake up program

I have a thread running on a Linux system which i need to execute in as accurate intervals as possbile. E.g. execute once every ms. Currently this is done by creating a timer with ...
6
votes
1answer
102 views

Java scheduler which is completely independent of system time changes

Was using Java Timer, Then switched to ScheduledExecutorService, but my problem is not fixed. As Tasks scheduled before system time change (through ntpd) are not executed on delay specified. Have no ...
6
votes
0answers
144 views

Linux CFS (Completely Fair Scheduler) latency

I am a beginner to the Linux Kernel and I am trying to learn how Linux schedules processes. I have read some books on the Linux Kernel and gone through the links from IBM ...
6
votes
6answers
2k views

C++ - how does Sleep() and cin work?

Just curious. How does actually the function Sleep() work (declared in windows.h)? Maybe not just that implementation, but anyone. With that I mean - how is it implemented? How can it make the code ...
5
votes
2answers
229 views

Erlang VM: scheduler runtime information

I was searching for a way to retrieve information about how the scheduling is done during a program's execution: which processes are in which scheduler, if they change, what process is active at each ...
5
votes
2answers
236 views

Good alternative to crontab for java batch programs?

I've been looking for replacements for my companies current batch processing system(java SE + crontab), since there is a lot of java code/shell script duplication, most jobs are ETL and do very ...
5
votes
2answers
289 views

Schedule job executes twice on cluster

We are using Cron4j java scheduler for scheduling jobs which execute every night. Now, when this same web application is deployed(Tomcat) on cluster(2 nodes) at the client's site the jobs run twice. ...
5
votes
4answers
645 views

What should I use for simple cron jobs management in PHP project?

I want a simple cron-like management in PHP project there are some things I would like to have: php job worker is just plain script that is placed in some subdir inside project directory there is ...
5
votes
5answers
565 views

Linux 2.6.31 Scheduler and Multithreaded Jobs

I run massively parallel scientific computing jobs on a shared Linux computer with 24 cores. Most of the time my jobs are capable of scaling to 24 cores when nothing else is running on this computer. ...
5
votes
1answer
620 views

Who schedules the scheduler in OS - Isn't it a chicken and egg scenario?

Who schedules the scheduler? Which is the first task created and how is this first task created? Isn't any resource or memory required for it? isn't like a chicken and egg scenario? Isn't scheduler ...
5
votes
3answers
2k views

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 use to alert the user of a certain event and then automatically close the dialog after a delay; ...
4
votes
1answer
92 views

How to set “run only if logged in” and “run as” with TaskScheduler in C#?

I've got code that uses the C# TaskManager object to create a task. On Windows 7 it works fine but on Windows XP (and presumably other Windows) it doesn't work at all because the default user for the ...
4
votes
1answer
84 views

Database Design: schedules, including recurrence

I need to develop an application that supports "schedules". Example of schedules: Jan 1, 2011 at 9am Jan 1, 2011 from 9am to 10am Every Monday at 9am, from Jan 1, 2011 Every Monday at 9am, from Jan ...
4
votes
1answer
610 views

Is the Linux Scheduler aware of hardware interrupts (Scheduler Jitter)

If a process is interrupted by a hardware interrupt (First Level Interrupt Handler), then does the CPU scheduler becomes aware of that (e.g. Does the Scheduler count execution time for hardware ...
4
votes
3answers
1k views

Server Side Calendar Control in asp.net using the ical event format

Does anyone know of a Calendar scheduler control that would display a whole month of events including the title of the event in each day? I need it to use an ical data format that would come from a ...
4
votes
3answers
4k views

Request admin privileges for Java app on Windows Vista

When I try to create a new task in the task scheduler via the Java ProcessBuilder class I get an access denied error an Windows Vista. On XP it works just fine. When I use the "Run as adminstrator" ...
4
votes
4answers
3k views

Splitting log4j Output with Quartz Worker Threads

I'm working on an application that consists of an overall Quartz-based scheduler and "CycledJob" run using CronTriggers. The purpose of the application is to process inputs from different email ...
4
votes
5answers
3k views

In ASP.NET how you get the physcial file path when HttpContext.Current is NULL?

I'm working with DotNetNuke's scheduler to schedule tasks and I'm looking to get the physical file path of a email template that I created. The problem is that HttpContext is NULL because the ...
3
votes
1answer
94 views

Looking for an advanced jQuery-based scheduler widget

In an upcoming project we need an advanced scheduler component. It needs to be capable of scheduling events for about 100 people (at the same time) over a period of 31 days, and each task will have ...
3
votes
2answers
56 views

using Timer class - How can I make a scheduled Job started as scheduled even if the prior job isn't finished?

Without using Quartz, is there any option for Timer class or workaround to start scheduled jobs even if the previous job is not finished? Here's sample code. Job Scheduled for every 1 sec public ...
3
votes
2answers
63 views

How the web application to achieve the schedule task on a shared host?

As far as I know, the quartz.net scheduler is started in the global.asax. That's to say, quartz.net scheduler does not work unless someone visits the website. This is not a safe way because the ...
3
votes
1answer
168 views

is nice() used to change the thread priority or the process priority?

The man page for nice says "nice() adds inc to the nice value for the calling process. So, can we use it to change the nice value for a thread created by pthread_create? EDIT: It seems that we do ...
3
votes
1answer
227 views

Behavior of sched_yield

I have few questions about the sched_yield function because I'm seeing that it is not functioning as intended in my code. Many times I see that the same thread runs again and again, even in the ...
3
votes
1answer
271 views

Understanding Linux scheduling when pthreads are involved

through the discussion of another problem, see Debugging strange error that depends on the selected scheduler, I ran into some questions about the scheduling of my threads. I am on Linux 2.6.x, ...
3
votes
2answers
243 views

A task/job scheduling problem

I have a task/job scheduling problem and I would like to find preferably efficient algorithms to solve it. Let's say there are some workers. Every worker is able to do a different set of tasks/jobs. ...
3
votes
1answer
1k views

Spring's @Scheduled error : Only one AsyncAnnotationBeanPostProcessor may exist within the context

I am trying Spring 3's @Scheduled annotation . Here is my configuration (app.xml) : <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" ...
3
votes
1answer
124 views

Which code pattern is best for handling a cyclical and changeable flow of actions

My scenario is an application working cyclically on real time data and with tigh deadlines. I have a serie of actions to take on data at each cycle. I've actions that take place at each cycle (let's ...
3
votes
2answers
160 views

How to convert Silverlight Projects or controls to WPF

There is no Persian Scheduler for WPF. I have found one which is in SilverLoght but not in WPF How can I convert it? I have full access to the SL source code
3
votes
2answers
2k views

How to set a persistent/regular schedule in Android?

How can I execute an action (maybe an Intent) on every specified time (e.g. Every day on 5AM)? It has to stay after device reboots, similar to how cron works. I am not sure if I can use AlarmManager ...
3
votes
2answers
549 views

How can I convince powershell (run through task scheduler) to find my network drive?

I have a simple powershell script on windows 7 that doesn't work properly. (this is not an issue on XP) get-psdrive When I run it directly, I get Name Used (GB) Free (GB) Provider ...
3
votes
2answers
519 views

What is the difference between scheduler's standby() and pauseAll()?

I'm using Quartz Scheduler v.1.8.0. What's the difference between scheduler.standby() and scheduler.pauseAll()? standby() - Temporarily halts the Scheduler's firing of Triggers. ...
3
votes
2answers
342 views

Is this java project idea practical? (Thread scheduler and Particle Swarm Optimization)

On a multicore box, the java thread schedulers decisions are rather arbitrary, it assigns thread priorities based on when the thread was created, from which thread it was created etc. The idea is to ...
3
votes
1answer
659 views

Scheduler library in C++ similar to Java Quartz

I'm looking for a cross-platform library in C/C++ which can schedule jobs, function calls, etc. It would be nice if it is closer to Java Quartz. I would prefer BSD style licenses, LGPL would be okay ...
3
votes
4answers
865 views

How does a VxWorks scheduler get executed?

Would like to know how the scheduler gets called so that it can switch tasks. As in even if its preemptive scheduling or round robin scheduling - the scheduler should come in to picture to do any kind ...
3
votes
4answers
377 views

Nested class or not nested class?

I have class A and list of A objects. A has a function f that should be executed every X seconds (for the first instance every 1 second, for the seconds instance every 5 seconds, etc.). I have a ...
3
votes
2answers
629 views

FCFS algorithm for linux kernel process scheduler

In linux kenel process scheduler there is a priority type SCHED_FIFO. I want to change the scheduling policy. I have two questions: 1- Where, in the kernel source code, is it mentioned that after a ...
3
votes
2answers
670 views

Quartz.Net and dependancy injection or calling a job from external dll at runtime

I am trying to evaluate Quartz.Net. I tested it with adding a class which implemented IJob in the executing assembly and it worked. Now I want to develop an Job Scheduler in which I can add jobs at ...
3
votes
1answer
647 views

How does the Process Scheduler in iPhone OS really work internally?

I want to know this more in detail. Is it a realtime scheduler? An interactive scheduler? How exactly does the process scheduler in iPhone OS work? Did Apple publish some technical notes or document ...
3
votes
5answers
521 views

.NET Function to determine first, last day, etc

Does anyone know of a good piece of C# code or assembly that supports the following: Find the 1st Tuesday of June 2012 Find the last Friday of March 2008 Find every Saturday in January 2013 ...
3
votes
10answers
6k views

Alternative for Windows Task Scheduler

I need a Task Scheduler for Windows. Unfortunately the builtin scheduler doesn't meet my needs, which are: can run tasks every minute/hour runs on Linux and Windows 32 and 64 bit versions GUI ...
2
votes
2answers
82 views

Slow initial timing results using gettimeofday - worse under RHEL6 Server

I am using gettimeofday() to time a simple matrix multiply example, but I'm getting results that are close to twice too long initially. On a RHEL6 Server machine, I'm getting "bad" timing results for ...
2
votes
2answers
111 views

job VS Scheduler, Oracle 10G

Is there someone who can strictly give me what is the job (DBMS_JOB) and the scheduler (DBMS_SCHEDULER) in oracle? and what's its roles ? Regards.
2
votes
1answer
88 views

Dynamic process scheduling in Ubuntu

I wanted to modify the linux kernel code that dynamically changes the process priority. I have Ubuntu 10.10 and I downloaded linux 2.6.37. What I found was that in 2.6.37 version there is no concept ...
2
votes
1answer
84 views

Why is a thread's status running but it doesn't use any CPU?

Today I found a very strange problem. I ran Redhat Enterprise Linux 6, and the CPU was Intel E31275 (4 cores, 8 threads). I found one kernel thread (I called it as my_thread) didn't work correctly. ...

1 2 3 4 5 6