Top "Scheduling" questions

In computer science, scheduling is the method by which threads, processes or data flows are given access to system resource.

How to setup-up Job scheduling with .NET framework?

How can I do simple job scheduling with C#/.NET? Assume I have a method (of a certain class) which …

c# .net windows scheduling job-scheduling
Which is the better of the django event apps?

I've been looking at django-swingtime, django-schedule and django-agenda. Any recommendations of which is them easier to use, and if so …

django calendar scheduling
How is Heterogeneous Multi-Processing (HMP) scheduling implemented in Linux Kernel (Samsung Exynos5422)?

Does anybody know how Heterogeneous Multi-Processing (HMP) scheduling is implemented in the Linux kernel scheduler? This has been implemented in …

linux-kernel scheduling smp odroid hmp
Linux - threads and process scheduling priorities

if we create pthreads (pthread_create) or processes (fork) with default scheduling policies on linux, will the scheduler treats the …

linux process pthreads scheduling
PHP function that receive a cron string and return the next run timestamp

I need to develop a task system that should be able to work on servers that doesn't support crontab. I'm …

php cron scheduled-tasks scheduling crontab
Does linux schedule a process or a thread?

After reading this SO question I got a few doubts. Please help in understanding. Scheduling involves deciding when to run …

linux multithreading process kernel scheduling
Autosys dependency on mainframe job

We have an Autosys job (let's call it job_a) that has a 3am time dependency and is also supposed …

scheduling autosys
How does select work when multiple channels are involved?

I found when using select on multiple non buffered channels like select { case <- chana: case <- chanb: } …

select go scheduling channel goroutine
Azure Task Scheduler

While this question is particular to Azure, I'm sure that it is a common situation for cloud computing in general. …

azure cloud scheduling task
Can the order of execution of fork() be determined?

I'm working on an exercise on the textbook "Operating System Concepts 7th Edition", and I'm a bit confused about how …

c fork scheduling