mgonzcast

Results 50 comments of mgonzcast

Ok, I installed python 2.8 and now it works. I try to copy a folder (an Inbox renamed Inbox_yahoo) and copy it over my IMAP Yahoo account: python.exe .\imap_upload.py "e:\correo\Local...

The content is the old Inbox from my Yahoo POP3 account that I am trying to convert to IMAP. I have Thunderbird. I copied the Inbox file into my Local...

> -DjvmArgs="-Xmx4096M,-XX:ReservedCodeCacheSize=2048M,-XX:-UseGCOverheadLimit" Thanks! As you can see I already use jvmArgs. Is there anything am I missing? > Unless this module is excessively large, it seems likely that there is...

> So, working around this would require tweaking memory settings in both the minion and the main process. How do I do that? Setting MAVEN_OPTS maybe? If I try to...

> This is because of the commas. Try: > > ``` > MAVEN_OPTS="-Xmx1024M -XX:ReservedCodeCacheSize=1024M -XX:-UseGCOverheadLimit" > ``` I still get `Invalid maximum heap size: -Xmx1024M -XX:ReservedCodeCacheSize=1024M -XX:-UseGCOverheadLimit Error: Could not...

Many thanks, apparently on Windows you can´t use quotes with MAVEN_OPTS, so you have to use: `set MAVEN_OPTS=-Xmx1024M -XX:ReservedCodeCacheSize=1024M -XX:-UseGCOverheadLimit` without quotes After excluding a powermock class it took more...

I have to say I am using JDK 8 and Maven 3.8.4

Thanks for being so responsive. The module has 17k lines of code and 1.6K of junit tests. I would say the tests take around 20-30 minutes to run.

> Do you have any pitest configuration in the pom? No, nothing in pom about pitest. I have to say this is part of three module project but no pom...

I have checked and tests take around 7 minutes to run, sorry. I am going to start excluding classes from pitest so I can narrow down where the issue is:...