search for: filename2

Displaying 20 results from an estimated 29 matches for "filename2".

Did you mean: filename
2010 Apr 17
3
[LLVMdev] understanding the opt tool
...Sam ----- Original Message ---- > From: Duncan Sands <baldrick at free.fr> > To: llvmdev at cs.uiuc.edu > Sent: Sat, April 17, 2010 2:00:00 AM > Subject: Re: [LLVMdev] understanding the opt tool > > Hi Kalyan, > opt -strip-dead-prototypes -f <filename.bc> > filename2.bc you have to specify the list of passes to run. > -strip-dead-prototypes only removes unused declarations. If there are > none, it will do nothing. Try: opt -std-compile-opts -f > <filename.bc> > filename2.bc Ciao, Duncan. ____________________________________________...
2007 Aug 20
1
system() fails with fc.exe (PR#9868)
...om python 2.3, I get >>> import os >>> os.system("c:\\WINDOWS\\system32\\fc /?") Compares two files or sets of files and displays the differences between them FC [/A] [/C] [/L] [/LBn] [/N] [/OFF[LINE]] [/T] [/U] [/W] [/nnnn] [drive1:][path1]filename1 [drive2:][path2]filename2 FC /B [drive1:][path1]filename1 [drive2:][path2]filename2 /A Displays only first and last lines for each set of differences. /B Performs a binary comparison. /C Disregards the case of letters. /L Compares files as ASCII text. /LBn Sets the maximum co...
2010 Apr 16
2
[LLVMdev] understanding the opt tool
...e optimized output or is there any other way. If the procedure that I used is correct then could you tell me why am I not able to see the optimizations on the source code. The commands are in this way: clang -c -emit-llvm filename.c -o filename.bc opt -strip-dead-prototypes -f <filename.bc> filename2.bc I am working on the visual studio solution file and on windows 7 (in case you want to know the platform) Thanks. -- Kalyan Ponnala phone: 8163772059 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20100...
2010 Apr 17
0
[LLVMdev] understanding the opt tool
...) { A[i] = 1+ i; } for (i=0; i<10 ; i++) { B[i] = A[i] +1; printf("\n %d is B[%d] ", B[i] , i); } return 0; } The commands that I used to do the opts are: clang -c -emit-llvm filename.c -o filename.bc opt -loop-unroll -f <filename.bc> filename2.bc This does not give me any different output when compared to no optimizations. I mean filename.bc and filename2.bc are the same. Is my program wrong when it comes to a loop optimization or is the procedure to perform the optimization wrong. ? Thanks. On Sat, Apr 17, 2010 at 1:02 PM, Samuel Cro...
2010 Apr 17
0
[LLVMdev] understanding the opt tool
Hi Kalyan, > opt -strip-dead-prototypes -f <filename.bc> filename2.bc you have to specify the list of passes to run. -strip-dead-prototypes only removes unused declarations. If there are none, it will do nothing. Try: opt -std-compile-opts -f <filename.bc> filename2.bc Ciao, Duncan.
2008 Mar 28
1
Problem redirecting output stream of wine
Hi all, I'm using an Ubuntu 7.10 and the latest (?) version of Wine ( 0.9.58 ). I'm running a windows application that seems to work properly, but i cannot manage to redirect the output to a file: $ wine cmd.exe Usage : cmd.exe [filename1] [filename2] ... $ wine cmd.exe > /dev/null Usage : cmd.exe [filename1] [filename2] ... $ wine cmd.exe 2> /dev/null Usage : cmd.exe [filename1] [filename2] ... I've already tried to use wineconsole, but I get the same behavior and using wineconsole --backend=curses I get the following error: fixme...
2011 Dec 23
4
Remove temporary directories created during appliance building along error paths (RHBZ#769680)
https://bugzilla.redhat.com/show_bug.cgi?id=769680
2010 May 14
1
Putting 6 graphs on one page
...tions<-c("a","b","c","d","e","f") conditions.long<-c("It's a","It's b","It's c","It's d","It's e","It's f") for(i in 1:6) { IV<-conditions[i] filename2=paste("DependentVariable ","IV ",IV,".emf",sep="") win.metafile(file=filename2) out<-as.data.frame(tapply(data$DependentVariable.j,data[[IV]],mean)) out$IV<-as.factor(as.numeric(row.names(out))) names(out)[1]<-"j" out2<-as.data.fra...
2007 Nov 21
2
Scripting help please
...me\/home/my programs/myname/path to the target file.." to the program which fails The script removes the z:\home\myname\ from the front and adds appropriate quotes to allow spaces in the names The script is: #!/bin/bash filename="$1" # remove the leading 'z:\home\myname\' filename2="${filename/'z:\home\myname\'/'z:'}" # 2 different scripts should be created, one with the -z parameter and one without. # with the -z parameter it decrypts, without it, it encrypts wine "C:\Program Files\AxCrypt\AxCrypt.exe" "$filename2" #wine "C...
2013 Sep 06
1
[PATCH] arm: appliance: Add support for device trees (dtb's).
This is the libguestfs companion patch to: https://www.redhat.com/archives/libguestfs/2013-September/msg00045.html Rich.
2023 Nov 06
1
strange link files
Dear all, I recently upgraded my clients to 10.4, while I left the servers (distrubuted only) on glusterfs 9. I'm seeing a strange effect when I do a "mv filename1 filename2": filename2 is uplicated, one time with zero size and sticky bit set. In generally, I know that glusterfs creates link files (size zero and sticky bit set) when the new filename is hashed to a different brick. However, these link files are only visible to the glusterfsd, not to the users....
2009 Dec 10
0
mv renames the wrong file
...3-4 times in the last days) is when I used the mv command in the shares I mounted locally on the server. I seem to remember that when it happened in the past, instead of renaming the file like I asked for, it moved the parent folder at the target location... Example: cd dir1; mv filename1 ../dir2/filename2 Would result in dir1 being renamed dir2/filename2/ and it would still contain filename1. Any pointers? (Should I post in the Ubuntu forums instead of here?) Thanks, Guillaume Boudreau PS I checked my history to make sure I did issue the correct command, in the right directory, and I did: 834...
2007 Oct 15
1
The "condition has length > 1" issue for lists
I have the following code: list1 <- list() for (i in list.files(pattern="filename1")){ x <- read.table(i) list1[[i]] <- x } list2 <- list() for (i in list.files(pattern="filename2*")){ x <- read.table(i) list2[[i]] <- x } anslist <- vector('list', length(list1)) for(i in 1:length(list1)) if (list1[[i]] & list2[[i]] >1) anslist[[i]] <- list1[[i]] - list2[[i]] That, if at least one element in either of the lists is below 1, nothing happ...
2008 Jul 17
2
Passing array to the email body using ActionMailer
Hi, all I am new to actionmailer. I am writing a script that sends emails contains lots of file names. So the email will look like: hi, filename1 filename2 filename3 . . . filenameN So I want to pass an array containing all the filenames into the email body. My code is below: class Notifier < ActionMailer::Base def log_report(recipient, files) from ''zhengdao.kan-TVtm3wuDI7lWk0Htik3J/w@public.gmane.org'' recipients reci...
2003 Sep 18
2
bad hardlinks with rsync
...'ve experienced some problems with rsync. I'm backuping a complete machine's rootdirectory. After completion I see in the log of the output, that rsync links some files which are surely *not* the same on the source System. Or well, it says, that it makes links, using the filename1 => filename2 notation. On the source System this files are not the same and some files are missing on the target System after the sync. Well, the log says, "partial transfer". But why the link-sign or why does rsync think, that this files are the same?? Below you will find all the information about t...
2010 Sep 10
8
convert "1", "10", and "100" to "0001", "0010", "0100" etc.
..."0010", "0100" etc. I ask because I am producing a large number of files that need to sort consistently by filename. Currently I get this kind of sorting: filename1 filename10 filename11 filename12 filename13 filename14 filename15 filename16 filename17 filename18 filename19 filename2 filename20 filename21 ...etc.. which is annoying. Ideally I'd have: filename0001 filename0002 filename0003 filename0004 filename0005 filename0006 filename0007 filename0008 filename0009 filename0010 filename0011 ...etc.. Basically I want to produce strings like "0010" without an e...
2006 Nov 13
2
Embedded carriage returns in text document
Colleagues, I am using R 2.4.0 on both a Mac (10.4.8) and Linux (RedHat 9). To read data from an Excel spreadsheet, I do "save as" in Excel, then select the "Text (tab-delimited)" format. The resulting file uses a tab separator and I can usually read the file using read.delim. Sometimes, the header row contains embedded carriage returns. When I view the file,
2005 Dec 23
6
file_column and HABTM
I have several models that will be using file_column by way of the "Picture" class (HABTM). Right now, all pictures are stored in: public/picture/image/1/filename1.jpg public/picture/image/2/filename2.jpg Is there a way I can dynamically define the "store_dir" based on the model? For example, if I have "user", "product" and "place" models all of which HATBTM "picture", I''d like uploads to be located in: public/picture/user/1/filename...
2017 Apr 09
0
failed to set times on ... Invalid argument (22) and what to do with it
...y. After the log snippets below, I will try to explain the problem as I see it, and then suggest two different ways to address it: basically ignore error 22 (EINVAL) of fix nanosecond mtime . === ... 2017/04/06 00:16:06 [16000] <f..tp..... filename1 2017/04/06 00:16:06 [16000] <f..tp..... filename2 2017/04/06 00:16:06 [16000] rsync: failed to set times on "filename1.ezq12g" (in module): Invalid argument (22) 2017/04/06 00:16:06 [16000] rsync: failed to set times on "filename2.wp5Aju" (in module): Invalid argument (22) 2017/04/06 00:16:09 [16000] <f..t...... filename3...
2004 Apr 20
2
compile Fortran code which calls C subroutine
I used "R CMD SHLIB" to compile the fortran filename.f file and the filename.so is generated. But since in filename.f it calls another subroutine written in C, i had problem in "dyn.load" because it could not find the C subroutine. I have the .c file but don't know how to tell R about it. How should I compile when I want to call the fortran function