search for: _get_creation

Displaying 3 results from an estimated 3 matches for "_get_creation".

2010 Apr 14
1
[PATCH] Change the date format used in RHEV OVF output
...$time->hour(), $time->min(), $time->sec()); +} + sub _disks { my $self = shift; @@ -756,11 +761,7 @@ sub _disks $e->addText('00000000-0000-0000-0000-000000000000'); $item->appendChild($e); - my $volcreation = gmtime($vol->_get_creation()); - my $voldate = sprintf("%02d/%02d/%d %02d:%02d:%02d", - $volcreation->mday(), $volcreation->mon() + 1, - $volcreation->year() + 1900, $volcreation->hour(), - $volcreation->min...
2010 Sep 21
1
[PREVIEW ONLY] Refactor data transfer code
...path => $path, + error => $!))); - return $vols_by_path{$path}; + print $meta "DOMAIN=".$volume->_get_domainuuid()."\n"; + print $meta "VOLTYPE=LEAF\n"; + print $meta "CTIME=".$volume->_get_creation()."\n"; + print $meta "FORMAT=".$volume->_get_rhev_format()."\n"; + print $meta "IMAGE=".$volume->_get_imageuuid()."\n"; + print $meta "DISKTYPE=1\n"; + print $meta "PUUID=00000000-0000-0000-0000-0000...
2010 Mar 30
3
[PATCH 1/2] Refactor guest and volume creation into Sys::VirtV2V::Target::LibVirt
Move all target-specific functionality into its own module in preparation for output to RHEV. --- MANIFEST | 1 + lib/Sys/VirtV2V/Connection.pm | 46 ++--- lib/Sys/VirtV2V/Converter.pm | 138 +------------ lib/Sys/VirtV2V/Target/LibVirt.pm | 419 +++++++++++++++++++++++++++++++++++++ lib/Sys/VirtV2V/Transfer/ESX.pm | 91 +++------ po/POTFILES.in