Joe Bryan

Results 167 comments of Joe Bryan

That's interesting (and rough). That rounding behavior has been there forever -- I bet the increased loom size invalidated that behavior. `u3a_maximum` is properly defined in `allocate.h`, but you'd have...

You're hitting limits on the number of memory mappings per process, see https://github.com/urbit/vere/issues/624.

The core limit failure is from a `setrlimit()` call, trying to set `RLIMIT_CORE` to `RLIM_INFINITY` (enabling arbitrary-sized core dumps) -- just for debugging and unrelated to this. But I just...

@mopfel-winrux my guess this dns-resolution requests queuing up endlessly. could try fixing that granularly, but my preference is just to finish urbit/vere#639.

This is crashing in the jet dashboard. This fast hint is not valid and is ignored by the jet dashboard: ``` ~% %vial.100 %vial ~ ``` This one is valid,...

The jet dashboard needs to be updated to be resilient against bad inputs. I still need to figure out where is best to add additional checks/no-ops. But it should be...

@rabfel-hobmet sorry for the delay. You're running into system limits on the number of virtual-memory mappings. Those limits can be raised, see urbit/vere#624.

@Fang- can you confirm that this was fixed in v1.6?

This change seems right for conn, but not the behavior we want for mars/urth IPC. In the long run, I don't think both of those things should use newt, but...

This PR attempts to pre-build tape types (using the hoon AST node `%hand`, otherwise unused), to avoid having the compiler first infer a fixed-width "tuple" type over the whole tape...