Displaying 3 results from an estimated 3 matches for "addt".
Did you mean:
  addr
  
2012 Jun 13
1
Reading several tables from stdin
..., I wrote a 
Rscript program that is aimed at doing the same as the shown interactive 
session:
  #! /usr/bin/Rscript
  f <- file("stdin")
  t <- read.table(f)
  t2 <- read.table(f)
  print (t + t2)
When I try this script, it always ends in error, as follows:
FIRST TRY:
  $ ./addT.R 
  uno dos
  01 3 4
  02 5 6
  03 7 8
             <-I introduced an emtpy line here
  uno dos
  Error en scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings,  : 
    la linea 4 no tiene 3 elementos
  Calls: read.table -> scan
  Ejecuci?n interrumpida
SECOND TRY
  $ ./addT.R...
2001 Jan 10
2
1.0pre3 difficulties
Was running 1.0pre2 just fine, but had to move machines, so I figgured
I'd give 1.0pre3 a try.
After getting everything to build and figguring out the new config
files, here's where I'm stuck.
Start the server process (remote machine).
Start the client process (local machine).
In remote machine, the following shows up in syslog: tinc[2659]: Got
SEGV signal
In local machine, the
2006 Dec 14
23
Using DTrace to monitor productions systems
Hi,
we are developing and operating an very critical application in the financial sector. Now our customer wants us to report performance data (roundtrip times of the messages routed). 
My idea is using dtrace  to measure the times with the pid provider catching the timestamps on entry of the in and out functions of the processes.
Now my questions ;-):
1) Is this an appropriate method to monitor