Vicky D

- Total activity 96
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 30
-
Created CachedValuesManagerImpl seems to make IDE hang in 2019.1.1
AnsweredSince moving to IJ2019.1 and now in 2019.1.1, we have been experiencing some hangs in the IDE. The hang seems to be in CachedValuesManagerImpl. Here is the the threaddump from jstack. Any ideas o... -
Edited IJ19: myProjectJavaSdks fromProjectDescriptor is empty the first time
I am running into a strange problem after upgrading our plugin from IJ17 to IJ19 and Java8 to Java11. We have a builder that has the following code: ProjectDescriptor descriptor = context.getCompi... -
Created org.jetbrains.intellij.deps:jdom depenedency not resolved
build.gradle repositories { mavenCentral() maven { url 'https://www.jetbrains.com/intellij-repository/releases/' }}dependencies { compileOnly group: 'com.jetbrains.intellij.platform', na... -
Created Tests failing because of Leaked SDKs and sync roots issues.
AnsweredAll the tests were passing. Then we moved to a newer teamcity (on the cloud). Not sure about what exactly is the issue as I could not find any documentation related to Leaked SDKs issues I am clear... -
Edited Annotator shows errors which disappear and appear intermittently
I have a custom annotator for Yaml files. If the file that is referenced by the value does not exist, show error. I am using the same YamlFileReference and JsonFileReference that I use for navigati... -
Created netty: Rebuild in IntelliJ takes a lot of time - NioEventLoop and ThreadDeathWatcher
For a big Gosu project, we are doing the performance analysis. There are about 100k Gosu files and other resources. On running the full rebuild, it takes about an hour. Disabling the anti-virus hel... -
Edited How to do expensive stuff in Jps Build Process before compiling
I am trying to improve performance of incremental build of Gosu compiler. I see that a new jps process is started as soon incremental compilation is done which helps the next incremental compilatio... -
Edited How to write tests for Extension points?
I have created 2 extension points for a plugin. How do I write tests for those extension points.. <extensionPoints> <extensionPoint qualifiedName="org.plugin.customFieldFactory" interface="o... -
Edited Missing extension point: in area null
AnsweredI am trying to create some extension points in a plugin and trying to use the extensions in the same plugin just to make sure it works. But when I run the ide instance with the plugin, I get the fo... -
Created How to customize the mac specific menu items
I see the following code in AboutAction.java e.getPresentation().setVisible(!SystemInfo.isMacSystemMenu || !ActionPlaces.MAIN_MENU.equals(e.getPlace())); This 'about' action is probably the one in...