search for: usenames

Displaying 20 results from an estimated 57 matches for "usenames".

Did you mean: usernames
2017 Aug 24
5
functions from 'base' package are not accessible
...ot;which" if I change which(names(somevar) == "somestring") with 0 I'll get Error in length(somevar) : could not find function "length" So it looks like base package is not loaded. Still if type 'which' in console I get function (x, arr.ind = FALSE, useNames = TRUE) { wh <- .Internal(which(x)) if (arr.ind && !is.null(d <- dim(x))) arrayInd(wh, d, dimnames(x), useNames = useNames) else wh } <bytecode: 0x0000000006c6e258> <environment: namespace:base> base (that contains which function) package is in...
2012 Nov 15
3
how to view source code of a function inside a package?
...unction inside a package. I know that methods() would do the trick, but what if the function is hidden? I have a problem displaying the hidden function. Say, for example the MCMC package. How do you view the code of that function? something like this: > which function (x, arr.ind = FALSE, useNames = TRUE) { wh <- .Internal(which(x)) if (arr.ind && !is.null(d <- dim(x))) arrayInd(wh, d, dimnames(x), useNames = useNames) else wh } <bytecode: 0x1021eef50> <environment: namespace:base> [[alternative HTML version deleted]]
2020 Oct 14
0
which() vs. just logical selection in df
...comic strip ) On Wed, Oct 14, 2020 at 3:23 PM 1/k^c <kchamberln at gmail.com> wrote: Is which() invoking c-level code by chance, making it slightly faster > on average? > You do not need to ask such questions. R is open source, so just look! > which function (x, arr.ind = FALSE, useNames = TRUE) { wh <- .Internal(which(x)) ## C code if (arr.ind && !is.null(d <- dim(x))) arrayInd(wh, d, dimnames(x), useNames = useNames) else wh } <bytecode: 0x7fcdba0b8e80> <environment: namespace:base> [[alternative HTML version deleted]]
2017 Aug 24
0
functions from 'base' package are not accessible
...hich(names(somevar) == "somestring") with 0 I'll get > Error in length(somevar) : > could not find function "length" > > So it looks like base package is not loaded. Still if type 'which' in > console I get > function (x, arr.ind = FALSE, useNames = TRUE) > { > wh <- .Internal(which(x)) > if (arr.ind && !is.null(d <- dim(x))) > arrayInd(wh, d, dimnames(x), useNames = useNames) > else wh > } > <bytecode: 0x0000000006c6e258> > <environment: namespace:base> > >...
2010 Nov 08
2
Use a different usename than the recipient address (that require a lookup)?
Hi there, I am integrating Postfix and DoveCot, both use LDAP to look up user/email address info. My question is this: can I create a user "jsmith" to get all emails with the recipient address: dovecotdemo at domain? Because of using LDAP, I need to do a lookup to know that the user "jsmith" is getting emails for "dovecotdemo at domain", NOT "dovecotdemo"
1998 Oct 08
0
'Trying usename <machinename>'
Connecting from WinNT to Samba 1.9.18p10 I have another question: When I have a drive map to my Unix homedir, which should be automatically reconnected during login, I get an error that my password is not correct. If I control the log file of Samba I see: 1998/10/08 17:37:43 changed root to / open_oplock_ipc: opening loopback UDP socket. bind succeeded on port 0 open_oplock ipc: pid = 33822,
2008 Nov 07
0
Sweave: How to load available colors from pkg 'color'
Hi: Is there a shorter way to color the abstract,sections subsections and page headings of a document. I am using the code below in my preamble to accomplish some of it: \ifx\pdfoutput\@undefined\usepackage[usenames,dvips]{color} \else\usepackage[usenames,dvipsnames]{color} % and fix pdf colour problems \IfFileExists{pdfcolmk.sty}{\usepackage{pdfcolmk}}{} \fi %\renewcommand{\MakeUppercase}[1]{\color{OliveGreen}\textsf{#1}} %\renewcommand{\abstractname}{\color{blue}Abstract} Also,'\usepackage[usenames]{co...
2008 Nov 08
0
Sweave:How to load available colors from pkg 'color'--(Resolved)
...ection of the document. http://www.sci.usq.edu.au/staff/robertsa/LaTeX/ltxfloats.html Felipe Is there a shorter way to color the abstract,sections subsections and page headings of a document. I am using the code below in my preamble to accomplish some of it: \ifx\pdfoutput\@undefined\usepackage[usenames,dvips]{color} \else\usepackage[usenames,dvipsnames]{color} % and fix pdf colour problems \IfFileExists{pdfcolmk.sty}{\usepackage{pdfcolmk}}{} \fi %\renewcommand{\MakeUppercase}[1]{\color{OliveGreen}\textsf{#1}} %\renewcommand{\abstractname}{\color{blue}Abstract} Also,'\usepackage[usenames]{col...
2018 Jun 29
2
is "map untrusted to domain" possible?
hi: at RHEL 7.4 we had used "map untrusted to domain = yes". so users can login with "username" instead of "sam-dom\username". after upgrade to RHEL 7.5, samba version upgrade from 4.6 to 4.7. now "map untrusted to domain = yes" or "map untrusted to domain = auto" are not working. can we still let user to use "usename" instead
2007 May 11
1
postgres erros on RHEL 4
Hi All, I set up posgresql on RedHat El4. Below are rpms I installed. [root at LinuxBox etc]# rpm -qa |grep postgres postgresql-libs-7.4.16-1.RHEL4.1 postgresql-devel-7.4.16-1.RHEL4.1 postgresql-7.4.16-1.RHEL4.1 postgresql-python-7.4.16-1.RHEL4.1 postgresql-server-7.4.16-1.RHEL4.1 Then, I did below commands to create a user and a database. [root at box root]# su postgres bash-3.1$ createuser
2002 Dec 09
2
PDC: Problems making the win2k client join domain
I am having problems making the client win2k machine join the domain . My Samba PDC is configured as follows : 1>added trust account to the smbpasswd file (account to the win2k machine name). 2>set the global admin parameter to "student" (student acnt exists on smb server) Client is configured as follows : 1>user 'student' has been created . Problem : When I change
2020 Oct 14
2
which() vs. just logical selection in df
Hi Dr. Snow, & R-helpers, Thank you for your reply! I hadn't heard of the {microbenchmark} package & was excited to try it! Thank you for the suggestion! I did check the reference source for which() beforehand, which included the statement to remove NAa, and I didn't have any missing values or NAs: sum(is.na(dat$gender2)) sum(is.na(dat$gender)) sum(is.na(dat$y)) [1] 0 [1] 0 [1]
2019 Jan 18
3
SSH SSO without keytab file
I actually spent the entire last day getting 'ad' backend to work. Adding 'idmap config SAMDOM : backend = ad' and related lines in the client's smb.conf results in `getent passwd` ... Use : getent passwd username Check if wbinfo -u works also. As tip, if you try these. id username getent passwd username wbinfo -u | grep username If all work and show your usename,
2005 Dec 14
6
mysql connection problems
Hi hi i have a problem trying to connect to the mysql database when I do a rake it says: Access denied for user: ''@localhost'' to database '''' My database.yml file is fine Any ideas why this is happening -- Posted via http://www.ruby-forum.com/.
2003 Oct 03
3
2 (Suse), one NT 4 server machine and 5 user databases???
I currently have a setup of 1 NT 4.0 PDC server and to SUSE boxes sharing via a samba share. I seem to have to make 5 different usename/password databases. 1 for NT, 2 for each SuSe box (One Linux and one Samba). Is there a way to have 1 or maybe two databases to update? I've read about LDAP on other connections but I'm a little confused as to what is the best approach. Oh
2003 Aug 14
2
FW: CIFS mount problem on Linux
> -----Original Message----- > From: Ramadurai, Sangeetha (MED) > Sent: Thursday, August 14, 2003 2:02 PM > To: 'samba@samba.org' > Cc: Ramadurai, Sangeetha (MED) > Subject: CIFS mount problem on Linux > > hi, > I have a SUN machine running samba server. The vxfs shares on this machine is shared thru samba server > SUN Machine -- SunOS 5.8
2009 Jun 19
5
Dail in modem
Hello I am required to do some thing like Dail in modem . User will have to call a modem just like we do in dail up connection ....now we need to handle that request and retrieve some parameters from that send a HTTp request to a web server and then after getting http response send user a feed back .. this is a requirement .. Is it possible ?? what is the way forward ?? please give me a
2008 Jul 27
2
Colors in Sweave
Hi list, I was using Sweave and was wondering if anyone has had any luck changing the font colors of the code chunks. For instance, in my .Rnw preample I tried including: === \usepackage[usenames]{colors} \definecolor{darkred}{rgb}{0.545,0,0} \definecolor{midnightblue}{rgb}{0.098,0.098,0.439} \DefineVerbatimEnvironment{Sinput}{Verbatim}{fontshape=sl,formatcom={\color{midnightblue}}} \DefineVerbatimEnvironment{Soutput}{Verbatim}{formatcom={\color{darkred}}} \DefineVerbatimEnvironment{Scode}{...
2017 Jun 10
1
windows 2003 can not login with samba 4.6.4
Hi, We have upgrade samba from 3.6.23-36 to 4.6.4, but we got "*Logon Failure Unknown user name or bad password*" error while trying to access samba form window 2003. And we use usename and password to login, not by the AD. We also test on windows2008 windows2008-R2 window7 windows10, it works. Thanks. Lifeng Ren
2005 Nov 19
2
Fwd: Autoloading R Commander
---------- Forwarded Message ---------- Subject: [R] Autoloading R Commander Date: Saturday November 19, 2005 10:35 am From: "Stephen P. Molnar, Ph.D." <s.molnar at sbcglobal.net> To: R <r-help at stat.math.ethz.ch> How do I go about autoloading R Commander when I start R? Thanks in advance. -- Stephen P. Molnar, Ph.D. Life is a fuzzy set Foundation for