search for: nlocal

Displaying 8 results from an estimated 8 matches for "nlocal".

Did you mean: local
2004 Mar 25
1
mlocal/mtrace inside a loop
...uot;funs") > library(debug) > debug(fun1) data <- fun1(some.arguments") in the file funs Was .... fun1 <- function(arg1){ some looping code with calls to fun2 } fun2 <- function(arg2) {some more looping code} Is now....to confirm to what I read Fun1 <- function(arg1, nlocal=sys.parent()) mlocal(some more looping code) I think I am implementing this package wrong and need some help. Thanks
2007 Nov 12
2
Bug#447153: /usr/bin/scp: Fails to notice write errors
...[pid 25301] write(1, "\0", 1) = 1 [pid 25301] fstat64(3, <unfinished ...> [pid 25301] <... fstat64 resumed> {st_mode=S_IFREG|0744, st_size=141, ...}) = 0 [pid 25301] read(0, <unfinished ...> [pid 25301] <... read resumed> "import gtk\nimport locale\nlocale."..., 141) = 141 [pid 25301] write(3, "import gtk\nimport locale\nlocale."..., 141) = 141 [pid 25301] ftruncate64(3, 141) = 0 [pid 25301] close(3) = 0 [pid 25301] read(0, "\0", 1) = 1 [pid 25301] write(1, "\0", 1) =...
2015 Jun 04
3
Cannot join Ubuntu12.04 Samba 4.1.17 to domain
Hi! ivenhov skrev den 2015-06-04 10:10: > I'm trying > > sudo net ads join -S dc1001.mynat.myco.bcu -U testuser -d10 > > and also > > sudo net ads join createcomputer="My/Ou/For/Servers" -S > dc1001.mynat.myco.bcu -U testuser -d10 > > > It works for me every time in lab on real hw (same spec) and on virtualbox. > It's just this particular site
2009 Apr 13
0
debug/mtrace problem
......) : l'argument "l" est manquant, avec aucune valeur par d?faut #argument "l" is missing without default value... I've tried to look in with traceback(), but it does not help me. > traceback() 21: FUN("l"[[1L]], ...) 20: lapply(savers, get, envir = nlocal.env) 19: mlocal(index(nchar(names(line.list)) > 0)[l] - 1) 18: screen.line(lno) 17: assign("answer", { Here is some technical informations : > Sys.info() sysname release version nodename "Windows" "Vista" "build 6001, Service Pa...
2015 Jun 08
0
Cannot join Ubuntu12.04 Samba 4.1.17 to domain
...------------" echo -e "\nContent of /etc/hostname" echo -e "------------------------" cat /etc/hostname echo -e "------------------------------------------------" SETDNSDOMAIN=`hostname -d` SETHOSTNAME=`hostname -f` SETSHORTHOSTNAME=`hostname -s` echo -e "\nLocal names" echo -e "------------------------" echo "domain: " $SETDNSDOMAIN echo "host long:" $SETHOSTNAME echo "host short:" $SETSHORTHOSTNAME echo -e "------------------------------------------------" echo "test 1" if [ -z "`host...
2015 Jun 08
5
Cannot join Ubuntu12.04 Samba 4.1.17 to domain
...o -e "------------------------" >> cat /etc/hostname >> echo -e "------------------------------------------------" >> >> SETDNSDOMAIN=`hostname -d` >> SETHOSTNAME=`hostname -f` >> SETSHORTHOSTNAME=`hostname -s` >> >> echo -e "\nLocal names" >> echo -e "------------------------" >> echo "domain: " $SETDNSDOMAIN >> echo "host long:" $SETHOSTNAME >> echo "host short:" $SETSHORTHOSTNAME >> echo -e "------------------------------------------------"...
2015 Jun 08
0
Cannot join Ubuntu12.04 Samba 4.1.17 to domain
...---" >>> cat /etc/hostname >>> echo -e "------------------------------------------------" >>> >>> SETDNSDOMAIN=`hostname -d` >>> SETHOSTNAME=`hostname -f` >>> SETSHORTHOSTNAME=`hostname -s` >>> >>> echo -e "\nLocal names" >>> echo -e "------------------------" >>> echo "domain: " $SETDNSDOMAIN >>> echo "host long:" $SETHOSTNAME >>> echo "host short:" $SETSHORTHOSTNAME >>> echo -e "-----------------------------------...
2010 Feb 23
3
Best style to organize code, namespaces
Hi all, I'm hoping someone could tell me what best practices are as far as keeping programs organized in R. In most languages, I like to keep things organized by writing small functions. So, suppose I want to write a function that would require helper functions or would just be too big to write in one piece. Below are three ways to do this: ################### Style 1 (C-style)