eclipse-3.5

Horrible eclipse performance on macbook pro running 10.5.8

寵の児 提交于 2019-12-12 10:16:31
问题 I am using eclipse galileo on my macbook pro. After a few minutes it starts dragging really badly, like it takes 8 seconds to open a file. I don't have many files open at all. I already modified the config file to increase ram and all that stuff. Is there something wrong with this version of eclipse, never had it run so poorly on here, Thanks 回答1: I'm with OS X 10.5.8 and my Eclipse runs great. Start by looking at the heap (Preferences -> General -> Show Heap Status). Next, check the Error

PyDev: Fatal error Python32\lib\io.py, line 60, in <module>

左心房为你撑大大i 提交于 2019-12-11 08:45:04
问题 I work in PyDev and quite suddenly, I cannot run my python programs from within Eclipse's PyDev (version 2.1.0) anymore. Any python program I have ran through Run As > Python Run fails wioth Fatal Python error: Py_Initialize: can't initialize sys standard streams Traceback (most recent call last): File "C:\Python32\lib\io.py", line 60, in <module> This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. I

Compiling JS-Test-Driver Plugin and Installing it on Eclipse 3.5.1 Galileo?

纵饮孤独 提交于 2019-12-11 02:14:10
问题 I downloaded the source of the js-test-driver from: http://js-test-driver.googlecode.com/svn/tags/1.2 It compiles just fine, but one of the unit tests fails: [junit] Tests run: 1, Failures: 1, Errors: 0, Time elapsed: 0.012 sec [junit] Test com.google.jstestdriver.eclipse.ui.views.FailureOnlyViewerFilterTest FAILED I am using: - ANT 1.7.1 - javac 1.6.0_12 And I'm trying to install the js-test-driver plugin on Eclipse 3.5.1 Galileo Despite the failed test I installed the plugin into my C:

eclipse 3.5 filter .git folder

我是研究僧i 提交于 2019-12-08 07:48:31
问题 I'm using eclipse 3.5.2 and cannot seem to use "filter resources" to filter out .git folders in any of my projects for any of my perspectives: javascript, ruby, and php. I've tried adding the filter to plugin.xml as suggested on this blog but it is for eclipse 3.4 and doesn't seem to work. Any suggestions? 回答1: For a given project (at least Java), you should be able through its properties, to edit its Source Path, and add an exclusion rule like: **/.git/ alt text http://img232.imageshack.us

What is a good library for JSON serialization for Scala 2.8.1 for use in Eclipse

蓝咒 提交于 2019-12-07 17:27:05
问题 I have looked at https://github.com/debasishg/sjson and using EGit I was not able to import this code for Scala 2.8.1. Ideally, this seems to be the best library that should work, but when I loaded master it is currently empty. I am trying to use Jersey (http://jersey.java.net) to build a REST service in Scala, but the JSON serialization is where I am stuck, as I would prefer to use something written in Scala. Unfortunately there isn't anything for Scala at http://json.org/. So, how do I

Horrible eclipse performance on macbook pro running 10.5.8

邮差的信 提交于 2019-12-06 14:49:01
I am using eclipse galileo on my macbook pro. After a few minutes it starts dragging really badly, like it takes 8 seconds to open a file. I don't have many files open at all. I already modified the config file to increase ram and all that stuff. Is there something wrong with this version of eclipse, never had it run so poorly on here, Thanks I'm with OS X 10.5.8 and my Eclipse runs great. Start by looking at the heap (Preferences -> General -> Show Heap Status). Next, check the Error Log for errors in your Eclipse platform (Window -> Show View -> Error Log). This could be a problem with one

What is a good library for JSON serialization for Scala 2.8.1 for use in Eclipse

最后都变了- 提交于 2019-12-06 00:31:10
I have looked at https://github.com/debasishg/sjson and using EGit I was not able to import this code for Scala 2.8.1. Ideally, this seems to be the best library that should work, but when I loaded master it is currently empty. I am trying to use Jersey ( http://jersey.java.net ) to build a REST service in Scala, but the JSON serialization is where I am stuck, as I would prefer to use something written in Scala. Unfortunately there isn't anything for Scala at http://json.org/ . So, how do I import SJSON for use in Scala 2.8.1, for Eclipse, or, is there a more updated library that would work as

Eclipse 3.5 Copy & Paste Problem

丶灬走出姿态 提交于 2019-12-04 09:06:12
问题 I recently updated my Eclipse to the latest release 3.5 and since then I have a very annoying problem with c&p using the shortcuts. In an editor (xml, jsp, doesnt matter which one) I try to copy something and paste it somewhere else, nothing happens. When I cut out something and put it somewhere else I sometimes get something else (like a messed up part of my previous selection) or just some whitespaces. This gets even worse when I change lines in between. First I thought that my keyboard is

Why do errors no longer appear in Eclipse's package explorer?

廉价感情. 提交于 2019-12-04 09:03:05
问题 My project used to be fine - errors showed up in the file margin, the editor breadcrumb, the problems view and in the package explorer tree as little red X marks. Somewhat spontaneously though, it's stopped working properly. If I introduce an error into my code, it shows up in the file margin, and nowhere else. It takes a 'project clean' to make the red X's show up elsewhere. Then if I fix the problem, the error is cleared from the file margin but the red marks persist elsewhere until I do

When to choose “Generate an activator…” when creating a new Eclipse plugin project

笑着哭i 提交于 2019-12-04 04:43:37
There are lots of Eclipse RCP tutorials that begin with the obvious first step: "Create a new plugin project..." It seems that approx. 70% of them specify checking the "Generate an activator, a Java class that controls the plug-in life cycle" . The others specifically say don't check that toggle. alt text http://img179.imageshack.us/img179/6710/newpluginoptions.png Its not clear to me, what generating an activator class does for you, when you need one, and when you don't. For being a prominent option you get every time you create a new plugin project (it seems to be set on by default) this