search for: scans

Displaying 20 results from an estimated 11883 matches for "scans".

Did you mean: scanf
2005 Mar 28
2
Can I use a variable to pass a file name to scan() ?
Hi, can anyone please tell me if it is possible to use a variable to pass a file name to scan()? I am trying to write a program that loops through a series of text files. I use list.files() to create a character vector of file names. Then I would like to take one string at a time from the character vector and use that string to specify the name of the text file I want to open using scan(). I
2004 Mar 01
3
Scanning tab-separated numbers
I want to paste in the following numbers into a scan: 0.023 0.032 0.054 0.069 0.081 0.094 0.105 0.127 0.148 0.169 0.188 0.216 they are separated by tabs alone, unless my mailer has done something to the tabs. Now have a look at this: > scan() 1: 0.0230.0320.0540.0690.0810.094 1: 0.1050.1270.1480.1690.1880.216 Error in scan() : "scan" expected a real, got
2005 Jan 18
3
Dropping a digit with scan() on a connection
R gurus, My use of scan() seems to be dropping the first digit of sequential scans on a connection. It looks like it happens only within a line: > cat("TITLE extra line", "235 335 535 735", "115 135 175", file="ex.data", sep="\n") > cn.x <- file("ex.data", open="r") > a <- scan(cn.x, skip=1, n=2...
2019 Apr 10
2
[cfe-dev] scan-build on Windows
+Aaron because i think he uses scan-build on Windows more or less successfully. I won't have time for setting up a Windows machine for myself in the nearest future. Could you tell us exactly what you're doing and what exactly does it print to console, more in the spirit of http://www.catb.org/~esr/faqs/smart-questions.html ? > scan-build: Not supported for windows. Exiting...
2016 Sep 29
3
Centos 7.2.1511 with sendmail and a problem with clamav
Everyone, I am putting together a new CentOS 7 mail server for our organization and am having some difficulty getting clamav to work with the clamav- milter for sendmail. I have set /etc/clamd.d/scan.conf to use clamscan as the user as well as root as the user and the status command of systemctl results in the same error messages : ? clamd at scan.service - Generic clamav scanner daemon
2000 Dec 22
5
(HP-UX) scan: last line gets duplicated (PR#790)
The last line gets duplicated when a file is read like this: a <- scan(file=filename, what="", sep="\n", strip.white=c(TRUE), quiet=TRUE) (This error does not occur on Linux, the only other platform I tested.) Version: platform = hppa2.0-hp-hpux10.20 arch = hppa2.0 os = hpux10.20 system = hppa2.0, hpux10.20 Actually, all binaries are
2003 Dec 11
2
FAX application does not work for me....
Hi, I have tried to install and configure the FAX app using the steps described in several mails on this list. When a FAX call arrives on X100P, the fax extension is executed, which looks like: exten => fax,1,RxFax(/var/spool/asterisk/incoming/${CALLERIDNUM}.tif) exten => fax,2,Hangup It tries to negociate, but nothing is received at the end and the other part times out. More, after this
2008 Nov 04
1
Problems with scan
I have been having problems with using scan(). I searched the archives and found someone with the same problem several years ago, but did not find a solution. I want to prompt the user for input, scan in that input, and then go on to use it as a variable. The simplest version of my program is cat("enter m","\n") m <- scan(n = 1, quiet = T) m If I enter these lines one
2009 Apr 30
1
orphan cleanup
Srini, Ok, you can go ahead and cook up the background orphan cleaner. Now, we can do this in a workqueue, a thread, or a timer. I don't see why a timer doesn't work. When the timer fires, you do this: 1. Take EX on a new orphan_scan lock. 2. check the LVB for the last scan time. If it's less than the scan timeout, reset the timer for (timeout - last scan), drop the EX, and
2003 Oct 28
5
rxfax problem
Hello, I tryed out spandsp with libtiff-3.5.7 and with Asterisk from CVS. I tryed to receive a fax on a CAPI channel. Finally I got a file with 8 byte length (/tmp/testfax.tif). How can I do next? Thanks in advance, Thomas ps: what are hardware requirements for sending/receiving faxes? -- creating pipe for PLCI=0x101 msn = 2258589 > sent ALERT_REQ PLCI = 0x101 --
2014 Oct 24
5
[PATCH 0/2] bash-completion: Install symbolic links instead of copies of files (RHBZ#1156298).
Previously we copied the files instead of the symlinks.
2003 Sep 23
1
RODBC access to MS-Excel (PR#4266)
Full_Name: Michael Hecht Version: 1.7.1 OS: WinNT Submission from: (NULL) (193.158.76.205) I've got a problem with the RODBC library while trying to access to an MS-Excel file. The Excel file was originally exportet by a commercial software, so I cannot influence it. The problem is, that the names of the tables include spaces, e.g. "Scan 1","Scan 2" etc. If I use RODBC, I
2011 Feb 18
4
Recommendation for a Good Vulnerability Scanning Service?
Hi, Can someone recommend a good vulnerability scanning service? I just need the minimum for PCI compliance (it's a sort of credit card processing certification). I got a free scan from https://www.hackerguardian.com/ and their scan reported a number of "Fail" results. I haven't checked them all yet but most seem to be things for which fixes were backported looong ago by The
2011 Apr 28
4
Line numbers of scan(0
Dear all, Does everyone know how to change the line numbers of scan()? For example, > scan(n = 3) 1: 4 2: 6 3: 9 Read 3 items [1] 4 6 9 I just want to change the line numbers 1, 2, and 3 to, say a, b, and c that look like this: > scan(n = 3) a: 4 b: 6 c: 9 Read 3 items [1] 4 6 9 Any help will be appreciated. Lisa -- View this message in context:
2011 May 12
4
btrfs device scan
I have a couple computers running 2.6.38 (Ubuntu Natty 2.6.38-8-generic), and on both of them "btrfs device scan" comes back with nothing other than "failed to read /dev/sr0" One computer has a btrfs RAID-1 volume, and the other has two separate btrfs filesystems. The results are the same whether the filesystems are mounted or not. Why is "btrfs device scan" not
2019 Apr 05
2
[cfe-dev] scan-build on Windows
Hi Siddharth, alternativly you can try this <https://github.com/rizsotto/scan-build>, it's written in Python. Regards, Laszlo On Sat, Apr 6, 2019 at 5:14 AM Artem Dergachev via cfe-dev < cfe-dev at lists.llvm.org> wrote: > Hi, > > I never tried it myself but i can try to help you with specific problems > that you're having if you disclose them. > >
2008 Aug 29
1
scan after seek in text files (PR#12640)
Full_Name: Dr. Alex Sheppard Version: 2.7.1 OS: Linux Debian Lenny Submission from: (NULL) (79.73.224.62) After scanning from an open (text) connection, then seeking, then scanning again, the second scan returns incorrect result. It looks like the first byte scanned was from the pre-seek file position, then it continues to read from the post-seek file position. To reproduce: #Put 3x3 matrix
2017 Aug 18
1
Virus scan - false positive for 32-bit syslinux.efi in syslinux 6.04-pre?
...tribution. A follow-up search with VirusTotal shows that the same file, as identified by its SHA256, was scanned on 2 March of this year. In that scan, 9 of 59 scan engines flagged various threats, 48 of the remaining 50 engines found no issues, and two abstained due to file type. My own additional scans with ClamAV and COMODO were clean, and I'd also note that the 64-bit syslinux.efi, presumably built from the same source, also scanned clean. Has the syslinux development team examined this at all? I'd like to get an expert opinion if possible. Link here: https://www.virustotal.com/en/fil...
2004 Jun 18
0
Problems reciving fax with Asterisk
Hi, I am trying to recice a fax with * using SpanDSP - but it doesn't create the output file. (See the bottom of log file). * Loads both app_rxfax.so and app_txfax.so fine. Also I can't make * autodetect an incomming fax call (yes I have enabled faxdetect=both in zapata.conf - though it's not a Zap device) Any ideas are welcome :-) Best Regards Michael L?jtnant System Details:
2003 Dec 07
5
RxFAX application
Hi all, I have installed FAX app as described in several mails. When a fax call is received, I get the following in the * console: -- Starting simple switch on 'Zap/1-1' -- Executing Answer("Zap/1-1", "") in new stack -- Executing Ringing("Zap/1-1", "") in new stack -- Executing Wait("Zap/1-1", "2") in new stack