17 #ifndef __SCHEDULER_FLAGS_HPP__ 18 #define __SCHEDULER_FLAGS_HPP__ 40 "connection_delay_max",
41 "The maximum amount of time to wait before trying to initiate a\n" 42 "connection with the master. The library waits for a random amount of\n" 43 "time between [0, b], where `b = connection_delay_max` before\n" 44 "initiating a (re-)connection attempt with the master.",
49 "HTTP authenticatee implementation to use when authenticating against\n" 50 "the master. Use the default '" +
52 "' or load an alternate\n" 53 "authenticatee module using MESOS_MODULES.",
63 "List of modules to be loaded and be available to the internal\n" 66 "Use --modules=filepath to specify the list of modules via a\n" 67 "file containing a JSON formatted string. 'filepath' can be\n" 68 "of the form 'file:///path/to/file' or '/path/to/file'.\n" 70 "Use --modules=\"{...}\" to specify the list of modules inline.\n" 76 " \"file\": \"/path/to/libfoo.so\",\n" 79 " \"name\": \"org_apache_mesos_bar\",\n" 80 " \"parameters\": [\n" 88 " \"name\": \"org_apache_mesos_baz\"\n" 93 " \"name\": \"qux\",\n" 96 " \"name\": \"org_apache_mesos_norf\"\n" 108 "Directory path of the module manifest files.\n" 109 "The manifest files are processed in alphabetical order.\n" 110 "(See --modules for more information on module manifest files).\n" 111 "Cannot be used in conjunction with --modules.\n");
124 #endif // __SCHEDULER_FLAGS_HPP__
Option< Modules > modules
Definition: flags.hpp:115
constexpr char DEFAULT_BASIC_HTTP_AUTHENTICATEE[]
Definition: http.hpp:79
Flags()
Definition: flags.hpp:37
std::string httpAuthenticatee
Definition: flags.hpp:117
Definition: duration.hpp:32
Duration connectionDelayMax
Definition: flags.hpp:114
Option< std::string > modulesDir
Definition: flags.hpp:116
void add(T1 Flags::*t1, const Name &name, const Option< Name > &alias, const std::string &help, const T2 *t2, F validate)
Definition: flags.hpp:333
constexpr Duration DEFAULT_CONNECTION_DELAY_MAX
Definition: constants.hpp:28