search for: younger

Displaying 20 results from an estimated 250 matches for "younger".

2018 Feb 28
2
Using virtual folders with younger and index files
...ut I wanted to bring it to the attention of others on the list to see if there exists a better solution, if I found a bug, or if it's just a matter of updating documentation. I have a virtual folder to get the most recent two weeks of mails; it looks something like this: > INBOX > all younger 1209600 I made this folder back in October. Lately, I started to notice that the virtual folder had a surprising amount of mail in it - I don't get 1,000 e-mails per week! After some doveadm commands, I realized that e-mails from October were still present in my virtual folder! Updating the...
2013 Jun 20
2
[PATCH V2] ocfs2: need rollback when journal_access failed in ocfs2_orphan_add()
...ile dinode has not been updated. Accordingly, the data is not consistent between file dinode and orphan dir. So, need to call ocfs2_journal_access_di() before __ocfs2_add_entry(), and if ocfs2_journal_access_di() failed, orphan_fe and orphan_dir_inode->i_nlink need rollback. Signed-off-by: Younger Liu <younger.liu at huawei.com> Cc: Jie Liu <jeff.liu at oracle.com> --- fs/ocfs2/namei.c | 39 +++++++++++++++++++++++---------------- 1 file changed, 23 insertions(+), 16 deletions(-) diff --git a/fs/ocfs2/namei.c b/fs/ocfs2/namei.c index f53471d..087c58b 100644 --- a/fs/ocfs2/nam...
2018 Feb 28
0
Using virtual folders with younger and index files
...tion of others on the list to see if > there exists a better solution, if > I found a bug, or if it's just a matter of updating documentation. > > I have a virtual folder to get the most recent two weeks of mails; it looks > something like this: > >> INBOX >> all younger 1209600 > > I made this folder back in October. Lately, I started to notice that the > virtual folder had a surprising amount > of mail in it - I don't get 1,000 e-mails per week! After some doveadm > commands, I realized that e-mails from > October were still present in my...
2013 Sep 03
1
[PATCH V3 RESENT] ocfs2: lighten up allocate transaction
...38,0):ocfs2_allocate_unwritten_extents:1504 ERROR: status = -12 [ 7372.278607] (fallocate,6438,0):__ocfs2_change_file_space:1955 ERROR: status = -12 ^C With this patch, the test works well. Compared with PATCH V2, this version is based on linux-3.11-rc2, and modified coding style. Signed-off-by: Younger Liu <younger.liu at huawei.com> Cc: Jie Liu <jeff.liu at oracle.com> --- fs/ocfs2/file.c | 6 +----- fs/ocfs2/journal.c | 35 +++++++++++++++++++++++++++++++++++ fs/ocfs2/journal.h | 11 +++++++++++ fs/ocfs2/ocfs2_trace.h | 2 ++ 4 files changed, 49 insertions(...
2007 Feb 23
0
Migration from courierpop3d (younger versions)
Dear list, I am looking for a way to set up dovecot as a successor for courier pop3d, however I am looking for a way to preserve the UIDLs. Any progress on this? I can help out writing a converter if I know where the appropriate specs are. References: [1] http://www.dovecot.org/list/dovecot/2006-April/012727.html [2]
2019 Sep 13
2
revoking ssh-cert.pub with serial revokes also younger certs
Hi there! What am I doing wrong? I created a ssh-certificate id_user_rsa-cert.pub with this dump: id_user_rsa-cert.pub: root at host # ssh-keygen -Lf id_user_rsa-cert.pub ??????? Type: ssh-rsa-cert-v01 at openssh.com user certificate ??????? Public key: RSA-CERT SHA256:kPitwgxblaUH4viBoFoozSPq9Pblubbedk ??????? Signing CA: ED25519 SHA256:8p2foobarQo3Tfcblubb5+I5cboeckvpnktiHdUs ??????? Key ID:
2018 Jan 25
2
Local user could not access share directory
2018-01-22 17:16 GMT+08:00 Rowland Penny via samba <samba at lists.samba.org>: > > > > I thought I already had, remove the duplicate users from /etc/passwd, > change to the > winbind 'rid' backend and your AD users will become Unix > users as well. > If you don't want the DOMAIN at the start of the username and you only > have one AD domain, add this to
2005 Jul 01
1
Attended transfer works for caller, not for callee
...ansfer, no dial tone is given. The log said "NOTICE[11245]: app.c:67 ast_app_dtget: Huh....? no dial for indications?". Anybody has the same problem as I do? BTW, can I have more precise control of transfer behavior? If yes, will anybody show me the document? Thank you very much! BR Younger Wang -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20050701/b26d8ce2/attachment.htm
2006 Jan 05
3
"dumb" SATA controller recommendation
...SATA ports to a motherboard that doesn't include SATA support. I'm not looking for anything fancy, just 2 SATA ports that a recent vintage kernel will recognize without a lot of configuration gymnastics. The intended use is for relatively light weight internet browser workstations for younger students. Suggestions would be very much appreciated. Cheers,
2019 Sep 16
2
revoking ssh-cert.pub with serial revokes also younger certs
Hi Daminan! Hmmm... thought about a little... when i use -vvv with ssh-keygen -Qf i see "debug1:..." So i think, debug is compiled in. ssh-keygen --help gives me ssh-keygen -k -f krl_file [-u] [-s ca_public] [-z version_number] file ... so... option -z is not the serial of the certificate, it is the version-number of the KRL-File... My openssh-Verision from Debian is
2018 Jan 22
2
Local user could not access share directory
2018-01-20 17:40 GMT+08:00 Rowland Penny via samba <samba at lists.samba.org>: > On Sat, 20 Jan 2018 17:22:32 +0800 > Younger Liu <younger.liucn at gmail.com> wrote: > > > 2018-01-19 18:11 GMT+08:00 Rowland Penny via samba > > > You are using the winbind 'ad' backend, have you added anything to > > > the users AD object (a uidNumber attribute for instance) > > > > >...
2013 Jun 19
1
[PATCH] fs/jbd2: t_updates should increase when start_this_handle() failed in jbd2__journal_restart()
...if start_this_handle() fails, transaction->t_updates does not increase. So, when commit the handle's transaction in jbd2_journal_stop(), the assertion is false, and then trigger a bug. The assertion is as follows: J_ASSERT(atomic_read(&transaction->t_updates) > 0) Signed-off-by: Younger Liu <younger.liu at huawei.com> --- fs/jbd2/transaction.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/jbd2/transaction.c b/fs/jbd2/transaction.c index 325bc01..9ddb444 100644 --- a/fs/jbd2/transaction.c +++ b/fs/jbd2/transaction.c @@ -530,6 +530,8 @@ int jbd2__journal_restart...
2007 Aug 01
5
[HELP] Mongrel Needs a Patch Maven
...The goal would be to just get patches that are currently languishing, pull them together, put them in the source, write some tests to try them, and then one slight design change. If this works out then I''d also look to hand over the reigns to this person. I''d hope to make this a younger coder looking to get some street cred and learn how to maintain and own a project. Any takers? -- Zed A. Shaw - Hate: http://savingtheinternetwithhate.com/ - Good: http://www.zedshaw.com/ - Evil: http://yearofevil.com/
2005 May 08
2
Suggested Reading for VOIP
Can anyone recommend any reading to help me get a better understand of VOIP technology and all the terms used in this discussion thread? I've read many documents on the wiki but I find it a bit lacking. Sincerely, Tyler
2014 Jan 16
1
Doubt in simple merge
Dear R community I have a two data set called "Elder" and "Younger". This is my code for simple merge. Elder <- data.frame(   ID=c("ID1","ID2","ID3"),   age=c(38,35,31)) Younger <- data.frame(   ID=c("ID4","ID5","ID3"),   age=c(29,21,31)) mer <- merge(Elder,Younger,by="ID", all=T...
2008 Feb 08
2
36 Hours of building file list
...rsync with offline applications before changing Disk. The problem is: I can't make a offline of more than 6Hours and my building file list take 36 Hours. I know the only 2 month old files can change between the 2 rsync. Have you a special argument for rsync to only build file list with file younger than 2 month??? For my part, I'm going to try with Bash command but I think I can have some hard limitation by MAX_ARG!!! Please help me again... I'm very sorry but my client have very special production. Thanks a lot for all you have do for me and your god job on rsync. Thanks in advan...
2005 Dec 15
3
Name conflict between Epi and ROC packages
...ork once, but not twice: library(MASS); data(cats); x = cats[,2] y = ifelse(cats[,1]=='F',0,1) library(Epi); ROC(x,y,grid=0)$AUC library(ROC); AUC(rocdemo.sca(y, x, dxrule.sca)) What is the standard way of resolving name conflicts? Ask maintainers to resolve it or rename the younger function, use namespaces somehow, or something else? My machine is WinXP, R-2.2.0, ROC and Epi packages are the latest versions. Jarek Tuszynski [[alternative HTML version deleted]]
2017 May 24
6
more recent perl version?
Warren Young schrieb: > On May 23, 2017, at 10:44 AM, hw <hw at gc-24.de> wrote: >> >> are there packages replacing the ancient perl version in >> Centos 7 with a more recent one, like 5.24? > > Since when is Perl 5.16 ?ancient?? It?s only 4 years old. > > CentOS 5 just left supported status, which shipped Perl 5.8.8 from first release to last, which means
2018 Jan 19
2
Local user could not access share directory
Hi, I have some doubts. I have join samba server into AD domain whose contoller is Windows Server 2008 R2 Standard. Reference documents https://wiki.samba.org/index.php/Main_Page https://wiki.samba.org/index.php/Setting_up_Samba_as_a_Domain_Member /etc/samba/smb.conf looks like as follow: [global] workgroup = ENAS server string = SmbSrvVers log file = /var/log/samba/log.%m map to guest = bad
2017 May 24
0
more recent perl version?
...f stance seems risible to you, you probably shouldn?t be using CentOS. This is what distinguishes a ?stable? type of OS from a ?bleeding edge? one. > > When a version of a software has been released 20 years ago, Eleven: https://dev.perl.org/perl5/news/2006/perl-5.8.8.html ?which makes it younger than the C89 standard some still stick to over in C land. And younger than C99. And younger than C++-98. And C++-93. By your lights, the C/C++ world is positive decrepit for not immediately tossing everything and insisting on C11 and C++-14. > that doesn?t mean it?s more stable than a versi...