similar to: bugfix: indeterministic file choice from multiple sources

Displaying 20 results from an estimated 2000 matches similar to: "bugfix: indeterministic file choice from multiple sources"

2016 Apr 19
0
Merge sort
On 19/04/2016 3:39 PM, Gaston wrote: > Hello everyone, > > I am learning R since recently, and as a small exercise I wanted to > write a recursive mergesort. I was extremely surprised to discover that > my sorting, although operational, is deeply inefficient in time. Here is > my code : > >> merge <- function(x,y){ >> if (is.na(x[1])) return(y) >>
2016 Apr 20
1
Merge sort
I indeed used is.na() to check length, as I was not sure weather lenght() was a simple query or would go through the whole vector to count the elements. So to sum up, function calls are expensive, therefore recursion should be avoided, and growing the size of a vector (which is probably reassigning and copying?) is also expensive. Thank you for your help! On 04/19/2016 11:51 PM, Duncan
2016 Apr 19
2
Merge sort
Hello everyone, I am learning R since recently, and as a small exercise I wanted to write a recursive mergesort. I was extremely surprised to discover that my sorting, although operational, is deeply inefficient in time. Here is my code : > merge <- function(x,y){ > if (is.na(x[1])) return(y) > else if (is.na(y[1])) return(x) > else if (x[1]<y[1])
2006 Jun 02
3
[PATCH] --omit-dir-changes, qsort<>mergesort issues
Hi all, I recently ran into some problems with rsync. My plan is to renew some of our old administration concepts from early 90's, I already replaced rdist with rsync a few years ago. Because of the rdist legacy, the current method requires synchronizing files into 6 different locations, {/alt,/usr/alt}/{hostdep,sysdep,hutdep}, which in turn are prioritized by a tool that just symlinks
2019 Oct 04
2
CentOS 8 Release Notes - Czech translation
Hello, I see the page, but there is no button to edit it. If I try to add ?action=edit to URL, wiki shows message "Nem?te dovoleno editovat tuto str?nku." (You are not allowed to edit this page). Jan ?t 3. 10. 2019 v 21:08 odes?latel David Hrb?? <david-lists at hrbac.cz> napsal: > > Jan, > > I have created the page. Are you able to edit it? > > Regards. > DH
2019 Oct 03
2
CentOS 8 Release Notes - Czech translation
Hello, I'm Jan Pape? and I'd like to contribute to CentOS Wiki as translator. I'm planning to translate Release Notes of CentOS 8, but now I have no rights to create new page: https://wiki.centos.org/Manuals/ReleaseNotes/CentOS8.1905/Czech My username is JanPapez. Please, could you give me an access to make it? Thank you. Jan Pape? -------------- next part -------------- An HTML
2020 Aug 19
2
[Bug 1450] New: Using certain simple set combinations with TCP flags causes error in mergesort.c from nft list ruleset
https://bugzilla.netfilter.org/show_bug.cgi?id=1450 Bug ID: 1450 Summary: Using certain simple set combinations with TCP flags causes error in mergesort.c from nft list ruleset Product: nftables Version: unspecified Hardware: arm OS: Ubuntu Status: NEW Severity: normal
2005 Jun 09
1
handling duplicate names deterministically and adding alternative checksum algorithms
Thanks, rsync developers, for creating such a great tool. I'm a member of a team of system administrators and integrators that use rsync with SystemImager and Cfengine to rapidly deploy and prescriptively maintain systems. Our current practices would benefit if rsync were enhanced to handle duplicate names deterministically as described in the todo list. If we were able to use rsync to
2019 Oct 04
2
CentOS 8 Release Notes - Czech translation
On Fri, 4 Oct 2019 at 15:16, Alan Bartlett <ajb at elrepo.org> wrote: > > On Fri, 4 Oct 2019 at 09:37, Jan Pape? (honyczek) > <honyczek-mailing at email.cz> wrote: > > > > Thank you David. > > > > As it is written in article > > https://wiki.centos.org/Contribute#head-42b3d8e26400a106851a61aebe5c2cca54dd79e5 > > (Subheader 3. Contribute to
2019 Oct 07
2
CentOS 8 Release Notes - Czech translation
On Mon, 7 Oct 2019 at 06:18, Jan Pape? (honyczek) <honyczek-mailing at email.cz> wrote: > > Hi, > > it works now. Thanks Alan. > > Jan > You are welcome. Alan.
2006 Jan 18
1
phyper returns 1 if x==k (PR#8499)
Full_Name: Utz J. Pape Version: 2.2.0 OS: linux Submission from: (NULL) (141.14.23.12) If I use phyper and set parameter x equal to k (meaning that all balls I draw are white) phyper returns 1 which is not (always) correct: pape at xxx:~> R2.2.0 --vanilla R : Copyright 2005, The R Foundation for Statistical Computing Version 2.2.0 (2005-10-06 r35749) ISBN 3-900051-07-0 R is free software
2019 Oct 04
2
CentOS 8 Release Notes - Czech translation
Thank you David. As it is written in article https://wiki.centos.org/Contribute#head-42b3d8e26400a106851a61aebe5c2cca54dd79e5 (Subheader 3. Contribute to the Wiki) it is necessary to write here to allow access. So I did it. Is there anybody who can give me the right to edit pages on wiki, please? Jan p? 4. 10. 2019 v 10:14 odes?latel David Hrb?? <david-lists at hrbac.cz> napsal: >
2008 Nov 10
3
ttda and text-mining
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible URL : <https://stat.ethz.ch/pipermail/r-help/attachments/20081110/bf60714f/attachment.pl>
2007 Jul 06
5
Text Mining
Hi everybody, I am a new R user. Is there any package devoted to "text mining" analysis in R ? Thanks Gilles lepape.gilles at neuf.fr
2003 Sep 28
1
bug (filelist) for platforms solaris and darwin (macosx) and *not* linuxi386
I have found a nasty bug when a file, which is in some of many sources, shall be copied to a target. The linux-Version works well but rsync 2.5.{2|5|6} under solaris9 (gcc 2.95.3) and darwin (gcc 3.1) do not. The decision which file (out of which src) shall be copied depends on the number of src dirs given on the command line. This bug bytes us very hard, because we decided to rely on rsync
2010 Sep 14
1
[LLVMdev] Wierd behavior from getAnalysis<>
Hello, I am seeing a weird behavior from getAnalysis<>. I seem to not get back a valid object type, which leads to other errors. when I am executing the following line: InsertDummyTargsPass& dt = getAnalysis<InsertDummyTargsPass>(); I am apparently getting back an object of type llvm::Pass; This is how I checked it: with the following code I create the Object print its
2003 Nov 25
1
rsync-bugs and unclear semantics when copying multiple source-dirs to one target
On 24 Nov 2003, Dirk Pape <pape@inf.fu-berlin.de> wrote: > Dear Martin Pool, > > I tried to ask via the rsync-mailing list but never got an answer. So I > contact you directly. > > I refer to the rsync syntax > > rsync [OPTION]... SRC [SRC]... DEST > > with more than one SRC, which is mentioned in the man-pages. > We use this form to "overlay"
2013 Feb 20
0
[LLVMdev] LLVM Interpreter & Qsort
Hi, I am trying to run an LLVM analysis on a C++ program that calls qsort(), using the LLVM interpreter (lli --force-interpreter). The code is the qsort_large.c file in the MiBench benchmark suite. If I comment the qsort() call, the execution works fine. If I uncomment the qsort() call, I run into a segmentation fault error as follows: 0 lli 0x0000000000d35c6f 1 lli
2008 Nov 12
2
pairwise.wilcox.test
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible URL : <https://stat.ethz.ch/pipermail/r-help/attachments/20081112/618073fe/attachment.pl>
2010 Oct 22
2
R 2.12.0 does not open in Tinn-R 2.3.5.2
Dear R users, I tried opening the R console in Tinn-R, but this is not possible. I get the following message: C:\Program Files\R\R 2.12.0\bin\R-gui.exe The file above is not executable. Please, set it with 'Options/Main/R/Path/Gui' Does anyone know how to solve this? Thanks Ellen [[alternative HTML version deleted]]