Doug Tangren
Doug Tangren
> Unfortunately, I am really reluctant to say I have the time to do this I'm happy to help but will probably need more direction, I have a decent sense...
circling back to this. I had a few questions that I think could be answered faster here but perhaps should be asked on the bazel-discuss list. * creating a standalone...
The answer came to me on the train ride home. I can just declare these as private ( `_` ) attr dependencies for rules that depend on `_compile`. The intuition...
I put together an initial prototype that was intended as a pt 1 of the process to have scoverage record starting measurements [here](https://github.com/meetup/rules_scala/compare/master...scoverage-support) One part I'm getting stuck on is...
status update. I updated my [branch](https://github.com/meetup/rules_scala/compare/master...scoverage-support) with a change that partially addresses the coverage dir problem. I realized that the action that writes the coverage data needs to own the...
Following up but still blocked. I posted the [bazel discuss list](https://groups.google.com/d/msg/bazel-discuss/pJQBD-vWaVo/1K5txXhWCAAJ) to ask for some direction/input but haven't gotten as much feed back as I've gotten here. Consider this a...
Thanks @ittaiz linking [here](https://stackoverflow.com/questions/44288701/where-to-write-code-coverage-data-for-scala-rules) for reference
Does jacoco work for scala as well? At Meetup I know some engineers use jacoco specifically for java and scoverage for everything else. Any new news on this enabling this...
this looks promising! are there tradeoffs worth noting in comparison to today's default dispatching within graphql-java?
I tried swapping the default `DataLoaderRegistry` with `ScheduledDataLoaderRegistry` in my graphql application and ran a simple `loader1.load(id1).thenCompose(id2 -> loader2.load(id2))` test with the following configuration ``` DispatchPredicate depthOrTimePredicate = DispatchPredicate.dispatchIfDepthGreaterThan(10) .or(DispatchPredicate.dispatchIfLongerThan(Duration.ofMillis(200)))...