similar to: MixMonitor with non-20ms packets

Displaying 20 results from an estimated 300 matches similar to: "MixMonitor with non-20ms packets"

2008 Nov 28
0
[SPAM] - Asterisk and S-Bus - Email found in subject
Have you set port 2 as 'NT' in the mISDN config file (not the Asterisk one)? Also, you will probably need to set it to ptmp. You need to configure them in misdn.conf (the Asterisk one this time). Here's the tail of my misdn.conf (4 x BRI): [trunks] ports = 1,2 ; physical port numbers (as defined in mISDN.conf) context = inbound ; context for incoming calls in
2006 Feb 22
3
elements that appear only once
Hi. I have a factor and I want to extract just those elements that appear exactly once. How to do this? Toy example follows. > a <- as.factor(c(rep("oak",5) ,rep("ash",1),rep("elm",1),rep ("beech",4))) > a [1] oak oak oak oak oak ash elm beech beech beech beech Levels: ash beech elm oak > table(a) a ash beech elm oak
2016 Nov 22
1
Problem with multiple ldap passdb
Hi mailing list, I'm currently running dovecot 2.2.13 from Debian Jessie, all is running fine. However I am attempting to merge 2 LDAP authentication sources. I would like to attempt to authenticate against the first authentication source, if that fails either by password fail or user not found, then attempt the next LDAP server. I've added the a passdb and userdb entry for the new
2002 Oct 10
2
multiple sessions to same destination
Hi All, I had a look in archives but no joy. I just want to know before i deploy - if there is any problem with having multiple rsync sessions from many source locations all to same destination server ( all copying to different file systems obviously ) ?? Its jusat that i see on the destination machine a process rsync -server being called whenever a client connects. Thanks ! Laurence
2006 May 18
4
Nested design
Dear list members, I'd like to perform a glm analysis with a hierarchically nested design. In particular, I have one fixed factor ("Land Use Classes") with three levels and a random factor ("quadrat") nested within Land Use Classes with different levels per classes (class artificial = 1 quadrat; class crops = 67 quadrats; and class seminatural = 30 quadrats). I have four
2005 Dec 02
3
[Bug 1129] sshd hangs for command-only invocations due to fork/child signals
http://bugzilla.mindrot.org/show_bug.cgi?id=1129 Summary: sshd hangs for command-only invocations due to fork/child signals Product: Portable OpenSSH Version: 4.2p1 Platform: ix86 OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: sshd AssignedTo: bitbucket
2013 Feb 08
2
[LLVMdev] optimizing references within a struct
There is an optimization which the Greenhills compiler does for mips16. I have not looked at it myself ,but it was recounted to me. The basic idea is that if you have a large struct, rather than reference each element from the base of the struct, it's possible to chose some optimal point(s) that are not at the beginning of the struct and use as the base to reference elements of the
2006 Feb 12
2
[Bug 1129] sshd hangs for command-only invocations due to fork/child signals
http://bugzilla.mindrot.org/show_bug.cgi?id=1129 ------- Comment #4 from djm at mindrot.org 2006-02-12 12:41 ------- Created an attachment (id=1065) --> (http://bugzilla.mindrot.org/attachment.cgi?id=1065&action=view) Move debug from signal handler I think we should just remove the debug from it signal handler. It is not safe on platforms that don't implement syslog_r properly.
2008 Jan 09
1
Newbie: confusion with the new FXO/FXS card
Hello everyone, I'm trying to set up a Asterisk server. I have two cards - one is an BeroNet BN2S0 with two ISDN lines (4 channels): http://www.adcomtec.com/webstore/beronet_bn2s0.php?cat=90 and a Rhino R8FXX with one FXO module and two FXS: http://www.voipsupply.com/product_info.php?products_id=2940 I would like to set up an Asterisk server with 8 phones, which will share the phone
2016 Feb 04
3
Evaluating a port to RTEMS (embedded OS with single address space and no processes)
Am 04.02.2016 um 14:46 schrieb Roland Mainz: > On Thu, Feb 4, 2016 at 1:40 PM, Christian Mauderer > <christian.mauderer at embedded-brains.de> wrote: >> I am searching a SSH server for remote administration of an embedded >> application running on RTEMS (https://www.rtems.org). This environment >> has neither virtual memory nor user and kernel space. So this is like
2006 May 12
1
nested ANCOVA
Dear R-users, is there a chance to do an nested ANCOVA in R? I've read the archive mails but it doesn't work. We have the following situation: We are interested in differences in carabid biomass at different aged woodlands. Thus, we have a nested design with 2 fixed groups (0=recent, 1=ancient) and 10 woodlands (each with 8 replications/traps) per fixed group. Woodland is therfore
2009 Nov 26
2
Testing for strength of fit using R
Dear all, I am trying to validate a model by comparing simulated output values against observed values. I have produced a simple X-y scatter plot with a 1:1 line, so that the closer the points fall to this line, the better the 'fit' between the modelled data and the observation data. I am now attempting to quantify the strength of this fit by using a statistical test in R. I am no
2013 Feb 08
0
[LLVMdev] optimizing references within a struct
This sounds similar to what the LocalStackSlotAllocation pass does (lib/CodeGen/LocalStackSlotAllocation.cpp). -Jim On Feb 7, 2013, at 4:56 PM, reed kotler <rkotler at mips.com> wrote: > There is an optimization which the Greenhills compiler does for mips16. > > I have not looked at it myself ,but it was recounted to me. > > The basic idea is that if you have a large
2002 Oct 09
5
Value too large for defined data type
Howdy, I am just starting to use rsync and now have an rsync server set up to back up our various machines. I recently started getting an error that is confusing and I can't find info documented on it. I searched the news group and found it mentioned but no solution yet. I get the error when sync'ing from a Solaris 8 machine to my Solaris 8 server. stat
2017 Mar 14
2
[cfe-dev] proposal - pragma section directive in clang
Thanks Reid/Jonathon for your replies. Reid, An important case against module level flags is that it wont allow changing or resetting section names e.g. int a; #pragma clang section bss = "xyz" int b; In case above, users would like to see only 'b' placed in 'xyz' and not 'a' as well. Link pointed to by Jonathon seems to require same behavior.
2013 Feb 08
1
[LLVMdev] optimizing references within a struct
On 02/07/2013 05:28 PM, Jim Grosbach wrote: > This sounds similar to what the LocalStackSlotAllocation pass does (lib/CodeGen/LocalStackSlotAllocation.cpp). > > -Jim exactly but this is for structs but maybe you are saying that i can reuse those ideas for structs. i'm going to turn on the localstackallocation soon . maybe i need to study that and write something similar for plain
2008 Sep 17
1
floppy disk controller broken
Hello, when testing FreeBSD-7.1-BETA i discovered that the floppy disk controller doesn't work correctly. Trying to format a floppy (perhaps with bad blocks) i get: Processing fdformat: ioctl(FD_FORM): Device not configured instead of the normal E letter. I then checked the same problem is present on FreeBSD-6.3 and it has been reported by Beech Rintoul (*) in 2006! Of course the floppy disk
2008 Feb 08
1
Can I index a dataframe with a reference from/to a second dataframe?
Hello, I am unable to figure out how to code a new column in a data frame based on an existing column that matches a column in a reference data frame, in a relational-db fashion. I would like this to maintain a minimum set of reference tables that may be reused over several similar datasets. Specifically, I have two data frames as listed below, 'Bos' and 'tree.' For each case in
2007 Jun 27
5
North American voice BRI - Informal survey
Hi, folks: I remain intrigued by the gap in BRI implementation between North America and Europe, and I wanted to get feedback from the list members on the matter. I'm seriously considering making the leap in our office. In Europe, the idea that an office that does not have enough lines to justify PRI would use analog lines is perceived as technologically backwards, and yet that's what
2017 Mar 10
3
[cfe-dev] proposal - pragma section directive in clang
+llvm-dev properly this time. On Fri, 10 Mar 2017 at 09:42 James Molloy <james at jamesmolloy.co.uk> wrote: > Hi Reid, all, > > +llvm-dev as this RFC involves changes in Clang and LLVM. > > This RFC has stagnated and I think that's partially because the proposal > isn't particularly elegant and is light on details. We've been having a > rethink and have a