Home
last modified time | relevance | path

Searched refs:mod_time (Results 1 – 25 of 1596) sorted by relevance

12345678910>>...64

/dports/archivers/p5-Gzip-Faster/Gzip-Faster-0.21/lib/Gzip/
H A DFaster.pm29 my $mod_time = $options{mod_time};
33 if ($mod_time) {
34 $gf->mod_time ($mod_time);
47 my $mod_time = (stat ($file))[9];
48 return gzip_options ($plain, file_name => $file, mod_time => $mod_time);
67 my $mod_time_ref = $options{mod_time};
72 $$mod_time_ref = $gf->mod_time ();
/dports/emulators/fs-uae-launcher/fs-uae-launcher-3.0.5/amitools/fs/
H A DMetaInfo.py63 mod_time = time.mktime(time.localtime())
64 self.set_mod_time(mod_time)
66 def set_mod_time(self, mod_time): argument
67 self.mod_time = mod_time
68 if self.mod_time != None:
70 self.mod_ts.from_secs(mod_time)
77 self.mod_time = self.mod_ts.get_secsf()
79 self.mod_time = None
94 return self.mod_time
H A DRootMetaInfo.py85 def set_mod_time(self, mod_time): argument
86 self.mod_time = mod_time
87 if self.mod_time != None:
89 self.mod_ts.from_secs(mod_time)
96 self.mod_time = self.mod_ts.get_secsf()
98 self.mod_time = None
101 return self.mod_time
113 mod_time = time.mktime(time.localtime())
114 self.set_mod_time(mod_time)
/dports/archivers/p5-Gzip-Faster/Gzip-Faster-0.21/
H A Dgzip-faster-perl.c38 SV * mod_time; member
109 if (gf->mod_time) { in gf_delete_mod_time()
111 gf->mod_time = 0; in gf_delete_mod_time()
140 if (gf->mod_time) { in gf_set_mod_time()
143 SvREFCNT_inc (mod_time); in gf_set_mod_time()
144 gf->mod_time = mod_time; in gf_set_mod_time()
151 if (gf->mod_time) { in gf_get_mod_time()
152 return gf->mod_time; in gf_get_mod_time()
231 if (gf->mod_time) { in gzip_faster()
343 if (gf->mod_time) { in gunzip_faster()
[all …]
/dports/devel/py-b2sdk/b2sdk-1.12.0/b2sdk/sync/
H A Dpath.py22 def __init__(self, relative_path: str, mod_time: int, size: int):
24 self.mod_time = mod_time
33 self.__class__.__name__, repr(self.relative_path), repr(self.mod_time), repr(self.size)
40 def __init__(self, absolute_path: str, relative_path: str, mod_time: int, size: int):
42 super().__init__(relative_path, mod_time, size)
50 self.relative_path == other.relative_path and self.mod_time == other.mod_time and
69 def mod_time(self) -> int: member in B2SyncPath
/dports/net-mgmt/pnp-icinga2/pnp4nagios-0.6.26/lib/kohana/system/helpers/
H A Dexpires.php53 $mod_time = substr($_SERVER['HTTP_IF_MODIFIED_SINCE'], 0, $strpos);
57 $mod_time = $_SERVER['HTTP_IF_MODIFIED_SINCE'];
60 $mod_time = strtotime($mod_time);
61 $mod_time_diff = $mod_time + $seconds - time();
66 header('Last-Modified: '.gmdate('D, d M Y H:i:s T', $mod_time));
/dports/net-mgmt/pnp/pnp4nagios-0.6.26/lib/kohana/system/helpers/
H A Dexpires.php53 $mod_time = substr($_SERVER['HTTP_IF_MODIFIED_SINCE'], 0, $strpos);
57 $mod_time = $_SERVER['HTTP_IF_MODIFIED_SINCE'];
60 $mod_time = strtotime($mod_time);
61 $mod_time_diff = $mod_time + $seconds - time();
66 header('Last-Modified: '.gmdate('D, d M Y H:i:s T', $mod_time));
/dports/japanese/rogue_s/rogue_s/
H A Dsave.c173 struct rogue_time saved_time, mod_time; local
480 has_been_touched(saved_time, mod_time) argument
481 struct rogue_time *saved_time, *mod_time;
487 mod = (short *)mod_time;
498 has_been_touched(saved_time, mod_time) argument
501 if (saved_time->year < mod_time->year) {
506 if (saved_time->month < mod_time->month) {
511 if (saved_time->day < mod_time->day) {
516 if (saved_time->hour < mod_time->hour) {
521 if (saved_time->minute < mod_time->minute) {
[all …]
/dports/net/ntp/ntp-4.2.8p15/scripts/build/
H A DupdateBEDate18 my $mod_time;
24 $mod_time = (stat ($i))[9];
25 $stamp = localtime($mod_time);
27 localtime($mod_time);
49 utime(time, $mod_time, "$i.new") || die "touch $i.new failed: $!";
/dports/archivers/lhasa/lhasa-0.3.1/lib/
H A Dmacbinary.c166 static int check_modification_time(unsigned int mod_time, in check_modification_time() argument
176 if (header->timestamp > mod_time) { in check_modification_time()
177 time_diff = header->timestamp - mod_time; in check_modification_time()
179 time_diff = mod_time - header->timestamp; in check_modification_time()
216 unsigned int mod_time; in is_macbinary_header() local
263 mod_time = lha_decode_be_uint32(&data[MBHDR_OFF_FILE_MOD_DATE]); in is_macbinary_header()
265 if (mod_time < MAC_TIME_OFFSET in is_macbinary_header()
266 || !check_modification_time(mod_time - MAC_TIME_OFFSET, header)) { in is_macbinary_header()
/dports/lang/gcc6-aux/gcc-6-20180516/libjava/classpath/java/util/zip/
H A DGZIPOutputStream.java85 int mod_time = (int) (System.currentTimeMillis() / 1000L); in GZIPOutputStream() local
99 (byte) mod_time, (byte) (mod_time >> 8), in GZIPOutputStream()
100 (byte) (mod_time >> 16), (byte) (mod_time >> 24), in GZIPOutputStream()
/dports/lang/gcc48/gcc-4.8.5/libjava/classpath/java/util/zip/
H A DGZIPOutputStream.java85 int mod_time = (int) (System.currentTimeMillis() / 1000L); in GZIPOutputStream() local
99 (byte) mod_time, (byte) (mod_time >> 8), in GZIPOutputStream()
100 (byte) (mod_time >> 16), (byte) (mod_time >> 24), in GZIPOutputStream()
/dports/lang/gnat_util/gcc-6-20180516/libjava/classpath/java/util/zip/
H A DGZIPOutputStream.java85 int mod_time = (int) (System.currentTimeMillis() / 1000L); in GZIPOutputStream() local
99 (byte) mod_time, (byte) (mod_time >> 8), in GZIPOutputStream()
100 (byte) (mod_time >> 16), (byte) (mod_time >> 24), in GZIPOutputStream()
/dports/devel/arm-none-eabi-gcc492/gcc-4.9.2/libjava/classpath/java/util/zip/
H A DGZIPOutputStream.java85 int mod_time = (int) (System.currentTimeMillis() / 1000L); in GZIPOutputStream() local
99 (byte) mod_time, (byte) (mod_time >> 8), in GZIPOutputStream()
100 (byte) (mod_time >> 16), (byte) (mod_time >> 24), in GZIPOutputStream()
/dports/devel/mingw32-gcc/gcc-4.8.1/libjava/classpath/java/util/zip/
H A DGZIPOutputStream.java85 int mod_time = (int) (System.currentTimeMillis() / 1000L); in GZIPOutputStream() local
99 (byte) mod_time, (byte) (mod_time >> 8), in GZIPOutputStream()
100 (byte) (mod_time >> 16), (byte) (mod_time >> 24), in GZIPOutputStream()
/dports/java/sablevm-classpath/sablevm-classpath-1.13/java/util/zip/
H A DGZIPOutputStream.java85 int mod_time = (int) (System.currentTimeMillis() / 1000L); in GZIPOutputStream() local
99 (byte) mod_time, (byte) (mod_time >> 8), in GZIPOutputStream()
100 (byte) (mod_time >> 16), (byte) (mod_time >> 24), in GZIPOutputStream()
/dports/devel/py-b2sdk/b2sdk-1.12.0/test/unit/v0/
H A Dtest_download_dest.py31 mod_time = 1500222333000
35 "file_id", "file_name", 100, "content_type", "sha1", {}, mod_time
43 self.assertEqual(mod_time, int(os.path.getmtime(file_path) * 1000))
74 mod_time = 1500222333000
81 "file_id", "file_name", 100, "content_type", "sha1", {}, mod_time
86 self.assertEqual(mod_time, int(os.path.getmtime(file_path) * 1000))
/dports/devel/py-b2sdk/b2sdk-1.12.0/test/unit/v1/
H A Dtest_download_dest.py31 mod_time = 1500222333000
35 "file_id", "file_name", 100, "content_type", "sha1", {}, mod_time
43 self.assertEqual(mod_time, int(os.path.getmtime(file_path) * 1000))
74 mod_time = 1500222333000
81 "file_id", "file_name", 100, "content_type", "sha1", {}, mod_time
86 self.assertEqual(mod_time, int(os.path.getmtime(file_path) * 1000))
/dports/lang/mono/mono-5.10.1.57/mcs/class/ICSharpCode.SharpZipLib/ICSharpCode.SharpZipLib/GZip/
H A DGzipOutputStream.cs110 int mod_time = (int)(DateTime.Now.Ticks / 10000L); // Ticks give back 100ns intervals in WriteHeader()
122 (byte) mod_time, (byte) (mod_time >> 8), in WriteHeader()
123 (byte) (mod_time >> 16), (byte) (mod_time >> 24), in WriteHeader()
/dports/devel/gdb/gdb-11.1/gdb/dwarf2/
H A Dline-header.c47 unsigned int mod_time, in add_file_name() argument
60 m_file_names.emplace_back (name, d_index, mod_time, length); in add_file_name()
163 unsigned int mod_time, in read_formatted_entries() argument
262 fe.mod_time = *uint; in read_formatted_entries()
276 callback (lh, fe.name, fe.d_index, fe.mod_time, fe.length); in read_formatted_entries()
396 dir_index d_index, unsigned int mod_time, in dwarf_decode_line_header()
406 dir_index d_index, unsigned int mod_time, in dwarf_decode_line_header()
409 header->add_file_name (name, d_index, mod_time, length); in dwarf_decode_line_header()
425 unsigned int mod_time, length; in dwarf_decode_line_header() local
431 mod_time = read_unsigned_leb128 (abfd, line_ptr, &bytes_read); in dwarf_decode_line_header()
[all …]
/dports/devel/b2/B2_Command_Line_Tool-1.3.8/b2/sync/
H A Dfile.py44 def __init__(self, id_, file_name, mod_time, action, size): argument
47 self.mod_time = mod_time
53 repr(self.id_), repr(self.name), repr(self.mod_time), repr(self.action)
/dports/devel/py-b2sdk/b2sdk-1.12.0/b2sdk/v1/sync/
H A Dfile.py76 def __init__(self, id_, file_name, mod_time, action, size): argument
92 self.mod_time = mod_time
101 repr(self.mod_time),
125 def mod_time(self): member in B2FileVersion
/dports/devel/cvs-devel/cvs-1.12.13/windows-NT/
H A DJmgStat.c171 FILETIME mod_time; in GetUTCFileModTime() local
202 mod_time = find_buf.ftLastWriteTime; in GetUTCFileModTime()
203 success = FileTimeToUnixTime ( &mod_time, utc_mod_time, FALSE ); in GetUTCFileModTime()
208 success = FileTimeToLocalFileTime ( &find_buf.ftLastWriteTime, &mod_time ); in GetUTCFileModTime()
209 success = success && FileTimeToUnixTime ( &mod_time, utc_mod_time, TRUE ); in GetUTCFileModTime()
/dports/graphics/openimageio/oiio-Release-2.2.16.0/src/png.imageio/
H A Dpng_pvt.h253 png_timep mod_time; in read_info() local
256 mod_time->year, mod_time->month, in read_info()
257 mod_time->day, mod_time->hour, in read_info()
258 mod_time->minute, mod_time->second); in read_info()
499 png_time mod_time; in put_parameter() local
504 mod_time.year = year; in put_parameter()
505 mod_time.month = month; in put_parameter()
506 mod_time.day = day; in put_parameter()
507 mod_time.hour = hour; in put_parameter()
508 mod_time.minute = minute; in put_parameter()
[all …]
/dports/graphics/py-openimageio/oiio-Release-2.2.16.0/src/png.imageio/
H A Dpng_pvt.h253 png_timep mod_time; in read_info() local
256 mod_time->year, mod_time->month, in read_info()
257 mod_time->day, mod_time->hour, in read_info()
258 mod_time->minute, mod_time->second); in read_info()
499 png_time mod_time; in put_parameter() local
504 mod_time.year = year; in put_parameter()
505 mod_time.month = month; in put_parameter()
506 mod_time.day = day; in put_parameter()
507 mod_time.hour = hour; in put_parameter()
508 mod_time.minute = minute; in put_parameter()
[all …]

12345678910>>...64