Questions tagged [deadlines]

A deadline is a narrow field of time in which an assignment or task has to be accomplished. Deadlines or time limits are often associated with milestones and goals.

53 questions
1
vote
1 answer

How to add a deadline to a future in Scala?

Suppose I've got a function fab: A => Future[B] and want it to return a new future that complete before a deadline. So I am writing a new function deadlined like this def deadlined[B](fut: => Future[B], deadline: Deadline): Future[B] = ??? Now I am…
Michael
  • 37,415
  • 63
  • 167
  • 303
1
vote
0 answers

JBPM Deadlines with Multi Instance

We are using JBPM multi-instance subprocess , where parallel tasks are created within a subprocess . When deadlines (SLA due and delay) are configured for these parallel tasks(They are instances of the same task in the underlying template), once one…
Haritha K
  • 11
  • 1
1
vote
0 answers

Dynamic Programming Job Scheduling with Deadlines

First off, this is for homework. Not looking for the answers but I would like to be comfortable with understanding this problem before I turn in my assignment. Here's the text: Given n jobs, each associated with a release time, a deadline, and a…
1
vote
0 answers

Google Natural Language fails on LOCALHOST. JAVA: DEADLINE EXCEEDED ERROR

I just set up the Google Natural Language client in my code. Everything works fine on my local system, Google Natural Language API answers in seconds. BUT when I try to run my code on Tomcat(localhost), the request terminates after 1 min with…
1
vote
1 answer

How to delete firebase child from background service when a deadline is due?

In my app, when the user is posting a request he also needs to set the deadline. So when the deadline is due, I want the app to delete that request automatically. I haven't tried anything yet coz I cant find anything similar to what i need. I'll…
exc3m
  • 99
  • 1
  • 1
  • 7
1
vote
1 answer

What's a good system test for keeping a deadline?

Reading about RTOS, the characteristic of a "hard" RTOS is that it can keep a deadline deterministically but how do we test or prove that the system actually fulfils the requirements? The MicroC/OS II RTOS is characterized as a hard RTOS but how can…
Niklas R.
  • 22,209
  • 67
  • 202
  • 380
0
votes
1 answer

Real time deadline calculation

In the book 'Realtime Programming in Java' there is an example which I need help with: To avoid explosion, there is a deadline for the pump to be switched off once the methane level exceeds a critical threshold. The deadline (D) is related to: (T)…
Radna
  • 1
0
votes
0 answers

Deadline Scripting. Run cinema4d from PreJobScript

How to run cinema4d with my arguments on the slave from PreJob Script in Deadline 10. I tried find function in Cinema4d plugin but no found it.
Sofia
  • 1
  • 1
0
votes
0 answers

Firebase cloud function deadline error when many users use the same function

Whenever a user has to publish an image in the storage I don't do it directly with the firebase storage functions but using an onCall cloud function by passing it a base64 image, modifying it (5 times), and posting it in the storage. The function is…
0
votes
0 answers

Failure for grpc server side streaming (with subsequest CORS error)

I am able to implement unary calls using grpc-web but server side streaming doesn't work as expected. When first open the page, CreateStream is called and works as expected. the network tab looks like this: (there's preflight response but not shown…
nanakondor
  • 429
  • 4
  • 10
0
votes
0 answers

Android: AsyncTask deadline issue, while notifying datasetchanged of recyclerview

I want to load data (images from bitmap in app resources) in order. But getting deadline error, how can I do that. I used StickyHeaderGridAdapter (Advanted RecyclerAdapter) and simple RecyclerView widget. Sometimes the processes do not work in…
0
votes
0 answers

Google PublisherServiceApiClient and appdomain cause deadline exceeded

Have some c# application that uses plugins. Each plugin is loaded into separate appdomain. If I run simultaneously two or more plugins that publish messages to google pubsub, application throws an Deadline Exceeded exception. Can you tell me how to…
grzes124
  • 33
  • 5
0
votes
10 answers

When must you use poor design to finish a project?

There are many different bad practices, such as memory leaks, that are easy to slip into a program on accident. Sometimes, they might even be able to jury-rig your program together. I'm working on a project right now and it works if I deliberately…
samoz
  • 51,592
  • 52
  • 138
  • 190
0
votes
2 answers

How add field deadline in TRAC?

I want to add new field "deadline" for tickets in a Trac system . How can I do it?
Dimmduh
  • 651
  • 1
  • 9
  • 18
0
votes
0 answers

How do you process messages with deadline

If you have continuous messages generated with different deadlines, how would you process these messages in order of deadlines. I have implemented by saving message to persistent store. Later schedule jobs processing the most recent expired…
anveshtummala
  • 332
  • 3
  • 11