search for: tch

Displaying 20 results from an estimated 56 matches for "tch".

Did you mean: ch
2023 Mar 09
1
rsync 3.2.7 hangs when --usermap is used and receiver is not a super-user
Hi. On Wed, 08 Mar 2023 22:21:28 +0100 Tomasz Chmielewski via rsync wrote: > After upgrading to rsync 3.2.7, the following command hangs forever > (using "--usermap" causes the hang; without "--usermap" it doesn't > hang): > rsync -v -p -e --usermap user:user /etc/services user at remote: This command is incorrect: the -e option needs a command. Without
2009 Feb 23
1
sieve-test issue
Hi all, I'm using a build of dovecot 1.2, and I'm seeing this: # ls -al 1235038385.M765212P13483.tch-mailstore1\,S\=3927\,W\=4017\:2\,S -rw------- 1 mail mail 3927 2009-02-19 10:13 1235038385.M765212P13483.tch-mailstore1,S=3927,W=4017:2,S (root at tch-mailstore1:/mailstore/mail/domain.net/i/ian/mail/.postini/cur) (2009-02-23 13:46:04) # sieve-test -c ../../../sieve/default.sieve 1235038385.M76521...
2009 Feb 27
3
Making tapply code more efficient
...n. What I am doing is looking to see if the teacher is the same for each instance of the unique student ID. So, if I implement the following: same <- function(x) length( unique(x) ) == 1 results <- data.frame( freq = tapply(qq$student_unique_id, qq$student_unique_id, length), tch = tapply(qq$teacher_unique_id, qq$student_unique_id, same) ) I get the following results. I can see that student 1 appears in the data twice and the teacher is always the same. However, student 2 appears three times and the teacher is not always the same. > results freq tch 1 2 TRUE 2...
2017 Jun 06
3
celt_inner_prod() and dual_inner_prod() NEON intrinsics
Hi Linfeng, On 05/06/17 03:31 PM, Linfeng Zhang wrote: > Yes we'll have one more patch set related to xcorr in next week. Please > don't wait if it's too late for 1.2 release. Assuming there's no issue with the patches, next week isn't too late. Also, I've started looking at your patches. So far there's one thing that puzzles me a bit. In the OPUS_CHECK_A...
2006 Jul 06
4
Re: psexec for Linux and svcctl.idl changes
> I am not a regular samba developer, but I wanted to have psexec > equivalent, so I wrote it, it works but still need some development. > I do not know if patches of such sizes (about 30k) are welcome on > this list so I've put it on web page, with some description: > http://eol.ovh.org/winexe/ > Comments welcome. Hi, this is really great, you can get Windows command line (cmd) in your Linux shell: [tch@tomek Desktop]$ uname -r 2.6.16-1md...
2018 Mar 22
2
dovecot-uidlist is not up-to-date
Tried that. It rebuilds index based on dovecot-uidlist. But not the dovecot-uidlist based on actual mail data. :( Fil On March 21, 2018 11:58:21 PM EDT, "@lbutlr" <kremels at kreme.com> wrote: >On 2018-03-21 (17:15 MDT), Dmitry Filonov ><filonovd at enders.tch.harvard.edu> wrote: >> Now the question is if there's any way to tell dovecot to rebuild >dovecot-uidlist files using actual Maildir data. I don't want to remove >dovecot-uidlist files as this triggers the whole mailbox being >re-downloaded by the imap client. With some ac...
2016 Nov 27
2
Rebuild UIDs for mdbox
...completed (0.000 + 0.000 secs). imap-thread.c:1344:imap select run - end 0 imap-thread.c:388:generic_cb imap-thread.c:372:found imap 0x22c8f60 imap-thread.c:1431:imap select - end imap.c:3961:select: exists 399 recent 0 expunge 0 uid_validity 1163720154 can_create_flags 1 imap-thread.c:2018:imap fetch_uid - begin imap-thread.c:372:found imap 0x22c8f60 imap-thread.c:372:found imap 0x22c8f60 [20:23:04] IMAP- [fetching UIDs...] [20:23:04] IMAP> 87 UID FETCH 1:* (UID) [20:23:04] IMAP< [FETCH data - 1024 bytes] [20:23:04] IMAP< [FETCH data - 1024 bytes] [20:23:04] IMAP< [20:23:04] IMAP&lt...
2009 Jul 19
1
Re: skype
...been using GiZMO for about 6 months now - love it!. You do have to pay for some services, but its nice to have the knowledge that you are not being listened to or your private info is not given out. The only reason that Skype is worth having is because Opera uses it. Now, are you Opera's B-tch?
2018 Feb 27
2
scale.default gives an incorrect error message when is.numeric() fails on a sparse row matrix (dgeMatrix)
...992, 1.00000000000004, 0.999999999999975, 1.00000000000006, 1.00000000000006), Dim = c(1L, 10L), Dimnames = list(NULL, c("x.age", "x.sex", "x.bmi", "x.map", "x.tc", "x.ldl", "x.hdl", "x.tch", "x.ltg", "x.glu")), factors = list() ) scale(x, FALSE, normx) The problem is that this check fails because is.numeric(normx) is FALSE: if (is.numeric(scale) && length(scale) == nc) So, the error message is misleading. In fact length(scale) is the same as nc....
2018 Mar 21
2
dovecot-uidlist is not up-to-date
...i, ?Am using dovecot-2.2.10-8 on Centos-7 and everything seemed to be totally fine for many years. Now am trying to migrate our on-premises mail server to the cloud and I had to get some statistics. I was doing that using the doveadm utility. Unfortunately I found that the numbers don't match if I check the real messages in my Maildirs. For some account doveadm was reporting number of messages but that account didn't have any messages stored at all. So I looked a bit further and found that doveadm utility reports data form indexes and indexes are built using dovecot-uidlist data...
2017 Jun 06
0
celt_inner_prod() and dual_inner_prod() NEON intrinsics
...at. Or just use if(a==b || (a==0.0 && b==0.0)) ... but I haven't try this. Thanks, Linfeng On Mon, Jun 5, 2017 at 8:43 PM Jean-Marc Valin <jmvalin at jmvalin.ca> wrote: > Hi Linfeng, > > On 05/06/17 03:31 PM, Linfeng Zhang wrote: > > Yes we'll have one more patch set related to xcorr in next week. Please > > don't wait if it's too late for 1.2 release. > > Assuming there's no issue with the patches, next week isn't too late. > > Also, I've started looking at your patches. So far there's one thing > that puzzles m...
2017 Jun 06
4
Antw: Re: celt_inner_prod() and dual_inner_prod() NEON intrinsics
...Maybe it can help... Regards, Ulrich > > Thanks, > Linfeng > > On Mon, Jun 5, 2017 at 8:43 PM Jean-Marc Valin <jmvalin at jmvalin.ca> wrote: > >> Hi Linfeng, >> >> On 05/06/17 03:31 PM, Linfeng Zhang wrote: >> > Yes we'll have one more patch set related to xcorr in next week. Please >> > don't wait if it's too late for 1.2 release. >> >> Assuming there's no issue with the patches, next week isn't too late. >> >> Also, I've started looking at your patches. So far there's one thing...
2006 Mar 03
3
Peculiar timing result
...LAS than on a single-core processor. Here is the timing on a single-core Athlon 64 3000+ running under today's R-devel with version 0.995-5 of the Matrix package. > library(Matrix) > data(star, package = 'mlmRev') > system.time(fm1 <- lmer(math~gr+sx+eth+cltype+(yrs|id)+(1|tch)+(yrs|sch), star, control = list(nit=0,grad=0,msV=1))) 0 241720.: 1.16440 0.335239 0.00000 1.78732 0.867209 0.382318 0.00000 1 239722.: 1.94952 5.00000e-10 0.00933767 1.65999 0.858003 0.341520 0.00908757 2 239580.: 1.95924 0.0884059 0.00933767 1.65308 0.857487 0.339296...
2017 Jun 06
0
celt_inner_prod() and dual_inner_prod() NEON intrinsics
...gt; > Thanks, > > Linfeng > > > > On Mon, Jun 5, 2017 at 8:43 PM Jean-Marc Valin <jmvalin at jmvalin.ca> > wrote: > > > >> Hi Linfeng, > >> > >> On 05/06/17 03:31 PM, Linfeng Zhang wrote: > >> > Yes we'll have one more patch set related to xcorr in next week. > Please > >> > don't wait if it's too late for 1.2 release. > >> > >> Assuming there's no issue with the patches, next week isn't too late. > >> > >> Also, I've started looking at your patches...
2010 Aug 11
2
glusterfs on 32 bit - experiences?
I was wondering about general stability of glusterfs on 32 bit x86 Linux. I have it running without problems on some lightly used 32 bit systems, but this scares me a bit if I decided to use it in production[1]: While the 3.x versions of Gluster will compile on 32bit systems we do not QA or test on 32-bit systems. We strongly suggest you do NOT run Gluster in a 32-bit environment. I was
2018 Mar 22
0
dovecot-uidlist is not up-to-date
On 2018-03-21 (17:15 MDT), Dmitry Filonov <filonovd at enders.tch.harvard.edu> wrote: > Now the question is if there's any way to tell dovecot to rebuild dovecot-uidlist files using actual Maildir data. I don't want to remove dovecot-uidlist files as this triggers the whole mailbox being re-downloaded by the imap client. With some accounts having ov...
2018 Mar 22
0
dovecot-uidlist is not up-to-date
...index based on dovecot-uidlist. But not the > dovecot-uidlist based on actual mail data. :( > > Fil > > > > On March 21, 2018 11:58:21 PM EDT, "@lbutlr" <kremels at kreme.com> wrote: > > On 2018-03-21 (17:15 MDT), Dmitry Filonov <filonovd at enders.tch.harvard.edu> wrote: > > Now the question is if there's any way to tell dovecot to > rebuild dovecot-uidlist files using actual Maildir data. I > don't want to remove dovecot-uidlist files as this triggers > the whole mailbox being re-downloa...
2005 Mar 07
1
0.10.1
So, do I really want to upgrade to 0.10.1? Seems like a lot of people are having issues. Joe
2013 Jun 13
2
[Bug 9948] New: Patch to provide progress display in log file
https://bugzilla.samba.org/show_bug.cgi?id=9948 Summary: Patch to provide progress display in log file Product: rsync Version: 3.0.9 Platform: All OS/Version: All Status: NEW Severity: enhancement Priority: P5 Component: core AssignedTo: wayned at samba.org Reporte...
2006 Aug 28
0
debugger
W a t c h o u t! ALLAINCE ETNERPRISE (A ETR) Current Prcie: 0.80 Add this g e m to your wat ch list, and wa tch it tard closely! Nwes Relaese! Teacorp announces breackrough in removing deadly land mines. Mill Valley, California August 25, 2006 - The Alliacne Entreprise Coproration announced today a breakthrough in developing an Areial Lnadmine Sytsem aimed at locating, detecting and mapping deadly landmi...