search for: ifd

Displaying 20 results from an estimated 28 matches for "ifd".

Did you mean: if
2006 Jun 22
2
OT EXIF libraray
Hi- this is slightly off topic, but is anyone aware of a WORKING ruby library that reads EXIF data from JPEG files? It has to run on both Windows and *nix, so wrappers around unix libs won''t do. So far I tried rexif, ruby-exif (both throwing exceptions when presented with a JPEG) and RMagick (at least able to get the date from EXIF, however it adds a ''.'' at the end for
2012 Jun 22
0
Wine release 1.5.7
...pes. windowscodecs: Reimplement TiffDecoder_GetFrameCount using TIFFNumberOfDirectories. gdiplus: Accept wider range of fonts. windowscodecs: Add a test to show that metadata reader may not rewind the stream after loading the data. windowscodecs: Implement partial loading of IFD metadata. windowscodecs: Add support for WICPersistOptionsLittleEndian/WICPersistOptionsBigEndian in the IFD metadata reader. windowscodecs: Check IFD structure when loading metadata. include: Fix WICPersistOptions definition. windowscodecs: Remove not reachable code in the...
2003 Sep 05
1
new option suggestion '--backup-only'
...RG_STRING, &files_from, 0, 0, 0 }, {"from0", '0', POPT_ARG_NONE, &eol_nulls, 0, 0, 0}, {"no-implied-dirs", 0, POPT_ARG_VAL, &implied_dirs, 0, 0, 0 }, + {"backup-only", 0, POPT_ARG_NONE, &backup_only , 0, 0, 0 }, #ifdef INET6 {0, '4', POPT_ARG_VAL, &default_af_hint, AF_INET, 0, 0 }, {0, '6', POPT_ARG_VAL, &default_af_hint, AF_INET6, 0, 0 }, @@ -584,6 +587,11 @@ return 0; #endif + case OPT_BACKUP_DIR: + /* --backup-dir implies --backup */ + make_backup...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 07/13] lguest64 loader
...break; + } + return ret; +} + +static inline unsigned long page_align(unsigned long addr) +{ + return ((addr + getpagesize()-1) & ~(getpagesize()-1)); +} + +/* initrd gets loaded at top of memory: return length. */ +static unsigned long load_initrd(const char *name, unsigned long end) +{ + int ifd; + struct stat st; + void *iaddr; + + if (!name) + return 0; + + ifd = open(name, O_RDONLY, 0); + if (ifd < 0) + err(1, "Opening initrd '%s'", name); + + if (fstat(ifd, &st) < 0) + err(1, "fstat() on initrd '%s'", name); + + iaddr = mmap((void *)end...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 07/13] lguest64 loader
...break; + } + return ret; +} + +static inline unsigned long page_align(unsigned long addr) +{ + return ((addr + getpagesize()-1) & ~(getpagesize()-1)); +} + +/* initrd gets loaded at top of memory: return length. */ +static unsigned long load_initrd(const char *name, unsigned long end) +{ + int ifd; + struct stat st; + void *iaddr; + + if (!name) + return 0; + + ifd = open(name, O_RDONLY, 0); + if (ifd < 0) + err(1, "Opening initrd '%s'", name); + + if (fstat(ifd, &st) < 0) + err(1, "fstat() on initrd '%s'", name); + + iaddr = mmap((void *)end...
2004 Apr 27
1
rsync-2.6.1 close() fixes
...00000 +0300 +++ rsync-2.6.1/util.c 2004-04-27 19:15:29.000000000 +0300 @@ -29,6 +29,7 @@ extern int verbose; extern struct exclude_list_struct server_exclude_list; +extern int do_fsync; int sanitize_paths = 0; @@ -281,8 +282,22 @@ int copy_file(char *source, char *dest, } } - close(ifd); - close(ofd); + if (close(ifd) != 0) { + rprintf(FINFO, "close failed on %s: %s\n", + source, strerror(errno)); + } + + if (do_fsync && (fsync(ofd) != 0)) { + rprintf(FERROR, "fsync failed on %s: %s\n", + dest, strerror(errno)); + return -1; + } + + if (close(of...
2007 Aug 27
0
[LLVMdev] [patch] Pluggable Coalescers
...it necessary to separate class InterferenceData out from RegisterCoalescer.h? 5. + /// Run the coalescer on this function, providing interference + /// data to query. Return whether we removed any copies. + virtual bool coalesceFunction(MachineFunction &mf, InterferenceData &ifd) = 0; 80 col violation. 6. + /// doWork - The main coalescing algorithm. Return whether any + /// copies were coalesced. + bool doWork(MachineFunction &mf); Please rename it to something like performCoalescing. Also, is this defined anywhere? 7. About class LinearScanInterferen...
2007 Aug 27
2
[LLVMdev] [patch] Pluggable Coalescers
...n break it out. I'll keep it in RegisterCoalecer.h. > 5. > + /// Run the coalescer on this function, providing interference > + /// data to query. Return whether we removed any copies. > + virtual bool coalesceFunction(MachineFunction &mf, > InterferenceData &ifd) = 0; > > 80 col violation. Ok. > 6. > + /// doWork - The main coalescing algorithm. Return whether any > + /// copies were coalesced. > + bool doWork(MachineFunction &mf); > > Please rename it to something like performCoalescing. Also, is this > defined a...
2018 Dec 12
2
Subset dentro de un for
...color= GT[i],size=2) + scale_colour_gradient(low=("white"),high=("red"),guide="colourbar",limits=c(0,max))+ geom_path(data=map_data('world'), aes(x=long, y=lat,group=group))+ labs(title = paste("5026 Minimum number of IFd species to go extinct")))) } Quoting Carlos Ortega <cof en qualityexcellence.es>: > Esta es una forma... > >> for(i in c('Ozone', 'Solar.R')) { > + print(i) > + sub_data <- subset(airquality, eval(parse(text=i)) < 100) > + res_...
2007 Aug 20
4
[LLVMdev] [patch] Pluggable Coalescers
Here's a proposed patch for reworking register coalescing to allow pluggable coalescers. I think I've got the interfaces where I want them and am reasonably sure I've squashed most of the bugs. I'm still doing some testing and want to get through a whole regimen before committing. As a reminder, this patch has several goals: - Allow user-specified register coalescers, similar
2018 Dec 12
2
Subset dentro de un for
...>> >> scale_colour_gradient(low=("white"),high=("red"),guide="colourbar",limits=c(0,max))+ >>         geom_path(data=map_data('world'), aes(x=long, >> y=lat,group=group))+ >>         labs(title =  paste("5026 Minimum number of IFd species to go >> extinct")))) >> >> } >> >> >> >> >> >> >> >> >> Quoting Carlos Ortega <cof en qualityexcellence.es>: >> >>> Esta es una forma... >>> >>>> for(i in c('Ozone'...
2007 May 09
0
[patch 9/9] lguest: the documentation, example launcher
...uN /dev/null Documentation/lguest/Makefile --- /dev/null +++ a/Documentation/lguest/Makefile @@ -0,0 +1,27 @@ +# This creates the demonstration utility "lguest" which runs a Linux guest. + +# For those people that have a separate object dir, look there for .config +KBUILD_OUTPUT := ../.. +ifdef O + ifeq ("$(origin O)", "command line") + KBUILD_OUTPUT := $(O) + endif +endif +# We rely on CONFIG_PAGE_OFFSET to know where to put lguest binary. +include $(KBUILD_OUTPUT)/.config +LGUEST_GUEST_TOP := ($(CONFIG_PAGE_OFFSET) - 0x08000000) + +CFLAGS:=-Wall -Wmissing-decl...
2007 May 09
0
[patch 9/9] lguest: the documentation, example launcher
...uN /dev/null Documentation/lguest/Makefile --- /dev/null +++ a/Documentation/lguest/Makefile @@ -0,0 +1,27 @@ +# This creates the demonstration utility "lguest" which runs a Linux guest. + +# For those people that have a separate object dir, look there for .config +KBUILD_OUTPUT := ../.. +ifdef O + ifeq ("$(origin O)", "command line") + KBUILD_OUTPUT := $(O) + endif +endif +# We rely on CONFIG_PAGE_OFFSET to know where to put lguest binary. +include $(KBUILD_OUTPUT)/.config +LGUEST_GUEST_TOP := ($(CONFIG_PAGE_OFFSET) - 0x08000000) + +CFLAGS:=-Wall -Wmissing-decl...
2010 Nov 22
1
pcscd
Anyone working with/using it? One thing that's driving me nuts is that it keeps spitting garbage into the logs (card absent or mute!!!). I just tried editing /etc/init.d/pcscd - there's *no* way to pass parms from the config file - and set the logging level to --error, and it's still doing it. Clues for the poor, to shut it up? mark
2007 Aug 28
0
[LLVMdev] [patch] Pluggable Coalescers
...ep it in > RegisterCoalecer.h. > >> 5. >> + /// Run the coalescer on this function, providing interference >> + /// data to query. Return whether we removed any copies. >> + virtual bool coalesceFunction(MachineFunction &mf, >> InterferenceData &ifd) = 0; >> >> 80 col violation. > > Ok. > >> 6. >> + /// doWork - The main coalescing algorithm. Return whether any >> + /// copies were coalesced. >> + bool doWork(MachineFunction &mf); >> >> Please rename it to something like pe...
2008 Sep 27
2
Why i can't configure network and hostname with this kickstart file?
...boot-tui -autofs -bc -bluez-libs -cairo -pango -paps -cups -ccid -coolkey -cpuspeed -Deployment_Guide-en-US -dhcpv6_client -ed -finger -hdparm -dmraid -NetworkManager -smartmontools -ppp -rp-pppoe -ecryptfs-utils #-rhn-client-tools #-rhn-check #-yum-rhn-plugin #-rhnsd #-rhn-setup -hesiod -sendmail -ifd-egate -pcsc-lite -gpm -ipsec-tools -libselinux-python -ksh -logwatch -mailcap -nano -nc -mtools -syslinux -mkbootdisk -net-snmp-libs -OpenIPMI -redhat-menus -htmlview -pinfo -mgetty -specspo -nscd -nss_ldap -nfs-utils-lib -nfs-utils -portmap -ypbind -yp-tools -quota -lsof -irqbalance -system-config...
2004 Jun 04
3
illegal instruction
Skipped content of type multipart/alternative-------------- next part -------------- A non-text attachment was scrubbed... Name: smime.p7s Type: application/x-pkcs7-signature Size: 1604 bytes Desc: not available Url : http://lists.digium.com/pipermail/asterisk-users/attachments/20040604/8bc355fd/smime.bin
2018 Dec 12
4
Subset dentro de un for
Muy buenas. Quiero hacer un loop en el que en cada iteración se hace un subset con el que se queda con las muestras para la que cierta variable es positiva. Si hago esto, sale bien: df2<-subset(df, subset = var1>0) Pero he probado así (y de no sé cuantas formas más), antes de hacer el for, y no sale: GT<- c("var1","var2", ? ) df2<-subset(df,
2012 May 25
0
Wine release 1.5.5
...odecs: Add a stubbed out IWICMetadataBlockReader interface. gdiplus: Reimplement GdipIsEmptyRegion. gdiplus: Return correct status code if GdipAlloc fails. gdiplus: Avoid needless gotos. windowscodecs: Fix some typos in the tEXt metadata test. include: Add some ids for IFD metadata support. windowscodecs: Add some tests for IFD metadata reader. Dylan Smith (2): richedit: Remove some unused structure fields. richedit: Invalidate a range of paragraphs without marking them. Eric Pouech (4): winedbg: Also recognize 'rep ret' as a valid r...
2003 Jul 23
5
Asterisk as a stand alone voice mail server
I'm sure asterisk would make a great stand alone voice mail server. Basically I want to get rid of our voice mail system and replace it with *, but the problem is we use a cisco cluster with skinny clients. So I was thinking the way to contact a * server, would be through our 3640. But so far any attempt has failed. I am wondering if anyone has done something similar. Just want to verify the