search for: appeases

Displaying 20 results from an estimated 63 matches for "appeases".

Did you mean: appease
2009 Aug 31
1
two small patches to appease clang/llvm static analysis
I ran libguestfs through llvm+clang, today, [http://clang.llvm.org/StaticAnalysis.html] It found only two things worth changing -- neither is a real problems. Adding the noreturn makes it so the tool understands line 541 of guestfs.c is truly reachable only for non-NULL "p": 540 if (!p) g->abort_cb (); 541 memcpy (p, ptr, size); >From
2017 Dec 21
2
Disable ssl validation for replication?
Joseph Ward writes: > I'm aware of at least a couple of fallback options: > ??? -have a self-signed cert for replication and use the Let's Encrypt > one for IMAP/POP > ??? - create firewall rules allowing them to connect to each other over > the public internet so that it can validate the proper cert > ? > These are both much less palatable than simply disabling the
2008 Oct 20
1
LC_VIRTUAL with Wx::ListCtrl
Wx::ListCtrl#set_item_count appears to be broken. If I pass it anything but a Fixnum (is_a Integer), it crashes and says it needs a "long" (which Fixnum should appease), but if I pass it a Fixnum it crashes with "cannot convert nil into String." Latest WxRuby. Windows Vista. This makes using LC_VIRTUAL impossible. -- Eric Will // xmpp:rakaur@malkier.net
2013 Sep 06
1
Plus addressing
It appease that I can enable +address filtering into separate mailboxes by simply setting $recipient_delimiter = '+'; However, is there anyway to get great control over that? For example, on one account I have a lot of +addresses I use. A few, I sort into mailboxes (like my bank, credit cards, etc). The rest are either on the ?spammer => /dev/null? list or get sorted into a mailbox
2010 Dec 29
1
Want non-ASCII characters in data package
Hi, I have a data frame that includes several names that (if typeset correctly) require accented characters not available in the ASCII character set. I'd like to include this data frame as example data in an R package. I'd also like the R CMD check warning about the use of non-ASCII characters to go away, in part so I could submit the package somewhere that wouldn't balk at the
2019 Oct 25
4
unnecessary reload of 8-byte struct on i386
Hello folks, I've recently been looking at the generated code for a few functions in Chromium while investigating crashes, and I came across a curious pattern. A smallish repro case is available at https://godbolt.org/z/Dsu1WI . In that case, the function Assembler::emit_arith receives a struct (Operand) by value and passes it by value to another function. That struct is 8 bytes long, so the
2001 Feb 11
2
help!
This is my first time using wine, so forgive me if I am asking a question that's already been answered (although I DID search docs and NG's first..) EVERY time I run Wine (wine-only install, no MS_DOS partition), it goes thru the "building font metrics" phase, which takes forever, but i've seen 1 program run successfully, so something must be working.. When I try to run the
2013 Dec 03
2
[LLVMdev] Newbie question: LLVM IR, printf, and varargs
...it in the first >> place. >> >> This is on Windows using a 32-bit version of LLVM llc v3.4 (built about a >> week ago). >> >> I searched the LR, the FAQ, and Google but found nothing of relevance. >> >> > You're missing the cast, IMHO. The cast appeases the LLVM type checker > w.r.t. mismatching function type > > Eli > > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131203/39ec34b2/attachment.html>
2012 Jul 12
0
[LLVMdev] llvm 'gmake check' errors generating lit.site.cfg
Morning, Will! 2012/7/12 Will Schmidt <will_schmidt at vnet.ibm.com>: > llvm]$ gmake check > llvm[0]: Running test suite > gmake[1]: Entering directory `/home/willschm/llvm/test' > Making LLVM 'lit.site.cfg' file... > sed: file lit.tmp line 8: unknown option to `s' > gmake[1]: *** [lit.site.cfg] Error 1 > > The relevant lines in test/Makefile: >
2009 Mar 30
4
[Bug 1580] New: [PATCH] HMAC should use sha1 instead of md5 by default
https://bugzilla.mindrot.org/show_bug.cgi?id=1580 Summary: [PATCH] HMAC should use sha1 instead of md5 by default Product: Portable OpenSSH Version: 5.2p1 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: ssh AssignedTo: unassigned-bugs at mindrot.org
2006 Aug 10
2
Dovecot under daemontools
Hi there I'm having difficulties in getting dovecot to run under daemontools. Also, from a sysadmin perspective, so far, I find dovecot's config rather complex - I suppose that's what happens when one attempts to appease all authentication methods... anyway, I digress. System details, to set the scene: OS: Slackware Linux Linux Kernel: 2.4.29 GCC: 3.2.2 Dovecot version: 1.0.rc6
2013 Dec 03
0
[LLVMdev] Newbie question: LLVM IR, printf, and varargs
...g Highlevel doc, which is why I am asking it in the first place. > > This is on Windows using a 32-bit version of LLVM llc v3.4 (built about a > week ago). > > I searched the LR, the FAQ, and Google but found nothing of relevance. > > You're missing the cast, IMHO. The cast appeases the LLVM type checker w.r.t. mismatching function type Eli -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131203/a52aa024/attachment.html>
2005 Apr 19
3
Rails 0.12.1: No major update without a bit of pain
There''s nothing like pushing a new major update in order to find bugs in the code when its exposed to a couple of hundred working applications. Thankfully the fixes were almost as swift as the reports. In any case, you''ll _definitely_ want to upgrade to 0.12.1 right away. There''s a good handful of fixes for both Action Pack and Active Record (mostly concerning the
2009 Aug 28
1
[PATCHES] avoid more warnings
>From 23740528cd2d75a236aae1fb5d073e8be2e5a295 Mon Sep 17 00:00:00 2001 From: Jim Meyering <meyering at redhat.com> Date: Fri, 28 Aug 2009 13:43:16 +0200 Subject: [PATCH libguestfs 1/3] generator.ml: avoid warnings in generated ocaml/guestfs_c_actions.c * src/generator.ml: Emit prototypes for ocaml_guestfs_* functions, to avoid warnings from gcc -Wmissing-prototypes. Normally we'd
2013 Dec 03
0
[LLVMdev] Newbie question: LLVM IR, printf, and varargs
...>>> >>> This is on Windows using a 32-bit version of LLVM llc v3.4 (built about >>> a week ago). >>> >>> I searched the LR, the FAQ, and Google but found nothing of relevance. >>> >>> >> You're missing the cast, IMHO. The cast appeases the LLVM type checker >> w.r.t. mismatching function type >> >> Eli >> >> > > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131203/3afaad55/attachment.html>
2012 Jul 11
2
[LLVMdev] llvm 'gmake check' errors generating lit.site.cfg
Hi, Using trunk llvm ; on powerpc (powerpc64/power7); trying to do a "gmake check", the sed bits in test/Makefile appear to be getting tripped up when trying to generate lit.site.cfg. I've started to hack at it, made a little bit of progress, but wonder if I'm just digging myself a hole. Highlights of what I've poked at are below.. Comments or thoughts? Thanks,
2013 Dec 03
2
[LLVMdev] Newbie question: LLVM IR, printf, and varargs
...; This is on Windows using a 32-bit version of LLVM llc v3.4 (built about >>>> a week ago). >>>> >>>> I searched the LR, the FAQ, and Google but found nothing of relevance. >>>> >>>> >>> You're missing the cast, IMHO. The cast appeases the LLVM type checker >>> w.r.t. mismatching function type >>> >>> Eli >>> >>> >> >> > -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131204/f94e03...
2013 Dec 03
2
[LLVMdev] Newbie question: LLVM IR, printf, and varargs
Hi, I am trying to print two strings using printf. I have tried various things, but keep getting this error: llc: printf.ll:4:11: error: '@printf' defined with type 'i32 (i8*, ...)*' %1 = call i32 @printf(i8* null, i8*, i8* null) The code is: declare i32 @printf(i8* nocapture readonly, ...) nounwind define i32 @main() nounwind { %1 = call i32
2015 Nov 30
6
Re: packaging virtio-win
On 11/27/2015 12:16 PM, Roman Kagan wrote: > On Thu, Nov 26, 2015 at 06:29:45PM -0600, Jeff Nelson wrote: >> On Thu, Nov 26, 2015 at 08:12:41PM +0300, Roman Kagan wrote: >>> Do I get it right that the way virtio-win is packaged for Fedora and >>> RHEL is driven by the scripts at >>> >>> https://github.com/crobinso/virtio-win-pkg-scripts >>>
2012 Sep 12
2
[LLVMdev] [llvm-commits] [llvm] r160610 - /llvm/trunk/lib/ExecutionEngine/TargetSelect.cpp
Andy, Yes, it was wrong, as long as RemoteTarget is available for the target. If you would revert it, please consider then; - non-MCJIT stuff - Running different environment on the JIT e.g.) --build=--host=i686-linux --target=x86_64-linux - Host-incapable target on the JIT e.g.) --build=--host=x86_64-linux ---target=i686-mingw32 If JIT is unavailable for the default target, tests