Esempio n. 1
0
void local_storage::set(
    const string& feature,
    const string& klass,
    const val1_t& w) {
  scoped_wlock lk(mutex_);
  set_nolock(feature, klass, w);
}
Esempio n. 2
0
void local_storage::set(
    const string& feature,
    const string& klass,
    const val1_t& w) {
  scoped_lock lk(mutex_);
  set_nolock(feature, klass, w);
  tbl_[feature][class2id_.get_id(klass)].v1 = w;
}