search for: leonard

Displaying 20 results from an estimated 431 matches for "leonard".

Did you mean: leonardo
2017 Feb 09
5
Checksums for git repo content?
Hello John, On Thu, 2017-02-09 at 16:33 +0000, John Hodrien wrote: > On Thu, 9 Feb 2017, Leonard den Ottolander wrote: > > > How about my request for checksums in the git repo? > > What checksums would you actually want in git? SRPMS are signed which allows the integrity of the contents to be checked. Such an integrity check is missing from the git repo. Either a checksum fi...
2009 Apr 17
2
Error messages 3.0.6pre1
..., iconv, symtimes, file-flags ----- However, now I'm getting these kinds of messages throughout my output: ----- rsync(68321) malloc: *** error for object 0x80af80: Non-aligned pointer being freed (2) *** set a breakpoint in malloc_error_break to debug deleting Desktop/PURDY/Lines of the Poet/Leonard sketch. 01.jpg rsync(68321) malloc: *** error for object 0x80af80: Non-aligned pointer being freed (2) *** set a breakpoint in malloc_error_break to debug deleting Desktop/PURDY/Lines of the Poet/Leonard sketch 00.jpg rsync(68321) malloc: *** error for object 0x80af80: Non-aligned pointer being fre...
2018 Sep 24
3
Porting Pass to New PassManager
...ut it registers the pass with PassRegistry::getPassRegistry(). What I'm not sure of is if this uses the new PassManager infrastructure. Exploring the code doesn't seem to show that this PassRegistry touches anything in the legacy namespace, but I wanted double confirmation on this. Thanks, Leonard
2019 Aug 02
3
Switching to the New Pass Manager by Default
...hwasan, the kernel santizers, and sancov have been ported. I don't think ubsan has been ported yet though. You can also check if other passes you need run under the new PM by checking PassRegistry.def. On Fri, Aug 2, 2019, 14:20 Jordan Rupprecht <rupprecht at google.com> wrote: > Hi Leonard, > Is the new pass manager expected to work with sanitizers now? > > On Fri, Aug 2, 2019 at 1:25 PM Leonard Chan via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> I think so far most individual projects have their own statistics on >> build time/performance i...
2018 Sep 25
2
Porting Pass to New PassManager
Hi Leonard, Fedor, while it's true that RegisterPass is not applicable for new-pm passes, PassRegistry.def is not the whole story. Passes in PassRegistry are available for the opt tool. The sanitizers are passes that usually get added to the pipeline by the frontend. There, you need to use PassBuilder...
2023 Oct 21
1
Issue from R-devel: subset on table
My mistake! It does actually something else, which is incorrect. One could still use (although the code is more difficult to read): subset(tmp <- table(sample(1:10, 100, T)), tmp > 10) Sincerely, Leonard On 10/21/2023 10:26 PM, Leonard Mada wrote: > Dear List Members, > > There was recently an issue on R-devel (which I noticed only very late): > https://stat.ethz.ch/pipermail/r-devel/2023-October/082943.html > > It is possible to use subset as well, almost as initially stated: &...
2013 Oct 14
3
How's 5.10 coming along?
Hello team, Just wondering how the build of 5.10 is coming along. Is there a resource that informs us on these matters? Thanks! Regards, Leonard. -- mount -t life -o ro /dev/dna /genetic/research
2023 Oct 16
1
Create new data frame with conditional sums
...sumption that Pct is much larger than Cutoff, sorting Cutoff is the expensive part e.g O(nlog2(n) for Quicksort (n = length Cutoff). I believe looping is O(n^2). Jeff's approach using findInterval may be faster. Of course implementation details matter. -- Bert On Mon, Oct 16, 2023 at 4:41?AM Leonard Mada <leo.mada at syonic.eu> wrote: > > Dear Jason, > > The code could look something like: > > dummyData = data.frame(Tract=seq(1, 10, by=1), > Pct = c(0.05,0.03,0.01,0.12,0.21,0.04,0.07,0.09,0.06,0.03), > Totpop = c(4000,3500,4500,4100,3900,4250,5100,4700,4...
2019 Jan 31
2
llvm-nm --help keeps printing whitespace
...is morning and ran all tests and noticed that llvm/test/tools/llvm-nm/libtool-response-file.test was failing due to running out of memory. The test in particular just runs `llvm-nm --help` and running this prints the help info followed by endless whitespace. Has anyone else ran into this? Thanks, Leonard
2023 Oct 16
1
Create new data frame with conditional sums
...yData = dummyData[order(dummyData$Cutoff), ] # Result cs = cumsum(dummyData$Totpop) # Only last entry: # - I do not have a nice one-liner, but this should do it: isLast = rev(! duplicated(rev(dummyData$Cutoff))) data.frame(Total = cs[isLast], ?? ?Cutoff = dummyData$Cutoff[isLast]) Sincerely, Leonard On 10/15/2023 7:41 PM, Leonard Mada wrote: > Dear Jason, > > > I do not think that the solution based on aggregate offered by GPT was > correct. That quasi-solution only aggregates for every individual level. > > > As I understand, you want the cumulative sum. The idea wa...
2016 Oct 19
4
SSH Weak Ciphers
On 10/19/2016 11:34 AM, Leonard den Ottolander wrote: > Hello Gordon, > *snip* > > Personally I would be more concerned whether or not to enable ECDSA > algorithms (https://blog.cr.yp.to/20140323-ecdsa.html). > > Regards, > Leonard. > For web server ECDSA certs is currently a concern because the only...
2016 Dec 14
2
spec file frustration (rant)
Hello Jonathan, On Wed, 2016-12-14 at 15:03 -0500, Jonathan Billings wrote: > On Wed, Dec 14, 2016 at 07:29:19PM +0100, Leonard den Ottolander wrote: > > > get_sources.sh > > > > The name suggests this is what we need (or do we??) If only I could find > > that script anywhere... > > Johnny said it at the beginning of his email. I'll paste it again so > you don't have to go re-r...
2018 Sep 25
2
Porting Pass to New PassManager
...> well - all the > PassBuilder::register*/parse*/is* methods do include PassRegistry.def in > their bodies. > > I was under impression that callbacks are primarily for plugins usage. > > regards, > Fedor. > > On 09/25/2018 12:43 PM, Philip Pfaffe wrote: > > Hi Leonard, Fedor, > > while it's true that RegisterPass is not applicable for new-pm passes, > PassRegistry.def is not the whole story. Passes in PassRegistry are > available for the opt tool. The sanitizers are passes that usually get > added to the pipeline by the frontend. There, you ne...
2020 Aug 20
4
[RFC][LLVM] New Constant type for representing function PLT entries
...at it’s lowered to the PLT entry (function at plt) on targets that support PLT relocations. The linker can then decide if it should be relaxed into a direct reference or remain a PLT entry. I have a very rough WIP implementation at https://reviews.llvm.org/D77248. Thoughts and opinions? Thanks, Leonard -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200820/3175ca84/attachment.html>
2007 Jul 30
4
[Bug 1347] New: LLONG_MAX v LONGLONG_MAX
...GLONG_MAX Product: Portable OpenSSH Version: 4.6p1 Platform: PPC OS/Version: AIX Status: NEW Severity: normal Priority: P2 Component: Miscellaneous AssignedTo: bitbucket at mindrot.org ReportedBy: David.Leonard at quest.com On AIX, LLONG_MAX is known as LONGLONG_MAX /data/rc/u/davidl/openssh/openssh/openbsd-compat/regress/strtonumtest.c: In function `test': /data/rc/u/davidl/openssh/openssh/openbsd-compat/regress/strtonumtest.c:32: warning: implicit declaration of function `strtonum' /data/rc...
2003 Jun 08
6
Basic question on applying a function to each row of a dataframe
Hi, I have a function foo(x,y) and a dataframe, DF, comprised of two vectors, x & w, as follows : x w 1 1 1 2 2 1 3 3 1 4 4 1 etc I would like to apply the function foo to each 'pair' within DF e.g foo(1,1), foo(2,1), foo(3,1) etc I have tried >apply(DF,foo) >apply(DF[,],foo) >apply(DF[DF$x,DF$w],foo) However, none of the above worked. Can anyone help ?
2015 Sep 03
3
virt-install message regarding Spice and TLS
On Wed, Sep 2, 2015 at 1:59 PM, Leonard den Ottolander < leonard at den.ottolander.nl> wrote: > Hello Mike, > > On Wed, 2015-09-02 at 13:05 -0400, Mike - st257 wrote: > > I've been through the virt-install manpage a few times now to no avail. > > What is wrong with my syntax here (seen below)? > > &g...
2019 Aug 02
2
Switching to the New Pass Manager by Default
...rk that went into getting it here. > > +1 > > Can you spell out what performance validation has been done? Informally, > I know there's been quite a bit, but getting a summary in one place for > later reference would be super helpful. > > Philip > On 8/2/19 10:25 AM, Leonard Chan via llvm-dev wrote: > > Hello all, > > As of now, all LLVM and Clang tests have been updated/addressed to run > under the new/experimental pass manager (at least the ones that failed when > using the new PM). > > For those who aren't aware of what the new pass manag...
2019 Jan 10
2
Proposal for string keys for address_space
...integers to strings in Context and dynamically allocate integers for new strings. You can then keep integers in most of the code, writing/displaying strings for the integers with an entry in the table when writing to files or displaying. > > Jacob Lifshay > > On Thu, Jan 10, 2019, 13:54 Leonard Chan via llvm-dev <llvm-dev at lists.llvm.org wrote: >> >> Hello, >> >> We would like to propose a way for improving the diagnostics for >> address_space by being able to pass strings as an argument to it >> instead of just an integer. This was initially propo...
2019 Aug 02
8
Switching to the New Pass Manager by Default
...cts that will be affected by this, probably from unported passes. Does anyone have any opinions on this? Off the top of my head, the next immediate work would be to update the docs with instructions on how to write or port a new PM pass, and address any breakages for other LLVM projects. Thanks, Leonard -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190802/34dec2d3/attachment.html>