Questions tagged [schedule]

A schedule is the arrangement of events in time.

1847 questions
0
votes
1 answer

Long runnig scheduled task using Azure webjob without 'Always On' and queue's in the free tier

I need some help with the Azure webjobs as even after reading many articles it is unclear how I can get a 'simple' Azure webjob up and running. I'm trying to achieve the following: The job should be run on a schedule (e.g. every 4 hours) The webjob…
Frank
  • 3,959
  • 4
  • 19
  • 24
0
votes
1 answer

Linux kernel : schedule() function in multi-processors system

Is there a difference between the ((performing)) of the schedule function in multi-processors system to it`s ((performing)) in uni-processor system ?
0
votes
3 answers

Android: Will AlarmManager gets killed after shutdown

I am wondering will the alarm that I have set get destroyed after i shutting down the device or will it save the state of the schedule and broadcast straightaway when the user turning back on the device as long as the scheduled time is before the…
LittleFunny
  • 8,155
  • 15
  • 87
  • 198
0
votes
1 answer

QuantLib returns payment schedules with date outside the bound?

I'm using QuantLib 1.7.1 and try running these codes: Date begin(30, September, 2009), end(15, Jun, 2012); Calendar myCal = Japan(); BusinessDayConvention bdC = BusinessDayConvention(Following); Period myTenor(6, Months); DateGeneration::Rule myRule…
Truong Ngo
  • 13
  • 1
  • 4
0
votes
0 answers

How alarmmanager on android schedule the task when using setRepeating when phone shutdown

I wanted to know what will happen if the phone shutdown either low battery or user shut it down. If I set the alarm manager to trigger the service for every hours but at some point user shut down the phone, when will the alarm trigger the service…
LittleFunny
  • 8,155
  • 15
  • 87
  • 198
0
votes
0 answers

Calling schedule () function on an RTOS application

I am pretty naive to the concept of RTOS, so this question might also be naive :) While reading about task scheduling in RTOS, i came across the concept that the a non preemptive task can be interrupted if it calls schedule() (On linux based…
Anuj Priyadarshi
  • 347
  • 4
  • 16
0
votes
1 answer

Scheduling startup (booting) of a Azure VM

I have a Windows based VM on Azure Cloud. Using the Portal on portal.azure.com I can start/stop the machine. Is there a way to create a schedule in Azure so that the VM is started (booting) on a specific date/time / schedule? So that the VM's state…
MGroen
  • 73
  • 1
  • 6
0
votes
2 answers

MYSQL Scheduled events

Okay. So i have a table that's being used on my website using PHP to pull out the contents. I need it to wipe the table every day at 4am. How do i do this? Structure CREATE TABLE IF NOT EXISTS chat ( id int(255) NOT NULL AUTO_INCREMENT, message…
0
votes
2 answers

Crontab not working but its working as script

Below is my Crontab: */5 * * * * /usr/bin/wget "http://localhost:8080/sample/index.jsp" --post-data "data=$(nohup sqoop import --connect 'jdbc:sqlserver://localhost;username=username;password=password;database=database' --table table1 --target-dir…
0
votes
1 answer

how rails use time period for object to display?

I am creating some Category in my rails app. I'd like to decide when the articles will be displayed based on the different peroids of time setting. I'm looking for a better way to do this, since I don't think that using gem whenever is needed under…
John
  • 387
  • 5
  • 17
0
votes
1 answer

Event based UILocalNotification

I need to schedule a UILocalNotification when battery is n percent. UILocalNotification has fireDate property only and UIApplication class has below methods for presenting local notifications. -…
Sikander
  • 447
  • 4
  • 26
0
votes
0 answers

Generate schedule based on date using mysql

|----|------------|--------------|----------| | id | fromdate | todate | priority | |----|------------|--------------|----------| | 1 | 2016-01-01 | 2016-01-30 | 1 | | 2 | 2016-01-05 | 2016-01-20 | 2 | | 3 | 2016-01-11 |…
Niyas Niya
  • 155
  • 10
0
votes
2 answers

Spring 4 @Scheduled Task is executing task twice

I'm trying to execute some task every X second but the task runs twise. I'm Using Spring 4.2.5 - the latest version.(I tryed it with 4.05 the same result) @Service @Transactional @EnableScheduling public class PaymentServices { @Autowired private…
Irakli
  • 973
  • 3
  • 19
  • 45
0
votes
1 answer

Wowza Media Server 2.2.3 schedule

Is possible to schedule playlists with this version of Wowza? I am tried the article https://www.wowza.com/forums/content.php?145-How-to-schedule-streaming-with-Wowza-Streaming-Engine-(ServerListenerStreamPublisher) upload the module collection, but…
0
votes
1 answer

kivy/python update label by a schedule

I try to update the text of an label continuously by using Clock.schedule_interval. In this example I got the following error message: NameError: global name 'radio_station' is not defined And I don't know why. Can some help me? Thanks a…
Raymond
  • 5
  • 3
1 2 3
99
100