Home
last modified time | relevance | path

Searched refs:modified_time (Results 1 – 25 of 305) sorted by relevance

12345678910>>...13

/dports/www/chromium-legacy/chromium-88.0.4324.182/chromeos/login/auth/
H A Dsaml_password_attributes.cc36 const base::Time& modified_time, in SamlPasswordAttributes() argument
39 : modified_time_(modified_time), in SamlPasswordAttributes()
56 base::Time modified_time; in FromJs() local
59 modified_time = ReadJsTime(*string_value); in FromJs()
73 return SamlPasswordAttributes(modified_time, expiration_time, in FromJs()
80 const base::Time modified_time = in LoadFromPrefs() local
86 return SamlPasswordAttributes(modified_time, expiration_time, in LoadFromPrefs()
H A Dsaml_password_attributes_unittest.cc46 EXPECT_EQ(base::Time::FromJsTime(kModified), attrs.modified_time()); in TEST()
53 EXPECT_EQ(base::Time::FromJsTime(kModified), attrs.modified_time()); in TEST()
62 base::Time modified_time = base::Time::FromJsTime(kModified); in TEST() local
64 SamlPasswordAttributes original(modified_time, expiration_time, in TEST()
69 EXPECT_EQ(modified_time, loaded.modified_time()); in TEST()
/dports/graphics/py-django-easy-thumbnails/easy-thumbnails-2.5/easy_thumbnails/
H A Dutils.py148 modified_time = storage.get_modified_time(name)
150 modified_time = storage.modified_time(name)
155 if modified_time and timezone.is_naive(modified_time):
158 return timezone.make_aware(modified_time, default_timezone)
159 return modified_time
/dports/misc/concourse/concourse-6.7.2/atc/db/migration/migrations/
H A D1529692120_add_cache_index_to_pipelines.up.sql3 ALTER TABLE versioned_resources DROP COLUMN modified_time;
4 ALTER TABLE build_inputs DROP COLUMN modified_time;
5 ALTER TABLE build_outputs DROP COLUMN modified_time;
H A D1529692120_add_cache_index_to_pipelines.down.sql3 …ALTER TABLE versioned_resources ADD COLUMN modified_time timestamp without time zone DEFAULT now()…
4 …ALTER TABLE build_inputs ADD COLUMN modified_time timestamp without time zone DEFAULT now() NOT NU…
5 …ALTER TABLE build_outputs ADD COLUMN modified_time timestamp without time zone DEFAULT now() NOT N…
H A D1513895878_update_timestamp_with_timezone.down.sql3 ALTER COLUMN modified_time TYPE timestamp without time zone;
8 ALTER COLUMN modified_time TYPE timestamp without time zone;
46 ALTER COLUMN modified_time TYPE timestamp without time zone;
H A D1513895878_update_timestamp_with_timezone.up.sql3 ALTER COLUMN modified_time TYPE timestamp with time zone;
9 ALTER COLUMN modified_time TYPE timestamp with time zone;
49 ALTER COLUMN modified_time TYPE timestamp with time zone;
/dports/net/concourse-fly/concourse-6.7.1/atc/db/migration/migrations/
H A D1529692120_add_cache_index_to_pipelines.up.sql3 ALTER TABLE versioned_resources DROP COLUMN modified_time;
4 ALTER TABLE build_inputs DROP COLUMN modified_time;
5 ALTER TABLE build_outputs DROP COLUMN modified_time;
H A D1529692120_add_cache_index_to_pipelines.down.sql3 …ALTER TABLE versioned_resources ADD COLUMN modified_time timestamp without time zone DEFAULT now()…
4 …ALTER TABLE build_inputs ADD COLUMN modified_time timestamp without time zone DEFAULT now() NOT NU…
5 …ALTER TABLE build_outputs ADD COLUMN modified_time timestamp without time zone DEFAULT now() NOT N…
H A D1513895878_update_timestamp_with_timezone.up.sql3 ALTER COLUMN modified_time TYPE timestamp with time zone;
9 ALTER COLUMN modified_time TYPE timestamp with time zone;
49 ALTER COLUMN modified_time TYPE timestamp with time zone;
H A D1513895878_update_timestamp_with_timezone.down.sql3 ALTER COLUMN modified_time TYPE timestamp without time zone;
8 ALTER COLUMN modified_time TYPE timestamp without time zone;
46 ALTER COLUMN modified_time TYPE timestamp without time zone;
/dports/www/joomla3/joomla3-3.9.24/administrator/components/com_admin/sql/updates/sqlazure/
H A D3.7.0-2017-02-16.sql73 ALTER TABLE [#__categories] ALTER COLUMN [modified_time] [datetime2](0) NOT NULL;
74 ALTER TABLE [#__categories] ADD DEFAULT '1900-01-01 00:00:00' FOR [modified_time];
138 ALTER TABLE [#__fields] ALTER COLUMN [modified_time] [datetime2](0) NOT NULL;
139 ALTER TABLE [#__fields] ADD DEFAULT '1900-01-01 00:00:00' FOR [modified_time];
246 ALTER TABLE [#__tags] ALTER COLUMN [modified_time] [datetime2](0) NOT NULL;
247 ALTER TABLE [#__tags] ADD DEFAULT '1900-01-01 00:00:00' FOR [modified_time];
302 ALTER TABLE [#__user_notes] ALTER COLUMN [modified_time] [datetime2](0) NOT NULL;
303 ALTER TABLE [#__user_notes] ADD DEFAULT '1900-01-01 00:00:00' FOR [modified_time];
/dports/www/joomla3/joomla3-3.9.24/administrator/components/com_tags/tables/
H A Dtag.php183 if (!(int) $this->modified_time)
185 $this->modified_time = $date->toSql();
188 if (!(int) $this->modified_time)
190 $this->modified_time = $date->toSql();
220 $this->modified_time = $date->toSql();
/dports/net-p2p/rtorrent/rtorrent-0.9.8/src/utils/
H A Dfile_status_cache.cc62 if (!result.second && result.first->second.m_mtime == (uint32_t)fs.modified_time()) in insert()
66 result.first->second.m_mtime = fs.modified_time(); in insert()
79 …f (!fs.update(rak::path_expand(tmp->first)) || tmp->second.m_mtime != (uint32_t)fs.modified_time()) in prune()
/dports/devel/godot2/godot-2.1.6-stable/editor/
H A Deditor_resource_preview.cpp65 uint64_t modified_time = 0; in _preview_ready() local
71 modified_time = FileAccess::get_modified_time(path); in _preview_ready()
78 item.modified_time = modified_time; in _preview_ready()
332 uint64_t modified_time = FileAccess::get_modified_time(p_path); in check_for_invalidation() local
333 if (modified_time != cache[p_path].modified_time) { in check_for_invalidation()
H A Deditor_file_system.cpp208 modified_time = 0; in EditorFileSystemDirectory()
241 s.modified_time = 0; in _get_meta()
311 fc.meta.sources[i].modified_time = spl[1 + i * 3 + 2].to_int64(); in _scan_filesystem()
507 if (mt != p_meta.sources[j].modified_time) { in _check_meta_sources()
517 p_meta.sources[j].modified_time = mt; in _check_meta_sources()
548 p_dir->modified_time = FileAccess::get_modified_time(cd); in _scan_new_dir()
639 fi->modified_time = fc->modification_time; in _scan_new_dir()
643 fi->modified_time = mt; in _scan_new_dir()
675 if (current_mtime != p_dir->modified_time) { in _scan_fs_changes()
678 p_dir->modified_time = current_mtime; in _scan_fs_changes()
[all …]
/dports/devel/godot2-tools/godot-2.1.6-stable/editor/
H A Deditor_resource_preview.cpp65 uint64_t modified_time = 0; in _preview_ready() local
71 modified_time = FileAccess::get_modified_time(path); in _preview_ready()
78 item.modified_time = modified_time; in _preview_ready()
332 uint64_t modified_time = FileAccess::get_modified_time(p_path); in check_for_invalidation() local
333 if (modified_time != cache[p_path].modified_time) { in check_for_invalidation()
H A Deditor_file_system.cpp208 modified_time = 0; in EditorFileSystemDirectory()
241 s.modified_time = 0; in _get_meta()
311 fc.meta.sources[i].modified_time = spl[1 + i * 3 + 2].to_int64(); in _scan_filesystem()
507 if (mt != p_meta.sources[j].modified_time) { in _check_meta_sources()
517 p_meta.sources[j].modified_time = mt; in _check_meta_sources()
548 p_dir->modified_time = FileAccess::get_modified_time(cd); in _scan_new_dir()
639 fi->modified_time = fc->modification_time; in _scan_new_dir()
643 fi->modified_time = mt; in _scan_new_dir()
675 if (current_mtime != p_dir->modified_time) { in _scan_fs_changes()
678 p_dir->modified_time = current_mtime; in _scan_fs_changes()
[all …]
/dports/security/kc24/kc-2.4.2/
H A Dcmd_info.c42 time_t created_time = 0, modified_time = 0; in cmd_info() local
108 modified_time = atoi((const char *)modified); in cmd_info()
109 printf("%s", ctime(&modified_time)); in cmd_info()
/dports/deskutils/rolo/rolo-011/src/
H A Dadd.c100 time_t modified_time = 0; in add_entry() local
116 modified_time = sb.st_mtime; in add_entry()
141 if (modified_time != sb.st_mtime) in add_entry()
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/paint_preview/browser/
H A Dfile_manager_unittest.cc304 base::Time modified_time = base::Time::NowFromSystemTime(); in TEST_F() local
305 base::TouchFile(path_0_file, modified_time, modified_time); in TEST_F()
323 modified_time = base::Time::NowFromSystemTime(); in TEST_F()
325 base::TouchFile(path_0, modified_time - base::TimeDelta::FromSeconds(10), in TEST_F()
326 modified_time - base::TimeDelta::FromSeconds(10)); in TEST_F()
327 base::TouchFile(path_1_zip, modified_time, modified_time); in TEST_F()
/dports/security/suricata/suricata-6.0.4/src/
H A Dsource-pcap-file-directory-helper.c289 if (CompareTimes(&file_to_add->modified_time, &file_to_compare->modified_time) < 0) { in PcapDirectoryInsertFile()
381 memset(&file_to_add->modified_time, 0, sizeof(struct timespec)); in PcapDirectoryPopulateBuffer()
382 CopyTime(&temp_time, &file_to_add->modified_time); in PcapDirectoryPopulateBuffer()
385 (uintmax_t)SCTimespecAsEpochMillis(&file_to_add->modified_time)); in PcapDirectoryPopulateBuffer()
469 (uintmax_t)SCTimespecAsEpochMillis(&current_file->modified_time)); in PcapDirectoryDispatchForTimeRange()
471 if(CompareTimes(&current_file->modified_time, &last_time_seen) > 0) { in PcapDirectoryDispatchForTimeRange()
472 CopyTime(&current_file->modified_time, &last_time_seen); in PcapDirectoryDispatchForTimeRange()
/dports/devel/py-fs/fs-0.5.4/fs/expose/
H A Dxmlrpc.py120 def settimes(self, path, accessed_time, modified_time): argument
124 if isinstance(modified_time, xmlrpclib.DateTime):
125 modified_time = datetime.strptime(modified_time.value, "%Y%m%dT%H:%M:%S")
126 return self.fs.settimes(path, accessed_time, modified_time)
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/renderer/core/fileapi/
H A Dfile_test.cc27 static void Create(File* file, base::Time modified_time) { in Create() argument
34 base::Time modified_time) { in Create() argument
36 std::make_unique<MockBlob>(uuid, modified_time), in Create()
40 modified_time)); in Create()
44 MockBlob(const String& uuid, base::Time modified_time) in MockBlob() argument
45 : FakeBlob(uuid), modified_time_(modified_time) {} in MockBlob()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/renderer/core/fileapi/
H A Dfile_test.cc27 static void Create(File* file, base::Time modified_time) { in Create() argument
34 base::Time modified_time) { in Create() argument
36 std::make_unique<MockBlob>(uuid, modified_time), in Create()
40 modified_time)); in Create()
44 MockBlob(const String& uuid, base::Time modified_time) in MockBlob() argument
45 : FakeBlob(uuid), modified_time_(modified_time) {} in MockBlob()

12345678910>>...13