Displaying 3 results from an estimated 3 matches for "databasetyp".
Did you mean:
databasetype
2013 Apr 12
2
"Failed to locate the 'texi2pdf' output file"
...name, by = "texi2pdf", engine = engine) :
Failed to locate the 'texi2pdf' output file (by engine
'utils::Sweave') for vignette with name 'OrganismDbi'. The following
files exists in directory '.': 'OrganismDbi.Rnw', 'OrganismDbi.tex',
'databaseTypes.pdf'
Calls: <Anonymous> -> find_vignette_product
Execution halted
This is puzzling to me because I would have thought that
'OrganismDbi.tex' was the file it was looking for, yet it says that
file exists.
These build errors are transient...if I re-run the build, the error
do...
2013 Oct 08
1
"Failed to locate the 'texi2pdf' output file"
...>>> Failed to locate the 'texi2pdf' output file (by engine
>>> 'utils::Sweave') for vignette with name 'OrganismDbi'. The following
>>> files exists in directory '.': 'OrganismDbi.Rnw', 'OrganismDbi.tex',
>>> 'databaseTypes.pdf'
>>> Calls: <Anonymous> -> find_vignette_product
>>> Execution halted
>>>
>>> This is puzzling to me because I would have thought that
>>> 'OrganismDbi.tex' was the file it was looking for, yet it says that
>>> file ex...
2009 Nov 07
1
Fwd: [PATCH (geoip)] use IO.pread from the io-extra lib if possible
...# +filename+ is a String holding the path to the GeoIP.dat file
# +options+ is an integer holding caching flags (unimplemented)
def initialize(filename, flags = 0)
- @mutex = Mutex.new
+ @mutex = IO.respond_to?(:pread) ? false : Mutex.new
@flags = flags
@databaseType = GEOIP_COUNTRY_EDITION
@record_length = STANDARD_RECORD_LENGTH
@@ -530,11 +535,9 @@ class GeoIP
private
def read_city(pos, hostname = '''', ip = '''')
- record = ""
- @mutex.synchronize {
- @file.seek(pos + (2...