Skip to main content
Filter by
Sorted by
Tagged with
-1 votes
1 answer
33 views

I'm testing EAS on an 8-core machine (2 big cores, 6 little cores) with kernel version 6.6. I've verified that the system configuration is correct, but the core EAS function is never called. I've ...
user776231's user avatar
0 votes
0 answers
39 views

I want my script to run every n minutes starting from NOT NOW, but rather starting from the time I specified. When I do: def periodic(scheduler, interval, action, actionargs=()): ...
MuhammedTech's user avatar
0 votes
1 answer
93 views

I am attempting a simple script that schedules a set of commands. I want to build, but I am stuck with the initial steps using the sched2 package What I ultimately trying to do is to have a set of ...
jack kelly's user avatar
0 votes
1 answer
156 views

I want to write a function which can produce each circle coordinates in every 30 seconds. So far my code is like this: import sched, time import numpy as np scheduler = sched.scheduler(time.time, time....
sumita1998's user avatar
0 votes
2 answers
474 views

I've written a basic wrapper around sched.scheduler, but I'm getting: File "/usr/local/anaconda3/lib/python3.7/sched.py", line 149, in run delayfunc(time - now) OSError: [Errno 22] ...
P i's user avatar
  • 31.3k