Questions tagged [stability]
152 questions
3
votes
5 answers
Python Sorting Question
i need to sort the following list of Tuples in Python:
ListOfTuples = [('10', '2010 Jan 1;', 'Rapoport AM', 'Role of antiepileptic drugs as preventive agents for migraine', '20030417'), ('21', '2009 Nov;', 'Johannessen SI', 'Antiepilepticdrugs in…

Gianluca Bargelli
- 1,780
- 2
- 17
- 23
3
votes
1 answer
Are javax packages stable?
Is it true that javax packages, in the Java language, are not stable and can be deprecated in future versions? In most of our project we use the swing packages which are included in javax.

Javaist
- 139
- 6
3
votes
1 answer
reasons why GcTimeLimit might not be erroring out?
I have a web service in Java, contained in Jetty. I'm using Sun's Java 6 with the default ParallelGC, and I have the following command-line options turned on: "-verbose:gc -XX:+PrintGCTimeStamps --XX:+PrintGCDetails".
When my process is out of…

George
- 343
- 1
- 2
- 8
3
votes
1 answer
Video Stabilization - using estimateGlobalMotionLeastSquares opencv 2.4.7
I am a newbie about Video Stabilization field. Now I am researching about it.
I'm coding a small video stabilization demo. But I am stuck in some problems
I use the function "estimateGlobalMotionLeastSquares" in OpenCV to estimate global motion
But…

user2745692
- 89
- 1
- 9
3
votes
1 answer
How to order this computation for numerical stability?
I'm trying to compute a vector, whose sum is 1 and whose elements are defined as such:
v[i] = exp(tmp[i])/exp(tmp).sum()
The problem is that the value in the exponential may be large (between -10^2 and 10^2), making the exponential to evaluate to…

cpa
- 3,742
- 4
- 16
- 22
2
votes
1 answer
Time-Based Simulation Independent of Frame Rate
How would you account for an event during which time is very important? Most games use frames and the simulations take place in time steps. What if an event occurred that needed a specific time to take place on?
For example, in a game like DOTA,…

DangerMcD
- 21
- 1
- 7
2
votes
0 answers
Excessive SignalR service costs with server side blazor?
We have a Line of Business app serving ~450 users - mostly with the app open most of the day.
We are running 3 instances of P3V3 app service during core business hours and 2 instances out of hours.
We're seeing 20M messages per day and our Azure…

Richard
- 36
- 3
2
votes
0 answers
How can I limit a (docker) container resources?
Suppose you want to make sure a container uses as little resources as possible so that whatever happens, it will not affect the host.
(I do not care if the container crashes because of the limit amount of resources.)
This is what I already found as…

Garo
- 1,339
- 12
- 21
2
votes
1 answer
How to remove oscillations in a solution to Differential Equation having indeterminate form using DifferentialEquations.jl
I am trying to solve differential equations with indeterminate forms and I am playing with Julia and DifferentialEquations.jl package to do so.
I started with a simple differential equation with indeterminate form that I know of (as a test case)…

SupremeBeing
- 21
- 2
2
votes
1 answer
Sort file by only first two columns and keep the input order in case the columns have same values
I have an input file which lines I'd like sort by only 2 first columns. And I'd like to know if there is some way to do it with sort command in bash.
Ex. Input File:
cat checkstart.txt
dev XCUBOBS149 /etc/init.d/DSEngine_srv
dev XCUBOBS150…

Jesus
- 23
- 2
2
votes
0 answers
App rejected for Designed for Families due to stability issues
I received this email from Google:
"App status: Your app has not been accepted into Designed for Families, and the update is not live on Google Play.
Eligibility issues:
During testing we experienced stability issues with your app and were…

Edwil Studios
- 21
- 2
2
votes
1 answer
different between effect of episodes and time in DQN and where is the updating the experience replay
In DQN paper of DeepMind company, there are two loops one for episodes and one for running time in each step (one for training and one for different time-step of running). Am I right?
Since, nothing is done in outer loop except initialization and…

Sa Ra
- 49
- 1
- 7
2
votes
1 answer
Custom column names as arguments in the functions of stability R package
I developed the stability R package which can be installed from CRAN.
install.packages("stability")
However, I have difficulty in making it to take custom column names as function arguments. Here is an example of add_anova…

MYaseen208
- 22,666
- 37
- 165
- 309
2
votes
1 answer
Why selection sort is unstable?
Question:
I was going through the list of sorts and found a very intriguing image of all sort stabilities.I am not going to ask what does the stability of sorting mean since it has already been answered.My question is how selection sort ,is unstable…
user9181740
2
votes
1 answer
Is PySide 1.2.4 stable? The newest release is crashing with an odd Error
I spent a week debugging a problem that got Python to crash (not give a scripting error, literally crash its VM) due to a random error.
After tracking this for days using procdump, I found that PySide 1.2.4 is causing the problem. Is their stable…

The Quantum Physicist
- 24,987
- 19
- 103
- 189