Results 49 comments of Travis Furrer

I see high "CoreWidgetProvider" CPU usage on 0.1401.505.0. My laptop was running steady at 6% CPU from this process, and that is enough to keep the machine hot (because it...

Any idea when this issue might get some development action? I ask because this issue can be a real disappointment for developers who are migrating to Gradle specifically to benefit...

It is completely legal and sane for a test suite to contain a large number of tests with runtimes varying from milliseconds to minutes. Not every project organizes its test...

I don't understand why there is any discussion here about concrete usages. This seems like just a simple bug. What would be wrong with adding "if (value == null) return;"...

Exact same issue here. I would like to add that the correct icon shows up separately in the taskbar when the app is running, but the pinned icon and start...

Still hitting this in 1.96.2 today. @jdneo Is there anyone who could attend to this one-liner fix?

I encountered this same problem. Rebooting the thermostat and then HA fixed the problem for me. Thanks @kimocal for that tip! Looks like my T2000 updated its own firmware from...

All vaguely related: https://github.com/TestFX/TestFX/issues/670 https://stackoverflow.com/questions/57428846/application-vs-applicationtest-different-event-dispatch https://bugs.openjdk.org/browse/JDK-8229467

I worked around this issue with something like the following: ``` var stage = FxToolkit.registerPrimaryStage(); // Initializes 'firedEvents' var context = FxToolkit.toolkitContext(); var field = FxToolkitContext.class.getDeclaredField("firedEvents"); field.setAccessible(true); var firedEvents =...

My project is having this exact same issue currently. This bug definitely deserves some priority because it's basically making TestFX generally unreliable. Unfortunately I personally don't have the time to...