Home
last modified time | relevance | path

Searched refs:con1 (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/libs/thread/test/
Dtest_3628.cpp25 boost::condition con1; in ThreadFuncWaiter() local
31 theConditions.push_back(&con1); in ThreadFuncWaiter()
33 cout << "Added " << boost::this_thread::get_id() << " " << &con1 << endl; in ThreadFuncWaiter()
34 if (con1.timed_wait(lockMtx, boost::posix_time::time_duration(0, 0, 50))) in ThreadFuncWaiter()
36 cout << "Woke Up " << boost::this_thread::get_id() << " " << &con1 << endl; in ThreadFuncWaiter()
40 cout << "*****Timed Out " << boost::this_thread::get_id() << " " << &con1 << endl; in ThreadFuncWaiter()
44 theConditions.remove(&con1); in ThreadFuncWaiter()
45 cout << "Removed " << boost::this_thread::get_id() << " " << &con1 << endl; in ThreadFuncWaiter()
/third_party/python/Lib/sqlite3/test/
Dtransactions.py36 self.con1 = sqlite.connect(get_db_path(), timeout=0.1)
37 self.cur1 = self.con1.cursor()
44 self.con1.close()
72 self.con1.commit()
81 self.con1.commit()
90 self.con1.commit()
100 self.con1.isolation_level = None
101 self.assertEqual(self.con1.isolation_level, None)
106 self.con1.isolation_level = "DEFERRED"
107 self.assertEqual(self.con1.isolation_level , "DEFERRED")
[all …]
Dhooks.py255 con1 = sqlite.connect(TESTFN, isolation_level=None)
257 con1.set_trace_callback(trace)
258 cur = con1.cursor()
/third_party/boost/libs/phoenix/example/
Dcontainer_actor.cpp106 container_actor<phoenix::expression::argument<1>::type> const con1; in main() local
116 std::cout << (con1.size())(v) << " == " << v.size() << "\n"; in main()
/third_party/mindspore/tests/st/model_zoo_tests/yolov3_darknet53/src/
Dyolo.py146 con1, big_object_output = self.backblock0(feature_map3)
148 con1 = self.conv1(con1)
149 ups1 = P.ResizeNearestNeighbor((img_hight / 16, img_width / 16))(con1)
150 con1 = self.concat((ups1, feature_map2))
151 con2, medium_object_output = self.backblock1(con1)
/third_party/mindspore/tests/st/model_zoo_tests/yolov3/src/
Dyolov3.py364 con1, big_object_output = self.backblock0(feature_map3)
366 con1 = self.conv1(con1)
367 ups1 = self.upsample1(con1)
368 con1 = self.concat((ups1, feature_map2))
369 con2, medium_object_output = self.backblock1(con1)
/third_party/boost/boost/geometry/index/detail/rtree/rstar/
Dredistribute_elements.hpp213 content_type con1 = (std::numeric_limits<content_type>::max)(); in apply() local
217 som1, ovl1, con1, in apply()
232 if ( ovl1 < ovl2 || (ovl1 == ovl2 && con1 <= con2) ) in apply()
237 smallest_content = con1; in apply()
/third_party/boost/libs/phoenix/doc/examples/
Dextending_actors.qbk103 container_actor<expression::argument<1>::type> const con1;
114 (con1.size())(v);