search for: afaicr

Displaying 20 results from an estimated 50 matches for "afaicr".

Did you mean: afaics
2009 Mar 23
3
usb-phones
...ing to use one of those usb-phones, and plug it into one of my servers there. But what i read from the thread, i seems that you need a graphical environment, while all of the servers are strictly cli-only. Is there a cli-based phone (besides the asterisk-console), that can use a usb-audio-device? Afaicr,those usb-phones present themselves as an plain usb-audio device. hw
2014 Mar 29
2
[LLVMdev] Named Register Implementation
...ritannica.bec.de> wrote: > > declare void @llvm.write_register(i32 regno, i32 val) > > declare i32 @llvm.read_register(i32 regno) > > > > where regno is the DWARF name or a special reservation e.g. for IP or > > SP. > > Do front-ends have that info with them? AFAICR, front-ends only emit > metadata related to variables and they let the lowering process to > deal with location. I want to add as little as possible to front-ends > on this. I'm not sure if we have a generic mapping of textual name to DWARF name right now, but that would be easy to pr...
2012 Sep 10
0
[LLVMdev] Unaligned vector memory access for ARM/NEON.
...ple.com> wrote: > I don't know if anyone actually uses arm processors in big-endian mode, but it shouldn't be too hard to conditionalize it. If it does turn out to be difficult for some reason, we should at least have comments to indicate where the endian assumptions are being made. AFAICR, people used to use big-endian on non-NEON ARM cores in the 7TDMI/920 days, and if they still do so, they'll buy those chips. IMO, throwing a few comments would be enough for now. It's better to assume little enndian now, with a test case, than to assume big-endian is possible, without one...
2014 Mar 29
2
[LLVMdev] Named Register Implementation
On Sat, Mar 29, 2014 at 11:46:13AM +1030, Jeremy Lakeman wrote: > declare void @llvm.write_register.sp(i32 val) > declare i32 @llvm.read_register.sp() I'd prefer to use declare void @llvm.write_register(i32 regno, i32 val) declare i32 @llvm.read_register(i32 regno) where regno is the DWARF name or a special reservation e.g. for IP or SP. Joerg
2020 Sep 03
2
Rgui never processes ~/.Renviron
ISSUE: It looks like Rgui.exe never processes ~/.Renviron - only ./.Renviron. REPRODUCIBLE EXAMPLE: On Windows, create the following ~/.Renviron and ~/.Rprofile files: C:\Users\alice> Rscript -e "cat('FOO=123\n', file='~/.Renviron')" C:\Users\alice> Rscript -e "cat('print(Sys.getenv(\'FOO\'))', file='~/.Rprofile')" and launch
2011 Oct 18
2
[LLVMdev] Optimization for size
...t;james.molloy at arm.com> wrote: > -Os doesn’t actually exist for llc, and I can’t see an obvious place where > that condition would be set. Where do we specify if we’re optimizing for > codesize or performance? The pass manager builder has an option for Os (0, 1, 2). But all it does, AFAICR, is to disable one explosive optimization pass. I'm not sure how that gets propagated into the DAG. Maybe every function in that module receives the attribute Richard mentions... Optimization for size hasn't been tested properly, at least not for ARM, and I hit all sorts of trouble (even...
2012 Sep 10
2
[LLVMdev] Unaligned vector memory access for ARM/NEON.
On Sep 7, 2012, at 4:46 PM, David Peixotto <dpeixott at codeaurora.org> wrote: >> Note that this won't work on big-endian targets where changing the >> vld1/vst1 element size actually changes the behavior of the instructions. > > Ok, so would it be best to put an explicit test for endianess in the code? > The td files already contain restrictions some for endianess
2015 Jun 12
2
RFC: Declaring "foo.bar" as nonS3method() ?!
...uot; part. There's the question of > functions defined outside of packages: presumably they are still S3 > methods, with no way to suppress that. I am not sure this is the right solution: S3 dispatch will still occur because we first look at foo.bar exports and then in the S3 registry, afaicr (the "all the other S3 method code" part). If we could move to only looking at the registry for dispatch, there would be no need to declare situations where we should not dispatch on foo.bar exports. -k
2008 Nov 20
2
A way to run extenrnotify when IMAP events take place...
I have IMAP voicemail working with Exchange 2003 using a single username and password for multiple mailboxes. Right now, I am setting up asterisk to use voicemail with my Cisco Call Manager (Which I detest BTW...) and I have everything working, EXCEPT: I cannot get my externnotify script to run when any changes have been made to the VoiceMail... Scenario: Bob gets a call -> Bob
2015 Jun 12
3
RFC: Declaring "foo.bar" as nonS3method() ?!
...functions defined outside of packages: presumably they are still S3 >>> methods, with no way to suppress that. >> >> I am not sure this is the right solution: S3 dispatch will still occur >> because we first look at foo.bar exports and then in the S3 registry, >> afaicr (the "all the other S3 method code" part). >> >> If we could move to only looking at the registry for dispatch, there >> would be no need to declare situations where we should not dispatch on >> foo.bar exports. >> > I think that would break a lot of ex...
2006 May 30
11
Problems with Routing and Masquerading
Hi, I have a linux box which balances load between two interfaces ( say WAN1 and WAN2). I have masquerading on for any request coming from LAN to the outside world. The setup is in such a way that WAN1 drops packets with source ip belonging to WAN2''s network and viceversa. For some strange reason, I find that packet coming out from the WAN interface has source address of WAN2 and
2015 Jun 12
3
RFC: Declaring "foo.bar" as nonS3method() ?!
...presumably they are still S3 >>>>> methods, with no way to suppress that. >>>> >>>> I am not sure this is the right solution: S3 dispatch will still occur >>>> because we first look at foo.bar exports and then in the S3 registry, >>>> afaicr (the "all the other S3 method code" part). >>>> >>>> If we could move to only looking at the registry for dispatch, there >>>> would be no need to declare situations where we should not dispatch on >>>> foo.bar exports. >>>> >...
2011 Oct 18
0
[LLVMdev] Optimization for size
...t; wrote: >> -Os doesn’t actually exist for llc, and I can’t see an obvious place where >> that condition would be set. Where do we specify if we’re optimizing for >> codesize or performance? > > The pass manager builder has an option for Os (0, 1, 2). But all it > does, AFAICR, is to disable one explosive optimization pass. In clang/LLVM, -Os is not very different from -O2. It dials back inlining, and disables a few other optimizations. The idea is to reduce code size without sacrificing too much performance. The -Oz option is supposed to do the same as gcc's -Os:...
2016 Mar 07
1
Compiling qemu
Hi, I've installed qemu 2.5 through the package manager. There is a bug which blocks making an external snapshot for the second time. A fix is released: https://lists.gnu.org/archive/html/qemu-devel/2016-01/msg06163.html I thought, why not download the source, apply the patch, build + make and then copy qemu-system-x86_64 to the /usr/bin/ folder..... But if I do 'virsh start
2014 Nov 27
1
testing dontrun examples
On 14-11-26 05:49 PM, Duncan Murdoch wrote: > On 26/11/2014, 1:45 PM, Paul Gilbert wrote: >> Is there a good strategy for testing examples which should not be run by >> default? For instance, I have examples which get data from the Internet. >> If I wrap them in try() then they can be skipped if the Internet is not >> available, but may not be tested in cases when I
2006 Apr 16
2
scanners
although i have been made aware of linux native proprietary drivers for film scanners, i would like to know whether running nikon scan on wine has ever been attempted i never attemped to run drivers on wine; is that possible at all? thanks francesco pietra
2003 Mar 13
1
BUG: read: Invalid argument
I'm attempting to mirror a directory tree from debian stable (rsync version 2.5.6cvs) to a win2k box (cygwin, rsync version 2.5.5). This setup/command had previously worked for a bit (cygwin at rsync version 2.4.6 AFAICR), but yesterday it hung, so, finding some mail-list entries about that, I upgraded cygwin, and now I get this: C:\>c:\cygwin\bin\rsync.exe -vvvvvv -essh -ac --delete ik@boat:/usr/local/cvs /cvs-bup/rsync cmd=ssh machine=boat user=ik path=/usr/local/cvs cmd=ssh -l ik boat rsync --server --sende...
2002 Sep 30
0
Nobody is ready to talk on Samba Quota Support
...bject: [Samba] Quota Support > > > >> Does RH7.3 Kernel supports samba quotas correctly ? >> Any work around for Rh7.2 and samba quotas? >> I don't use samba on Redhat (removed it before I even got that far), but quotas work in Mandrake, on XFS (8.2 and later, AFAICR) and ext2/ext3 out-the-box. (be aware that XFS takes a few seconds to update quotas). Mandrake 9.0 has ACLs available on ext2/ext3/XFS out-the-box also, plus the ability to join a windows domain (via winbind) during a network install. If you can't do a network install, it's still pretty...
2005 Apr 27
2
SAMBA 2.0.7 on Solaris 9 - How to disable port 445
I have SAMBA 2.0.7 running on about 20 Solaris 9 servers around the US. One location is experiencing interruptions for Windows XP clients who map to the SAMBA server. There are no known changes to Solaris or SAMBA to explain the change. The problem is very random. I have seen postings that discuss how XP uses ports 139 and 445. Is there a way to block port 445 in SAMBA 2.0.7? The
2007 Sep 06
1
problems with VFS_FAKE_PERMS
Hi, I want to use the module VFS_FAKE_PERMS for roaming profiles. When I use the option "writeable = yes" (see config [1]) the user profiles are write back the server (but they shouldn't, right?). If I delete the writeable-option (see [2]) windows brings an error when logging off: "Windows cannot update your roaming profile. Possible causes of this error include network