|
You are here |
danlark.org | ||
| | | | |
kstefanj.github.io
|
|
| | | | | I've recently spent a lot of time in memory reservation code of the JVM. It started out because we got an external contribution to enable use of multiple large page sizes for Linux. To do this in a good way some other things had to be refactored first. While taking this trip down memory lane I realized that doing a short summary of how large pages are used by the JVM might be an interesting read. | |
| | | | |
www.evanjones.ca
|
|
| | | | | ||
| | | | |
blog.libtorrent.org
|
|
| | | | | ||
| | | | |
masnun.com
|
|
| | | In Go or Golang, declaring an interface is pretty simple and easy. type Printer interface { Print(string) } We just defined an interface named Printerthat required an implementer to have a method named Printwhich takes a stringparameter and returns nothing. Interfaces are implemented implicitly in Go. Any type that has the Print(string)method implements the interface. [...] | ||