search for: nlocale

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

Did you mean: locale
2004 Mar 25
1
mlocal/mtrace inside a loop
Hello I need some help in figuring Bravington’s debugger out. Ok I have 2 functions, fun1 and fun2 saved in a ASCII file say filename is funs. Fun1 has a loop which calls fun2, fun2 has a loop which fails and I need to find out the value of the variables of the fun2 and fun1 loops at the specific iteration that fails. Both fun1 and fun2 loops will iterate thousands of times so line by line debug
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
Hello, In the past I have used intensively the mtrace function from the debug package, but now with my actual version of R(2.8.1) , it is impossible to use it anymore. I've updated all my packages, and I don't understand how solve this problem... Here is an example code : > foo<-function(){cat("Test Function")} > mtrace(foo) > foo() # A tcl/tk windows open
2015 Jun 08
0
Cannot join Ubuntu12.04 Samba 4.1.17 to domain
Thanks all for helping with this and for script Still no luck though. I've modified scripts as they had some bugs, my output and modified version at the end. As I mentioned, I don't have any issues with joining samba 4.1 or 4.2 in the lab, only on that site. >> if so, try the following. >> in resolv.conf, add >> search mynat.myco.bcu myco.bcu I haven't tried
2015 Jun 08
5
Cannot join Ubuntu12.04 Samba 4.1.17 to domain
Hai, After reading all below i can only conclude this must be firewalling, as Rowland is saying also. check if all of these ports are acceccable for the server your trying to join. tcp 0 0 192.168.X.1:1024 0.0.0.0:* LISTEN 2146/samba tcp 0 0 192.168.X.1:135 0.0.0.0:* LISTEN 2146/samba tcp 0 0 192.168.X.1:139
2015 Jun 08
0
Cannot join Ubuntu12.04 Samba 4.1.17 to domain
On 08/06/15 13:08, L.P.H. van Belle wrote: > Hai, > > After reading all below i can only conclude this must be firewalling, as Rowland is saying also. > > check if all of these ports are acceccable for the server your trying to join. > > tcp 0 0 192.168.X.1:1024 0.0.0.0:* LISTEN 2146/samba > tcp 0 0 192.168.X.1:135 0.0.0.0:*
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)