Philippe Charrière

Results 95 issues of Philippe Charrière

Hi this list is not necessarily complete, but useful (i hope) Philippe

When loading a wasm GoLang module (build with TinyGo), I get this error: ``` Error: failed to parse WebAssembly module Caused by: Invalid input WebAssembly code at offset 294: duplicate...

Hello 👋 Any plan to add or update dynamically a runnable?

It could be interesting to get the list of the keys stored in the cache. Use case: get a list/array of the values stored in the cache: - get the...

enhancement

Hello 🌍 - `gololang.concurrent.async.Future` has not a `get` method to handle a timeout - so `gololang.concurrent.async.AssignedFuture` does not implement this method What I'm doing instead: ```golo let concurrentTask = |task,...

feature

If I compile golo code with this: ``` golo compile --output hello.jar samples/*.golo ``` Can I use the jar file from java? How can I call module function from Java...

question
for-reference

Baby question: How can I add missing dependencies to build maven or gradle golo project? Currently `gradle build` command failed with this: ``` Execution failed for task ':compileGolo'. > Could...

question
for-reference

> WIP - [ ] Add documentation of https://github.com/eclipse/golo-lang/blob/master/src/main/golo/functions.golo - [ ] Complement part about **Functional Errors** https://github.com/eclipse/golo-lang/blob/master/doc/misc.adoc#functional-errors-gololangerrors - [ ] add more usefull samples for each type - [...

improvement
documentation

hey 👋 @yloiseau I have to test if a value is null, if not I **do/run** something, otherwise **do/run** something else, but what is the best way to do this?...

question

### Use case I have to non blocking promises: (https://github.com/eclipse/golo-lang/blob/master/src/main/golo/async.golo#L75) - `findGitHubUser` - `getRepositoriesOfGitHubUser` I search if user exists and then (only if exists) I fetch his repositories (it's just...

question