Uh oh!
There was an error while loading. Please reload this page.
Engine process - #1022
Closed
Domonion wants to merge 9 commits into
Closed
Conversation
Domonion
requested review from
CaelmBleidd, SBOne-Kenobi, alisevych, denis-fokin and korifeySeptember 28, 2022 07:19
Uh oh!
There was an error while loading. Please reload this page.
| val (methods, className) = ReadAction.nonBlocking<Pair<List<ExecutableId>, String?>> { | ||
| val canonicalName = srcClass.canonicalName | ||
| // todo how bad is it? | ||
| val clazz = classLoader.loadClass(canonicalName).kotlin |
There was a problem hiding this comment.
It won't allow running project with JDK-17 on IDEA with JDK-11.
Member
Member
Also one more bug found by @Markoutte : |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
alisevych
commented
Sep 28, 2022
Member
Found issue: |
Moved engine process out of the main idea process. Changes include: 1. Reactive settings 2. Removing all JDK9+ api calls to support out-of-the process execution on JDK8 3. Refactored client protocol initialization, ClientProcessBuilder introduced 4. Big refactoring
simple fixes
logs for ci, commit will be reverted
deadlock fix
more jdk api fixes
removed reflexion, proxied all reflection calls to another process, some fixes, removed test generation report, sarif generation proxied to another process, fixed logs
enabled test generation report, optimized kryo serialization - UtMethodTestCase no more send to main process, access it through testSetsId
Domonionforce-pushed
the
kononov-engine-process-idea
branch
from
October 3, 2022 13:08
f376b1a to
ef7a1abCompareDomonionforce-pushed
the
kononov-engine-process-idea
branch
from
October 4, 2022 07:36
4d0c8f0 to
067da31CompareDomonion
commented
Oct 4, 2022
CollaboratorAuthor
rolling to #1067 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.


Moved engine process out of the main idea process. Changes include:
Type of Change