search for: infallibility

Displaying 20 results from an estimated 32 matches for "infallibility".

1999 Nov 16
1
spikes in contour and persp (PR#327)
The following matrix of normed likelihoods should give a smooth surface but instead gives a series of spikes in both persp and contour (the dim labels are the axes values). I know an algorithm cannot be infallible but it would be nice to have some parameters to control the smoothing. (It takes close to an hour to produce this matrix on a Pentium II 300mh. It was after that that it crashed with the
2007 Oct 14
4
flac fingerprint
hi, i found this explanation of the flac fingerprint somewhere: 'A FLAC Fingerprint is generated only for the audio data portion of the file. (Therefore, changing the filename or the tags or FlacMetadata does not change the fingerprint calculation.) In contrast, an .md5 is generated against the whole file, including header portions.' so i was wondering what advantages it could give me
2008 May 01
2
[LLVMdev] optimization assumes malloc return is non-null
On Wed, 2008-04-30 at 18:26 -0400, David Vandevoorde wrote: > > Daveed: > > > > Good to know that I was looking at the correct section. I do not agree > > that your interpretation follows the as-if rule, because I do not > > agree > > with your interpretation of the C library specification of malloc(). > > > Before I go on, let me state that this is
2007 Oct 14
0
Re: flac fingerprint
...lac files with an .ffp file says, "I wouldn't deliberately deceive you"; sending a set of .flac files with no checksums at all says "I never make mistakes." There are people whom I'd trust not to deceive me deliberately but nobody from whom I'd accept a claim of infallibility. Moreover, if a set of .flac files is being shared, a copy of the fingerprints can be kept at a URL distributed with them, so that everyone receiving them can make sure that the fingerprints of the files (s)he gets match those of the original set. > i was also wondering how files encoded by...
2004 Nov 05
0
Ways to catch segfaults before they happen
Those of you who monitor the daily package checks will know that some packages generate ERROR reports spasmodically. This is normally due to segfaults, and in almost all cases has been traced (eventually) to memory access errors using the tool valgrind (http://valgrind.kde.org). Current examples include RCurl, RandomFields, geoR, kza and pcurve. This week I have run all the examples in all
2007 Nov 03
2
R validation
Dear R-Users, A message to continue the discussions we had in March and June. I have read the documents written since then (http://www.r-project.org/doc/R-FDA.pdf ; http://user2007.org/program/presentations/harrell.pdf ; http://user2007.org/program/presentations/rossini.pdf ; http://user2007.org/program/presentations/soukup.pdf) which are very interesting and useful. I work in a CRO and we
2011 Dec 06
3
[OT] posting bounties for rpms compatible with centos?
Is there an etiquitte to posting bounties to the centos community for OSS to be packaged in rpm form for centos? -- -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- - - - Jason Pyeron PD Inc. http://www.pdinc.us - - Principal Consultant 10 West 24th Street #100 - - +1 (443) 269-1555
2008 May 01
0
[LLVMdev] optimization assumes malloc return is non-null
...not a contentious issue >> among WG14: There is no doubt that the intent of the standard is that >> this be a valid optimization. > > And of course, ANSI C working groups are infallible. Consider > "noalias". :-) Ah, but with the help of DMR, noalias was avoided and infallibility maintained. (Kidding.) Seriously, I don't think this particular item is a committee booboo, but I didn't mean to imply it cannot be. I only intended to note that the intent is that such optimization be allowed (and that to the best of my knowledge the words reflect that). > B...
2019 Nov 07
1
printer only prints one page, if anything
> I had tried that also, but tried it again. > before my last try, I power-cycled the printer. > This time it worked. > For some reason CUPS now shows two queue names: > HL-L2360D-series Brother HL-L2360D series localhost.localdomain > HL-L2360D HLL2360D > both Brother HL-L2360D for CUPS . > > 'Tain't as big a deal as having none, > but why
2007 Oct 17
2
Re: flac fingerprint
...n .ffp file says, "I wouldn't > deliberately deceive you"; sending a set of .flac files with no > checksums at all says "I never make mistakes." There are people whom > I'd trust not to deceive me deliberately but nobody from whom I'd accept > a claim of infallibility. > > Moreover, if a set of .flac files is being shared, a copy of the > fingerprints can be kept at a URL distributed with them, so that > everyone receiving them can make sure that the fingerprints of the files > (s)he gets match those of the original set. yes, I all understand t...
2016 Nov 01
3
PVS-Studio analysis of LLVM code
Hi, Jonas! On Tue, Nov 1, 2016 at 3:26 AM, Jonas Wagner <jonas.wagner at epfl.ch> wrote: > Hi Eugene, > > I think this is really cool! You've convinced me to try out PVS on some of > my own projects :) > > Of all the warnings presented in the article, there was one for which I > thought it's a false positive. By default, LLVM is compiled without RTTI and >
2005 Aug 18
2
Re:How many TDM22P Card can be used on thesame PC ?
>>You say that each card generates an interrupt in every 1ms. >>So for 6 cards, each card needs to be processed atleast in >>166usec(1ms/6) in their interrupt_routine. Is it teoritically impossible on a >>perfect configuration/system? >In theory there isn't much difference between theory and practice. In >practice, there is. >In other words: you're
2006 May 07
5
Detecting p2p traffic
After varying degrees of success with p2p detection modules, I would like to write the following rules using iptables to reliably identify p2p traffic: 1. If a host on the network has 5 or more simutaneous tcp connections to ports above 1024, mark all connections to ports 1024 and above as 60. 2. If a host has received (or sent) UDP packets from 5 different hosts'' ports above 1024 in a
2015 Mar 12
0
[ANNOUNCE] intel-gpu-tools 1.10
A new intel-gpu-tools quarterly release is available with the following changes: - New frequency manipulation tool (intel_gpu_frequency) - Adjustments for the Solaris port (Alan Coopersmith). - Remove tests/NAMING-CONVENTION since it's all in the docbook now, to avoid divergent conventions. - New CRITICAL log level for really serious stuff (Thomas Wood). - Interactive test mode can now
2008 Jan 18
16
Need a good RoR developer
Hi, I''m looking for qualified Ruby on Rails developers to work on a client web portal project in Midtown Manhattan for a large financial research company. Requirement Overview: Ruby / Ruby on Rails developer with strong object oriented programming background. Good understanding of model driven architecture, MVC, RDBS and data modeling. Required Skill Set: - BS. in Computer Science (or
2001 Feb 24
5
testing for integer
Dear People, Consider the following fragment of R code choose <- function(n,r) { if( is.integer(n) && is.integer(r) && n > 0 && r >= 0 ) { .C("choose",as.double(n),as.double(r),comb = double(1))$comb } else stop("n must be a positive integer and r a non-negative integer.") } This is a practice function (n choose r), which I
2019 Apr 18
0
Announce: OpenSSH 8.0 released
OpenSSH 8.0 has just been released. It will be available from the mirrors listed at http://www.openssh.com/ shortly. OpenSSH is a 100% complete SSH protocol 2.0 implementation and includes sftp client and server support. Once again, we would like to thank the OpenSSH community for their continued support of the project, especially those who contributed code or patches, reported bugs, tested
2011 May 24
6
OT: wifi, phone, power in India and Malaysia
A not so technical friend in India is shopping for a laptop. He often travels and stays months in Malaysia and so needs to be able to use the laptop there as well. He typically connects to the internet via wifi, but sometimes must use a telephone line (yes, with a modem). And of course there will be times when he has to plug into mains power to recharge the battery. So to be able to fully use
2006 Sep 07
4
Mounting home directory from Windows in Linux
Hi All, I'm using samba 3.0.10-1 on RedHat Enterprise Linux 4. I'm authentication to our PDC using Winbind and also mounting our home directory share (from Windows) onto our main Linux server such that when a user logs on to the Linux server, their Windows home directory is mounted also. I'm using the domain admin account to mount the home directory share, which I feel is
2007 Mar 09
6
R and clinical studies
Does anyone know if for clinical studies the FDA would accept statistical analyses performed with R ? Delphine Fontaine