Bai-Yingjie
Bai-Yingjie
Hi d5, Thanks for your reply! I will look into the performance drop, right now I have no clue... The added feature should only affect the running of the cloned...
I have run the Fibonacci bench in cmd/bench several times manually, but the result varies from each run, from master branch I got: ``` $ ./bench ------------------------------------- fibonacci(35) ------------------------------------- Result:...
Thanks @geseq Regarding the complexity of adding concurrency VM, fully agree that more concurrency constructs like mutex are needed, which brings more complexity... but worth it. I will continue to...
How about this approach? ``` fmt := import("fmt") newCgroup := func(name) { cg := {name:name, pids:[]} cg.addPid = func(pid) { fmt.println("add ", pid, " to cgroup ", cg.name) cg.pids =...
It is possible, you need to register the concrete instance to `gotiny.Register`.
same issue on Linux Mint 18 Sarah pandoc --version pandoc 2.2.1 Compiled with pandoc-types 1.17.4.2, texmath 0.11, skylighting 0.7.0.2
`# context --version mtx-context | ConTeXt Process Management 0.61 mtx-context | mtx-context | main context file: /usr/share/texmf/tex/context/base/context.mkiv mtx-context | current version: 2015.05.18 12:26 ` I updated Pandoc as said by...
[context_resume.log](https://github.com/mszep/pandoc_resume/files/2015382/context_resume.log) [resume.log](https://github.com/mszep/pandoc_resume/files/2015383/resume.log) Right... There are lots "unknown font" lines in resume.log.
Thanks for your review, and sorry for the late response... To preproduce the panic, put below code to a file in a directory, e.g. `./test/hello.go`: ```go package main import (...