4,227 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
2
votes
0
answers
123
views
Why is ScreenCaptureKit frame capture delayed by more than 16ms at 60 FPS?
I'm using ScreenCaptureKit to capture screen frames at 60 FPS.
To measure capture latency, I display a timer label on the screen using CVDisplayLink, and when each frame is captured, I save the image ...
-1
votes
1
answer
113
views
How can I prevent PHP delay between Javascript-echo and refresh
I have a PHP page that includes, among lots of other things, a form with an input field that, if left blank (or set to zero), results in a fatal divide by zero error in my PHP. This behavior is ...
1
vote
0
answers
48
views
Angular | Why do any asynchronous events inside the guard delay the component for 5-6 seconds?
Any Promise or Observable inside the Guard delays the page for 6 seconds. The most interesting thing is that the request itself occurs instantly, within milliseconds. But for some reason it still ...
0
votes
1
answer
74
views
How to delay a css :hover
I simply would like to know if it is possible to delay the change of position of vbtn01 in the following code
@media only screen and (orientation:portrait){
#vimg01:hover{#vbtn01{position:...
1
vote
0
answers
103
views
iOS Metal system delayed one Vsync period to really display the frame on the screen
View Layout
Add the following views in a view controller:
Label
View A, with a subview of the same size: MTKView A
View B, with a subview of the same size: MTKView B
Refresh Rates of Each View
The ...
0
votes
1
answer
38
views
How to fire code again one additional time after DOMContentLoaded + delay?
document.addEventListener('DOMContentLoaded', () => {
// do something
}
window.load isn't late enough, so I'd like to deliberately delay the second check/firing for say, 5 seconds.
I don't ...
0
votes
0
answers
53
views
Delay in Restarting a High-Memory Process After Crash
Description:
I have a process that consumes a large amount of memory (+100GB RSS).
There's a usage by huge pages, but most of the memory is allocated in a naive way via malloc().
When this process ...
0
votes
0
answers
84
views
Laravel AWS RDS read replica delay read from sync replica
We have laravel application which use AWS RDS instance with read replica. We setup laravel to use read replica.
When we store data to write instance of database, there is delay in replication in read ...
0
votes
0
answers
39
views
Do Flutter's built-in widgets use the hold duration/touch delay from mobile device accessibility settings?
Android and IOS device settings allow you to set a hold/touch delay in accessibility parameters. Do flutter's widgets take this parameter into account natively? I didn't see any particular difference ...
0
votes
1
answer
80
views
Puma starts processing a request 8-10 seconds after ALB has forwarded it
I have a regular Ruby on Rails application with Puma server running with the configuration -w 1 -t 1:1 (i.e. one worker and one thread). This is deployed on an EC2 instance, fronted by an AWS ALB. ...
0
votes
0
answers
78
views
AppLovin onAdHidden(Interstitial Ad) send callback lately, it takes almost 2 to 3 seconds to tell that ad is dismissed
Description
I want to prevent the delay happened when onAdHidden called, or some other method which I should follow for quickly navigte through screens when ad is dismissed.
**
MAX SDK Version**
com....
2
votes
1
answer
63
views
Weird Behavior of buffers in modelsim simulation
I ran into a problem that buffer in my simulation does not work as I expected.
I tried some test and got the following results.
I created code in Verilog that generates two buffers in different ways:
...
2
votes
0
answers
71
views
Why is my inference process operating on outdated data instead of real-time data, resulting in significant delay?
I have a Python script running real-time data collection and inference using Hailo on a Raspberry Pi 5. The system uses a circular buffer to collect sensor data, processes the most recent data batch (...
0
votes
2
answers
59
views
Calculate The Delay of The Recording File
I'm building an application to calculate delay based on keywords found. The method I used is not accurate or even wrong (error). The methods used are as follows:
@Override
public void onResults(Bundle ...
0
votes
0
answers
24
views
Get "Make / Makefile" to run a glob AFTER another part of the program has run
I am trying use "make" to run pdfunite on a list of files that will not exist until after a program (cardito) has run, I do not know what the names of those files will be.
The problem I'm ...