Displaying 20 results from an estimated 2389 matches for "thoroughness".
2010 Oct 29
1
[PATCH] Bootstrap ocaml/.depend more thoroughly
Although I haven't experienced a specific problem with bootstrapping an empty
.depend file, this commit bootstraps it properly using ocamldep. This may or may
not solve any real problem, but it's quite simple and more obviously correct.
---
bootstrap | 2 +-
ocaml/Makefile.am | 10 +++-------
ocaml/Makefile.depend | 6 ++++++
3 files changed, 10 insertions(+), 8
2019 Nov 23
0
Re: [PATCH nbdkit v2 10/10] tests: Test the Python plugin thoroughly.
On Sat, Nov 23, 2019 at 01:42:15AM +0200, Nir Soffer wrote:
> On Fri, Nov 22, 2019 at 9:55 PM Richard W.M. Jones <rjones@redhat.com> wrote:
> > +def pread(h, count, offset, flags):
> > + assert flags == 0
> > + return h['disk'][offset:offset+count]
>
> Very nice and simple test plugin!
>
> But this returns always a bytearray, which is also
2017 Jan 13
9
Dovecot source code audit
Mozilla sponsored source code audit for Dovecot. So thanks to them we have our first public code audit: https://wiki.mozilla.org/MOSS/Secure_Open_Source/Completed#dovecot
Dates: October 2016 - January 2017
dovecot is a POP and IMAP mailserver; it is used in 68% of IMAP server deployments worldwide. The audit was performed by Cure53.
The team found the following problems:
? 3 Low
The Cure53
2008 Oct 29
1
Thorough distributed backup/sync strategy
Does anyone have a good distributed backup strategy? I've been revising
mine for a year or so now and always realize there's some hole or
another in it. I get the feeling to do it exactly the way I want it
needs to be complex, but I'm looking for something elegant.
My data consists of some of these representative folders:
.mozilla
Documents
Pictures
.ssh
Music
bin
And these
2019 Nov 24
0
Re: [PATCH nbdkit v2 10/10] tests: Test the Python plugin thoroughly.
On Sat, Nov 23, 2019 at 06:11:47PM +0200, Nir Soffer wrote:
> On Sat, Nov 23, 2019 at 3:10 PM Richard W.M. Jones <rjones@redhat.com> wrote:
> >
> > On Sat, Nov 23, 2019 at 01:42:15AM +0200, Nir Soffer wrote:
> > > On Fri, Nov 22, 2019 at 9:55 PM Richard W.M. Jones <rjones@redhat.com> wrote:
> > > > +def pread(h, count, offset, flags):
> > >
2004 Oct 05
4
cat function within a loop
I have a 'cat' function within a for loop.
I would like it to print out the result everytime it goes through the
for loop so that I can monitor the progress, but it only prints out
(execute the cat function) once at the very end of the for loop.
A simple example:
for(i in 1:100000){
cat(i, '\n')
}
What should I do in order for the cat function to be executed
everytime it goes
2008 Oct 02
4
namespaces
I'd like to control my namespace thoroughly, separated by task. Is
there a way, in R session, to introduce namespaces for tasks
dynamically and switch them as needed? Or, is there a combination of
load/save workspace steps which can facilitate this?
Cheers,
Alexy
2013 Nov 13
7
[LLVMdev] Any objections to my importing GoogleMock to go with GoogleTest in LLVM?
I have some concrete use cases in testing the pass manager where it will
allow the tests of this API to be more thorough, less verbose, and easier
to maintain. I'm not claiming to be the biggest fan of some features in
GoogleMock, but on the whole, I think it's better than the alternative and
will allow more careful testing of C++ APIs where the interesting part is
the API itself.
2013 Mar 16
3
Do you ALWAYS use "bundle exec rspec spec" tests?
I''m going through Michael Hartl''s Rails tutorial, and I am happy to report
that (as of the end of section 7) I''m able to get things working. (That
said, I skipped the section on automated testing, as Hartl warned that
automated testing is the most likely part of his book to become outdated.)
There is a heavy emphasis on the "bundle exec rspec spec" tests.
2005 Sep 05
4
Why is yum not liked by some?
I have seen messages posted on the Fedora oriented forums that imply
that "yum" is antiquated. Not being a Linux guru, I do not have the
experience to make a thorough evaluation, but so far it has been just great.
Todd
--
Ariste Software
200 D Street Ext
Petaluma, CA 94952
(707) 773-4523
2017 Jun 29
4
The undef story
>
> Having read all of these threads, I am thoroughly convinced by the positions put forward by others.
>
Chandler,
others have decided to let the compiler continue mis-compiling the
function-inlining example, others have decided to not fix the inability to hoist
a loop invariant divide out of a loop. It sounds like you haven’t even thought
about these things let alone
2006 May 23
5
QoS book
Hello all,
Can anyone recommend a good book which thoroughly explains QoS from a
Linux perspective? Something with TC examples & the like. I''ve looked
at the following:
http://www.amazon.com/gp/product/1580533418/qid=1148368189/sr=1-2/ref=sr_1_2/102-2819973-6353768?s=books&v=glance&n=283155
Engineering Internet QoS.
Thanks.
2005 Dec 02
4
How to get the count of matching documents
I''m trying to generate a rails pagination helper for some ferret
search results, and I need to know how many total matches there are to
my search query. I don''t see an obvious way of finding this. Any
help would be appreciated.
Thanks,
Carl Youngblood
2019 Nov 24
1
Re: [PATCH nbdkit v2 10/10] tests: Test the Python plugin thoroughly.
On Sun, Nov 24, 2019, 12:42 Richard W.M. Jones <rjones@redhat.com> wrote:
> On Sat, Nov 23, 2019 at 06:11:47PM +0200, Nir Soffer wrote:
> > On Sat, Nov 23, 2019 at 3:10 PM Richard W.M. Jones <rjones@redhat.com>
> wrote:
> > >
> > > On Sat, Nov 23, 2019 at 01:42:15AM +0200, Nir Soffer wrote:
> > > > On Fri, Nov 22, 2019 at 9:55 PM Richard W.M.
2018 Sep 11
1
[PATCH] PCI: Reprogram bridge prefetch registers on resume
I have created https://bugzilla.kernel.org/show_bug.cgi?id=201069 to
archive the research done so far.
On Fri, Sep 7, 2018 at 11:05 PM, Peter Wu <peter at lekensteyn.nl> wrote:
> Windows 10 unconditionally rewrites these registers (BAR, I/O Base +
> Limit, Memory Base + Limit, etc. from top to bottom), see annotations:
> https://www.spinics.net/lists/linux-pci/msg75856.html
>
2019 Nov 22
0
[PATCH nbdkit v2 10/10] tests: Test the Python plugin thoroughly.
This tests the Python plugin thoroughly by issuing client commands
through libnbd and checking we get the expected results.
---
tests/Makefile.am | 13 +--
tests/test-python-plugin.py | 134 ++++++++++++++++++++++++++++
tests/test-python.py | 172 ++++++++++++++++++++++++++++++++++++
tests/test.py | 60 -------------
4 files changed, 309 insertions(+), 70
2006 Jan 12
3
linksys SPA-941
does anyone get a hold of the SPA-941 Provisioning Guide?
i tried call Sipura's tech support, seems like none of
them heard of the term "remote provisioning". they kept
refering me to their web site which i've check thoroughly,
and could not find any documentations on the SPA-941. finally
they gave me a phone number to call, which appears to be a fax
machine. that's when i
2014 Jun 27
4
Lets work towards a new version
Martijn van Beurden wrote:
> Like I reported just before the release of 1.3.0 (mail of Fri,
> 05 Apr 2013 08:25:10 +0200, to be specific), compiling on
> Raspbian (Debian Wheezy, GCC 4.6) returns quite some warnings of
> the type -Wcast-align.
>
> > CC lpc_intrin_sse2.lo
> > CC lpc_intrin_sse41.lo
> > CC md5.lo
> > md5.c: In function
2019 Apr 30
3
Re: libvirtd via unix socket using system uri
On Tue, 30 Apr 2019 at 10:40, Michal Privoznik <mprivozn@redhat.com> wrote:
> Is there any problem running libvirtd as root?
>
> Yes, in the regulated environment in which I work! I have to do far more
thorough threat analysis than I would do if I knew which capabilities it
had. So far, we've accepted the extra work; but it would be wonderful to
be able to run a locked-down
2008 Apr 18
3
Permanent change to the working directory
Dear helpers,
I've looked in the help files (maybe not very thoroughly but I looked) and I
couldn't find a straightforward way to permanently set the working directory
(where I save and read files). Each time I startup R the working dir is
automatically "C:/R/bin" [using:getwd()], and I know I can change it using
setwd [for example setwd("C:/R/DATA"), but it's only