Skip to content

Instantly share code, notes, and snippets.

[ 8942] WARN - impl.local.LocalFileSystemBase - Invalid path: src
java.io.FileNotFoundException: Invalid path: src
at com.intellij.openapi.vfs.impl.local.LocalFileSystemImpl$WatchRequestImpl.<init>(LocalFileSystemImpl.java:68)
at com.intellij.openapi.vfs.impl.local.LocalFileSystemImpl.watch(LocalFileSystemImpl.java:461)
at com.intellij.openapi.vfs.impl.local.LocalFileSystemImpl.doAddRootsToWatch(LocalFileSystemImpl.java:425)
at com.intellij.openapi.vfs.impl.local.LocalFileSystemImpl.access$1000(LocalFileSystemImpl.java:48)
at com.intellij.openapi.vfs.impl.local.LocalFileSystemImpl$5.run(LocalFileSystemImpl.java:403)
at com.intellij.openapi.application.impl.ApplicationImpl.runReadAction(ApplicationImpl.java:946)
at com.intellij.openapi.vfs.impl.local.LocalFileSystemImpl.replaceWatchedRoots(LocalFileSystemImpl.java:399)
at com.intellij.openapi.roots.impl.ProjectRootManagerComponent.addRootsToWatch(ProjectRootManagerComponent.java:150)
obj/linux64/68aa4b24_CFFI.o: In function `val_type':
CFFI.cpp:(.text+0x0): multiple definition of `val_type'
obj/linux64/effa4f79_SodiumWrapper.o:(.data.rel.local+0x2a8): first defined here
/usr/bin/ld: Warning: size of symbol `val_type' changed from 8 in obj/linux64/effa4f79_SodiumWrapper.o to 19 in obj/linux64/68aa4b24_CFFI.o
/usr/bin/ld: Warning: type of symbol `val_type' changed from 1 to 2 in obj/linux64/68aa4b24_CFFI.o
obj/linux64/68aa4b24_CFFI.o: In function `val_data':
CFFI.cpp:(.text+0x20): multiple definition of `val_data'
obj/linux64/effa4f79_SodiumWrapper.o:(.data.rel.local+0x290): first defined here
/usr/bin/ld: Warning: size of symbol `val_data' changed from 8 in obj/linux64/effa4f79_SodiumWrapper.o to 19 in obj/linux64/68aa4b24_CFFI.o
/usr/bin/ld: Warning: type of symbol `val_data' changed from 1 to 2 in obj/linux64/68aa4b24_CFFI.o
<?xml version="1.0" encoding="UTF-8"?>
<module type="HAXE_MODULE" version="4">
<component name="HaxeModuleSettingsStorage">
<option name="buildConfig" value="1" />
<option name="hxmlPath" value="$MODULE_DIR$/compile.hxml" />
<option name="outputFolder" value="$MODULE_DIR$/out/production/Test" />
</component>
<component name="NewModuleRootManager" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/out/production/Test" />
<exclude-output />
<?xml version="1.0" encoding="UTF-8"?>
<module type="HAXE_MODULE" version="4">
<component name="HaxeModuleSettingsStorage">
<option name="buildConfig" value="1" />
<option name="hxmlPath" value="$MODULE_DIR$/compile.hxml" />
<option name="outputFolder" value="$MODULE_DIR$/out/production/Test" />
</component>
<component name="NewModuleRootManager" inherit-compiler-output="false">
<output url="file://$MODULE_DIR$/out/production/Test" />
<exclude-output />
-main Test
-cp src
-php build
actuate: [1.8.6]
androidquirks: [dev:/home/ls/src/haxe-androidquirks]
box2d: [1.2.3]
golems: [1.2.2]
haxe_mobilecore: [dev:/home/ls/src/haxe-mobilecore]
haxelib_client: [3.2.0-rc.3]
hscript: [2.0.4]
hxcpp: [3.2.102]
iap: [1.0.6]
layout: [1.2.0]
Deadlock Detection:
No deadlocks found.
Thread 5061: (state = BLOCKED)
- java.lang.Object.hashCode() @bci=0 (Compiled frame; information may be imprecise)
- gnu.trove.TObjectHash.computeHashCode(java.lang.Object) @bci=5, line=287 (Compiled frame)
- gnu.trove.TObjectHash.insertionIndex(java.lang.Object) @bci=13, line=221 (Compiled frame)
- gnu.trove.THashSet.add(java.lang.Object) @bci=2, line=139 (Compiled frame)
- com.intellij.util.containers.SmartHashSet.add(java.lang.Object) @bci=90, line=90 (Compiled frame)
import net.rezmason.utils.workers.BasicWorker;
import de.polygonal.ds.Array2;
import de.polygonal.ds.Array3;
class PrimeIntegerGenerator extends BasicWorker<Array2<Int>, Array3<Int>> {
override function receive(data:Array2<Int>):Void {
var n:Int = 1;
while (!dead) {
import net.rezmason.utils.workers.BasicWorker;
import de.polygonal.ds.Array2;
class PrimeIntegerGenerator extends BasicWorker<Array2<Int>, Int> {
override function receive(data:Array2<Int>):Void {
var n:Int = 1;
while (!dead) {
// Apparently, Flash workers won't terminate if they run too tightly
import net.rezmason.utils.workers.QuickBoss;
import net.rezmason.utils.workers.Golem;
import de.polygonal.ds.Array2;
typedef PIGBoss = QuickBoss<Array2<Int>, Int>;
class Primes
{
static var pig:PIGBoss = null;
static var done:Bool = false;