search for: get_db

Displaying 4 results from an estimated 4 matches for "get_db".

Did you mean: get_dp
2015 May 10
2
[LLVMdev] http://llvm.org/perf/ instability: some clues
...lib/python2.7/site-packages/LNT-0.4.1dev-py2.7.egg/lnt/serve r/ui/views.py", line 385, in v4_run_graph ts = request.get_testsuite() File "/opt/venv/perf/lib/python2.7/site-packages/LNT-0.4.1dev-py2.7.egg/lnt/serve r/ui/app.py", line 76, in get_testsuite testsuites = self.get_db().testsuite File "/opt/venv/perf/lib/python2.7/site-packages/LNT-0.4.1dev-py2.7.egg/lnt/serve r/ui/app.py", line 55, in get_db self.db = current_app.old_config.get_database(g.db_name, echo=echo) File "/opt/venv/perf/lib/python2.7/site-packages/LNT-0.4.1dev-py2.7.egg/lnt/se...
2015 Apr 01
1
Remote protocol abstracted
..., and only implements a few members needed by the protocol. This effectively separates the protocol from the connection and the server. RemoteProtocol with virtual abstract methods for: * get_message - Receives a new message (waiting when needed). * send_message - Sends a message to the client. * get_db - Reserves a database when the class needs to use it. * release_db - Releases the database when the class is not using it. * select_db - It's called when the protocol needs to select a new database to work on. * shutdown - It's called when the protocol requires to shutdown. Each command in...
2020 Jan 22
4
[v2v PATCH 0/3] Use libosinfo for query device drivers
This patch series integrates libosinfo in virt-v2v to get the list of files for Windows from libosinfo, if possible. The actual data is still from virtio-win, just unpacked. Pino Toscano (3): build: require libosinfo v2v: add a minimal libosinfo interface v2v: try to get windows driver files from libosinfo m4/guestfs-v2v.m4 | 3 + v2v/Makefile.am | 9 +-
2020 Jan 28
4
[v2v PATCH v2 0/3] Use libosinfo for query device drivers
This patch series integrates libosinfo in virt-v2v to get the list of files for Windows from libosinfo, if possible. The actual data is still from virtio-win, just unpacked. Changes from v1: - adapt to use the priority in libosinfo 1.7.0+ - filter out non-pre-installable drivers - collect all the drivers matching the requirements, not just the first, sorting them by priority like libosinfo does