Robert Brown

Results 34 comments of Robert Brown

Perhaps files like .classpath and .settings can be used to configure the language server. If so, what's the easiest way to create these config files?

Thanks for the pointer to that directory. If you would, please explain what you mean by "start with". I see that the directory contains config files, but it doesn't have...

Neither CCL 1.11 nor SBCL 2.0.8 produce an error when compiling and loading the following code: ``` (define-symbol-macro +double-float-nan+ #+abcl #.(system:make-double-float (ash -1 32)) #+ccl ccl::double-float-nan #+sbcl #.(sb-kernel:make-double-float -1 0)...

I'm not sure why I made symbol macros for the NaN constants and I'm not sure why I used a read-time value either. If I don't use a read-time value,...

Some more information .... As bwrap processes each "--bind" flags it parses /proc/self/mountinfo. After every bind mount that file is longer by one line ... that's what leads to N^2...

Here is a pull request I cooked up to solve the problem. It likely has some bugs. I'd like to work with the bubblewrap maintainers to land it. Thanks!.

I have updated the pull request: https://github.com/containers/bubblewrap/pull/385 I've done some testing, so it is now much more likely to be correct.

Is there a different strategy that might work to reduce the number of times the mountinfo file is read? I don't fully understand mount propagation and the need to adjust...

This pull request is a work in progress. The intent is to fix https://github.com/containers/bubblewrap/issues/384 I'll need some help from the bubblewrap maintainers to land this change.

Thanks very much for taking a look. Is it possible to simulate the effects of a mount sufficiently so that the mountinfo file is not read for every bind mount...