search for: appease

Displaying 20 results from an estimated 63 matches for "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?
...OP > ??? - 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 cert > validation if it's possible. Maybe instead of disabling the check, appease it by supplying (in /etc/hosts) an alternate mapping of the FQDN subject of your certificate to your internal IP: 10.x.x.x your.sync.target Joseph Tam <jtam.home at gmail.com>
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...
2010 Dec 29
1
Want non-ASCII characters in data package
...out the use of non-ASCII characters to go away, in part so I could submit the package somewhere that wouldn't balk at the presence of the warning. (I gather from older posts that there are environment variables to skip this check. Those will work for me personally but will not necessarily appease the maintainers of sites like CRAN where I might want to submit the package.) Is there any way to use the correctly accented characters by setting a different character encoding or equivalent for the data frame? Or am I forced to remove the offending accents in order to be ASCII-pure and thus...
2019 Oct 25
4
unnecessary reload of 8-byte struct on i386
...s to trigger a hardware bug on a small fraction of devices which sometimes end up storing zero at esp+8. A more in-depth discussion of that issue can be found here: https://bugs.chromium.org/p/v8/issues/detail?id=9774 . I'm hoping that getting rid of the second load in the sequence above would appease these misbehaving machines (though of course I don't know that it would), as well as making the code a little smaller for everybody else. Does that sound like a reasonable idea? Would LLVM be interested in a patch related to eliminating reloads like this? Does anybody have advice about where I...
2001 Feb 11
2
help!
...or icq2000b, it goes thru all the fonts twice before actually running, and then I get a message saying I need a file called 50comupd.exe .. I downloaded that file, and have tried putting it in "c:\", "c:\windows", and "c:\windows\system" None of those locations seem to appease this darn thing.. Any ideas there?? The thing about the fonts: how do I deal with that? I've read that it's only supposed to do that once.. And here's what I get when it goes thru twice: <snip> fixme:font:LFD_InitFontInfo font '-sun-open look glyph-----19-190-75-75-p-154-su...
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
...arms such as D_FILE_OFFSET_BITS=64. > > As a hack, I swapped out the "=" for "#" for that line in the Makefile > @$(ECHOPATH) s#@OCAMLOPT@#$(OCAMLOPT) -cc \"$(CXX_FOR_OCAMLOPT)\" -I $(LibDir)/ocaml#g >> lit.tmp I have introduced "=" to appease MSYS. ("#" was useless then) I will work again later, to satisfy all guys! ;) > And now get farther, but then hit another issue related to the OCAMLOPT > contents: > File "/home/willschm/llvm/test/lit.site.cfg", line 11 > config.ocamlopt_executable = "/b...
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 Dovecot configure options: ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --with-checkpassword --without-passwd --witho...
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
...sh.now * Fixed stringification on all assigned hashes. The sacrifice is that assigns[:person] won''t work in testing. Instead assigns["person"] or assigns(:person) must be used. In other words, the keys of assigns stay strings but we''ve added a method-based accessor to appease the need for symbols. * Fixed that rendering a template would require a connection to the database #1146 Then for Active Record: * Fixed frivilous database queries being triggered with eager loading on empty associations and other things * Fixed order of loading in eager associations * Fixed s...
2009 Aug 28
1
[PATCHES] avoid more warnings
...r.ml b/src/generator.ml index 46fcf2c..fa7d240 100755 --- a/src/generator.ml +++ b/src/generator.ml @@ -6770,6 +6770,10 @@ copy_table (char * const * argv) let needs_extra_vs = match fst style with RConstOptString _ -> true | _ -> false in + pr "/* Emit prototype to appease gcc's -Wmissing-prototypes. */\n"; + pr "CAMLprim value ocaml_guestfs_%s (value %s" name (List.hd params); + List.iter (pr ", value %s") (List.tl params); pr ");\n"; + pr "CAMLprim value\n"; pr "ocaml_guestfs_%s (value %s...
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/f94e0...
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
...g for this info (googling 'windows driver cd layout/hierarchy/format') but I can't find anything definitive... anyone have a pointer? Especially WRT the current standard vs. the pre-windows-7 standard that vadim pointed out. - Anything regarding a separate iso with a separate layout to appease < win7 windows vintage should be handled separately, if at all IMO > I guess there's no mailing list, so I'll have to do pull requests on > github, right? Let's stick with email and virt-tools-list@redhat.com since there may be lots of discussion... Thanks, Cole
2012 Sep 12
2
[LLVMdev] [llvm-commits] [llvm] r160610 - /llvm/trunk/lib/ExecutionEngine/TargetSelect.cpp
...-incapable target on the JIT e.g.) --build=--host=x86_64-linux ---target=i686-mingw32 If JIT is unavailable for the default target, tests in test/ExecutionEngine and unittests/ExecutionEngine/JIT should be suppressed. My r160610 intended to tweak tests on cross targets (not to suppress, but to appease). I wonder if we should honor the triple in Module, though. Feel free to update, unless breaking tests, thank you. ...Takumi 2012/9/12 Kaylor, Andrew <andrew.kaylor at intel.com>: > Hi, > > I realize that this is an old commit, but I just came across a problem related to this ch...