Skip to main content
Filter by
Sorted by
Tagged with
2 votes
1 answer
178 views

My function contain a memory leak, probably related to a failing malloc situation. After extensive research and adding frees, I still can't find the edge case where the memory leak occurs. Below is ...
Simeon Sutarmin's user avatar
1 vote
0 answers
57 views

We're experiencing a consistent 1-1.5 second delay in our Angular SSR v20.2.2 application that occurs after all Angular rendering completes but before the response is sent to the client. The delay ...
DevJules's user avatar
  • 332
0 votes
1 answer
147 views

I am currently working on a .NET 9 WinForms program that contains an ImageViewer, which is a seperate window where you can scroll through a series of images. My problem is that even after closing the ...
Joelbu's user avatar
  • 144
-3 votes
1 answer
36 views

I tried to render charts using highcharts, but have been observing non js memory increase, when i was updating my charts continuously and calling redraw API. i used below apis series.setData(data, ...
eniya muthusamy's user avatar
3 votes
1 answer
98 views

While writing a new Perl module which was capable of using AnyEvent, my benchmarking tests showed that it was slowing down dramatically over time. Turning off AnyEvent cured the problem, which ...
TFBW's user avatar
  • 1,259
1 vote
0 answers
59 views

I'm running a minimal Python Flask app with one API endpoint which make a simple call to retrieve data from the a Cassandra Datastax DB inside a for loop. # Day-2-Day Power @app.route("/d2d_new_2/...
R13mus's user avatar
  • 886
2 votes
1 answer
165 views

I am trying to do some linear algebra in Kotlin/JVM and I have two ways of doing it: Using Apache commons-math, which implements matrix multiplication purely on the JVM Using OpenCV's Mat class and ...
vatbub's user avatar
  • 3,186
1 vote
1 answer
166 views

I have encountered a memory management problem in a Spring Boot application, and would like to get advice on how to properly clean up direct memory. Configuration: JDK: OpenJDK Runtime Environment (...
Dimon_yarik's user avatar
0 votes
0 answers
128 views

In a main.py file I have following code: import time from v1 import log, ServiceLogger from logging.handlers import MemoryHandler class Service: h = MemoryHandler(1000) id = None log = ...
Denis Prot's user avatar
3 votes
0 answers
143 views

I have a python based service that uses libraries such as requests or curl-cffi to fetch the content of our webpages which we currently are testing for scale. As the expected response is the content ...
mang4521's user avatar
  • 832
0 votes
0 answers
21 views

I try to do getifaddrs(ifaddr)/freeifaddrs(ifaddr) in a while loops and I find the VmRSS of daemon is increased by 4kB slowly. Note: ifaddr value is the same when I call getifaddrs & freeifaddrs. ...
samp lin's user avatar
1 vote
0 answers
280 views

I'm on MacOS 12.7.6, with R 4.4.0 and Rstudio 2023.06.1+524. I've had this error pop out from time to time. I have searched it and all solutions are about setting R_MAX_SIZE to a number much larger ...
dkysh's user avatar
  • 91
1 vote
0 answers
52 views

Getting error in chrome when i run webdriverio v8 test scenarios: out of memory Recently upgraded from node 16 to v20 and updated scripts to use imports as ESM standards and avoided require() ...
dheeraj's user avatar
  • 344
1 vote
1 answer
212 views

My team has designed an antibot for a project and now I am testing its vulnerabilities. I have created a antibot solver bypass using some python and javascript. I am running into a super weird run ...
Ahmed Zaidan's user avatar
1 vote
1 answer
38 views

I love the syntax for the new CoreAudio API. Unfortunately it seems to leak like a sieve. Is there anyway to avoid the leaks without needing to go back to the old API? This code leaks. func ...
Devin Roth's user avatar
1 vote
2 answers
91 views

I am using np.delete(), to drop a specific band from my ndarray. However, while profiling the memory usage with memory profiler, I noticed that after using np.delete, the memory usage doubles, even ...
rsaw's user avatar
  • 144
1 vote
1 answer
184 views

I am experiencing an issue at my company's application where a docker container has memory that continues to grow until an OOM error occur and the container restarts. It seems to indicate there is a ...
Andy Lin's user avatar
  • 126
0 votes
0 answers
80 views

I suspect there's a memory leak on my web page. Following online tutorials, I took two memory snapshots in Incognito Mode at different times. Here are the results: It shows that memory increased from ...
Xiaoyu Gao's user avatar
1 vote
0 answers
54 views

After finishing developing the App in MAUI, I tested it for the first time on an older device: Motorola e5 Play (2 GB RAM) - Android 8.1 Oreo. When opening the App, around 300 MB of memory is ...
Caio Silva's user avatar
0 votes
0 answers
96 views

LeakCanary's logs show that after ViewModel.onClear() the pageModelPagingDataFlow does not release memory. Update 1 I found that the memory leak would be fixed if change by activityViewModels() to by ...
Viewed's user avatar
  • 1,453
1 vote
3 answers
279 views

I have a Go program that runs continuously, and I've noticed that both the number of goroutines and open file descriptors increase steadily over time (daily). However, the number of active network ...
tim's user avatar
  • 21
0 votes
0 answers
65 views

I have stored strings & their vector embeddings in a Sqlite DB file with the table name "query_metadata". Embeddings are stored as numpy bytes. The embeddings would be used for ...
Arindom Bora's user avatar
3 votes
1 answer
160 views

This piece of code creates a memory leak. I'm not sure why. This code is shortedned from a longer method that polls a redis list for messages (which returns either a message or null immidiately if ...
DebD's user avatar
  • 464
9 votes
0 answers
845 views

I'm trying to use Instruments (with Xcode 16.1) to analyze memory usage of my iOS app running on the simulator. However, when I try to attach Instruments to the app, I get the above error. I am not ...
Divine's user avatar
  • 101
0 votes
0 answers
87 views

I'm writing a Python Selenium scraper for a web page that uses infinite scrolling to load content dynamically. Over time, as more posts are loaded, the JavaScript heap memory usage in ChromeDriver ...
mohammad jcm's user avatar

1
2 3 4 5
410