search for: bfile

Displaying 7 results from an estimated 7 matches for "bfile".

Did you mean: file
2006 Jun 26
1
/bin/tar bug
...cting files with the same ownership --no-same-owner extract files as yourself Compatibility options: -o when creating, same as --old-archive when extracting, same as --no-same-owner and Now a test! #goto tmp dir cd /tmp #become root su - root #create three test files touch afile bfile cfile #verify ownership ls -l total 0 -rw-r--r-- 1 root root 0 Jun 26 11:16 afile -rw-r--r-- 1 root root 0 Jun 26 11:16 bfile -rw-r--r-- 1 root root 0 Jun 26 11:16 cfile #create a tar archive tar zcvf testoh.tgz afile bfile cfil #become regular user tar -zxof testoh.tgz tar: afile: Cannot ch...
2008 Jun 09
2
cruisecontrol integration
...ment: :backgroundrb: :log: foreground :test: :backgroundrb: :log: foreground :production: :backgroundrb: :log: foreground EOF backgroundrb_configuration = ERB.new(template).result(binding) #put backgroundrb_configuration, "#{RAILS_ROOT}/config/backgroundrb.yml" bfile = File.new("#{RAILS_ROOT}/config/backgroundrb.yml", "w") bfile.puts backgroundrb_configuration sh "chmod 755 #{RAILS_ROOT}/config/backgroundrb.yml" begin def shutmedown sh "ruby script/backgroundrb stop" end rescue ''got he...
2013 Jun 17
1
Kernel panic in pin_pagetable_pfn
...use and if there''s any solution to it? Thanks, Joe -- [ 0.000000] Linux version 2.6.27 (root@dev64-build1) (gcc version 4.1.1) #3 SMP Sun Jun 9 05:11:27 IST 2013 [ 0.000000] Command line: root=/dev/ram0 rw load_ramdisk=1 ramdisk_size=350000 console=tty0,9600n8 console=ttyS0,9600n8 bfile=disk_pri [ 0.000000] KERNEL supported cpus: [ 0.000000] Intel GenuineIntel [ 0.000000] AMD AuthenticAMD [ 0.000000] Centaur CentaurHauls [ 0.000000] ACPI in unprivileged domain disabled [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] Xen: 0000000000000000 - 00000...
2017 May 05
2
problem with non-allocatable register classes
I am using some non-allocatable RegisterClasses to define lists of registers that are used for various non-allocation-related processing in the back end. For example, we have a post-allocation functional unit selection pass that is guided by the register assignment, which does things like 'myRegClass.contains(Reg)' to see if a register is in the set of registers accessible by a given unit.
2007 Jun 12
1
Selinux custom policy issue - Centos 5
...ed error code 1. Where file_upload_store_t is one of my custom types. My local.fc looks like this: /data/spool/blastreq(/.*)? system_u:object_r:blast_req_t /data/spool/blastres(/.*)? system_u:object_r:blast_res_t /data/upload(/.*)? system_u:object_r:file_upload_store_t /data/bfiles(/.*)? system_u:object_r:bfiles_t /var/www/possumbase/html/imagetemp(/.*)? system_u:object_r:http_image_temp_t /var/www/sheep/html/imagetemp(/.*)? system_u:object_r:http_image_temp_t And my local.te contains (selected portions only for now): module local 1.1; require { ... &lt...
2006 Oct 31
1
Compiling R packages on Ubuntu
...usr/share/R/include/Rinternals.h:44:19: error: ctype.h: No such file or directory In file included from base.h:34, from matrix.h:27, from corStruct.c:27: /usr/share/R/include/Rinternals.h:767: error: expected declaration specifiers or $(B!F(B...$(B!G(B before $(B!F(BFILE$(B!G (B/usr/share/R/include/Rinternals.h:770: error: expected declaration specifiers or $(B!F(B...$(B!G(B before $(B!F(BFILE$(B!G (BIn file included from matrix.h:27, from corStruct.c:27: base.h:38:21: error: libintl.h: No such file or directory corStruct.c: In function $(B!F(BcorS...
2011 Aug 30
2
Error in evalauating a function
Hi, ? I am very new to R. So, pardon my dumb question. I was trying to write my own function to run a different model (perform an ordered logistic regression) using the example in website http://pngu.mgh.harvard.edu/~purcell/plink/rfunc.shtml But R returns a error `R Error in eval(expr, envir, enclos) : object 's' not found' when I run it. What am I doing wrong here? Here's