search for: scan

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

Did you mean: can
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()...
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&quo...
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&quo...
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.ht...
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 ???Loaded: loaded (/usr/lib/systemd/system/clamd at scan.service; enabled; vendor preset: disabled) ???Acti...
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...
2003 Dec 11
2
FAX application does not work for me....
...om phase 1 to 4 Sending ident >>> CSI: 40 38 37 36 35 34 33 32 31 20 20 20 20 20 20 20 20 20 20 20 20 DIS: Store and forward Internet fax: no Real-time Internet fax: no Preferred octets: 256 Can receive fax Data signalling rate: V.29 R8x7.7lines/mm and/or 200x200pels/25.4mm OK 2D coding OK Scan line length: 215mm Recording length: A4 (297mm) Receiver's minimum scan line time: 0ms at 3.85 l/mm: T7.7 = T3.85 R8x15.4lines/mm OK Inch-based resolution preferred: no Metric-based resolution preferred: no Minimum scan line time for higher resolutions: T15.4 = T7.7 >>> DIS: 80 00 c6 f...
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 &...
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 exit. 3. Call ocfs2_queue_recovery_completion() for all slots with NULL, NULL, NULL on the non-orphan-dir arguments. This sets up the orphan...
2003 Oct 28
5
rxfax problem
...om phase 1 to 4 Sending ident >>> CSI: 40 38 37 36 35 34 33 32 31 20 20 20 20 20 20 20 20 20 20 20 20 DIS: Store and forward Internet fax: no Real-time Internet fax: no Preferred octets: 256 Can receive fax Data signalling rate: V.29 R8x7.7lines/mm and/or 200x200pels/25.4mm OK 2D coding OK Scan line length: 215mm Recording length: A4 (297mm) Receiver's minimum scan line time: 0ms at 3.85 l/mm: T7.7 = T3.85 R8x15.4lines/mm OK Inch-based resolution preferred: no Metric-based resolution preferred: no Minimum scan line time for higher resolutions: T15.4 = T7.7 >>> DIS: 80 00 c6 f...
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)
...nNT 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 get back something like this > channel<-odbcConnectExcel(fileName) > tables<-sqlTables(channel) > scanTables<-tables[c(grep("Scan",tables[,"TABLE_NAME"])),] > scanTables TABLE_SCHEM TABLE_NAME TABLE_TY...
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...
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: htt...
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 scanning the devices...
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 in a file > wri...
2017 Aug 18
1
Virus scan - false positive for 32-bit syslinux.efi in syslinux 6.04-pre?
Not sure if this has been addressed previously; I couldn't find anything in the mailing list archives, at least since December 2016. In a routine virus scan of a project that includes syslinux, McAfee Virus Scan reported what I strongly suspect to be a false positive in 32-bit syslinux.efi in the syslinux-6.04-pre1.tar.gz distribution. A follow-up search with VirusTotal shows that the same file, as identified by its SHA256, was scanned on 2 March of th...
2004 Jun 18
0
Problems reciving fax with Asterisk
...own Start receiving document Changed from phase 1 to 4 Sending ident >>> CSI: 40 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 20 DIS: Preferred octets: 256 Can receive fax Supported data signalling rates: V.27ter and V.29 R8x7.7lines/mm and/or 200x200pels/25.4mm OK 2D coding OK Scan line length: 215mm Recording length: A4 (297mm) Receiver's minimum scan line time: 0ms at 3.85 l/mm: T7.7 = T3.85 R8x15.4lines/mm OK Minimum scan line time for higher resolutions: T15.4 = T7.7 >>> DIS: 80 00 ce f0 80 80 01 HDLC underflow in state 9 Changed from phase 4 to 3 T4 timeout...
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