freeze

Android Studio Quits unexpectedly on Mac

冷暖自知 提交于 2019-12-05 10:25:47
I am running Android Studio v1.5.1 on OSX El Capitan 10.11.2. Android studio starts flickering whenever I move and click the mouse from external monitor to the laptops screen, then suddenly quits without giving any error message. Is anyone else facing this problem? Crash Report: http://pastebin.com/xda8wAKN I just found the solution to my problem: Open the info.plist in a text editor path is "/Applications/Android\ Studio.app/Contents/info.plist" update the JVMVersion to 1.7* 来源: https://stackoverflow.com/questions/34880984/android-studio-quits-unexpectedly-on-mac

App hangs at __psynch_mutexwait

☆樱花仙子☆ 提交于 2019-12-05 02:24:14
Our app seems to semi-randomly hang at psynch_mutexwait. It seems to be related to a background process that updates a bunch of data stored in CoreData - but I've been completely unable to figure out just who is locking on what to cause the deadlock. Following is the complete stack trace that lldb gives me - which is obviously incomplete, AND the last frame of Thread 1 is bogus. I had a breakpoint in that method a few lines before that, and it was never hit. Is there ANY way of figuring out what lock is being waited on? (or even get correct stack traces?) Of course there is LOTS of code

Eclipse hangs for 3-4 seconds before displaying a tooltip message

不问归期 提交于 2019-12-05 01:41:23
I've searched the Internet like crazy, however "WTP freeze" or "Eclipse freeze" yields so many different results that it's virtually impossible to find the right one. I have the following issue. In a HTML or CSS editor when I accidentally hover my mouse over an attribute value, Eclipse hangs for 3-4 seconds with CPU at 100% load before producing a tooltip message with some info on the tag and its attribute. I don't need those tips. Hell, I don't even need syntax coloring if that would prevent me from this hang. I tried disabling all the autocomplete features, everything that seemed related,

vs2010 stuck/freeze in any kind of scrolling

笑着哭i 提交于 2019-12-05 00:43:35
问题 I have an annoying problem in VS 2010 SP1, when ever I try to scroll up/down with the mouse, or keyboard or scroll bars the VS2010 going crazy and the screen freezes in some parts. I restarted VS 2010 and even restarted the computer but nothing. I uninstalled VS2010 and vs2010 SP1 and everything related to VS2010. take a look at the examples: Please help me.. 回答1: I fix it by changing the Compatibility of devenv.exe, doing the following steps: right-click the devenv.exe file that located on:

SSMS SQL SERVER Management Studio 2012 startup freeze

我的梦境 提交于 2019-12-04 16:12:03
问题 I have a strange situation. IT installed SSMS on my laptop and it runs well the first time, connected to my SQL servers remotely etc. But then it's frozen. I forced quit and then started SSMS again. Now it's totally frozen, no popup window at all to enter the server-connection text string. Then I did a force quit and got a pop up window (see it here ). Microsoft SQL Server Management Studio has detected that an operation is blocking user input. This can be caused by an active modal dialog or

Java Thread hanging without deadlocks

坚强是说给别人听的谎言 提交于 2019-12-04 15:36:53
I am currently having some trouble with a process that is hanging. First of all, the below thread dump shows no deadlock. Another interesting thing is that the process is hanging at java.lang.System.identityHashCode method. The currently CPU usage of that process is 0%, sometimes peaks at 1%... normally the process uses 100%. It is using 1.7GB of RAM (which is normal for this process). The machine has plenty of CPUs, disk space and RAM available. Attaching to process ID 4146, please wait... Debugger attached successfully. Server compiler detected. JVM version is 23.7-b01 Deadlock Detection: No

Why does this code hang on reaching the first ReadLine from a StreamReader?

风流意气都作罢 提交于 2019-12-04 07:16:38
问题 I was passing a large file in the first arg to SendXMLFile() below but, since it was causing the handheld device to "hang"/"freeze" I temporarily hard-coded a much smaller file (3 KB as opposed to 1121 KB) for testing. The file does indeed exist (in the same folder as the .exe/.dll), as can be seen by this code: // test with smaller file: fileName = "DSD_v6666_3_20140310140737916.xml"; MessageBox.Show("Made it before file.Open"); using (FileStream fileTest = File.Open(fileName, FileMode

C# - for Loop Freezes at strange intervals

烂漫一生 提交于 2019-12-04 05:24:57
问题 I am working on Problem 14 on Project Euler, and my code seems to freeze at random intervals for no apparent reason. static void Main() { int maxNum = 0; int maxLength = 0; for (int x = 2; x < 1000000; ++x) { int num = x; int length = 0; while (num != 1) { if (num % 2 == 0) { num /= 2; length++; } else { num = (3 * num) + 1; length++; } } if (length > maxLength) { maxLength = length; maxNum = x; } } Console.WriteLine(maxNum); Console.ReadLine(); The number that the program hangs at is

Java 8 Swing rendering problem with Intel HD 3700 linux

那年仲夏 提交于 2019-12-04 04:02:56
I developed an application in java 8 update 181 in Kubuntu 18.04. In my development PC, I have Intel i3-6100 with Intel® HD Graphics 530. All the graphics are done using swing and with this hardware configuration, everything works as it should. On the production PC, I have Intel(R) Celeron(R) CPU J1900 with Intel® HD Graphics for Intel Atom® Processor Z3700 Series. Running the same with same OS and java version I noticed problems with my graphics done in swing. Swing components like jLabels, jButton etc. not updating. For example frame A has label B with text "Old text", I update the text on

How to retrieve pip requirements (freeze) within Python?

无人久伴 提交于 2019-12-04 02:49:59
I posted this question on the git issue tracker: https://github.com/pypa/pip/issues/2969 Can we have some manner of calling pip freeze/list within python, i.e. not a shell context? I want to be able to import pip and do something like requirements = pip.freeze(). Calling pip.main(['freeze']) writes to stdout, doesn't return str values. Rex Hardin There's a pip.operation.freeze in newer releases (>1.x): try: from pip._internal.operations import freeze except ImportError: # pip < 10.0 from pip.operations import freeze x = freeze.freeze() for p in x: print p Output is as expected: amqp==1.4.6