search for: 2bg

Displaying 3 results from an estimated 3 matches for "2bg".

Did you mean: 2b
2006 Oct 26
1
File size limits with samba 3.0.20b and FreeBSD 5.3
We're seeing problems with copying files > 2BG to a samba share. Google says that, as of 2004, there was a 2GB file size limit in that scenario, but I haven't found anything more recent. Is that still the case or am I looking at a different problem? Thanks, Graham
2013 Jun 07
4
how to add gdal with rails application , now working with gdal 1.8 in ubuntu 10.10
I need to downgrade the gdal version , i am working in remote system so have only command prompt so if anybudy know how to either downgrade gdal version from 1.8 to 1.7 or any other way to use gdal in rails app which have version 2.3.5 and ruby 1.8.7 and ubuntu 10.10 Thanks -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To
2009 Feb 10
1
[LLVMdev] direct calls to inttoptr constants
I'm compiling code which contains indirect function calls via their absolute addresses, which are known/fixed at compile-time: pseudo c code: int main() { int (* f)(int) = (int (*)(int))12345678; return (*f)(0); } the IR looks like: define i32 @main() nounwind { entry: %0 = tail call i32 inttoptr (i64 12345678 to i32 (i32)*)(i32 0) nounwind ret i32 %0 } on X86 llc 2.4 compiles this to: