search for: suprises

Displaying 20 results from an estimated 432 matches for "suprises".

Did you mean: surprises
2005 Apr 21
5
1 GB RAM CentOS 4 only sees 885 MB
Is this a known bug? Suprisingly google didn't turn up much. I'm running DDR RAM and a AMD XP processor on CentOS 4.
2023 May 18
1
suprising behaviour of tryCatch()
G'day Federico, On Wed, 17 May 2023 10:42:17 +0000 "Calboli Federico (LUKE)" <federico.calboli at luke.fi> wrote: > sexsnp = rep(NA, 1750) > for(i in 1:1750){tryCatch(sexsnp[i] = fisher.test(table(data[,3], > data[,i + 38]))$p, error = function(e) print(NA))} Error: unexpected > '=' in "for(i in 1:1750){tryCatch(sexsnp[i] =" Try: R> for(i in
2023 May 18
1
suprising behaviour of tryCatch()
... or just put the R expression inside curly brackets, e.g. tryCatch({ sexsnp[i] = fisher.test(table(data[,3], data[,i+38]))$p }, error=function(e) print(NA)) Exercise: Compare > list(a = 2) $a [1] 2 with > list({ a = 2 }) [[1]] [1] 2 and > list(b = { a = 2 }) $b [1] 2 BTW, note how the latter two assigned a <- 2 to the global environment. /Henrik On Thu, May 18, 2023 at
2010 Feb 11
2
Suprising behavior of paste or cat?
I may be making a simple error, but I've looked at the str() of the resulting objects and I can't see any obvious reason I'm having the problem I am having, so I am reaching out to the R-help group. ?I am generating a string in my code. ?When I make a slight modification (add a comma at the end using my "lastcomma" function), I can no longer successfully write that string to
2023 May 18
1
suprising behaviour of tryCatch()
Because `<-` and `=` do different things (and I am one of the old fossils that wish they had not been confounded). `fun(x <- expr)` Assigns the value of `expr` to the variable `x` in the frame/environment that `fun` is called from. `fun(x = expr)` Assigns the value of `expr`to the variable `x` in the frame/environment created for and used by `fun` subject to the rules of argument matching.
2003 Oct 20
2
Xp without netbios - few questions with samba 3 - smbldap_open: cannot access LDAP when not root
Hi, On samba 3 winserver enabled On xp I can work with smb on 2 ways 1 ) smb over tcpip without netbios. I was suprised because I can logged onto the domain. Xp client found the primary domain controler. I am not able to add permissions ( only the local machine domain is visible ). How xp client found the DC ( cache DC name on the client , wins answer on port 445 ?) 2 ) smb over netbios.
2023 May 17
4
suprising behaviour of tryCatch()
Hello, I run a fisher.test() in a loop, with the issue that some of the data will not be useable. To protect the loop I used tryCatch but: sexsnp = rep(NA, 1750) for(i in 1:1750){tryCatch(sexsnp[i] = fisher.test(table(data[,3], data[,i + 38]))$p, error = function(e) print(NA))} Error: unexpected '=' in "for(i in 1:1750){tryCatch(sexsnp[i] =" But this works: for(i in
2007 Sep 19
2
rebuilding rpmdevtools from epel5 SRC has fc7 dependent
hello, I'm suprised that an SRC.RPM from the rhel5 repo needs a file from FC7. I grabbed rpmdevtools from http://download.fedora.redhat.com/pub/epel/5/ it rebuilds fine as EL5, but when I go to install it, it requires a version of rpm-build higher than the C5 base version (4.4.2-37) --------------------- grab dependencies ------------- $ rpm -qpR rpmdevtools-6.1-0.1.noarch.rpm ...
2006 Apr 07
2
Should demo files be run as part of R CMD check?
I was a bit suprised to note that demo files are not run as part of R CMD check. This seems out of keeping with the philosophy of running all code contained in the package (in the source, in examples etc). Should demo files be checked as part of R CMD check? Hadley
2005 May 18
2
[LLVMdev] JIT + tail cals
On Wed, 18 May 2005, Morten Ofstad wrote: > Alexander Friedman wrote: >> How do I tell the code generator to enable tail calls on the X86? >> Since it is part of a library, I cannot pass a command line argument. > > Here is a snippet from our code which might help you ;-) > > const char *args[] = { "-disable-pattern-isel", "false", 0 }; >
2004 Aug 06
3
MP3 MetaData in WMP and RealOne
At 08:30 PM 4/7/2004, you wrote: >On Thursday 08 April 2004 01:40, Allan wrote: > > Hi > > > > Can anyone tell me how to get Metadata (Artist & Title) to display in WMP > > and RealOne > > > > It seems to work in WinAMP5 and if a rebroadcast the stream via PeerCast > > > > > > Im using SAM2 and Icecast2 > > > >They should
2005 May 19
3
[LLVMdev] JIT + tail cals
Chris Lattner wrote: > On Wed, 18 May 2005, Chris Lattner wrote: > >> Yup, something like this should work. Two comments though: >> 2. I haven't done much testing with the JIT and tail calls. I >> wouldn't be >> suprised if there are minor issues that need to be fixed. I will try >> to take a look and see what remains to be done over the next
2003 Mar 24
1
WinZip causes Server to fail - Please help.......
Is anybody suffering from a similar problem or can anybody suggest a cure or a pointer......? I've various hardware platforms (both HP & Intel though all SMP) scattered around remote sites each running one of the following OSs (Redhat 7.2, Redhat 7.3, Mandrake 8.2 & Mandrake 9.0) each with Samba installed (either the version that ships with the relative OS or 2.2.5.2 or 2.2.8.2
2008 Mar 20
2
Anyone having problems with asset_host not getting set up right?
Hey All, I think I found a bug but I would be suprised since it would cause major problems. We setup the asset_host in init.rb with: if File.exist?(facebook_config) FACEBOOKER = YAML.load_file(facebook_config)[RAILS_ENV] ENV[''FACEBOOK_API_KEY''] = FACEBOOKER[''api_key''] ENV[''FACEBOOK_SECRET_KEY''] =
2014 Jan 14
2
classicupgrade error: User 'Administrator' does not have SID ending in 500
Oh Boy. User 'Administrator' in your existing directory has SID S-1-5-21-2070472328-935435760-1634736958-1000, expected it to be S-1-5-21-2070472328-935435760-1634736958-500 ERROR(<class 'samba.provision.ProvisioningError'>): uncaught exception - ProvisioningError: User 'Administrator' in your existing directory does not have SID ending in -500 It's not all
2008 Jul 01
4
[LLVMdev] Dejagnu Tests
Hi, Tanya M. Lattner wrote: >> We were wondering if *all* of the dejagnu tests should pass (in the >> sense that no result should be unexpected), because we have a few failed >> tests on our build. > > make check should always be clean. However, sometimes people do commit > changes that impact platforms they are not able to test on and we do have > the occasional
2001 Jul 07
2
patch for title(?) segmentation fault
oggenc -b 128 -d 1985 -N 01 -t "Black Planet" -l "First and Last and Always" -a "Sisters of Mercy" track01.cdda.wav egs in free in simple_utf8_encode. I tracked it down to a mis-calculated buffer size for malloc. I've attached the patch that fixes it (for me:). The only problem I have with the rest of the code is figuring out how the terminating 0 (null,
2004 Oct 27
4
ploting axes and rotating strings
...puts the text at the correct positions, however, it has another problem. I would like to rotate the text, but if I use 'str=90' (to rotate the text for 90 degrees), I get a warning massage: Warning message: parameter "str" couldn't be set in high-level plot() function This suprises me, since if I read the help correctly ('?par'), then this should not happen. So if anyone can either hepl me to rotate the text in 'text' or to correctly plot the text in 'axis', I would be very grateful. Ales
2006 Apr 29
3
undefined class/module
Hi, We are running a Rails application in development mode. Intermittenly we get an error on some pages, saying : undefine class/module User. If we refresh the page, the error goes away and we see the html correctly rendered. User is a model defined in the models directory and has been listed in application.rb as model :user. I am suprised by the fact that this happens only occasionally. Can
2005 May 20
0
[LLVMdev] JIT + tail cals
VC++ builds are working again. However, llvm-test is broken. The configured makefile is bad: # Path to the boxed-sim source code @USE_BOXEDSIM@ BOXEDSIM_ROOT := @BOXEDSIM_ROOT@ Jeff Cohen wrote: > Chris Lattner wrote: > >> On Wed, 18 May 2005, Chris Lattner wrote: >> >>> Yup, something like this should work. Two comments though: >>> 2. I haven't done