MCPcopy Create free account
hub / github.com/apache/nifi-minifi-cpp / set

Method set

encrypt-config/ArgParser.cpp:84–89  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82}
83
84void Arguments::set(const std::string& key, const std::string& value) {
85 if (get(key)) {
86 throw CommandException("Key is specified more than once \"" + key + "\"");
87 }
88 args_[key] = value;
89}
90
91void Arguments::set(const std::string& flag) {
92 if (isSet(flag)) {

Callers 7

set_instance_propertyFunction · 0.45
enableAsyncC2Method · 0.45
printManifestFunction · 0.45
parseMethod · 0.45
setSyslogLoggerFunction · 0.45
checkMethod · 0.45
serializeMethod · 0.45

Calls 3

getFunction · 0.85
CommandExceptionClass · 0.85
insertMethod · 0.45

Tested by

no test coverage detected