Home
last modified time | relevance | path

Searched refs:targetValue (Results 1 – 2 of 2) sorted by relevance

/openbmc/webui-vue/src/utilities/
H A DobjectUtils.js15 const targetValue = output[key];
21 typeof targetValue === 'object' &&
22 targetValue !== null &&
23 !Array.isArray(targetValue)
25 output[key] = deepMerge(targetValue, sourceValue);
/openbmc/dbus-sensors/src/
H A DPwmSensor.cpp96 auto targetValue = static_cast<uint64_t>(std::round(scaledValue)); in PwmSensor() local
97 controlInterface->set_property("Target", targetValue); in PwmSensor()