search for: print_titles

Displaying 6 results from an estimated 6 matches for "print_titles".

Did you mean: print_title
2012 Nov 14
1
Notes on compiling libguestfs 1.19.59 on Debian 7 (Wheezy) beta
In no particular order. Some of these need further investigation. ---------------------------------------------------------------------- I had to patch libguestfs not to use febootstrap-supermin-helper --copy-kernel option. See attachment #1. This could be avoided by providing a newer febootstrap in Wheezy. I had to patch libguestfs to make it not use the (not working) virtio-scsi in old
2005 Jan 05
1
3.0.x and AIX 5.3
As of AIX 5.3 sys/var.h is loaded in sys/proc.h & sys/space.h which are loaded through a rather lengthy debacle of nested includes. AIX 5.2 does not have this problem. At any rate the result when using gcc 3.3 and vac 6.x: Compiling web/cgi.c web/cgi.c:33: error: redefinition of `struct var' web/cgi.c: In function `cgi_load_variables': web/cgi.c:138: error: structure has no member
2017 Dec 12
2
[PATCH] df: Handle block sizes smaller than 1024 bytes (RHBZ#1525241).
Thanks: Mykola Ivanets --- df/output.c | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/df/output.c b/df/output.c index eed7f384d..18f76b155 100644 --- a/df/output.c +++ b/df/output.c @@ -80,6 +80,22 @@ print_title (void) } } +/* scale (n, 4096, 1024) ==> n * 4 + * scale (n, 512, 1024) ==> n / 2 + */ +static uintmax_t +scale (uintmax_t
2004 Nov 09
1
RODBC bug or doc error in sqlFetch on xls files (PR#7354)
...<NA> 3 C:\\Documents and Settings\\bgunter\\My Documents\\LRPdatacln <NA> TABLE_NAME TABLE_TYPE REMARKS 1 'Success Rates$' TABLE <NA> 2 'Success Rates$'Print_Area TABLE <NA> 3 'Success Rates$'Print_Titles TABLE <NA> ## The following give errors, although ## according to p.16 of manual, this should work: > dat<-sqlFetch(z,"Success Rates") Error in odbcTableExists(channel, sqtable) : Success Rates : table not found on channel ## This only seemed to work ... &g...
2009 Jul 15
0
[PATCH] Make Perl strings translatable
This patch makes Perl strings translatable. The Perl strings end up in the PO files as usual. It does not touch the embedded POD. Internationalizing the Perl strings was pleasantly simple. Just add: use Locale::TextDomain 'libguestfs'; at the top of any *.pl or *.pm file. Then for each string in the file that you want to be translatable you place TWO underscores before it: -
2009 Aug 03
1
[PATCH 1/2] Convert all TABs-as-indentation to spaces.
Per discussion on IRC, here are two changes to convert all TABs-as-indentation to spaces. The first one is the fully-automated conversion. However, note that the command mentioned uses a file (the .x-sc* one) that is added only in the following patch. The second patch adds rules to help keep things that way: Document and enforce the new spaces-only indentation policy. * cfg.mk