similar to: What exactly does "notice: Finished catalog run in XX seconds" mean?

Displaying 20 results from an estimated 4000 matches similar to: "What exactly does "notice: Finished catalog run in XX seconds" mean?"

2013 Jan 03
2
Configuration is not applied notice: Finished catalog run in 0.01 seconds
Hi guys, I am fairly new to puppet and I am having a problem with one of the clients. I recently installed a new server that should get config from puppet master. All similar servers I recently installed didn''t have any problem. I installed puppet agent on the server and sent a sign request. SSL cert is signed but when I run puppetd manually I get the following: info: Retrieving
2005 Aug 29
4
ttda on R 2.1.1: error
Hello, I'm trying to use the package ttda, wich is involved in text analysis, for my own data about answers in a company survey. I've installed it, as well as ispell, but when trying to use an example: > zz <- file("stupid.txt", "w") # build a data file > cat("{comment - stupid data file} \n" , file = zz) > cat("<uci=1>
2012 Sep 09
8
bsnmpd always died on HDD detach
I am running bsnmpd with basic snmpd.config (only community and location changed). When there is a problem with HDD and disk disapeared from ATA channel (eg.: disc physically removed) the bsnmpd always dumps core: kernel: pid 1188 (bsnmpd), uid 0: exited on signal 11 (core dumped) I see this for a long rime on all releases of 7.x and 8.x branches (i386 and amd64). I did not tested 9.x. Is
2012 Jan 03
3
An R interface to Model Building
Hello all, To anyone who is interested, I'm trying to learn a bit more about developing applications in R with user interfaces. I've been playing around with gWidgets to develop a model building interface. I'd appreciate any comments, suggestions, or guidance on how to better structure my R code and organize the programming task. In addition, any suggestions for features and
2006 Feb 08
0
Zap Auto disconnect after xx seconds of silence
I've got lines coming in from a legacy system (into FXO ports) which does not give any disconnect notification. Folks familiar with the system say that I can buy or build a device which will listen for so many seconds of dead air and then automaticly send a disconnect signal to free up any hung channels. This seems like something that could be done in software with Asterisk? Right now
2007 May 21
1
MusicOnHold() stops after exactly 60 seconds
Hi, folks: Is there any reason why MusicOnHold() would die after 60 seconds? That looks suspiciously like a default timeout. How can I make it indefinite? -Stephen-
2012 Mar 26
1
What does "package 'RDCOMClient' is not installed for 'arch=x64' " exactly mean?
Hi, I'm trying to use the excel.link package to write data to excel spreadsheets. I've installed the RDCOMClient package as required but get the error: package 'RDCOMClient' is not installed for 'arch=x64' I'm on Rx64 2.13.0. I assume it means the RDCOMClient package does not work on the x64 version. I've tried to see if there does a x64 RDCOMClient package
2009 Oct 10
1
What exactly do you mean by archiving?
I mean every single email sent and recieved is kept for a period of time (3 -5 years) separate from users mail, and emails cant be deleted. Ideally emails would have compression, mailboxes need to be searchable easily, and some mechanism whereby attachments sent to multiple people only get saved once, and emails sent to multiple people only get saved once. I could do something with
2011 Oct 11
1
controling text in facets (ggplot2)
Hi R-helpers! Here is my problem: I have a graph with 3 different facets where there are 3 different regression line. My goal is to mention separately in each facet each equation that describes my lines. So far, I managed to add a line and the same equation to all my facets but that's not unfortunately what I want. Is there a way to do that? Any suggestion would be gladly welcome! Thanks
2011 Oct 17
1
What does \Sexpr[results=rd]{} exactly mean in Rd?
Hi, I have spent a few hours on the R-exts manual and the documentation of parse_Rd() (as well as the PDF document in the references), but I still have not figured out what results=rd means. I thought I could use an R code fragment to create an Rd fragment dynamically. Here is an example, in which I was expected the output to be a describe list <DL> in HTML, but it turns out not to be true.
2013 Oct 24
0
TR: problem with ecdf : "missing C_R_approxfun" message
Hi again, this is a follow-up of my previous post : I've noticed that > attr(first.list[[1]]$size.ecdf,"call") gives ecdf(test.moms[, "m.pxs"]) and that there is no "test.moms" field in my records (a local variable named test.moms was used inside a function, but it was stored under another name in the list, outside the function) May this be the answer (and
2010 Oct 06
3
Empty data frame does not maintain column type
Does anyone know why a data frame created with empty character columns converts them to integer columns? > df<-data.frame(a=character(0),b=character(0)) > df<-rbind(df,c("a","a")) > typeof(df[1,1]) [1] "integer" AsIs doesn't help: > df<-data.frame(a=I(character(0)),b=I(character(0))) > df<-rbind(df,I(c("a","a")))
2012 Jan 04
1
function in R for my exercise
Hi R helpers! I have a question. I'm trying to create a function for an exercise. Here are the arguments I should include: x and y are numeric z is a name ("plus","minus","multiply","divide") and swap is logical. Here is what the function should do: When z="plus", then x+y is performed and so on for the other z names. It should give a NA
2006 Feb 27
0
update a second div with Ajax.Updater, when Ajax.InPlaceEditor has just finished to modify another first div
Hi, I''m a newbees in javascripting with scriptaculous, but I wonder someone to help me on that simple (not for me of course !) case : I''d like to update a second div with Ajax.Updater, when Ajax.InPlaceEditor has just finished to modify another first div ? How could I do this in this kind of code : <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2008 Oct 04
5
Vitelity Asterisk configuration help
I have a Asterisk server setup and I am able to connect to the server using a soft client 'x-lite' and call and leave a message on my second extension 102. I have setup a Vitelity account and add what I believe to be the correct information to my sip.conf and extension.conf. I would like to setup incoming and outgoing calls with voicemail support. I've searched all over but many of the
2017 Nov 19
0
What exactly is the meaning of "Subnet" parameter in tinc/$NETNAME/hosts/$SOMEHOSTNAME?
Hi, Subnet there means as , for this subnet you can reach via me (for ip route command). For the host file there, means i am responsible for this area. Any packet going to this area will pass through me. Your vpn can have multiple subnet/area. You can use hostname as the gateway but must make the dns resolv correct, and it will need more config. You need to understand about subnetting to
2006 Jan 24
3
what this line means exactly? (@@active_connections ||= {})
Hi, I have problem to understand this line does exactly? this is from the class ConnectionSpecficication, methode "active_connections" def self.active_connections #:nodoc: if allow_concurrency Thread.current[''active_connections''] ||= {} else @@active_connections ||= {} end end what the line "@@active_connections ||= {}" means exactly? as I
2000 Feb 22
1
Second Notice...
This is the second posting of a TNG compile problem on AIX 4.3.2 - this time with alpha0.5 this has been there for some time...can anybody explain why - it's just an enumeration constant problem. Compiling rpc_client/cli_login.c with libtool "include/sam.h", line 31.41: 1506-243 (S) Value of enumeration constant must be in range of signed
2005 Oct 12
0
Notice message meaning for C7960?
Asterisk cvs-head compiled 2005-10-07 11: Oct 12 18:35:12 NOTICE[21740]: chan_sip.c:10685 handle_request_register: Registr ation from 'sip:301495906@204.212.194.101' failed for '208.5.218.28' - Not a lo cal SIP domain The sip phone is a Cisco 7960 with one line defined, and registration with * is occuring just fine. Calls to/from the phone are fine. The phone is on a distant
2006 Feb 25
4
DO NOT REPLY [Bug 3554] New: Second copy of same rsync daemon should notice pid file and quit
https://bugzilla.samba.org/show_bug.cgi?id=3554 Summary: Second copy of same rsync daemon should notice pid file and quit Product: rsync Version: 2.6.7 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P3 Component: core AssignedTo: wayned@samba.org