Displaying 20 results from an estimated 55 matches for "mooney".
Did you mean:
money
2012 Sep 28
2
nested modules and autoloading
...ot find class <whatever>" is if I have a typo in the
class name within the .pp file, but I''ve reviewed the classes involved
here and don''t see any problems.
Any thoughts on whether it''s possible to load the "top level" of a nested
class?
Tim
--
Tim Mooney Tim.Mooney@ndsu.edu
Enterprise Computing & Infrastructure 701-231-1076 (Voice)
Room 242-J6, IACC Building 701-231-8541 (Fax)
North Dakota State University, Fargo, ND 58105-5164
--
You received this messag...
2012 Oct 12
2
One client out of 150 doesn't apply config changes
Hello everyone,
I have one puppet client that suddenly stopped applying configuration
changes during the. I''m running with -v to see errors - no errors are shown
and the puppet run completes with:
info: Caching catalog for <system name>
info: Applying configuration version ''1349982313''
notice: Finished catalog run in 49.28 seconds
However, the changes required
2010 Sep 14
2
[PATCH 1/4] x86: remove cast from void*
Unnecessary cast from void* in assignment.
Signed-off-by: matt mooney <mfm at muteddisk.com>
---
arch/x86/xen/mmu.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
index 42086ac..7436283 100644
--- a/arch/x86/xen/mmu.c
+++ b/arch/x86/xen/mmu.c
@@ -737,7 +737,7 @@ pgd_t *xen_get_user_pgd(pgd_t *p...
2010 Sep 14
2
[PATCH 1/4] x86: remove cast from void*
Unnecessary cast from void* in assignment.
Signed-off-by: matt mooney <mfm at muteddisk.com>
---
arch/x86/xen/mmu.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
index 42086ac..7436283 100644
--- a/arch/x86/xen/mmu.c
+++ b/arch/x86/xen/mmu.c
@@ -737,7 +737,7 @@ pgd_t *xen_get_user_pgd(pgd_t *p...
2010 Sep 14
2
[PATCH 1/4] x86: remove cast from void*
Unnecessary cast from void* in assignment.
Signed-off-by: matt mooney <mfm at muteddisk.com>
---
arch/x86/xen/mmu.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/xen/mmu.c b/arch/x86/xen/mmu.c
index 42086ac..7436283 100644
--- a/arch/x86/xen/mmu.c
+++ b/arch/x86/xen/mmu.c
@@ -737,7 +737,7 @@ pgd_t *xen_get_user_pgd(pgd_t *p...
2012 Nov 01
7
Install RPM package via puppet
I am trying to get a package (iftop) installed on a test node using puppet
but I can''t get it to install. This seems like it should be simple, but I
can''t figure out what I am missing. Have done a lot of searching for
similar problems and the answers I found seem to be vague in the details
and explanation.
I have the package added to an internal yum repo. OS is Centos 5.4.
2002 Feb 02
2
disabling the authentication agent?
...o host2 [] port 22.
debug1: temporarily_use_uid: 1000/1000 (e=0)
debug1: restore_uid
debug1: temporarily_use_uid: 1000/1000 (e=0)
debug1: restore_uid
debug1: Connection established.
debug1: read PEM private key done: type DSA
debug1: read PEM private key done: type RSA
debug1: identity file /home/rjmooney/.ssh/identity type -1
debug1: identity file /home/rjmooney/.ssh/id_rsa type -1
debug1: identity file /home/rjmooney/.ssh/id_dsa type -1
debug1: Remote protocol version 2.0, remote software version OpenSSH_3.0.2
debug1: match: OpenSSH_3.0.2 pat OpenSSH*
Enabling compatibility mode for protocol 2.0
d...
2011 Mar 18
4
Performance Difference? Windows vs. Linux
I'm not trying to start a Windows vs. Linux debate, but I've been
using R on a Windows machine for a while, and was recently wondering
if R's performance would be faster on a Linux machine. And similarly,
if any incremental increase in processing speed would be worth the
time it would take me to migrate my entire system to Linux (including
a database that I access via an R package.)
2012 Oct 10
3
Numeric "Label" of Factor value?
Sorry, I'm sure I'm not using the appropriate vocab here, which is
undoubtedly why I can't seem to find a fix to this (hopefully very
easy) problem.
Suppose you have a factor
abc <- factor(c(2,2,3,4,7,7))
And you want to know what the number in the nth spot in that would be
abc[1]
[1] 2
Levels: 2 3 4 7
shows the correct label of the first element - but if I want to pull
out the
2012 Aug 20
4
puppet-lint and 80 characters line limit?
Hi.
I''m getting lots of warning like this one from puppet-lint:
WARNING: line 67 has more than 80 characters
Now, I don''t like warnings, so any idea how should I rewrite this line
for example, to void the warning?
package {''rpmforge-release'':
ensure => ''0.5.2-2.el6.rf'',
provider => ''rpm'',
source =>
2009 Feb 17
6
Percentiles/Quantiles with Weighting
Hi All,
I am looking at applications of percentiles to time sequenced data. I had
just been using the quantile function to get percentiles over various
periods, but am more interested in if there is an accepted (and/or
R-implemented) method to apply weighting to the data so as to weigh recent
data more heavily.
I wrote the following function, but it seems quite inefficient, and not
really very
2008 Nov 14
2
Embed SQL queries in R?
Hi All,
Most of the work I am doing with R uses data which I am pulling from various
SQL queries.
To streamline the process even more, I was wondering if it was possible to
embed SQL queries in R - that way avoiding the need to first get the data,
then move to R to process it.
I haven't found anything out there on this yet, so if you know of a good
resource that includes this topic, I would
2009 Aug 24
2
Multiply List by a Numeric
I apologize for what seems like it should be a straighforward query.
I am trying to multiply a list by a numeric and thought there would be a
straightforward way to do this, but the best solution I found so far has a
for loop.
Everything else I try seems to throw an error "non-numeric argument to
binary operator"
Consider the example:
a <- 1
b <- 1:2
c <- 1:3
abc <-
2001 Aug 21
0
[patch] 64 bit types in bitypes.h
...s the problem.
Also, unless there's a good reason I'm not aware of, the newer inttypes.h
header file should also be checked, in the event that the typedefs aren't
available in either of the other header files (inttypes.h should probably
even be preferred to sys/bitypes.h).
Tim
--
Tim Mooney mooney at dogbert.cc.ndsu.NoDak.edu
Information Technology Services (701) 231-1076 (Voice)
Room 242-J6, IACC Building (701) 231-8541 (Fax)
North Dakota State University, Fargo, ND 58105-5164
diff -ur openssh-2.9p2.orig/configure.in openssh-2.9p2/c...
2008 Dec 09
2
Applying min to numeric vectors
I was surprised this morning, that it seems as though the min() function
does not work as *I* anticipated when given vector arguments.
For example:
a <- 1:10
b <- c(rep(1, times=5), rep(10, times=5))
Result:
> min(a,b)
1
What I actually wanted was a term by term minimum, i.e.:
ifelse(a<=b, a, b)
1 1 1 1 1 6 7 8 9 10
Am I losing much in terms of computation power if I use
2012 Apr 26
2
Optional values from Hiera (no default value)
Hello Puppet List,
I''m writing a module that should take an optional value and I want to
get it (amongst other places) from Hiera.
$repository = $::java_repository ? {
undef => hiera(''java_repository'')
default => $::java_repository,
}
But this fails because Hiera raises an error if it can''t find a value.
I later want to do something like this:
2012 Oct 24
13
Puppet & Oracle Database config management
Afternoon all.
I''ve been reading around on Puppet and Oracle, and have come up with a few
links that suggest how to get Oracle installed and base configured, which
has got me started in the right direction on that.
My next challenge is maintaining Oracle database specific configuration on
the relevant hosts. This contains various elements, such as /etc/oratab,
/etc/oranfstab (as
2008 Dec 18
2
formatting print statements with multiple lines
When executing the command:
print(cat(paste("Input criteria does not meet specifications. Check
input against the following requirements:
a >= 0
b <= 0
c >= 0 ", sep=""), ""))
I get:
Input criteria does not meet specifications. Check input against the
following requirements:
a >= 0
b <=
2011 Aug 05
0
augeas modify pam.d argument by relative position
...t fails to match.
Anyone have an idea how I can rewrite things so that the match isn''t
dependent on the exact current order of arguments, and instead matches
relative to the position of a previous argument (uid) or pair of arguments
(uid and >=)?
Any thoughts appreciated,
Tim
--
Tim Mooney Tim.Mooney@ndsu.edu
Enterprise Computing & Infrastructure 701-231-1076 (Voice)
Room 242-J6, IACC Building 701-231-8541 (Fax)
North Dakota State University, Fargo, ND 58105-5164
--
You received this messag...
2009 Jan 16
2
Missing file to run Rcmd batch on Windows
Hi,
I'm trying to run an R script using Rcmd Batch from the command line on a
Windows Vista machine. I am using R version 2.8.1.
I installed the batch files 4-3 found at
http://cran.r-project.org/contrib/extra/batchfiles/ and added them to my
path.
I also had to install the latest version of perl (it's Strawberry perl if
that makes a difference) and have added this to my path.
Now when