Displaying 5 results from an estimated 5 matches for "36865".
2017 Jul 26
15
[5.0.0 Release] Release Candidate 1 tagged
Dear testers,
5.0.0-rc1 has just been tagged.
Please build, test and upload binaries to the sftp. Let me know if
there are any issues.
I'll upload sources, docs, and your binaries to the pre-release
website once they're ready.
Thanks,
Hans
2017 Jul 31
3
[cfe-dev] [5.0.0 Release] Release Candidate 1 tagged
...of 38650)
> FAIL: ThreadSanitizer-x86_64 :: signal_reset.cc (38649 of 38650)
> FAIL: ThreadSanitizer-x86_64 :: race_on_mutex2.c (38650 of 38650)
>
> Test failures on i386-freebsd10:
>
> FAIL: AddressSanitizer-Unit :: ./Asan-i386-inline-Test/AddressSanitizer.DoubleFreeTest (2480 of 36865)
> FAIL: AddressSanitizer-Unit :: ./Asan-i386-inline-Test/AddressSanitizer.ReallocFreedPointerTest (2505 of 36865)
> FAIL: AddressSanitizer-Unit :: ./Asan-i386-inline-Test/AddressSanitizer.UseThenFreeThenUseTest (2542 of 36865)
> FAIL: AddressSanitizer-Unit :: ./Asan-i386-inline-Test/Addre...
2007 Apr 04
6
Exception when doing DRb remote calls from a BackgrounDRb worker
Hello,
I am trying to make DRb calls to a external server from a backgrounDRb
worker, but I''m getting always the next exception when I make the remote
call.
> ERROR:
> drbunix:///tmp/backgroundrb.11175/experimenter_worker_3e899de945f0803a82cd257cfac316d0_0_0.0738904928422051
> - #<Errno::ENOENT: No such file or directory -
>
2004 May 18
0
Updated kdelibs resolve URI security issues
There is an update to kdelibs for CentOS 3.1
https://rhn.redhat.com/errata/RHSA-2004-222.html refers.
Updated files are :-
updates/i386/RPMS/kdelibs-3.1.3-6.4.i386.rpm
updates/i386/RPMS/kdelibs-devel-3.1.3-6.4.i386.rpm
updates/i386/SRPMS/kdelibs-3.1.3-6.4.src.rpm
These are available at http://mirror.centos.org/3.1/ and should be on all
mirrors within a few hours.
To update to the latest
2017 Sep 08
1
Optimize code to read text-file with digits
On 8 September 2017 at 11:25, PIKAL Petr <petr.pikal at precheza.cz> wrote:
> > Moller Skarbiniks Pedersen
> My program which is slow looks like this:
> >
> > filename <- "digits.txt"
> > lines <- readLines(filename)
>
> why you do not read a file as a whole e.g. by
>
> lines<-read.table("digits.txt")
>
Good idea.