search for: testers

Displaying 20 results from an estimated 2165 matches for "testers".

2003 Apr 15
5
making a dataframe out of lapply() result
Dear R-helpers, i have a question on how to vectorize this problem: i have a dataframe: tester <- data.frame(groups=c("A","A","B","B","C","C"), one=c(1,1,2,2,3,3), two=c(6,6,7,7,8,8)) # i split it into a list tester.L <- split(tester, tester$groups) # And want to keep only the first item in each: lapply(tester.L, function(x) x
2012 Jan 10
2
Quota-warning and setresgid
Hi! Please help me with this. The problem exists when quota-warning is executing: LOG: Jan 10 10:15:06 lmtp(85973): Debug: none: root=, index=, control=, inbox=, alt= Jan 10 10:15:06 lmtp(85973): Info: Connect from local Jan 10 10:15:06 lmtp(85973): Debug: Loading modules from directory: /usr/local/lib/dovecot Jan 10 10:15:06 lmtp(85973): Debug: Module loaded:
2019 Jan 09
2
[Release-testers] [cfe-dev] 7.0.1-final has been tagged
On 01/08/2019 11:36 AM, Ian Tessier via Release-testers wrote: > Can the ubuntu tarballs be published to the download site? They're not available yet. > These are up on the download site now. -Tom > On Mon, Dec 24, 2018 at 7:38 AM Brian Cain via cfe-dev <cfe-dev at lists.llvm.org <mailto:cfe-dev at lists.llvm.org>> wrote: &g...
2016 Aug 20
4
[Release-testers] [3.9 Release] Release Candidate 2 has been tagged
...658b LLVM-3.9.0-rc2-win64.exe Thanks, Hans On Fri, Aug 19, 2016 at 9:22 AM, Diana Picus <diana.picus at linaro.org> wrote: > Hi, > > All good on AArch64 - we've uploaded the binaries. > > Regards, > Diana > > On 19 August 2016 at 04:51, Hans Wennborg via Release-testers > <release-testers at lists.llvm.org> wrote: >> Dear testers, >> >> 3.9.0-rc2 was just tagged from the 3.9 branch at r279183. >> >> This is a release candidate in the very real sense that if nothing new >> comes up, this is be what the final release look...
2016 Jun 10
5
[Release-testers] 3.8.1-rc1 has been tagged
...kers/FixedAddressChecker.cpp" /usr/bin/ld: BFD (GNU Binutils for Debian) 2.26 internal error, aborting at ../../bfd/merge.c:909 in _bfd_merged_section_offset /usr/bin/ld: Please report this bug. collect2: error: ld returned 1 exit status ________________________________________ From: Release-testers [release-testers-bounces at lists.llvm.org] on behalf of Sylvestre Ledru via Release-testers [release-testers at lists.llvm.org] Sent: 09 June 2016 17:08 To: Tom Stellard; release-testers at lists.llvm.org; cfe-dev at lists.llvm.org; llvm-dev at lists.llvm.org Subject: Re: [Release-testers] 3.8.1-r...
2007 Feb 13
2
lda quota in sql works but is ignored
Hi, (dovecot latest vers) i have lda deliver up with quota and sql, but it seems that deliver simply ignores it, normally it should bounce the message deliver(tester at example.de): Feb 13 15:31:32 Info: auth input: gid=1001 deliver(tester at example.de): Feb 13 15:31:32 Info: auth input: quota=dirsize:storage=3072000 deliver(tester at example.de): Feb 13 15:31:32 Info: Home dir not found:
2016 Aug 20
2
[Release-testers] [3.9 Release] Release Candidate 2 has been tagged
...on sles11.3 x86_64, msan's getrlimit test fails to build for lack of prlimit(). SLES11.3 has glibc 2.11.3. Is there a minimum required glibc? I think this test implementation previously used getrlimit(), which is present on glibc2.11.3. On Fri, Aug 19, 2016 at 11:22 AM, Diana Picus via Release-testers < release-testers at lists.llvm.org> wrote: > Hi, > > All good on AArch64 - we've uploaded the binaries. > > Regards, > Diana > > On 19 August 2016 at 04:51, Hans Wennborg via Release-testers > <release-testers at lists.llvm.org> wrote: > > Dear tes...
2016 Aug 20
2
[Release-testers] [3.9 Release] Release Candidate 2 has been tagged
...o build >> for lack of prlimit(). SLES11.3 has glibc 2.11.3. Is there a minimum >> required glibc? I think this test implementation previously used >> getrlimit(), which is present on glibc2.11.3. >> >> >> On Fri, Aug 19, 2016 at 11:22 AM, Diana Picus via Release-testers >> <release-testers at lists.llvm.org> wrote: >>> >>> Hi, >>> >>> All good on AArch64 - we've uploaded the binaries. >>> >>> Regards, >>> Diana >>> >>> On 19 August 2016 at 04:51, Hans Wennborg via Rele...
2004 Dec 29
1
User authentication to AD200X, need local users?
I am trying to get user authentication in a 200X AD to have domain users see the samba shares (RH ES3, samba 3.0.9-1). I can see the shares, but when I try to access any of the shares, I get prompted for a username and password and this is what shows up in the log.winbindd file ------------------- [2004/12/29 08:17:37, 1] nsswitch/winbindd_user.c:winbindd_getpwnam(161) user 'robl' does
2018 Mar 30
4
LLVM 5.0.2-rc2 has been tagged
Hi, I've fixed the version numbering and tagged 5.0.2-rc2. Testers can begin testing. -Tom
2016 Jun 12
2
[cfe-dev] [Release-testers] 3.8.1-rc1 has been tagged
...Uploaded Fedora and openSUSE binaries. Test suite is green but I'm seeing > two libc++ test failures when running check-all. I'm pretty sure these were > present in 3.8.0, am I supposed to file bug reports for them? > > On Fri, Jun 10, 2016 at 7:45 PM, Daniel Sanders via Release-testers < > release-testers at lists.llvm.org> wrote: > >> Hi, >> >> I had a quick look at that link and it seems to be a linker internal >> error. Presumably we're triggering a bug in the system toolchain. >> >> FWIW, my mipsel build on a Debian Jessie m...
2003 Apr 07
5
How to sort a dataframe?
Dear R-helpers, for the purpose of plotting a dataframe, i am trying to sort a dataframe by one column, for example tester <- data.frame(one=c(3,2,1), two=c(2,3,1)) #> tester # one two #1 3 2 #2 2 3 #3 1 1 # I want to sort "tester" by column "one", so that i get a dataframe # that looks like: #one two #1 1 #2 3 #3 2 I know of 'sort' but
2018 Feb 27
0
[Release-testers] [6.0.0 Release] Release Candidate 3 tagged
...lvm-6.0.0-rc3-mips-linux-gnu.tar.xz)= 54887a039d3d7ccff17a0c7245f4c9d778a1c22f96b619db554849da55293d61 SHA256(clang+llvm-6.0.0-rc3-x86_64-linux-gnu-debian8.tar.xz)= 75f1a18f23b9d34e3f1ebc223ca0071458b9e8b1392040f9b3d1725566ff6ec1 Thanks, Simon ________________________________________ From: Release-testers [release-testers-bounces at lists.llvm.org] on behalf of Hans Wennborg via Release-testers [release-testers at lists.llvm.org] Sent: Friday, February 23, 2018 3:14 PM To: Release-testers Cc: llvm-dev; cfe-dev; openmp-dev (openmp-dev at lists.llvm.org); LLDB Dev Subject: [Release-testers] [6.0.0 Rel...
2016 Jun 22
7
3.8.1-final has been tagged
Hi, I've tagged 3.8.1-final, so testers can start building the final binaries. -Tom
2018 Dec 24
2
[Release-testers] 7.0.1-final has been tagged
...d clang+llvm-7.0.1-x86_64-linux-gnu-ubuntu-16.04.tar.xz caf149635742622a3a5b220146ff34f9202b8670 clang+llvm-7.0.1-x86_64-linux-gnu-ubuntu-14.04.tar.xz 5e2b33ac129b8471683dccaeb2818004eb5acea8 clang+llvm-7.0.1-x86_64-linux-sles11.3.tar.xz On Thu, Dec 20, 2018 at 12:18 PM Dimitry Andric via Release-testers < release-testers at lists.llvm.org> wrote: > On 20 Dec 2018, at 01:23, Tom Stellard via Release-testers < > release-testers at lists.llvm.org> wrote: > > > > I've tagged the 7.0.1 final release. Testers may begin uploading > binaries. > > Main test resu...
2018 Feb 13
0
[Release-testers] [6.0.0 Release] Release Candidate 2 tagged
...lvm-6.0.0-rc2-mips-linux-gnu.tar.xz)= bdec9b0fe00cfdeefe53b8e471b9266ad9a99dfd10eded5e078026f67a38650a SHA256(clang+llvm-6.0.0-rc2-x86_64-linux-gnu-debian8.tar.xz)= e6a281885d2f0fbc4e00bdc34803f67bb756f19badef3f24ed3738b2244c57cc Thanks, Simon ________________________________________ From: Release-testers [release-testers-bounces at lists.llvm.org] on behalf of Hans Wennborg via Release-testers [release-testers at lists.llvm.org] Sent: Wednesday, February 7, 2018 8:51 PM To: Release-testers Cc: llvm-dev; cfe-dev; openmp-dev (openmp-dev at lists.llvm.org); LLDB Dev Subject: [Release-testers] [6.0.0 R...
2019 Jul 20
7
8.0.1-final has been tagged
Hi, The 8.0.1 final release has been tagged. Testers please upload the final binaries. -Tom
2018 Jan 18
0
[Release-testers] [6.0.0 Release] Release Candidate 1 tagged
We're now using it as the main compiler in the OpenMandriva development builds -- no issues so far (after rebuilding a couple of key packages for testing). ttyl bero On 17 January 2018 at 18:53, Hans Wennborg via Release-testers <release-testers at lists.llvm.org> wrote: > Dear testers, > > Start your engines; 6.0.0-rc1 was just tagged. > > I know there are still open blockers and it's early in the process in > a way, but I'd like to find out where we are. Please run the test > script, le...
2016 Aug 19
8
[3.9 Release] Release Candidate 2 has been tagged
Dear testers, 3.9.0-rc2 was just tagged from the 3.9 branch at r279183. This is a release candidate in the very real sense that if nothing new comes up, this is be what the final release looks like. There are currently no open release blockers, and no patches in my merge-queue. Please build, test, and upload...
2016 Aug 31
6
[3.9 Release] 'final' has been tagged
Dear testers, The final version of 3.9.0 was just tagged (from the 3.9 branch at r280312). There were no changes after rc3. This took a little longer than expected, but on the up side that means it's had more time to be tested. Please build the final binaries and upload to the sftp. For others following...