Displaying 3 results from an estimated 3 matches for "test_numb".
Did you mean:
  test_num
  
2009 May 20
0
inbound SIP funnies
...All the source/dest IPs
and ports look good.
A "sip set debug trace ip <sourceip>"  is blank, showing nothing at all.
 
The sip.conf default context is incoming_pstn. The incoming_pstn context
is:
 
[incomming_pstn]
include => local-UK
include => local-US
include => test_numbers
 
and [test_numbers] includes:
 
exten => 555,1,Answer(0)                       ; Pick up phone instantly
exten => 555,n,Playback(vq51)         ; Let them know what's going on
exten => 555,n,Playback(vq20)
exten => 555,n,Goto(default,555,3)  ; repeat
 
 
So as far as I...
2015 Mar 03
2
openssh-SNAP-20150304 issues
...default:                        \
                        abort();                \
                }                               \
        } while (0)
extern char *__progname;
static int verbose_mode = 0;
static int quiet_mode = 0;
static char *active_test_name = NULL;
static u_int test_number = 0;
static test_onerror_func_t *test_onerror = NULL;
static void *onerror_ctx = NULL;
static const char *data_dir = NULL;
static char subtest_info[512];
int
main(int argc, char **argv)
{
        int ch;
        /* Handle systems without __progname */
        if (__progname == NULL) {...
2000 Nov 12
2
R help for a newby
Hello,
    I'm trying to read a file that has ascci data in it. The format of the data
is in this order: test_number(integer) 4 double readings. Simple,ok, but for 
life of me I can't get R to put it into the internal format I need. What I want
to do is to make an array called dat and dim it 10000 rows by 5 columns.
That seems simple enough, I start out by:
dat <- array(0,dim=c(10000,5)) this looks ok....