Miguel Gamboa de Carvalho

Results 18 issues of Miguel Gamboa de Carvalho

The StmBench7 (included in the tests project of DeuceStm) throws an `IllegalMonitorStateException` when you run it with the LSA STM and the rohint option activated. The exception happens in the...

[HtmlFlow](https://github.com/xmlet/HtmlFlow) is a Java DSL to write typesafe HTML documents. Issue: #25 HtmlFlow competes with the most performant template engine, i.e. Rocker and is faster than the remaining competitors. HtmlFlow...

[HtmlFlow](https://github.com/xmlet/HtmlFlow) is a Java DSL to write typesafe HTML documents. HtmlFlow competes with the most performant template engine, i.e. Rocker and is faster than the remaining concurrency. HtmlFlow is widely...

**Question** Is Dokka supposed to exclude Kotlin source code from Javadocs? **Screenshots** Here, `HtmlContinuation` is a Java class extending a Kotlin class `HtmlContinuationSuspendable`. However, Dokka did not include a link...

question
format: Javadoc

To run `spring-comparing-template-engines` with JMH on you local machine just run: ``` mvn clean install ``` And then: ``` java -cp target\template-engines.jar;target\classes org.openjdk.jmh.Main -f 1 -r 5 -w 5 -i...

This looks to work fine: ```java Flow.Publisher body = BodyPublishers.ofFile(metamorphosis); Observable .fromPublisher(FlowAdapters.toPublisher(body)) .take(10) .map(buf -> new String(buf.array())) .zipWith(Observable.interval(500, TimeUnit.MILLISECONDS), (item, interval) -> item) .subscribe(str -> System.out.println(str)); System.out.println("Subscribed"); ```

I think NewlineIterator is useless. Check this: https://stuartmarks.wordpress.com/2020/04/14/scanner-is-a-weird-but-useful-beast/

enhancement

This method was intended for an unbounded `Observable` without backpressure. Thus we should implement it based on `Observable` of RxJava rather than `Publisher`. And then maybe latter we may convert...

bug