Lines Matching refs:threads
55 # The minimum number of threads allowed.
57 # The default number of threads to start.
59 # The maximum number of threads that can be started.
154 Usage: /usr/lib/pkg.depotd [-a address] [-d inst_root] [-p port] [-s threads]
173 -s threads The number of threads that will be started to serve
315 threads = int(arg)
316 if threads < THREADS_MIN:
320 if threads > THREADS_MAX:
324 ivalues["pkg"]["threads"] = threads
626 threads = dconf.get_property("pkg", "threads")
627 if not threads:
628 dconf.set_property("pkg", "threads", THREADS_DEFAULT)
629 threads = dconf.get_property("pkg", "threads")
755 "server.thread_pool": threads,