Displaying 6 results from an estimated 6 matches for "s_new".
Did you mean:
__new
2015 Nov 12
2
fail: doveadm backup -s "<state>" with a huuge number of mailboxes
...adability):
state_file=.s
doveadm \
-o imapc_master_user=<master> \
-o imapc_password=<pw> \
-o imapc_host=<host> \
-o mail_fsync=never \
backup -s "$(<.s)" -u "<user>" -R imapc: >.s_new
mv .s_new .s
The user has about 4501 IMAP folders. This makes a huge
state output of about 128 kB. This in turn leads to an overly long
command line in the next iteration. (excuse: command line too long)
Is there any chance to solve this? I think, the only possibility would
be to have doveadm...
2015 Nov 12
0
fail: doveadm backup -s "<state>" with a huuge number of mailboxes
...ile=.s
> doveadm \
> -o imapc_master_user=<master> \
> -o imapc_password=<pw> \
> -o imapc_host=<host> \
> -o mail_fsync=never \
> backup -s "$(<.s)" -u "<user>" -R imapc: >.s_new
> mv .s_new .s
>
> The user has about 4501 IMAP folders. This makes a huge
> state output of about 128 kB. This in turn leads to an overly long
> command line in the next iteration. (excuse: command line too long)
>
> Is there any chance to solve this? I think, the only po...
2010 Sep 09
2
[PATCH]: add libxl python binding
...(l) + "\n"
+
+def fsanitize(name):
+ "Sanitise a function name given a C type"
+ ret = ''_''.join(name.split())
+ return ret.replace(''*'', ''ptr'')
+
+def py_decls(ty):
+ l = []
+ l.append("_hidden PyObject *Py%s_New(void);\n"%ty.rawname)
+ for f in ty.fields:
+ if py_type(f.type) is not None:
+ continue
+ l.append("_hidden PyObject *attrib__%s_get(%s *%s);"%(\
+ fsanitize(f.type.typename), f.type.typename, f.name))
+ l.append("_hidden int a...
2012 Mar 28
1
[PATCH] Split gobject sources into 1 file per class
This patch replaces patches 14 and 15 from my previous series. The gtk-doc
output is now reasonable, and we can rely on an automatically generated
guestfs-sections.txt.
Matt
2012 Jan 17
3
GObject bindings
This is the first iteration of the GObject bindings. I have 'kicked the tyres'
on these, meaning I have ensured that a bunch of basic manual tests work as
expected. I'm in the process of adding more comprehensive tests.
Here's an example simple javascript program which uses these bindings:
===
const Guestfs = imports.gi.Guestfs;
print('Starting');
var g = new
2012 Jan 20
11
[PATCH 01/10] Revert "Revert "generator: Add CamelName flag""
This reverts commit 3f6ca541c7b24d4c86688a509582cb41a7e0078c.
The original commit was reverted prematurely.
---
generator/generator_actions.ml | 10 +++++-----
generator/generator_checks.ml | 5 +++++
generator/generator_types.ml | 3 +++
3 files changed, 13 insertions(+), 5 deletions(-)
diff --git a/generator/generator_actions.ml b/generator/generator_actions.ml
index