Caner Derici
Caner Derici
I was just playing with rash and noticed the following: ``` > ls |> (lambda (s) (values 1 2)) Result 46: result arity mismatch; expected number of values not received...
The `no-assign-convert-for-compiled-code` branch aims to remove the call to `assign-convert` when deserializing compiled code (which is already assign-convert'ed), and recunstructs asts like `lambda`, `let` etc exactly as they were at...
\> pypy [meta-interp-pycket.py](https://github.com/pycket/pycket/blob/master/meta-interp-pycket.py) which tries to call the `LLJitMixin().meta_interp` on [dev_mode_metainterp](https://github.com/pycket/pycket/blob/9e20c709bffc0a7f112cfc9a4dff4815d865d3c6/pycket/racket_entry.py#L113) function, but fails with the following: ``` File "meta-interp-pycket.py", line 13, in LLJitMixin().meta_interp(dev_mode_metainterp, [], listcomp=True, listops=True, backendopt=True) File "/home/cderici/pycketland/pycket/pypy/rpython/jit/metainterp/test/support.py",...
and call `call_interpret` only once at the entry
Happens when we try to run the racket/repl module `racket -l pycket/expand collects/racket/repl.rkt` ``` (exn:fail Racket produced an error and said 'module: cannot redeclare cross-phase persistent module module name: #...
With the new exception handling (where Racket handlers pass around exn objects), we need to think about how to check the error cases in unit tests. The example below prints...
After we defined the service layer (#16793) and state layer (#16896) for the annotation domain, this is to wire up the new annotation service into the Annotations facade. A follow...
This is a follow up PR to #16952 (that wires up the new annotation domain that's added in https://github.com/juju/juju/pull/16793 and https://github.com/juju/juju/pull/16896). Currently it includes the changes from #16952, it'll be...
Currently there are two checks being done for credential validation. 1) can we reach all cloud instances? 2) can we cross examine all machines we know about with all the...
The `running-in-container` is [removed years ago](https://bugs.launchpad.net/ubuntu/+source/init-system-helpers/+bug/1539016), so this uses `systemd-detect-virt` to detect the environment we're running in. Also the `setupContainerSupport` seems to have no effect on provisioning machines, so this...