search for: sfr

Displaying 20 results from an estimated 77 matches for "sfr".

Did you mean: ifr
2005 Feb 11
3
How to solve error : "cannot allocate vector of size 1208235 Kb"
Howdy R gurus ! I am newbie to R I use R 2.0.1 in Windows XP. When I run R I got the follwoing memory error. My physical memory size is 3 Gb. My R got the memory problem when it reached to about 2 Gb. Thanks in advance, > library(spdep) > sfr.lagsarlm <- lagsarlm(sfr.data$Bldgsqft ~ sfr.data$Ncounty + sfr.data$Nugb + sfr.data$Ngroup, data=sfr.data, listw=sfr.listw, method="eigen") Error: cannot allocate vector of size 1208235 Kb > memory.size(max=FALSE) [1] 17862584 > memory.limit(size=NA) [1] 3145728000 > --...
2010 Oct 20
3
xen PV on HVM and initial domain merge in linux-next
...s version. Merging in other stable trees is OK (as long as the other maintainer is aware of that and makes sure that their tree does not reabse). Basically what you send to me should be what you intend to send to Linus during the next merge window. -- Cheers, Stephen Rothwell sfr at canb.auug.org.au http://www.canb.auug.org.au/~sfr/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 490 bytes Desc: not available Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20...
2010 Oct 20
3
xen PV on HVM and initial domain merge in linux-next
...s version. Merging in other stable trees is OK (as long as the other maintainer is aware of that and makes sure that their tree does not reabse). Basically what you send to me should be what you intend to send to Linus during the next merge window. -- Cheers, Stephen Rothwell sfr at canb.auug.org.au http://www.canb.auug.org.au/~sfr/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 490 bytes Desc: not available Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20...
2010 Oct 20
3
xen PV on HVM and initial domain merge in linux-next
...s version. Merging in other stable trees is OK (as long as the other maintainer is aware of that and makes sure that their tree does not reabse). Basically what you send to me should be what you intend to send to Linus during the next merge window. -- Cheers, Stephen Rothwell sfr at canb.auug.org.au http://www.canb.auug.org.au/~sfr/ -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 490 bytes Desc: not available Url : http://lists.linux-foundation.org/pipermail/virtualization/attachments/20...
2009 Jun 30
1
Reception of vocal SMSs to landlines.
Hi all, we face a problem with SMS reception sended to _landlines_, at least in France. Normally operators -tested with France Telecom and SFR- are sending voice SMSs from a particular CID number, so no problem. But today we discover that -at least SFR- send from time to time voice SMSs with original callerID which means that the call is terminated like a normal call and not recognized as voice SMS. Problem is that we Answer() the ca...
2019 Nov 05
2
InlineSpiller - hoists leave virtual registers without live intervals
On Mon, Nov 4, 2019 at 12:18 PM Quentin Colombet <qcolombet at apple.com> wrote: > Hi Alex, > > Thanks for reporting this. > Wei worked on the hoisting optimization. > > @Wei, could you work with Alex to see what is the problem. > > Cheers, > -Quentin > > > On Nov 3, 2019, at 5:20 AM, via llvm-dev <llvm-dev at lists.llvm.org> > wrote: > >
2007 May 14
5
[PATCH 1/6] lguest: host code tidyups
Christoph Hellwig said runs sparse: 1) page_tables.c unnecessary initialization 2) Change prototype of run_lguest and do cast in caller instead (when we add __user to cast, it runs over another line). Al Viro pointed out the ugly cast in push_lguest_stack(): 3) Stick with unsigned long for arg, removes 4 casts in total. Most importantly, I now realize that Christoph's incorrect ranting
2007 May 14
5
[PATCH 1/6] lguest: host code tidyups
Christoph Hellwig said runs sparse: 1) page_tables.c unnecessary initialization 2) Change prototype of run_lguest and do cast in caller instead (when we add __user to cast, it runs over another line). Al Viro pointed out the ugly cast in push_lguest_stack(): 3) Stick with unsigned long for arg, removes 4 casts in total. Most importantly, I now realize that Christoph's incorrect ranting
2020 May 07
2
[PATCH v3 07/15] mm/memory_hotplug: Introduce offline_and_remove_memory()
...version is this against? Pls post patches on top of some tag >> in Linus' tree if possible. > > As the cover states, latest linux-next. To be precise > > commit 6b43f715b6379433e8eb30aa9bcc99bd6a585f77 (tag: next-20200507, > next/master) > Author: Stephen Rothwell <sfr at canb.auug.org.au> > Date: Thu May 7 18:11:31 2020 +1000 > > Add linux-next specific files for 20200507 > The patches seem to apply cleanly on top of commit a811c1fa0a02c062555b54651065899437bacdbe (linus/master) Merge: b9388959ba50 16f8036086a9 Author: Linus Torvalds &lt...
2020 May 07
2
[PATCH v3 07/15] mm/memory_hotplug: Introduce offline_and_remove_memory()
...version is this against? Pls post patches on top of some tag >> in Linus' tree if possible. > > As the cover states, latest linux-next. To be precise > > commit 6b43f715b6379433e8eb30aa9bcc99bd6a585f77 (tag: next-20200507, > next/master) > Author: Stephen Rothwell <sfr at canb.auug.org.au> > Date: Thu May 7 18:11:31 2020 +1000 > > Add linux-next specific files for 20200507 > The patches seem to apply cleanly on top of commit a811c1fa0a02c062555b54651065899437bacdbe (linus/master) Merge: b9388959ba50 16f8036086a9 Author: Linus Torvalds &lt...
2006 Jan 19
5
123 * 3 => 123123123! But why?
...Locale.active.language.english_name})!" if value.nil? value end def dollar_part na? ? nil : cents / 100 / conversion_rate end def cent_part na? ? nil : cents % 100 / conversion_rate end end end -------- Sadly I get ugly results like $99.00 # correct! SFr. 132,0.00 # incorrect! ? 90,0,00 # incorrect! I don''t know why Ruby concatenates the values and does not multiply them... How can I fix that? Thanks for help. :-) Greetings, Josh -- Posted via http://www.ruby-forum.com/.
2014 Dec 11
2
[PULL] virtio: virtio 1.0 support, misc patches
...was on linux next for a while, then I wanted to tweak the commit log for some messages a bit. So since I rewrote the history anyway, I went ahead and rebased it on v3.18, after this rebase it's been in linux-next for several days. > -- > Cheers, > Stephen Rothwell sfr at canb.auug.org.au
2014 Dec 11
2
[PULL] virtio: virtio 1.0 support, misc patches
...was on linux next for a while, then I wanted to tweak the commit log for some messages a bit. So since I rewrote the history anyway, I went ahead and rebased it on v3.18, after this rebase it's been in linux-next for several days. > -- > Cheers, > Stephen Rothwell sfr at canb.auug.org.au
2020 May 07
2
[PATCH v3 07/15] mm/memory_hotplug: Introduce offline_and_remove_memory()
...ome tag >>>> in Linus' tree if possible. >>> >>> As the cover states, latest linux-next. To be precise >>> >>> commit 6b43f715b6379433e8eb30aa9bcc99bd6a585f77 (tag: next-20200507, >>> next/master) >>> Author: Stephen Rothwell <sfr at canb.auug.org.au> >>> Date: Thu May 7 18:11:31 2020 +1000 >>> >>> Add linux-next specific files for 20200507 >>> >> >> The patches seem to apply cleanly on top of >> >> commit a811c1fa0a02c062555b54651065899437bacdbe (linus/mas...
2020 May 07
2
[PATCH v3 07/15] mm/memory_hotplug: Introduce offline_and_remove_memory()
...ome tag >>>> in Linus' tree if possible. >>> >>> As the cover states, latest linux-next. To be precise >>> >>> commit 6b43f715b6379433e8eb30aa9bcc99bd6a585f77 (tag: next-20200507, >>> next/master) >>> Author: Stephen Rothwell <sfr at canb.auug.org.au> >>> Date: Thu May 7 18:11:31 2020 +1000 >>> >>> Add linux-next specific files for 20200507 >>> >> >> The patches seem to apply cleanly on top of >> >> commit a811c1fa0a02c062555b54651065899437bacdbe (linus/mas...
2007 Aug 12
2
How to show the version of syslinux?
syslinux usage does not include "--version" ---------------- ./syslinux --version Usage: ./syslinux [-sfr][-d directory][-o offset] device --------------- As I know, other utilities support "--version", eg., --------------- linux:/tmp/syslinux-3.51/unix # wget --version GNU Wget 1.9.1 Copyright (C) 2003 Free Software Foundation, Inc. This program is distributed in the hope that it will be u...
2003 Sep 09
1
Can't load daemon at boot
Hi! I have a programm with code like this (this is example, the real code is at http://fresh.t-systems-sfr.com/linux/src/.warix/logserial-0.4.2.tar.gz.html): #################### void shutdown(int sig) { switch (sig) { default: fprintf(stderr, "Got signal %d. Exit\n", sig); break; } exit(EXIT_SUCCESS); } int main(void) { chproc = fork(); if (chproc...
2000 Jan 11
0
still having problem from version 2.0.2 5)
...var/dce/security/creds | wc -l 45496 ----------------------end---------------- hopefully you have an idea and can help. waiting for a reply, thanks in advance christian mit freundlichen gruessen christian glaser _____________________________________________________________________ dSH SfR c/o DLR - oberpfaffenhofen tel :++49 +8153/28-1156 e-mail: christian.glaser@debis-sfr.de fax : 28-1136 PS: i speak for me, only forme; myopinionnottheoneofmyemployerand.......ut
2020 May 07
3
[PATCH v3 07/15] mm/memory_hotplug: Introduce offline_and_remove_memory()
On Thu, May 07, 2020 at 12:31:11PM +0200, David Hildenbrand wrote: > virtio-mem wants to offline and remove a memory block once it unplugged > all subblocks (e.g., using alloc_contig_range()). Let's provide > an interface to do that from a driver. virtio-mem already supports to > offline partially unplugged memory blocks. Offlining a fully unplugged > memory block will not
2020 May 07
3
[PATCH v3 07/15] mm/memory_hotplug: Introduce offline_and_remove_memory()
On Thu, May 07, 2020 at 12:31:11PM +0200, David Hildenbrand wrote: > virtio-mem wants to offline and remove a memory block once it unplugged > all subblocks (e.g., using alloc_contig_range()). Let's provide > an interface to do that from a driver. virtio-mem already supports to > offline partially unplugged memory blocks. Offlining a fully unplugged > memory block will not