similar to: [PATCH] Add periodic fflush to xentop batch mode.

Displaying 20 results from an estimated 300 matches similar to: "[PATCH] Add periodic fflush to xentop batch mode."

2007 Oct 02
3
[PATCH] SIGTERM and SIGINT handler to flush xentop -b outputs
# HG changeset patch # User inakoshi.hiroya@jp.fujitsu.com # Date 1191287395 -28800 # Node ID 5543e74774a826b1781893982ed5052312b820fc # Parent 83239b2890723e0c06bad507bb273a970784b18e Flush stdout when xentop -b gets SIGINT and SIGTERM. It is useful when you stop xentop -b by keyboard interrupt or by other programs such as killall from a batch script. You would have missed the bottom part of
2010 Sep 19
2
get time as a number
Hi, all, How to get a time as a number? While script is running, I want to print the elapsed time something like TIME_AS_SECOND() in the following script inittime <- TIME_AS_SECOND() for (i in 1:100){ do_something(i) curtime <- TIME_AS_SECOND() elapsedtime <- curtime-inittime print(paste(i, elapsedtime)) } Thanks in advance, Hyunchul [[alternative HTML version
2004 Aug 06
2
[patch] time stamps in dump file names
Hi, this patch enables the use of time stamps in dump file names: diff -ur icecast-2.0.1/src/source.c icecast-2.0.1.scram/src/source.c --- icecast-2.0.1/src/source.c Wed May 12 17:55:30 2004 +++ icecast-2.0.1.scram/src/source.c Wed Jun 2 23:17:29 2004 @@ -50,6 +50,16 @@ http_parser_t *parser, const char *mount, format_type_t type, mount_proxy *mountinfo) { + char buffer[PATH_MAX]; +
2004 Aug 06
2
[patch] time stamps in dump file names
Hi, this patch enables the use of time stamps in dump file names: diff -ur icecast-2.0.1/src/source.c icecast-2.0.1.scram/src/source.c --- icecast-2.0.1/src/source.c Wed May 12 17:55:30 2004 +++ icecast-2.0.1.scram/src/source.c Wed Jun 2 23:17:29 2004 @@ -50,6 +50,16 @@ http_parser_t *parser, const char *mount, format_type_t type, mount_proxy *mountinfo) { + char buffer[PATH_MAX]; +
1999 Jan 12
0
A patch for boxplot.R
[this was sent to R-help-owner instead of R-help. why on earth ??!???!? well, I took the liberty to cut the long citation.. MM] Dear Yusuke These changes look interesting. Have you considered being able to specify a different shading or crosshatching for each box. I can't see how you can do this at present. You can get different colours but of course this is no good for black
2004 Apr 06
0
cbqmon.pl
Some time ago someone posted a nice script to monitor HTB classes, classmon.pl. A friend of mine ported it to CBQ, and attached is the result. Suggestions are welcome. Rubens > #!/usr/bin/perl > > # Classy CBQ Operations Monitor...in Perl > # Based on classmon.pl by Toby Cantor > # By BLFC > > # The following short command line options are parsed as you might expect. >
2012 Mar 22
1
Page fault with MFC42.DLL
Hi, I get a crash when I dynamically link with MFC42.DLL but not when I link with MFC statically I've created a simple test program to illustrate... #include "stdafx.h" #include "afxole.h" Code: int APIENTRY WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) {
1998 Dec 15
1
Use less instead of more
Hello, I would like to use "less" as pager instead of the default, "more". So I edited RHOME/bin/pager so that I can use less. Is it all right? Yusuke Uchiyama yusuke at kais.kyoto-u.ac.jp -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send "info",
2003 Oct 16
0
[alert] DST change and date comparisons
Description of Problem We are rapidly approaching the time of year when some will transition from standard time (ST) to daylight savings time (DST) and others will make the opposite transition. These vernal and autumnal transitions have important implications for those with Microsoft systems and use utilities that compare file timestamps on different filesystem types or with filesystems on other
2006 Jan 16
1
LocalCommand problem for tunneling on Linux
I've been testing tunneling on Linux with openssh-SNAP-20060116.tar.gz and found a problem. When I use LocalCommand for doing ifconfig stuff, the command line was executed before a tunneling interface is opened. This causes errors on Linux and the interface is not automatically set up. This is not a problem on *BSD because you can do ifconfig for unopened tun/tap interfaces. But in Linux,
2013 Jul 08
2
[LLVMdev] [RFC] Fix leading and trailing spaces
Hi, I am writing tool to simplify automated refactorings. One of prerequisites is have clean codebase, so a refactorer can be simple and created formatting inconsistencies can be eliminated by formatter. My plan to keep codebase clean is first run a cleanup systemwide, then keep it by hook/ periodicaly rerunning cleanup. I put it for now here. https://github.com/neleai/stylepp I ran a scripts
2015 Jul 09
2
[PATCH] Updated udp.c to use real client ip and subnetmask values if on local subnet
>>> I'm also interested on this, but I do not quite understand the problem. Could you please tell us more about this issue (Wireshark) <<< Attached is a Wireshark capture using the current commit (43f5efa) from Patrick's repo, .Syslinux.efi is downloaded, there is an ARP and then nothing hits the wire from the client. The internal failing scenario is core_udp_sendto
2006 Feb 26
1
NFS via VPN stuck after a certain amount of transfer
Hello, I'm testing NFS via VPN on openssh-4.3p2 and experienced occational glitches. When I tried to copy a huge directory, sometimes the VPN connection was stuck and the tun interface stopped responding. The underlying network connection was still alive. When I quit the client and reconnect, it starts working again. More concretely, I made a connection from a Linux box to a FreeBSD box
2006 May 01
2
mail messages moving between mailfolders
Hello to all! I'm using IMAP-based antispam self-learning. I have a folder "spam" in each Maildir in which I place spam-tagged messages during delivery. If antispam filter makes mistake, user can drag'n'drop message to/from "spam" folder. I running perl-script periodicaly and retrain spam-filter (dSpam). Now I must scan all messages, but it's not a good
2013 Jul 08
0
[LLVMdev] [RFC] Fix leading and trailing spaces
On Jul 8, 2013, at 11:39 AM, Ondřej Bílka <neleai at seznam.cz> wrote: > Hi, > > I am writing tool to simplify automated refactorings. One of > prerequisites is have clean codebase, so a refactorer can be simple and > created formatting inconsistencies can be eliminated by formatter. Cool. > My plan to keep codebase clean is first run a cleanup systemwide, then >
2011 Mar 31
2
ANCOVA for linear regressions without intercept
Hello R experts I have two linear regressions for sexes (Male, Female, Unknown). All have a good correlation between body length (response variable) and head length (explanatory variable). I know it is not recommended, but for a good practical reason (the purpose of study is to find a single conversion factor from head length to body length), the regressions need to go through the origin (0
2002 Oct 09
1
Bug?
Hello, i posted a question about a possible ext3fs bug a few month ago. I see this kernel-msg in the messages: Oct 8 18:30:00 o5s kernel: EXT3-fs error (device sd(8,10)) in ext3_new_inode: error 28 Oct 8 18:35:00 o5s kernel: EXT3-fs error (device sd(8,10)) in ext3_new_inode: error 28 Oct 8 18:40:00 o5s kernel: EXT3-fs error (device sd(8,10)) in ext3_new_inode: error 28 they repead
2006 Nov 03
1
unexpected tag -55
Periodicaly rsync terminates with folowing errors: unexpected tag -55 [receiver] file has vanished: "<filename here>" server log says: file has vanished: "<filename here>" (in userdata) writefd_unbuffered failed to write 4 bytes [sender]: Connection reset by peer (104) I'm didn't wondered with vanished file, but what is "unexpected tag" and
2013 Dec 01
0
[PATCH] core: Bad read of file size over TFTP
A fancy pointers logic has been replaced with a plain old if / else branches. It was assigning only half of a 64 bits integer which is then assigned to a size_t. Thus leading to a bug on platform where size_t is 64 bits. Resolves bug #26 Signed-off-by: Celelibi <celelibi at gmail.com> --- Not sure if genec already issued a pull request for this patch or not. Anyway, here it is as
2023 Oct 24
0
nginx-1.25.3
Changes with nginx 1.25.3 24 Oct 2023 *) Change: improved detection of misbehaving clients when using HTTP/2. *) Feature: startup speedup when using a large number of locations. Thanks to Yusuke Nojima. *) Bugfix: a segmentation fault might occur in a worker process when using HTTP/2 without SSL; the bug had appeared in 1.25.1.