Displaying 20 results from an estimated 94 matches for "traver".
Did you mean:
travel
2019 Oct 21
3
S4SXP type vs S4 object bit?
...nd also the object type S4SXP (25). The documentation
makes clear that these two things aren't the same.
But in practice, will the S4-bit and object type ever disagree for S4
objects? I know that one can set the bit manually in C; are there any
practical applications for doing so?
Thank you
Travers
[[alternative HTML version deleted]]
2004 Jul 01
4
Pager Notification
...Asterisk support pager notification of new voicemails out of the
box? Or do I need an AGI script to do that?
Also, if I want to call a number from an automated program in Asterisk
and get the DTMF tones entered by the user on the other side, is there
an easy way to do this?
Best Wishes.
Chris Travers
Metatron Technology Consulting
-------------- next part --------------
A non-text attachment was scrubbed...
Name: chris.vcf
Type: text/x-vcard
Size: 127 bytes
Desc: not available
Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20040701/334d173a/chris.vcf
2019 Apr 13
3
SUGGESTION: Settings to disable forked processing in R, e.g. parallel::mclapply()
...1" in your mclapply example and see what happens (hint: save your
> work first).
Yes, I meant that it ran out of memory on my desktop. I understand
the limits, and it is not perfect because of the GUI issue you
mention, but I don't see a better alternative in terms of speed.
Regards,
Travers
On Fri, Apr 12, 2019 at 3:45 PM I?aki Ucar <iucar at fedoraproject.org> wrote:
>
> On Fri, 12 Apr 2019 at 21:32, Travers Ching <traversc at gmail.com> wrote:
> >
> > Just throwing my two cents in:
> >
> > I think removing/deprecating fork would be a ba...
2019 Oct 22
0
S4SXP type vs S4 object bit?
Hi Travers,
Just an additional remarks to Michael's answer, if your S4 class inherits
from R's basic types, say integer, the resulting object will be an INTSXP.
If your S4 class does not inherit from any class, it will be an S4SXP. You
can think about this question from the object-oriented framework...
2019 Apr 12
2
SUGGESTION: Settings to disable forked processing in R, e.g. parallel::mclapply()
...amazing `future` package), the lack of copy-on-write functionality
would cause scripts everywhere to break.
A simple example illustrating these two points:
`x <- 5e8; mclapply(1:24, sum, x, 8)`
Using fork, `mclapply` takes 5 seconds. Using "psock", `clusterApply`
does not complete.
Travers
On Fri, Apr 12, 2019 at 2:32 AM I?aki Ucar <iucar at fedoraproject.org> wrote:
>
> On Thu, 11 Apr 2019 at 22:07, Henrik Bengtsson
> <henrik.bengtsson at gmail.com> wrote:
> >
> > ISSUE:
> > Using *forks* for parallel processing in R is not always safe.
>...
2019 Jan 15
4
Objectsize function visiting every element for alt-rep strings
I have a toy alt-rep string package that generates randomly seeded strings.
example:
library(altstringisode)
x <- altrandomStrings(1e8)
head(x)
[1] "2PN0bdwPY7CA8M06zVKEkhHgZVgtV1" "5PN2qmWqBlQ9wQj99nsQzldVI5ZuGX" ... etc
object.size(1e8)
Object.size will call the set_altstring_Elt_method for every single
element, materializing (slowly) every element of the vector. This
2010 Sep 24
2
Splitting a time + duration into a series of periods
Hi all,
Here's what I have. I have a list of log-in times for users and how
long their sessions were.
user, login_time, session_min
alice, 2010/01/01 10:00, 145
bob, 2010/01/01 11:00, 30
What I want to do is create a bar chart showing, in 1/2 hour segments,
the number of users logged in at the same time. For example:
10:00 1
10:30 1
11:00 2
11:30 1
The only way I can do this now is to
2019 Apr 13
0
SUGGESTION: Settings to disable forked processing in R, e.g. parallel::mclapply()
...to add: the onus should be on the front-end to work
well with R, and not the other way around. I don't think it's fair to
impose extra work / an extra maintenance burden on the R Core team for
something that's already clearly documented ...
Best,
Kevin
On Fri, Apr 12, 2019 at 6:04 PM Travers Ching <traversc at gmail.com> wrote:
>
> Hi Inaki,
>
> > "Performant"... in terms of what. If the cost of copying the data
> > predominates over the computation time, maybe you didn't need
> > parallelization in the first place.
>
> Performant i...
2019 Jan 31
2
Object.size() should not visit every element for alt-rep strings, or there should be an altstring_objectsize_method
Below is a toy alt-rep string example, that generates N random strings:
https://gist.github.com/traversc/a48a504eb062554f2d6ff8043ca16f9c
example:
`x <- altrandomStrings(1e8)`
`head(x)`
[1] "2PN0bdwPY7CA8M06zVKEkhHgZVgtV1" "5PN2qmWqBlQ9wQj99nsQzldVI5ZuGX" ...
`object.size(1e8)`
Object.size will call the `set_altstring_Elt_method` for every single
element, materializing (slow...
2004 Apr 02
1
Newbie: ISDN and Capacity Planning
...eral? Any advice on calculating this?
Additionally, the PBX is replacing an old system (80286-based) due to
the fear that a failure of an ancient piece of hardware could take down
their phone system. Are there any hidden gotcha's that people think I
should be aware of?
Best Wishes,
Chris Travers
Metatron Technology Consulting
2010 Aug 20
2
pigeonhole sieve imapflags bug
Hi all,
ok, I just instealled the dovecot 2.0.0 release, and the latest
mercurial pigeonhole source.
All is well, except for a particular sieve rule that may not be working
right.
It is a simple rule that looks like this :
require ["fileinto","imap4flags"];
# rule:[Past Due Notices]
if allof (header :contains "Subject" "Account Past Due Notice")
{
2024 May 11
1
[External] R hang/bug with circular references and promises
On Sat, 11 May 2024, Travers Ching wrote:
> The following code snippet causes R to hang. This example might be a
> bit contrived as I was experimenting and trying to understand
> promises, but uses only base R.
>
> It looks like it is looking for "not_a_variable" recursively but since
> it doesn...
2024 May 11
1
[External] R hang/bug with circular references and promises
On Sat, May 11, 2024 at 9:34?AM luke-tierney--- via R-devel
<r-devel at r-project.org> wrote:
>
> On Sat, 11 May 2024, Travers Ching wrote:
>
> > The following code snippet causes R to hang. This example might be a
> > bit contrived as I was experimenting and trying to understand
> > promises, but uses only base R.
>
> This has nothing to do with promises. You created a cycle in the
> environ...
2005 Aug 15
0
Firewall will definatelyincreasejitters inyourvoice conversation
...to reek havoc on the echo
canceling/training process. Anytime our Cisco PIX loads up, the echo
complaints start coming in. Stay away from the IPSec tunnels.
-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
[mailto:asterisk-users-bounces@lists.digium.com] On Behalf Of Chris
Travers
Sent: Saturday, August 13, 2005 5:18 PM
To: Asterisk Users Mailing List - Non-Commercial Discussion
Subject: Re: [Asterisk-Users] Firewall will definately increasejitters
inyourvoice conversation
Rich Adamson wrote:
>That's a crack of crap sold by the marketing (not sales) people selling...
2009 Aug 11
2
QUOTA not appearing in CAPA
Hi,
ok, I've compiled it a few times, and made sure all of my settings are
correct, but the QUOTA is not appearing in the opening CAPA that comes
with the greeting.
I have it configured in the dovecot.conf like so:
protocol imap {
mail_plugins = quota imap_quota
}
and I can see when turning debugging on that the following is spit out
when starting :
Starting DovecotILoading modules
2009 Jan 26
3
deliver and qmail
Hi all,
ok, after looking at all of the posts that I've found, and trying
numerous settings, I am a little stumped as to how to set up the deliver
program with qmail to get everything correct.
Ultimately, I really don't want to do a lookup of the home dir if I
don't have to. I'd rather specify the stuff in the .qmail-user file for
that particular user to avoid the extra step.
In
2010 Dec 02
3
Permission denied error log messages
Hi Timo,
ok, I have a large 2.07 NFS setup, and I have been monitoring error
messages to make sure I catch things, and I've come across a lot of
messages that come in pairs and look like this :
Dec 01 17:48:35 lda(paul at xxxxxx.com): Error:
write(/home/mailboxes/data/301/paul at xxxxxx.com/Maildir/tmp/1291254514.M620308P83269.mta2.scaledsystems.com)
failed: Permission denied
Dec 01
2004 May 07
4
Cisco 7940 Phones as paging system?
...at the time this was not supported in the SIP
image. Is this still the case?
Although I know that SIP is the preferred protocol for connecting these
phones with Asterisk, how stable/reliable are the skinny channels? Is
there any reason I should be rethinking this solution?
Best Wishes,
Chris Travers
Metatron Technology Consulting
-------------- next part --------------
A non-text attachment was scrubbed...
Name: chris.vcf
Type: text/x-vcard
Size: 127 bytes
Desc: not available
Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20040507/ed1108bd/chris.vcf
2019 Jan 18
0
Objectsize function visiting every element for alt-rep strings
Travers,
Great to hear you're trying out the ALTREP stuff, good on you :).
Did you mean the get_altstring_Elt_method? I see the code in size.c within
utils that grabs each element, but I don't see any setting (and the setters
are noops currently anyway they just do things the old way).
One thin...
2010 Jun 19
2
More Dovecot 2.0 permissions issues
Hi Timo,
ok, using the latest 2.0beta6...
I can't figure out the settings for the log file to have the correct
permissions. When the log file is created, it is created owned by root
and 0600 permissions, which doesn't allow the lda to write to it if I
use different users and groups for that main config...
If I then chmod the log file to 666, then everything is happy, but
again, if that