Displaying 5 results from an estimated 5 matches for "meth_noarg".
Did you mean:
meth_noargs
2008 Aug 30
3
Updated version of patch
Attached is a patch against shout-python-0.2 which does two trivial but
very useful things
(1) The function "get_connected" is exported so that shout-python
becomes usable
in nonblocking mode. In the current version of shout-python "open"
raises an exception in nonblocking mode.
(2) The global interpreter lock is released in the potentially blocking
functions
2020 Jan 28
0
[Announce] Samba 4.11.6 Available for Download
...atalyst.net.nz>
* BUG 14209: pygpo: Use correct method flags.
o David Disseldorp <ddiss at samba.org>
* BUG 14216: vfs_ceph_snapshots: Fix root relative path handling.
o Torsten Fohrer <torsten.fohrer at sbe.de>
* BUG 14209: Avoiding bad call flags with python 3.8, using METH_NOARGS
instead of zero.
o Fabrice Fontaine <fontaine.fabrice at gmail.com>
* BUG 14218: source4/utils/oLschema2ldif: Include stdint.h before cmocka.h.
o Bj?rn Jacke <bjacke at samba.org>
* BUG 14122: docs-xml/winbindnssinfo: Clarify interaction with idmap_ad etc.
o Volker Len...
2020 Jan 23
0
[Announce] Samba 4.10.13 Available for Download
...fork length.
* BUG 13745: s3:printing: Fix %J substition.
o Isaac Boukris <iboukris at gmail.com>
* BUG 14116: libnet_join: Add SPNs for additional-dns-hostnames entries.
o Torsten Fohrer <torsten.fohrer at sbe.de>
* BUG 14209: Avoiding bad call flags with python 3.8, using METH_NOARGS
instead of zero.
o Bj?rn Jacke <bjacke at samba.org>
* BUG 14122: docs-xml/winbindnssinfo: Clarify interaction with idmap_ad etc.
o Volker Lendecke <vl at samba.org>
* BUG 14175: ctdb-tcp: Close inflight connecting TCP sockets after fork.
o Stefan Metzmacher <metze...
2012 May 15
5
[PATCH 0 of 4 v3] Add commands to automatically prep devices for pass-through
Add commands to automatically prep devices for pass-through
The current method for passing through devices requires users to
either modify cryptic Linux boot parameters and reboot, or do a lot of
manual reads and writes into sysfs nodes.
This set of patches introduces commands to make this easier. It expands
on the concept of "assignable" (from the list_assignable_devices command).
2010 Sep 09
2
[PATCH]: add libxl python binding
...if ( libxl_domain_destroy(&self->ctx, domid, force) ) {
+ PyErr_SetString(xl_error_obj, "cannot destroy domain");
+ return NULL;
+ }
+ return Py_None;
+}
+
+static PyMethodDef pyxl_methods[] = {
+ {"list_domains", (PyCFunction)pyxl_list_domains, METH_NOARGS,
+ "List domains"},
+ {"domid_to_name", (PyCFunction)pyxl_domid_to_name, METH_VARARGS,
+ "Retrieve name from domain-id"},
+ {"domain_shutdown", (PyCFunction)pyxl_domain_shutdown, METH_VARARGS,
+ "Shutdown a domain"},
+...