Mathieu Boespflug

Results 25 issues of Mathieu Boespflug

The Spark computation model is essentially pure: * RDD's are immutable structures, * User supplied functionals are meant to be free of side effects, or at most idempotent, * Results...

We currently bind the Java API for Spark. @alpmestan likely remembers the rationale better than me. I assume it was mostly a choice by default, and because the Java API...

`sparkle package` computes the transitive closure of all runtime dependencies (.so libraries) and copies those dependencies into the .jar file for the app. In this way, the app is self-contained....

As described in #80, `sparkle package` creates self contained .jars with all .so's embedded in it. But for testing/debugging/temp workarounds, it may be useful to force the usage of system...

**Is your feature request related to a problem? Please describe.** Remote build execution does not work well with "configure-like" repository rules, which autodetect paths in the execution environment and create...

type: feature request
P3

**Is your feature request related to a problem? Please describe.** There are multiple issues with building Asterius today: * It depends on custom infrastructure, like the presence of Docker images...

type: feature request

According to experiments by @angerman, building for Android is possible but Android does require slightly different linker flags when building. #70 has more about this, but we want to achieve...

One well known difficulty of interoperating two languages with automatic memory management is that the two garbage collectors tend to cut the grass under each other's feet. This is because...

I think it's confusing to have both `withMonitor` and `withMonitorRef`. The two functions are nearly identical. Could we either deprecate `withMonitor`, since `withMonitorRef` is all that's needed, or (at the...

A common deviation in styles is the following: ```haskell foo :: (Show a) => a -> IO () bar :: Show a => a -> IO () ``` There are...

feature-request