Lines Matching defs:Config
25 struct Config struct
27 bool disable; // start disabled
28 ubyte profile; // enable profiling with summary when terminating program
29 string gc = "conservative"; // select gc implementation conservative|manual
31 size_t initReserve; // initial reserve (MB)
32 size_t minPoolSize = 1; // initial and minimum pool size (MB)
33 size_t maxPoolSize = 64; // maximum pool size (MB)
34 size_t incPoolSize = 3; // pool size increment (MB)
35 float heapSizeFactor = 2.0; // heap size to used memory ratio
39 bool initialize() in initialize()
58 void help() in help()
96 foreach (field; __traits(allMembers, Config)) in parseOptions() argument