Displaying 20 results from an estimated 201 matches for "renumbers".
Did you mean:
renumber
2010 Mar 28
1
Renumbering
HI all,
Is there a renumbering function in R?
I would like to renumber the following id numbers
*Input file
*
Id Father Mother 123 0 0 124 0 0 125 123 124 126 123 0 127 125 126
128 0 127 130 123 125
*Output*
Id Father Mother 1 0 0 2 0 0 3 1 2 4 1 0 5 3 4 6 0 7 7 1 2
Any help is highly appreciated in Advance
Val K
[[alternative HTML version deleted]]
2013 Jan 07
3
renumber a list of numbers
Greetings R users,
I am trying to renumber my groups within the file shown below. The groups
are currently set as 8,9,10,etc. I would like to renumber this as
1,2,3,etc. I have searched the help files and only come across using the
rownames to renumber the values but I need to match values. Any assistance
is always appreciated,
Regards,
Charles
structure(list(Group = structure(c(1L, 1L, 1L,
2016 Dec 18
2
Renumbering UID on messages
I am having a problem with Horde due to large variations in email UID
for a few users.
At one time they were receiving thousands of emails a day, they have
deleted all these messages but because they still have early emails in
the mailbox the UID range from start to now is massive.
We use Horde webmail and it creates an internal array based on range of
messages but due to large UID range it eats
2005 Jul 22
0
Bug in 0.99.14 mbox handling - mail UIDs are renumbered without bumping UIDVALIDITY
...t message of that mbox and is typically the
uid-invalidation time expressed in unix timestamp format (ie the number
of seconds elapsed since the epoch.)
--- 8< --------------------------------------------------------------
Okay, the actual bug: Dovecot routinely (and apparently unneccessarily)
renumbers all of the UIDs in our mbox-backed mailboxes without updating
the UIDVALIDITY count. This results in caching mail clients (such as
Evolution and Thunderbird) presenting the incorrect email to the user
when browsing their mail.
Configuration:
We are using Dovecot as a standalone daemon (ie withou...
2016 Dec 18
0
Renumbering UID on messages
Am 2016-12-18 um 22:50 schrieb Ricardo Branco:
> I am having a problem with Horde due to large variations in email UID
> for a few users.
> At one time they were receiving thousands of emails a day, they have
> deleted all these messages but because they still have early emails in
> the mailbox the UID range from start to now is massive.
> We use Horde webmail and it creates an
2005 Jul 22
1
Re: Bug#319504: Bug in 0.99.14 mbox handling - mail UIDs are renumbered without bumping UIDVALIDITY
On Fri, 22 Jul 2005, David McBride wrote:
> Package: dovecot-imapd
> Version: 0.99.14-1
> Severity: important
>
> Hi,
>
> I think I've identified a bug in Dovecot 0.99.14 as packaged and
> distributed by Debian Sarge. I believe the bug lies in the original
> Dovecot source, not with any modifications made by Debian.
>
> Specifically, this bug deals with
2007 Jun 18
1
Renumber Migration Files
Hello everyone,
I just wrote a little utility called "numergrate" (short for numerate
migration files). I think it can be useful for a lot people who are
using Rails to move migration files around. You can do ruby script/
numergate 50 before 30 to move migration file #50 to position 29. The
utility is also integrated with subversion via the svn client.
Please give it a shot and
2009 Jul 14
3
Fixing ogg vorbis corruption caused by bad metadata
On Tue, Jul 14, 2009 at 9:48 AM, Adam Rosi-Kessel<adam at rosi-kessel.org> wrote:
> The only issue I'm noticing is ogginfo reports:
>
> Warning: sequence number gap in stream 1. Got page 14 when expecting
> page 2. Indicates missing data.
> Warning: discontinuity in stream (1)
I'd guess this is flagging the data that was overwritten by the bad
tagging code. Some
2023 Oct 09
3
Deleting voicemail by program
Hi all,
I need to be able to delete a voicemail message using a program.
Is is sufficient to simply delete the .wav and .txt files in the spool directory?
Or do I need to also renumber the remaining files?
For example, let say a given mailbox has 20 messages in it and I want to
delete message number 5. Can I just delete the 2 files and expect that
asterisk will renumber them? Or do I
2007 May 30
3
Dial plan inquiry using GotoIf()
Hi all,
I'm looking for some rudimentary insight on GotoIf() which seems to be
failing on me in my dial plan. All I basically wish to do is block a
particular caller. Sounds easy enough, but my ternary operator/plan
currently is not properly being implemented. Can anyone spot where I'm
being a momo?
All extensions get forwarded to the following macro:
[macro-forward]
; arg1 = phone
2005 May 26
2
static database config gui
I threw together a web gui for the static database configuration over
the last couple of days.
I built it using mod perl and the template toolkit. If enough people
show an interest in this I'll put up a distribution, although it could
take a few days.
The interface is as generic as possible so you can throw pretty much
any asterisk .conf file in and it works. The interface assumes you
2012 Aug 17
0
[LLVMdev] Assert in LiveInterval update
Andy, Jacob,
I have ported Hexagon MI scheduler to use the new scheduler
infrastructure, but one of my tests triggers an assert in LiveInterval
update. On the surface it does not make much sense to me, so I wonder if
this is something you readily recognize, before I try to prop it open...
The assert is:
lib/CodeGen/LiveInterval.cpp:266: llvm::LiveRange*
2009 Jul 14
2
Fixing ogg vorbis corruption caused by bad metadata
ogg.k.ogg.k at googlemail.com wrote, on 7/14/2009 7:16 AM:
>> easy to replace. The second packet is the metadata, which we can lose.
>> It's just the third packet that needs to be reconstructed. After that,
>> you could start at any packet division in the rest of the file and it
>> would play fine? So this generic restore tool that I'm positing would
>> just
2008 Oct 14
2
[LLVMdev] CFG modifcations and code gen
But, the branch folding pass, or whatever passes are supposed to reorder
the blocks based on the CFG, are not doing so in this case. Otherwise
there is no way that blocks 2 and 4 should be printing out before blocks
3 & 5. Renumber blocks just seems to reorder the values based on their
pre-set block number, but when the CFG is modified these number should
modified also to follow the new
2023 Oct 10
1
Deleting voicemail by program
Here is something I wrote years ago. I expect you can adjust it for your
needs
# cat remove_blank_vmail
#!/bin/bash
# remove_blank_vmail takes arguments as voicemail boxes and removes
messages with audio files shorter then MINSIZE (in bytes)
#----------------------------------------------------------------------
# Description:
# Author: John Harragin Monroe-Woodbury CSD
# Created at: Thu Nov 6
2012 Aug 28
5
[LLVMdev] Assert in LiveInterval update
Andy, Lang,
Thanks for the suggestion.
I have spent more time with it today, and I do see some strange things in
liveness update. I am not at the actual cause yet, but here is what I got so
far:
I have the following live ranges when I start scheduling a region:
R2 = [0B,48r:0)[352r,416r:5)...
R3 = [0B,48r:0)[368r,416r:5)...
R4 = [0B,32r:0)[384r,416r:4)...
R5 = [0B,32r:0)[400r,416r:4)...
2008 Oct 14
3
[LLVMdev] CFG modifcations and code gen
As stated in an earlier email, I am working on getting break/continue to
work correctly for my backend, but I ran into another issue with codegen
and the CFG. It seems that code gen is not done based on the CFG, but
rather on the block numbers, and the function call
MachineFunction::RenumberBlocks doesn't renumber the blocks based on the
CFG. So how can I modify the CFG so that when codegen
2012 Aug 30
0
[LLVMdev] Assert in LiveInterval update
Hi Sergei, Andy,
Sorry - I got distracted with some other work. I'm looking into this and
PR13719 now. I'll let you know what I find out.
Sergei - thanks very much for the investigation. That should help me pin
this down.
Cheers,
Lang.
On Tue, Aug 28, 2012 at 2:33 PM, Sergei Larin <slarin at codeaurora.org> wrote:
> Andy, Lang,
>
> Thanks for the suggestion.
>
2007 Jan 23
2
X-UID: 4085788205 != 2147483647
Hi,
Dovecot (at least versions 0.99.10.4, 0.99.11, 1.0rc15, rc17 and rc18)
allows message Unique Identifiers to be an unsigned 32 bit value, so
something like "X-UID: 4085788205" is allowed.
Some IMAP clients I've tested (Thunderbird 1.5.0.9, SquirrelMail
1.4.9a/PHP 4.3.2) appear to use signed 32 bit identifiers and request
the above message as UID 2147483647 (max signed 32 bit
2012 Aug 15
3
[LLVMdev] MI bundle liveness attributes
On Aug 13, 2012, at 8:34 AM, Sergei Larin <slarin at codeaurora.org> wrote:
> Andy,
>
> Yes, this is what Arnold has suggested also, and from this point it looks
> like it should work, but it will require parsing the bundle every time we
> care to know whether this is a real use or a conditional def. This might
> become awkward... but I guess I should provide a better