search for: disqualifi

Displaying 20 results from an estimated 73 matches for "disqualifi".

Did you mean: disqualify
2015 Feb 18
13
[LLVMdev] [3.6 Release] RC4 has been tagged
Hello testers, RC4 has just been tagged (at r229782 on the branch). RC3 was disqualified due to an infloop that Duncan reported, and fixed in r229421. That, fixes for a few scary X86 bugs, a GCC5 bootstrap problem (PR22625), and parts of PR22589 is included in RC4. Baring any showstoppers, this release candidate will be promoted to release. Please let me know how it looks and uploa...
2018 Jul 07
2
Testing for vectors
Hi all, Is there are base function that I've missed that tests if an object is a vector in the dimensionality sense, rather than the data structure sense? i.e. something that checks is.null(dim(x)) ? is.vector() is trivially disqualified since it also checks for the presence of non-names attributes: x <- factor(c("a", "a", "b")) is.vector(x) #> [1] FALSE is.null(dim(x)) #> [1] TRUE Hadley -- http://hadley.nz
2017 Jun 29
6
package to fit mixtures of student-t distributions
Hello! I am new to R (before used python exclusively and would actually call the R solution for this issue inside a python notebook, hope that doesn?t disqualify me right of the batch). Right now I am looking for a piece of software to fit a 1D data sample to a mixture of t-distributions. I searched quite a while already and it seems to be that this is a somehwat obscure endeavor as most
2015 Sep 08
3
Euro LLVM videos finally online - proposal to use torrents for sharing
On Sep 8, 2015, at 12:26 PM, Renato Golin via llvm-dev <llvm-dev at lists.llvm.org> wrote: > > On 8 September 2015 at 19:20, Tanya Lattner <tonic at nondot.org> wrote: >> Youtube has been discussed in the past but we have usually defaulted to >> mainly hosted on llvm.org and then a copy could potentially be on YouTube. I >> would want this to be an official
2009 Mar 19
2
[LLVMdev] GSoC09 potential participant
Hi, I am a PhD student interested in participating in GSoC09. Being compilers my area of research, LLVM had got my attention until I read this last post: http://lists.cs.uiuc.edu/pipermail/llvmdev/2009-March/021060.html I would like if one of the official LLVM Developers (http://llvm.org/developers.cgi) could confirm this. I understand if you are looking for students who can hit the ground
2013 May 08
1
[LLVMdev] [lld] contentHash in the Reader ?
...ficial SHA3) is also > pretty fast on CPUs (and significantly better in hardware implementations, > not that it matters here), and has the advantage of having the official > designation. > I was moderately certain that BMW had a significantly higher throughput in software, and was only disqualified due to fairly long-tail security concerns that wouldn't apply here. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130508/c4758600/attachment.html>
2016 Jan 19
1
HDD badblocks
...ro.baggi at gmail.com> > wrote: >> Il 18/01/2016 12:09, Chris Murphy ha scritto: >> > What is the result for each drive? >> > >> > smartctl -l scterc <dev> >> > >> SCT Error Recovery Control command not supported >> > The drive is disqualified unless your usecase can tolerate the possibly > very high error recovery time for these drives. > > Do a search for Red Hat documentation on the SCSI Command Timer. By > default > this is 30 seconds. You'll have to raise this to 120 out maybe even 180 > depending on the maxi...
2003 Jul 03
1
Help files mismatches and R CMD check
I have a function t.test.cluster for which R CMD check results in a documentation warning because its argument names don't match those of t( ). Is there a way around this error besides renaming the function? Will this disqualify a package from admission to CRAN? How did t.test avoid this warning? Thanks, Frank --- Frank E Harrell Jr Prof. of Biostatistics & Statistics
2007 Oct 30
3
Rsync hard-links devices with different mtimes despite -t: expected?
I noticed that rsync is happy to hard-link a device node from a --link-dest dir even if its mtime differs from that of the source device node and --times is given. Is this behavior expected? It seems to break the rule that a difference in preserved attributes disqualifies a hard link. To see the behavior, run the following as root: mkdir src dest basis mknod src/null c 1 3 sleep 1 mknod basis/null c 1 3 rsync -a -ii --link-dest=../basis/ src/ dest/ find . -ls stat src/null dest/null Rsync produces the following very bogus-looking itemize output: .d ./...
2008 Feb 16
1
Rsync itemizing "p" even when -p, -E are off
...least when "sxp" represents an alternate basis file, "itemize" should use the same logic as "unchanged_attrs" to decide whether to itemize "p". A second issue: the logic in "unchanged_attrs" needs to be extended so that an executability difference disqualifies hard links when -E is on. Matt
2017 Aug 02
1
Fedora bugs and EOL [was Re: CentOS users: please try and provide feedback on Fedora] Boltron
On 08/02/2017 07:36 AM, hw wrote: > > Don?t get me started on Fedora updates. One of the reasons to deprecate > Fedora was that upgrading had turned out to be unreliable and mostly > failing. Not being able to reliably upgrade disqualifies any > distribution. I hate to break it to you, but since they began using fedup and dnf upgrade, it's never been an issue for me at all. Again, alot depends on what packages you have installed and _from what repos_ that determines a lot about your upgrade experience. Even Ubuntu LT...
2009 Mar 19
0
[LLVMdev] [llvm][gsoc] Where we at?
>>> I am wondering about the status of GSoc this year. The mailing list seems to be rather quiet on the topic. Has anyone thought of project ideas? >> We just received confirmation that LLVM was accepted for this year GSoC. >> The ideas list, as usual, is placed at >> http://llvm.org/OpenProjects.html (it also contains links to >> subproject's ideas pages).
2010 Oct 12
0
[LLVMdev] DCE and external function
...it prove if the function resides in a shared library? Only if the right function attributes are added. See http://llvm.org/docs/LangRef.html#fnattrs for a list, but 'readonly'/'readnone' and 'nounwind' will be most interesting for you here. I guess calling abort() probably disqualifies a function for 'readonly' (and it's stronger variant 'readnone'). Currently calls to any function that has either of the readnone or readonly attributes as well as the nounwind attribute qualify as "trivially dead" if their results aren't used, meaning lots of op...
2015 Feb 26
3
[LLVMdev] [3.6 Release] RC4 has been tagged
...iljanić >> > > Cc: llvmdev; cfe-dev >> > > Subject: [3.6 Release] RC4 has been tagged >> > > >> > > Hello testers, >> > > >> > > RC4 has just been tagged (at r229782 on the branch). >> > > >> > > RC3 was disqualified due to an infloop that Duncan reported, and fixed >> > > in r229421. That, fixes for a few scary X86 bugs, a GCC5 bootstrap >> > > problem (PR22625), and parts of PR22589 is included in RC4. >> > > >> > > Baring any showstoppers, this release candid...
2010 Oct 04
8
Can I "upgrade" a striped pool of vdevs to mirrored vdevs?
Hi, once I created a zpool of single vdevs not using mirroring of any kind. Now I wonder if it''s possible to add vdevs and mirror the currently existing ones. Thanks, budy -- This message posted from opensolaris.org
2009 Mar 19
2
[LLVMdev] [llvm][gsoc] Where we at?
> > I am wondering about the status of GSoc this year. The mailing list seems to be rather quiet on the topic. Has anyone thought of project ideas? > We just received confirmation that LLVM was accepted for this year GSoC. > The ideas list, as usual, is placed at > http://llvm.org/OpenProjects.html (it also contains links to > subproject's ideas pages). > > Please
2015 Feb 25
2
[LLVMdev] [3.6 Release] RC4 has been tagged
...; Dimitry Andric; Sebastian > > Dreßler; Daniel Sanders; Nikola Smiljanić > > Cc: llvmdev; cfe-dev > > Subject: [3.6 Release] RC4 has been tagged > > > > Hello testers, > > > > RC4 has just been tagged (at r229782 on the branch). > > > > RC3 was disqualified due to an infloop that Duncan reported, and fixed > > in r229421. That, fixes for a few scary X86 bugs, a GCC5 bootstrap > > problem (PR22625), and parts of PR22589 is included in RC4. > > > > Baring any showstoppers, this release candidate will be promoted to > release...
2010 Oct 13
1
[LLVMdev] DCE and external function
...ade static so I guess it's OK. > Only if the right function attributes are added. See > http://llvm.org/docs/LangRef.html#fnattrs for a list, but > 'readonly'/'readnone' and 'nounwind' will be most interesting for you > here. I guess calling abort() probably disqualifies a function for > 'readonly' (and it's stronger variant 'readnone'). > Currently calls to any function that has either of the readnone or > readonly attributes as well as the nounwind attribute qualify as > "trivially dead" if their results aren't used...
2017 Jun 29
0
package to fit mixtures of student-t distributions
Would package "teigen" help? Ranjan On Thu, 29 Jun 2017 14:41:34 +0200 vare vare via R-help <r-help at r-project.org> wrote: > Hello! > > I am new to R (before used python exclusively and would actually call the R solution for this issue inside a python notebook, hope that doesn?t disqualify me right of the batch). > > Right now I am looking for a piece of
2015 Apr 16
2
rsync --delete
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I don't understand what is wrong with rm either. But if you must have an empty directory is there a tmpfs where you can make one? Is there already an empty one like /var/empty? On 04/16/2015 10:13 AM, Ken Chase wrote: > Wow, it took me a few seconds to figure out what you were trying to > do. > > What's wrong with rm? >