Questions tagged [freeze]

freeze in programming refers to a condition where in the concerned code or system becomes unresponsive.

2970 questions
202
votes
4 answers

Why is my command prompt freezing on Windows 10?

I'm adding this question after spending an entire day wrestling with this incredibly frustrating feature of the Windows 10 command prompt which made me think there was something wrong with my console application code. I hope it will help…
Shaun Rowan
  • 9,269
  • 4
  • 28
  • 52
176
votes
37 answers

Git push hangs when pushing to Github?

Git push hangs everytime I try to push to github. I am using Cygwin and Windows 7. Git functions fine locally tracking branches, providing status, setting global user.name and user.email and allowing commits. I'm still new and learning. I enter git…
Matt Singer
  • 1,917
  • 2
  • 14
  • 12
145
votes
39 answers

Xcode stuck on Indexing

A project I've been working for 2 months stopped working for no reason because Xcode got stucked on "Indexing". I can't Build the project anymore. If I try to build, Xcode freezes and I have to force quit. This happens only with this project. I…
tomDev
  • 5,620
  • 5
  • 29
  • 39
112
votes
4 answers

Program hangs in release mode but works fine in debug mode

The code below works as expected in debug mode, completing after 500 milliseconds, but hangs indefinitely in release mode: public static void Main(string[] args) { bool isComplete = false; var t = new Thread(() => { int…
Max
  • 1,033
  • 1
  • 7
  • 7
101
votes
5 answers

The GNU screen is unresponsive, seems blocked

GNU Screen seems to freeze. Unable to enter user input. I was using GNU screen and when I pressed the screen it became unresponsive. I can execute all the GNU screen commands, but can't enter user input. I don't want to kill this screen as I have…
sirus
  • 1,519
  • 2
  • 12
  • 17
91
votes
7 answers

Why does "docker attach" hang?

I can run an ubuntu container successfully: # docker run -it -d ubuntu 3aef6e642327ce7d19c7381eb145f3ad10291f1f2393af16a6327ee78d7c60bb # docker ps CONTAINER ID IMAGE COMMAND CREATED STATUS …
Nan Xiao
  • 16,671
  • 18
  • 103
  • 164
75
votes
10 answers

Plot window not responding

I'm using Windows 7 64 bit. Each time, I'm using plot function, plot windows will shows and draws successfully, but after that it stops responding and must shut down it. For example : x = linspace(0,1,10) y = x.^2 plot(x,y); Strangely, when plot…
hqt
  • 29,632
  • 51
  • 171
  • 250
72
votes
1 answer

Using async to sleep in a thread without freezing

So I a label here (""). When the button (button1) is clicked, the label text turns into "Test". After 2 seconds, the text is set back into "". I made this work with a timer (which has an interval of 2000): private void button1_Click(object sender,…
jacobz
  • 3,191
  • 12
  • 37
  • 61
67
votes
4 answers

'Freezing' Arrays in Javascript?

Since the ECMA-262 specifications Javascript has gained the Object.freeze() method, which allows for objects, whose properties can not be changed, added or removed. var obj = {'a':1, 'b:2'}; Object.freeze(obj); Object.isFrozen(obj); // returns…
trembl
  • 3,873
  • 2
  • 20
  • 14
59
votes
15 answers

Visual Studio freezes or hangs on startup

I have been using Visual Studio for a while and found that when I open visual studio and open the project all the files that were open last time remain open. This causes my Visual Studio to freeze or crash on startup. I am using a lot of plugins in…
user605334
57
votes
9 answers

StandardOutput.ReadToEnd() hangs

I have a program that frequently uses an external program and reads its outputs. It works pretty well using your usual process redirect output, but one specific argument for some reason hangs when I try to read it, no error message - no exception,…
Elad Avron
  • 1,411
  • 1
  • 18
  • 28
53
votes
4 answers

Is it possible to have multiple PyPlot windows? Or am I limited to subplots?

I'm not sure how to word my question more clearly. Basically, is PyPlot limited to one instance/window? Any hack or workaround I try either causes my program to freeze or for the second pyplot window to be queued until the first one is closed.
wnewport
  • 1,013
  • 2
  • 10
  • 13
50
votes
9 answers

Android Studio 1.2 beta version hangs on debugging

I’ve just upgraded Android Studio from version 1.0 to 1.2 beta and I can no longer perform any kind of debug operation. If I set a break point, Android Studio hangs and it can’t resolve the command: Waiting until last debugger command…
Víctor Albertos
  • 8,093
  • 5
  • 43
  • 71
49
votes
4 answers

In what scenarios does freezing WPF objects benefit performance greatly?

Many types in WPF derive from Freezable. It provides immutability to mutable POCO objects and, apparently, allows for improved performance in certain situations. Has anyone found that freezing objects within their WPF application has greatly…
Drew Noakes
  • 300,895
  • 165
  • 679
  • 742
48
votes
8 answers

What to do when a py.test hangs silently?

While using py.test, I have some tests that run fine with SQLite but hang silently when I switch to Postgresql. How would I go about debugging something like that? Is there a "verbose" mode I can run my tests in, or set a breakpoint ? More…
Hexatonic
  • 2,251
  • 2
  • 21
  • 26
1
2 3
99 100