search for: c5

Displaying 20 results from an estimated 1297 matches for "c5".

Did you mean: rc5
2020 Aug 31
2
Vectorization of math function failed?
...x[i]); } Which I compiled with: clang++ -O3 -march=native -mtune=native -c -o vec.o vec.cc -lmvec -fno-math-errno And here is what I get: vec.o: file format elf64-x86-64 Disassembly of section .text: 0000000000000000 <_Z4fct1Dv4_f>: 0: 48 83 ec 48 sub $0x48,%rsp 4: c5 f8 29 04 24 vmovaps %xmm0,(%rsp) 9: e8 00 00 00 00 callq e <_Z4fct1Dv4_f+0xe> e: c5 f8 29 44 24 30 vmovaps %xmm0,0x30(%rsp) 14: c5 fa 16 04 24 vmovshdup (%rsp),%xmm0 19: e8 00 00 00 00 callq 1e <_Z4fct1Dv4_f+0x1e> 1e: c5 f8 29 44 24 20 vmo...
2020 Sep 01
2
Vector evolution?
...-c -o vec.o vec.cc I get the following codegen: 0000000000000160 <_Z4fct6PDv4_f>: 160: 31 c0 xor %eax,%eax 162: c4 e2 79 18 05 00 00 vbroadcastss 0x0(%rip),%xmm0 # 16b <_Z4fct6PDv4_f+0xb> 169: 00 00 16b: 0f 1f 44 00 00 nopl 0x0(%rax,%rax,1) 170: c5 f8 59 0c 07 vmulps (%rdi,%rax,1),%xmm0,%xmm1 175: c5 f8 29 0c 07 vmovaps %xmm1,(%rdi,%rax,1) 17a: c5 f8 59 4c 07 10 vmulps 0x10(%rdi,%rax,1),%xmm0,%xmm1 180: c5 f8 29 4c 07 10 vmovaps %xmm1,0x10(%rdi,%rax,1) 186: c5 f8 59 4c 07 20 vmulps 0x20(%rdi,%rax,1),%xmm0,%xmm1 18c...
2009 Aug 13
1
c5-testing
is there a list more sutiable for c5-testing discussions? I'd like to install the php-5.2.9 on there, but I'm getting a dependency problem # yum update --enablerepo=c5-testing php Loaded plugins: fastestmirror, priorities Loading mirror speeds from cached hostfile * rpmforge: fr2.rpmfind.net * base: updates.interworx.info...
2020 Oct 20
5
write.csv covert Åland to <c5>land
Hi there, I tried to export the names of country to a csv file with write.csv(). In the resulted file, ?land was coverted to <c5>land. Is there any way could prevent this happening? Thanks! > abc [1] "?land" > write.table(abc, file = "") "x" "1" "<c5>land" Best, Jinsong
2020 Oct 20
0
write.csv covert Åland to <c5>land
Hi there, Why the same string is displayed in different form? > abc[,1] [1] "?land" "Afghanistan" > abc name 1 <c5>land 2 Afghanistan And more... > dput(abc, "aa.txt") > dget("aa.txt") name 1 <c5>land 2 Afghanistan > dget("aa.txt")[,1] [1] "<c5>land" "Afghanistan" Best, Jinsong On 2020/10/20 17:13, Jinsong Zhao wrot...
2012 Dec 14
3
Building a C5 chroot on a C6 machine
I'm trying to do something slightly silly; rather than having a C5 machine and a C6 machine around for compiling and testing, I want to create a C5 chroot area. Something similar to "mock" but using lvm snapshots and some local config specific stuff. (Potentially even using Linux Containers to enter the chroot environment). So I thought I'd build...
2007 Sep 25
3
/boot partition or not on C5
hello, the last 3 times I installed C5, the MBR was unchanged and nothing was written into /boot/grub except splash.xbm.gz there were no stage* files, nor a menu.lst I know how to fix that. Would I have better luck using a partition mounted as /boot? Anyone succeded with Grub that way? I prefer not having to do surgery to get C5 to bo...
2020 Oct 20
1
write.csv covert Åland to <c5>land
...ncoding is. On Tue, 20 Oct 2020 at 08:22, Jinsong Zhao <jszhao at yeah.net> wrote: > Hi there, > > Why the same string is displayed in different form? > > > abc[,1] > [1] "?land" "Afghanistan" > > abc > name > 1 <c5>land > 2 Afghanistan > > And more... > > > dput(abc, "aa.txt") > > dget("aa.txt") > name > 1 <c5>land > 2 Afghanistan > > dget("aa.txt")[,1] > [1] "<c5>land" "Afghanistan" &...
2020 Oct 20
1
write.csv covert Åland to <c5>land
...d guess you're using Windows. In your code page, the character ? is probably not representable. At some point in the sequence of operations involved in printing the dataframe R puts the string into the native encoding, and since that's impossible on your system, it substitutes the <c5> instead. The fact that you can sometimes display it is because internally R uses UTF-8 as much as it can, and it can represent the character. One fix for this is to switch from Windows to some other OS. The others all have proper support for UTF-8. You might have luck changing your Windo...
2008 Feb 01
4
NTP server
I have a Centos 5 64-bit server that has ntp service enabled. Windows XP with SP2 cannot properly sync to it for time, but can communicate with it via samba, ssh, and anything else. I also disabled the Windows Firewall. The C5 system does not have any firewall enabled. Other C5 workstations can successfully sync to it via ntpdate. What else could cause the XP machine to not be able to time sync with the C5 server? Thanks. Scott
2010 Dec 01
3
RFC: sapply() limitation from vector to matrix, but not further
...t;r",1:3), p0("C", seq_len(ny))) r } and > (v <- structure(10*(5:8), names=LETTERS[1:4])) A B C D 50 60 70 80 if we let sapply() not simplify, we see the list of same size matrices it produes: > sapply(v, myF, y = 2*(1:5), simplify=FALSE) $A C1 C2 C3 C4 C5 r1 100 200 300 400 500 r2 100 200 300 400 500 r3 100 200 300 400 500 $B C1 C2 C3 C4 C5 r1 120 240 360 480 600 r2 120 240 360 480 600 r3 120 240 360 480 600 $C C1 C2 C3 C4 C5 r1 140 280 420 560 700 r2 140 280 420 560 700 r3 140 280 420 560 700 $D C1 C2 C3 C4 C5 r1 160 320...
2007 Sep 19
2
best source for rpmdevtools RPM in C5
hello, I'm going to try this question again. The first time I botched it and the answers I got were useless. I want to use rpmdevtools to help with some packaging chores. There is no C5 version that I can find. I've located an SRC RPM in a location that is known to be C5 compatible. There are 2 versions of rpmdevtools: http://download.fedora.redhat.com/pub/fedora/linux/extras/6/SRPMS/rpmdevtools-6.1-0.1.fc6.src.rpm http://download.fedora.redhat.com/pub/fedora/linux/extras/6/S...
2007 Sep 07
5
unable to add IP address to eth0:0 eth0:1 etc
...g eth0:6 xx.xx.xx.20 netmask 255.255.255.0 /sbin/ifconfig eth0:7 xx.xx.xx.21 netmask 255.255.255.0 /sbin/ifconfig eth0:8 xx.xx.xx.22 netmask 255.255.255.0 but on looking at the output of /sbin/ifconfig, I see this: [root at sunspot ray]# /sbin/ifconfig eth0 Link encap:Ethernet HWaddr 00:00:C5:C2:1B:01 inet addr:64.135.16.15 Bcast:64.135.16.255 Mask:255.255.255.0 inet6 addr: fe80::200:c5ff:fec2:1b01/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:5491775 errors:0 dropped:0 overruns:0 frame:0 TX packets:962501...
2010 Feb 09
2
How can I rearange my dataframe
An embedded and charset-unspecified text was scrubbed... Name: ??????????? URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20100209/db12d14b/attachment.pl>
2020 Oct 20
0
write.csv covert Åland to <c5>land
?file.write() look for fileEncoding? el On 20/10/2020 11:13, Jinsong Zhao wrote: > Hi there, > > I tried to export the names of country to a csv file with write.csv(). In the resulted file, ?land was coverted to <c5>land. Is there any way could prevent this happening? Thanks! > >> abc > [1] "?land" >> write.table(abc, file = "") > "x" > "1" "<c5>land" > > Best, > Jinsong > > ____________________________________...
2020 Oct 20
2
write.csv covert Åland to <c5>land
On 2020/10/20 17:23, Dr Eberhard W Lisse wrote: > ?file.write() > > look for fileEncoding? > > el > There is no file.write(). I have tried fileEncoding = "utf8" and "latin1" in write.csv(). However, it does not have effect. The output is is <U+00C5>land or <c5>land. Best, Jinsong > On 20/10/2020 11:13, Jinsong Zhao wrote: >> Hi there, >> >> I tried to export the names of country to a csv file with write.csv(). In the resulted file, ?land was coverted to <c5>land. Is there any way could prevent this happen...
2007 Jun 28
3
Vim differences between C4 and C5
I have installed CentOS 4.5 and 5 on 2 separate machines, and both have default installs of vim-enhanced on each of them. I noticed that I can get syntax highlighting as a regular user, sudo and as root in C4.5. In C5 I only get highlighting as a regular user. I diff'ed my /etc/vimrc files between each install there is no changes and neither root ~ has a .vimrc file. I had put "# vim: filetype=apache ts=4 sw=4 et" at the bottom of the apache conf file and it works great except when I 'sudo vi...
2008 Jan 10
1
NFS/NIS and firewalls
I have a few C5 machines on an isolated LAN that connect to a RHEL5 server via NFS and NIS for authentication. I discovered that one of the C5 workstations worked fine for NFS exporting, but refused to collaborate with the EL5 server for NIS user authentication. I had successfully connected other systems to...
2014 Sep 27
0
ALT storage question
...storage. So I set this up: mail_location = mdbox:/srv/vmail/%2.256Hu/%Lu/mdbox:ALT=/srv/vmail/%Ld/%Ln/mdbox I rsynced the "old" mdbox-style mailbox from another machine to to /srv/vmail/%Ld/%Ln/mdbox (/srv/vmail/charite.de/ralf.hildebrandt/mdbox in my case) The mail_location /srv/vmail/c5/ralf.hildebrandt at charite.de was non-existing. Then I connected using IMAP and tried to have a look at the INBOX: Sep 27 11:15:15 imap(ralf.hildebrandt at charite.de): Debug: Effective uid=10000, gid=10000, home=/srv/vmail/c5/ralf.hildebrandt at charite.de Sep 27 11:15:15 imap(ralf.hildebrandt...
2016 Apr 29
3
C5: The Firefox ESR 45.1.0 Nighmare
...ions in /tmp, example tmp-xxx.xpi > > The reason behind this is the missing patch referenced by Johnny's posting > that you referenced in a follow-up. > > What I would really like to see, talking about SIGs and such, is an rpm > for palemoon, but I fear it can't be done on C5. Even C6 only would help, > although I'm hesitating to move my main desktop off 5; the C6 desktop > simply doesn't have the same stability and performance, and having to log > off/log on just because PA behaves irratically is really annoying. > Given: RHEL5 goes end of life on...