Displaying 20 results from an estimated 50 matches for "testms".
Did you mean:
test's
2009 May 22
2
Step by step: Making an R package with Fortran 95
To all. I need your help. The big question is: How do I make an R library
with Fortran 95 files? You may assume that I am a pretty decent programmer
in both R and Fortran. I lay out a scenario and need your help!
I know how to make an ordinary R package and have dabbled with R + Fortran
95 *.dll linking. I do not have a great handle on the whole Makevars file
and whatever else I might need
2006 May 27
1
Trouble passing list or non-list to function using ...
Hello,
Simply put, I'm trying to call a function "testme" with value "age=NA". I wish to use "dotlist<-list(...)" inside the function and have dotlist become:
$age
[1] NA
I'm modifying existing code and need to minimize changing that code so it's easiest to conform
how I call the existing function.
My sample code fragment, results, and R.version
2006 May 08
2
On the speed of apply and alternatives?
Dear all,
I have to handle a large matrix (1000 x 10001) where in the
last column i have a value that all the preceding values in the same row
has to be compared to.
I have made the following code :
# generate a (1000 x 10001) matrix, testm
# generate statistics matrix 1000 x 4:
qnt <- c(0.01, 0.05)
cmp_fun <- function(x)
{
LAST <- length(x)
smpls <- x[1:(LAST-1)]
real
2007 Aug 14
2
OpenSSH public key problem with Solaris 10 and LDAP users?
Hello.
I've got a problem logging in to a Sparc Solaris 10 machine with
public key authentication. I searched, and found a similar problem
report at <http://thread.gmane.org/gmane.network.openssh.devel/12694>.
For that guy, the problem had to do with LDAP.
My user accounts are also stored in LDAP, an OpenLDAP server, to be
exact. That server runs on the same machine as the machine
2012 Apr 17
0
Problems with samba as PDC
Greeting-
I have a mixed network of ms-windows, macintosh and freebsd systems.
I am setting up a FreeBSD 9.0 system as a PDC using samba.
I can from a FreeBSD box attach to the SMB server as a user that is defined
on the Samba Server.
[wynkoop at dt0 ~]$ smbclient -L hp1
Enter wynkoop's password:
Domain=[HARAPARTNERS] OS=[Unix] Server=[Samba 3.6.4]
Sharename Type
2009 Jul 30
1
stepwise variable selection method wanted
Hi List,
I am looking for a variable selection procedure with a forward-backward selection method.
Firstly, it is meant to work with the cophenetic
correlation coefficient (CPCC) and intended to find the variable combination with the
highest cophenetic correlation. Secondly, it is aimed at Gower metric with
wards method (though this could be easily extended) aimed at categorical data.
What I
2007 Jan 15
2
[LLVMdev] llc c backend can produce code that doesn't compile on gcc 4.x
Hello,
I would like to ask the llvm developers to have a look at http://
llvm.org/bugs/show_bug.cgi?id=918 .
This bug has been reported 4 month ago but is none the less a
somewhat serious one.
Below I have pasted the test case and output of the issue running on
my ppc machine.
thank you
Eric
pb:~ eric$ cat testme.ll;llvm-as -f testme.ll;llc -march=c -f
testme.bc;gcc -c testme.cbe.c
2009 May 05
1
Users
Hi All,
I am confused about users. IIRC, ftp users are just ordinary users on
the system (/etc/passwd)
Is there an add user wizard from the command-line?
I dont quite get all of the steps to add a user, dont let login except
FTP, etc, etc
-Jason
2016 Apr 26
2
How to print the frequency table (produced by the command "table" to Excel
Hi,
How could we print the frequency table (produced by "table") to an Excel
file?
Is there an easy way to do so? Thanks,
Miao
> df <- data.frame(x = 1:3, y = 3:1, z = letters[1:3])
> table(df[,c("y","z")])
z
y a b c
1 0 0 1
2 0 1 0
3 1 0 0
> test<-table(df[,c("y","z")])
> as.data.frame(test)
y z Freq
1 1 a
2007 Mar 22
1
tilde in mbox:, when used in non-system user db
Originally I've thought that this is related to INBOX field,
but it turned out it happens only when you specify mbox.
Consider following passwd-file:
testms::10000:10000:imap,,,:/home/vmail/ppgk.com.pl/testms/./::userdb_mail=mbox:~/Mail:INBOX=/home/vmail/ppgk.com.pl/%u/inbox
or following line from userdb static:
args = uid=10000 gid=10000 home=/home/vmail/ppgk.com.pl/%u/./ mail=mbox:~/Mail:INBOX=/home/vmail/ppgk.com.pl/%u/inbox
In both cases, in use...
2007 Mar 21
1
Double homedirs and tilde problems in case of chroot in passwd-file / static dbs.
Recently I've made the post about "double homedir" problem,
but I couldn't recreate it later. Here're the exact steps to
make it happen (configuration is at the bottom):
1) set configuration as below with passwd-files
2) clean testms dir (not necessary though)
3) reload dovecot (HUP is enough)
4) access the server with any client using testms user
(make sure no other user accesses server before you)
- on the first access, dovecot will create
/home/vmail/ppgk.com.pl/testms/Maildir under
/home/vmail/ppgk.com.pl/testms/...
2010 Jan 18
2
sendmail alias
Hi,
how are mails forwarded, if I do have the same alias pointing to two
different users like this (two entries, two lines):
bon.aqua: coke
bon.aqua: pepsi
Will coke and pepsi get the mail adressed to bon.aqua or will only the
first entry get the mail?
I know, that "bon.aqua: coke, pepsi" will forward the mails to coke and
pepsi,
Cheers,
G?tz
--
G?tz Reinicke
IT-Koordinator
2016 Apr 26
0
How to print the frequency table (produced by the command "table" to Excel
Hi jpm miao,
You can get CSV files that can be imported into Excel like this:
library(prettyR)
sink("excel_table1.csv")
delim.table(table(df[,c("y","z")]))
sink()
sink("excel_table2.csv")
delim.table(as.data.frame(table(df[,c("y","z")])),label="")
sink()
sink("excel_table3.csv")
2007 Apr 18
20
dependency and communication between defined classes
Hi,
i wanted to know how you handle case when classes or define need to
communicate between them. For exemple i got an ftpd define and a
apachevhost define. Both need to know the path where the vhost is set
and this path is defined by the ftpuser home''s directory. How can i ask
information from other define or other classes ? we allready seen that
tag are not reliable as they
2007 Aug 30
2
define-based exported virtual resources
Can you use exported virtual resources with custom definitions? As an
example, with the following definition:
define vr-tester() {
file {
"/tmp/vr-success.txt":
content => ''foobar'';
}
}
this code is working for me:
class testme {
@vr-tester { "foobar": ; }
Vr-tester <||>
}
but this is not:
class testme {
2007 Jan 06
2
Question about AGI and variable storage
Hi all,
I just finished writing the bulk of an AGI interface to FirebirdSQL
databases and I noticed that when assigning a variable through AGI (I
assume this also applies within the dialplan), you have to enclose it in
quotes if there are any space.
Does Asterisk strip off the quotes when storing the value?
Just curious.
Thanks,
--
Warm Regards,
Lee
2014 Sep 08
0
is pattern matching inside macro valid?
Can't we use pattern matching inside a macro?
Because when I am trying to do so call is terminating even for a very
simple dummy dialplan.
[demo3]
exten=>98,1,NoOp()
exten=>98,2,Macro(testme)
exten=>h,1,NoOp(terminating call);
[macro-testme]
exten=>s,1,Playback(Digits/2)
exten=>s,2,WaitExten(15)
exten=>s,3,NoOp()
exten=>_X,1,NoOp(${EXTEN})
exten=>_X,2,Goto(s,3)
2011 Jan 03
23
Managing cronjobs as a file in solaris with appendifnosuchline for specific servers
I want to manage cronjobs as a " file " in solaris through puppet and
not using the puppet cron resource.
I will be managing the file /var/spool/cron/crontabs/root.
I want the cron file to be same across all servers except some servers
will have additional cron entries.
How can I append to the file /var/spool/cron/crontabs/root , something
like appendifnosuchline in cfengine?
Can
2013 Jan 29
3
how to suppress the intercept in an lm()-like formula method?
I'm trying to write a formula method for canonical correlation analysis,
that could be called similarly to lm() for
a multivariate response:
cancor(cbind(y1,y2,y3) ~ x1+x2+x3+x4, data=, ...)
or perhaps more naturally,
cancor(cbind(y1,y2,y3) ~ cbind(x1,x2,x3,x4), data=, ...)
I've adapted the code from lm() to my case, but in this situation, it
doesn't make sense to
include an
2008 Apr 29
1
winbindd hangs up while retreiving usernames.
Hello.
I'm installing new FreeBSD 6.2-RELEASE, based on intel machine. Firewall
type is OPEN.
I have Windows Server 2000 with Active Directory on it, working in Native
mode.
I've installed samba-3.0.23c_2,1 from /usr/ports/net/samba3
prefix=/usr/local
without krb-1.5.1 being installed.
Added:
nmbd_enable="NO"
smbd_enable="NO"
winbindd_enable="YES"
to