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

Google OR-Tools Error: Evaluating a BoundedLinearExpr as a Boolean value is not supported

I want to schedule n jobs on m machines with transition times and alternatives and modified the example in github/or-tools/scheduling_with_transitions_sat.py because I also want some kind of lateness penalty. My test input data is with n = 9 and m =…
1
vote
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
  • 615
  • 11
  • 25
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
  • 41,026
  • 70
  • 193
  • 341
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…
mr. jenkins
  • 21
  • 1
  • 5
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 Rosencrantz
  • 25,640
  • 75
  • 229
  • 424
1
vote
2 answers

C# alert when deadline date is approaching

Ok so I have an application that stores records and does various other functions, I would like to be able to implement a way of creating some sort of alert system where by when a deadline date (stored with any record) is approaching it will tell…
JoshF91
  • 99
  • 1
  • 3
  • 11
0
votes
1 answer

How do I show the number of days left before the next date listed in a range of dates?

I have a range of deadlines, some have passed, some are in the future (A:4-A:8). I'd like to create a formula in a single cell that takes that range, finds the next future date and returns the days left until then. For example, if today is August…
GinoFoto
  • 11
  • 1
0
votes
1 answer

Why can I not import Concurrency into my Swift 5.8 project?

I'm trying to compile this simple example, first Xcode 14.3 (Swift 5.8) tells me No such module 'Concurrency' Then if I change that line to import _Concurrency, Xcode 14.3 tells me Cannot find 'withTimeout' in scope same is true using…
e987
  • 377
  • 5
  • 10
0
votes
0 answers

urllib2.URLError:

i am facing this error on AWS Thinkbox Deadline Render Farm trying to render QT on blades
0
votes
0 answers

JIRA deadline setting on Sprint

# What I want to achieve How can I set JIRA deadline on Sprint board like an attached image? # Current issue currently, even though I set the deadline, nothing has been displayed
Ota Yosuke
  • 13
  • 2
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

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…