Results 14 issues of Fabio Tudone

- Clone and `gradle capsule` [any `photon` branch using the latest `capsule`](https://github.com/puniverse/photon/tree/capsule-osv) - Clone [`capsule-daemon`](https://github.com/puniverse/capsule-daemon) and uncomment [these two lines](https://github.com/puniverse/capsule-daemon/blob/master/src/main/java/DaemonCapsule.java#L134), then `gradle install` - Run the `photon` capsule wrapped in...

enhancement

Gradle seems to replace `System.out.stderr` with [`LinePerThreadBufferingOutputStream` which inserts itself in a threadlocal](https://github.com/gradle/gradle/blob/77ea2907e4e1ce93667d8544c54961040b758422/subprojects/core/src/main/groovy/org/gradle/util/LinePerThreadBufferingOutputStream.java#L30) that triggers the issue upon deserialization. Workaround [f.e. here](http://stackoverflow.com/questions/5339499/resetting-standard-output-stream). Reproduce f.e. by inserting a `System.err` printout before...

JD8+. Reproduce by converting [this](https://github.com/puniverse/quasar/blob/v0.7.3/quasar-core/src/test/java/co/paralleluniverse/fibers/FiberTest.java#L790) to a lambda and then `gradle :quasar-core:jdk8Test`.

bug

``` [quasar] ERROR: while transforming org/jetbrains/kotlin/descriptors/impl/ModuleDescriptorImpl$packageFragmentProviderForWholeModuleWithDependencies$1: -1 java.lang.ArrayIndexOutOfBoundsException: -1 at co.paralleluniverse.asm.Frame.a(Unknown Source) at co.paralleluniverse.asm.MethodWriter.visitMaxs(Unknown Source) at co.paralleluniverse.fibers.instrument.InstrumentMethod.accept(InstrumentMethod.java:527) at co.paralleluniverse.fibers.instrument.InstrumentClass.visitEnd(InstrumentClass.java:255) at co.paralleluniverse.asm.ClassReader.accept(Unknown Source) at co.paralleluniverse.asm.ClassReader.accept(Unknown Source) at co.paralleluniverse.fibers.instrument.QuasarInstrumentor.instrumentClass(QuasarInstrumentor.java:109) at co.paralleluniverse.fibers.instrument.QuasarInstrumentor.instrumentClass(QuasarInstrumentor.java:85) at...

Example code for reproducing the issue by @Jire ``` kotlin package org.abendigo import co.paralleluniverse.fibers.Fiber import co.paralleluniverse.fibers.Suspendable import co.paralleluniverse.kotlin.fiber import co.paralleluniverse.strands.Strand import java.util.* import java.util.concurrent.TimeUnit @Suspendable fun sleep(duration: Long, timeUnit: TimeUnit...

bug

[INFO] [talledLocalContainer] co.paralleluniverse.fibers.instrument.UnableToInstrumentException: Unable to instrument co/paralleluniverse/fibers/Fiber#onResume()V because of catch for SuspendExecution [INFO] [talledLocalContainer] at co.paralleluniverse.fibers.instrument.InstrumentMethod.accept(InstrumentMethod.java:253) [INFO] [talledLocalContainer] at co.paralleluniverse.fibers.instrument.InstrumentClass.visitEnd(InstrumentClass.java:241) [INFO] [talledLocalContainer] at co.paralleluniverse.asm.ClassReader.accept(Unknown Source) [INFO] [talledLocalContainer] at co.paralleluniverse.asm.ClassReader.accept(Unknown Source)...

bug

Jetty v.9.2.1 ``` WARNING: Uninstrumented methods on the call stack (marked with **): at co.paralleluniverse.fibers.Fiber.checkInstrumentation(Fiber.java:1590) at co.paralleluniverse.fibers.Fiber.verifySuspend(Fiber.java:1561) at co.paralleluniverse.fibers.Fiber.sleep(Fiber.java:618) at co.paralleluniverse.fibers.Fiber.sleep(Fiber.java:610) at testgrp.NOPPersistenceServiceImpl.store(NOPPersistenceServiceImpl.java:19) at testgrp.Resource.store(Resource.java:37) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)...

bug

With Rust 1.8.0 installed by Linuxbrew on Linux Mint 17.4 Rosa x64 (based on Trusty), when running `cargo build --release`: ``` /home/fabio/.cargo/registry/src/github.com-88ac128001ac3a9a/fs2-0.2.2/src/unix.rs:63:67: 63:79 error: mismatched types: expected `i64`, found `u64`...

Hi guys, I came across a stacktrace where `vertx-sync` seems to start a fiber and then the very same thread executes it directly; I think this happens by default unless...