Displaying 20 results from an estimated 200 matches similar to: "Email a build fail to the checkin culprit"
2010 Jun 24
1
Scheduling a nightly build - config options
Hello,
I downloaded the latest cruisecontrol.rb from github and tried configuring a schedule for building every 24 hours.
Below is my project specific cruise_config.rb. What''s happening is, cruisecontrol.rb is not honoring the polling_interval of 1.day and it keeps building continuously (true to it''s nautre of continuous buids), which I assume it''s using the default
2008 Mar 31
0
[CruiseControl] mongrel-trunk-mingw32 build 997.1 failed
The build failed.
Note: if you set Configuration.dashboard_url in config/site_config.rb, you''d see a link to the build page here.
CHANGES
-------
Build was manually requested
BUILD LOG
---------
D:/Users/Luis/.cruise/projects/mongrel-trunk-mingw32/work Luis$ ruby -e "require ''rubygems'' rescue nil; require ''rake''; load
2006 Mar 14
1
setMethod confusion
Hello I've checked through previous postings but don't see a fully
equivalent problem-just a few hints.
I have been trying to set a new method for the existing function "table"
or "as.data.frame.table" for my class "tfSites".
Taking out all the useful code and just returning the input class I get
the error
setMethod("table",
2019 Nov 21
3
Issue with "ExecStartPost" attribute in systemd daemon faile
Hello,
I'm trying to configure a daemon (I'm doing tests with "crond" daemon) to send me an email after daemon restart. My "crond.service" file is:
# /etc/systemd/system/crond.service
[Unit]
Description=Command Scheduler
After=auditd.service systemd-user-sessions.service time-sync.target
#OnFailure=crond-notify-email@%i.service
[Service]
2003 Oct 20
1
v2.5.6 on AIX and large files
Abstract: Looking for technical assistance with rsync version 2.5.6
protocol 26 on AIX.
Trying to use rsync (version 2.5.6) to sync two AIX-based systems the other
day, and a couple of the filesystems (7 out of 18 in total) gave the
following error message:
rsync: writefd_unbuffered failed to write 32768 bytes: phase
"unknown": Broken pipe
rsync error: error in rsync
2003 Oct 26
0
rsync Digest, Vol 10, Issue 14
jw schultz wrote:
On Mon, Oct 20, 2003 at 12:11:59PM +0100, Robert Cross wrote:
>
> Abstract: Looking for technical assistance with rsync version 2.5.6
> protocol 26 on AIX.
>
> Trying to use rsync (version 2.5.6) to sync two AIX-based systems the
other
> day, and a couple of the filesystems (7 out of 18 in total) gave the
> following error message:
>
> rsync:
2019 Nov 21
0
Issue with "ExecStartPost" attribute in systemd daemon faile
Gesti? Servidors wrote:
>
> Hello,
>
> I'm trying to configure a daemon (I'm doing tests with "crond" daemon) to send me an email after daemon restart. My "crond.service" file is:
> # /etc/systemd/system/crond.service
> [Unit]
> Description=Command Scheduler
> After=auditd.service systemd-user-sessions.service time-sync.target
>
2019 Nov 22
0
Issue with "ExecStartPost" attribute in systemd daemon fail
Hi,
it seems there is no difference in "systemctl status crond"
:(
El 22/11/2019 a las 13:00, centos-request at centos.org<mailto:centos-request at centos.org> escribi?:
Message: 3
Date: Thu, 21 Nov 2019 14:41:25 +0100
From: Leon Fauster <leonfauster at googlemail.com><mailto:leonfauster at googlemail.com>
To: centos at centos.org<mailto:centos at centos.org>
2008 Aug 21
1
replacing missing values in a dataframe with reference values.
Any thoughts on the following I'd be most grateful - I'm sure there is
an easy and quick way to do this but I'm having a mental block this
evening. Essentially, I'm trying to replace missing data in my dataset
with reference values based on age and sex.
So an example dataset is
set.seed(1)
X = data.frame(age=rnorm(10, 50, 10), sex=rbinom(10, 1, 0.5),
A=rnorm(10), B=rnorm(10))
2007 Feb 06
1
heatmap from xyz data
Hi,
I've got some data in a data frame arranged like this:
x y z othervariables ....
0.1 0.2 1.7 0.01 ....
0.2 0.2 1.3 0.23 ....
0.2 0.3 1.1 0.43 ....
etc
I'd like to plot a heatmap of this data, with x and y as the (x,y) co-
ords and z defining the colour at each point.
I'm having difficulty finding the correct functions to use. Can
anyone make any recommendations?
It seems
2015 Jan 22
0
a dedicated audio encoder
On 01/22/2015 12:43 PM, Maarten S wrote:
> Hi,
>
> In our design of Icecast2, our multiple sources will stream their high
> quality audio via a dedicated audio encoder (not a computer):
> Live audio > L+R microphone > pre amplifier > audio encoder > Icecast2 VPS
>
> So far I have a shortlist of 4 possible brands of audio encoders:
> Sonifex PS-SEND, Barix
2015 Jan 26
0
a dedicated audio encoder
Hi Thomas,
As per your question "Out of curiosity do any of those support anything else than MP3?" - - > answer is yes.
See attached link an overview of 6 hardware audio encoders (Link to pmg file via WeTransfer http://we.tl/w0H6HJsxLd ).
All offer various output formats, not all matching ICECAST input requirements. Not all offer an authentication on mount level. Price
2019 Nov 22
1
Issue with "ExecStartPost" attribute in systemd daemon faile
Hellos,
Yes, I did some tests with "OnFailure" attribute, but the result was the same: system didn't sent any mail.
Daemon and script files were:
* crond.service:
* [Unit]
Description=Command Scheduler
After=auditd.service systemd-user-sessions.service time-sync.target
OnFailure=crond-notify-email.service
[Service]
EnvironmentFile=/etc/sysconfig/crond
2005 Jul 25
5
passing formula arguments cv.glm
I am trying to write a wrapper for the last example in help(cv.glm) that
deals with leave-one-out-cross-validation (LOOCV) for a logistic model.
This wrapper will be used as part of a bigger program.
Here is my wrapper funtion :
logistic.LOOCV.err <- function( formu=NULL, data=NULL ){
cost.fn <- function(cl, pred) mean( abs(cl-pred) > 0.5 )
glmfit <- glm(
2006 Mar 15
1
setMethod confusion -best reference for S4 programming
Thanks I think you have both answered my question (reckon Ill go S3 on
that). As an adjunct to this do you know what might be the best
reference to the S4 methods current implementation.
I have ordered the Chambers book "Programming with Data", and I have a
short tutorial-- "S4 Classes in 15 pages, more or less".
Have I missed any other useful resources?
Stephen Henderson
2016 Nov 11
0
Maildir filename has wrong S value - possible culprit
Hi,
I'm new to dovecot but as I see in mailinglist archive this issue is old
and I didn't find this in archive.
One of cuplrits (I believe not the only possible) is spamassassin. It's
added headers make exactly the difference between S value and filesize.
Probably it's in the way emails are processed in "manufactory" of
Qmail+Vpopmail+Spamassassin but now I'm not
2020 Sep 29
0
No Samba NT DOMAIN Name found exitting now...
Seems to relate to kerberos. I cannot "kinit administrator".
Returns "kinit cannot contact KDC for realm 'subdom.example.com' while
getting initial credentials."
"samba-info.sh" script returns 'NT_STATUS_CONNECTION_REFUSED' and that
'ERROR: invalid ip address for dc1.subdom.example.com'
(Sorry on my laptop. Difficult to copy & paste
2013 Feb 25
1
How to get write checkin for xen.git tree?
Hey,
There are some patches I''ve and a bunch of other work that I forsee coming that
will mean more patches. I was wondering what the process is of getting
checkin access for the Xen tree?
P.S.
''konradwilk'' is the account name.
2005 Mar 29
0
Checkin 1.37 of src/lib-storage/mail-storage.c
Checkin 1.37 of src/lib-storage/mail-storage.c added a parameter to
mailbox_open() but this broke building src/deliver/deliver.c as revision
1.2 doesn't use the new parameter.
It looks like save_mail() of src/deliver/deliver.c calls mailbox_open()
and it looks like it might work fine if it were to use a (struct istream
*)0 as the third parameter (instead of the flags) -- but I don't use
2011 May 11
1
RCMD check fails on "checkin installed package size"
Hi,
When I run RCMD check on my package, I receive the following error:
C:\R-packages\AnnotationFuncs>RCMD check --no-vignettes AnnotationFuncs
* using log directory 'C:/R-packages/AnnotationFuncs/AnnotationFuncs.Rcheck'
* using R version 2.13.0 (2011-04-13)
* using platform: i386-pc-mingw32 (32-bit)
* using session charset: ISO8859-1
* using option '--no-vignettes'
* checking