search for: should've

Displaying 20 results from an estimated 358 matches for "should've".

2011 Feb 14
0
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
On 2011-02-14 23:11, Talin wrote: > OK I figured out what the problem was - I assume you are trying to > compile under Snow Leopard? No, I should've mentioned it: this is Debian unstable x86_64, and wxwidgets is definetely 64-bit. Maybe its just something messed up on my system (had 2.9.1 in /usr/local/). Willtry removing that and reinstalling 2.8. --Edwin
2015 Nov 18
2
OT: Replacing Venerable NAS
On 11/18/2015 11:50 AM, m.roth at 5-cent.us wrote: > What size storage are you looking at, and what's your budget? Are we > talking a 4TB drive, or 33TB, or...? Sorry, should've mentioned this is for home/home office. The ReadyNAS is a four-bay unit, with 500GB disks. Will want a four-bay, probably with 1- or 2-TB disks. -- Tim Evans | 5 Chestnut Court UNIX System Admin Consulting | Owings Mills, MD 21117 http://www.tkevans.com/ | 443-394-3864 tkevans...
2015 Sep 17
2
restrict map-login by geoip?
Thanks Benny. I should've said I saw AllowNets but in researching it looked like it expected a smaller comma separated list, not hundreds of IP blocks. Is that what you are using to accomplish this? Thanks, -Terry iPhone says Hello World! > On Sep 16, 2015, at 6:31 PM, Benny Pedersen <me at junc.eu> wrote...
2010 Oct 19
0
[LLVMdev] How to assign a constant to a register?
> let me say that in general doing this is pointless. Due to SSA form, if %x is > set to 5 you can't set it to something else later. Thus everywhere that > you > use %x you might as well just directly use 5 there instead. My bad... I should've started thinking in SSA way all the time. I got it mixed with common assembly language. So I must hold the initial value until the first operation that deals with it has come, right? -- View this message in context: http://old.nabble.com/How-to-assign-a-constant-to-a-register--tp29987387p29...
2010 Oct 18
3
[LLVMdev] How to assign a constant to a register?
hi, Well, there is no "Register" at the level of LLVM IR, %x = add i32 %y, %z means you define a value "x" by adding value "y" and value "z" together. best regards ether
2017 Dec 30
3
Submitting patches for LLVM -- llvm-commits vs. Phabricator?
...vm-commits (as requested by https://llvm.org/docs/DeveloperPolicy.html#making-and-submitting-a-patch) and the mailing list answered with a notice that my message is held for moderator approval (with the reason: "Post by non-member to a members-only list"). I'm therefore wondering if I should've submitted my patch via Phabricator instead (looking at the activity in llvm-commits, it seems that most of the patches are submitted and reviewed by Phabricator). Best regards, Chris -------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: applica...
2019 Nov 10
2
lld-link.exe Can't Recognize .obj File Type?
...ust_std_lib_facilities.obj: unknown file type lld-link : error : Debug\Ex10_10.obj: unknown file type " What's the reason for this, and is there a way to fix it? This is the first time I'm saying this error; I've used LLVM before and this error never came up when I know .obj files should've been used then as well. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20191110/89d9f170/attachment.html>
2012 Jan 14
2
[LLVMdev] Unreachable code in Mutex.cpp
...t things: >> >> https://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Mutex.cpp?r1=29287&r2=29932&diff_format=h >> >> I don't know if this change was even deliberate since it came in with >> another change & the description doesn't mention it. Should we do away >> with this logic if it hasn't been needed all this time? Reinstate it >> (with the old logic? or with a configure-based preprocessor variable >> instead)? > > On some (linux?) implementations, various pthread APIs are defined as "weak extern" symbo...
2004 Aug 06
2
cannot get icecast and ices to talk...authentication failed
On Mon, 7 Apr 2003, Keegan Quinn wrote: > Is this documented anywhere at all? I'd like to know what I should've been > reading to figure this out. Source code, right? Well. The icecast mount stuff I would have thought would be pretty self-explanatory in the config file. They're used to do stuff that's an exception to the general stuff defined above.. As for the ices user stuff, yeah th...
2015 Mar 06
2
server max protocol appropriate values
...ool testparm -v'. I have not explicitly set them in my smb.conf file. I assume SMB3 became the default at some point with a release? I'm worried now that I must make explicit changes to my smb.conf file when default values are changed from a prior version. Maybe it's a bug and my values should've been changed when I updated Samba when smb3 became the default? I started with 4.0.0 from tar for reference. Sequential version updates after that. Thanks. On 3/4/2015 5:43 PM, Marc Muehlfeld wrote: > Hello James, > > Am 04.03.2015 um 16:26 schrieb James: >> My DC smb.con...
2011 Feb 14
1
[LLVMdev] Introducing LLBrowse: A graphical browser for LLVM modules
On 2011-02-14 23:33, Török Edwin wrote: > On 2011-02-14 23:11, Talin wrote: >> OK I figured out what the problem was - I assume you are trying to >> compile under Snow Leopard? > > No, I should've mentioned it: this is Debian unstable x86_64, and > wxwidgets is definetely 64-bit. > Maybe its just something messed up on my system (had 2.9.1 in > /usr/local/). Willtry removing that and reinstalling 2.8. OK, I figured, I have to set CMAKE_BUILD_TYPE to Release and then everythi...
2019 May 07
1
config help & pid file not existing issue
Hi Parke, Thanks for replying. I mkdir it, kill tinc and restart, nothing in config changed, and it works! I don't know what's behind but I should've try system "kill" rather than tinc's stop/restart stuff... Parke <parke.nexus at gmail.com> 于2019年5月7日周二 上午5:12写道: > On Mon, May 6, 2019 at 2:12 AM David Penn <px920906 at gmail.com> wrote: > > > On both nodes I installed 1.1pre17 (laptop from aur pack...
2010 Nov 16
1
Bug in agrep computing edit distance?
The documentation for agrep says it uses the Levenshtein edit distance, but it seems to get this wrong in certain cases when there is a combination of deletions and substitutions. For example: > agrep("abcd", "abcxyz", max.distance=1) [1] 1 That should've been a no-match. The edit distance between those strings is 3 (1 substitution, 2 deletions), but agrep matches with max.distance >= 1. I didn't find anything in the bug database, so I was wondering if somehow I'm misinterpreting how agrep works. If not, should I file this in Bu...
2006 Jun 08
1
Disabling debug output
...1*CLI> asterisk-dev1*CLI> Jun 9 12:34:57 DEBUG[7225]: chan_sip.c:1323 __sip_autodestruct: Auto destroying call '0fbefde17f0c2a7a168e1d3f158e5760@127.0.0.1' What am I doing wrong? I noticed that Asterisk said that the verbosity level is >= 19, but the debug message that appeared should've been suppressed by ``sip no debug'', no? Cheers, -- Nick e: nick.hoffman@altcall.com p: +61 7 5591 3588 f: +61 7 5591 6588 If you receive this email by mistake, please notify us and do not make any use of the email. We do not waive any privilege, confidentiality or copyright as...
2006 May 09
1
Fw: Yet another HID device - Cyberpower AE550
Peter Selinger wrote, > Hi Joe, > > I read between the lines that (a) you are using the newhidups driver, > and (b) it is working. Is this correct? You might want to post the > output of "upsc" just for the record. Whups, I should've been more clear and less terse -- it's been a long weekend putting the machines these are supporting into production! This is my first encounter with nut, and as far as I could tell, 2.0.3's newhidups doesn't have any sort of generic mode. The development tree does, but my ab...
2004 Nov 30
1
rsync creating 0-length files?
Is there any precedent for rsync creating 0 length files that should've had content in them? IE, has anyone ever seen this before? We were doing a roughly 1 terabyte transfer, and upon running a python script to verify the integrity of the transfer, we discovered a small number of files that were 0 length, that shouldn't have been, all in the same user'...
1999 Nov 20
1
seg.fault: 'print(aggregate(),n)' (digits= omitted) (PR#330)
Dear Sirs, I had the following (reproducible) problem: g1 <- gl(3,4) g2 <- gl(2,2,12) y <- rnorm(12) AA <- aggregate(y,list(g1,g2),mean) print(AA,2) # I should've said 'digits=2' but ... Segmentation fault (core dumped) # print(AA) and print(AA,digits=2) work as expected Many thanks, -Rashid Nassar --please do not edit the information below-- Version: platform = i586-unknown-linux arch = i586 os = linux system = i586, linux status...
2013 Aug 15
1
format bug and patch
....r-project.org/bugzilla3/show_bug.cgi?id=15411 I have attached a patch with the fix to the bug and would love to hear comments about its quality. Also, while testing this bug I found another related issue: > format(complex(real=10, imaginary=4), digits = 1); [1] "10+0i" I think this should've been "10+4i". I have entered this as a bug #15427. But a patch for formatComplex() would be a bigger change, than the patch for formatReal() I made. So, before I start, I would like to gauge your opinion. Do you agree it is a bug?
2008 Mar 09
1
[LLVMdev] linker error (llvm-config, eclipse)
Sam Bishop schrieb: > The `llvm-config ...` and `pkg-config ...` sections need to be at the > end. That ought to get you going. Yes, that's it, thank you very much for the quick help. I guess I should've rtfm more carefully, sorry. best regards Stefan Oestreicher
2020 Mar 01
2
LLVM version for KaleidoscopeJIT
Hi, I have been following the KaleidoscopeJIT chapters and I have found that the code might not be up to date with the current LLVM version. Is anyone aware of the supported versions of LLVM? Best, Anshil -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200301/00255373/attachment.html>