Home
last modified time | relevance | path

Searched refs:last_updated (Results 1 – 25 of 1359) sorted by relevance

12345678910>>...55

/dports/databases/postgis25/postgis-2.5.5/utils/
H A Dpostgis_proc_upgrade.pl188 if ( ! $last_updated ) {
197 IF $last_updated > version_from_num
258 if ( ! $last_updated ) {
266 IF $last_updated > version_from_num OR (
293 if ( ! $last_updated ) {
356 if ( ! $last_updated ) {
379 my $last_updated;
397 if ( $last_updated )
421 if ( ! $last_updated ) {
436 $last_updated = @{$subobj}[0];
[all …]
/dports/databases/postgis30/postgis-3.0.4/utils/
H A Dpostgis_proc_upgrade.pl192 if ( !$last_updated )
202 IF $last_updated > version_from_num
268 if ( !$last_updated )
316 if ( !$last_updated )
399 if ( !$last_updated )
423 my $last_updated;
442 if ($last_updated)
470 if ( !$last_updated )
488 $last_updated = @{$subobj}[0];
492 -- Last Updated: ${last_updated}
[all …]
/dports/databases/postgis32/postgis-3.2.0/utils/
H A Dpostgis_proc_upgrade.pl192 if ( !$last_updated )
202 IF $last_updated > version_from_num
268 if ( !$last_updated )
316 if ( !$last_updated )
399 if ( !$last_updated )
423 my $last_updated;
442 if ($last_updated)
470 if ( !$last_updated )
488 $last_updated = @{$subobj}[0];
492 -- Last Updated: ${last_updated}
[all …]
/dports/databases/postgis31/postgis-3.1.4/utils/
H A Dpostgis_proc_upgrade.pl192 if ( !$last_updated )
202 IF $last_updated > version_from_num
268 if ( !$last_updated )
316 if ( !$last_updated )
399 if ( !$last_updated )
423 my $last_updated;
442 if ($last_updated)
470 if ( !$last_updated )
488 $last_updated = @{$subobj}[0];
492 -- Last Updated: ${last_updated}
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/child_accounts/
H A Dscreen_time_controller_browsertest.cc198 last_updated); in IN_PROC_BROWSER_TEST_F()
201 last_updated); in IN_PROC_BROWSER_TEST_F()
239 last_updated); in IN_PROC_BROWSER_TEST_F()
242 last_updated); in IN_PROC_BROWSER_TEST_F()
351 last_updated); in IN_PROC_BROWSER_TEST_F()
354 last_updated); in IN_PROC_BROWSER_TEST_F()
459 last_updated); in IN_PROC_BROWSER_TEST_F()
462 last_updated); in IN_PROC_BROWSER_TEST_F()
465 last_updated); in IN_PROC_BROWSER_TEST_F()
468 last_updated); in IN_PROC_BROWSER_TEST_F()
[all …]
H A Dusage_time_limit_processor_unittest.cc634 base::Time last_updated = in TEST_F() local
882 last_updated); in TEST_F()
1619 last_updated); in TEST_F()
1892 last_updated); in TEST_F()
2140 last_updated); in TEST_F()
2893 last_updated); in TEST_F()
2914 last_updated); in TEST_F()
2927 last_updated); in TEST_F()
2949 last_updated); in TEST_F()
2962 last_updated); in TEST_F()
[all …]
H A Dtime_limit_test_utils.cc85 base::Time last_updated) { in CreateTimeWindow() argument
91 base::Value(CreatePolicyTimestamp(last_updated))); in CreateTimeWindow()
96 base::Time last_updated) { in CreateTimeUsage() argument
101 base::Value(CreatePolicyTimestamp(last_updated))); in CreateTimeUsage()
118 base::Time last_updated) { in AddTimeUsageLimit() argument
128 ->SetKey(day, CreateTimeUsage(quota, last_updated)); in AddTimeUsageLimit()
135 base::Time last_updated) { in AddTimeWindowLimit() argument
150 CreateTimeWindow(day, start_time, end_time, last_updated)); in AddTimeWindowLimit()
/dports/misc/libpostal/libpostal-1.1-alpha/src/
H A Dstochastic_gradient_descent.c22 sgd->last_updated = uint32_array_new_zeros(m); in sgd_trainer_new()
23 if (sgd->last_updated == NULL) { in sgd_trainer_new()
34 sgd->last_updated = NULL; in sgd_trainer_new()
52 if (self->last_updated == NULL) { in sgd_trainer_reset_params()
56 uint32_array_zero(self->last_updated->a, self->last_updated->n); in sgd_trainer_reset_params()
187 uint32_t *updates = self->last_updated->a; in stochastic_gradient_descent_update_sparse()
217 uint32_t last_updated = updates[col]; in stochastic_gradient_descent_update_sparse() local
231 if (last_updated < t) { in stochastic_gradient_descent_update_sparse()
338 uint32_t *updates = self->last_updated->a; in stochastic_gradient_descent_set_regularized_weights()
377 uint32_t last_updated = updates[i]; in stochastic_gradient_descent_set_regularized_weights() local
[all …]
/dports/mail/roundcube-carddav/carddav-4.0.4-vendor/dbmigrations/0014-unifytimestampdefaultvalue/
H A Dpostgres.sql1 UPDATE TABLE_PREFIXcarddav_addressbooks SET last_updated='1970-01-01 00:00:00+00' WHERE last_update…
2 ALTER TABLE TABLE_PREFIXcarddav_addressbooks ALTER COLUMN last_updated DROP DEFAULT;
4 …ABLE_PREFIXcarddav_addressbooks ALTER COLUMN last_updated TYPE BIGINT USING extract(epoch from las…
6 ALTER TABLE TABLE_PREFIXcarddav_addressbooks ALTER COLUMN last_updated SET DEFAULT 0;
H A Dsqlite3.sql16last_updated BIGINT NOT NULL DEFAULT 0, -- time stamp (seconds since epoch) of the last update of… field
30 SELECT id,name,username,password,url,active,user_id,last_updated,refresh_time,sync_token,presetname…
33 UPDATE TABLE_PREFIXcarddav_addressbooks2 SET last_updated='1970-01-01 00:00:00' WHERE last_updated=…
34 UPDATE TABLE_PREFIXcarddav_addressbooks2 SET last_updated=strftime('%s', last_updated);
H A Dmysql.sql1 …LE_PREFIXcarddav_addressbooks ADD `last_updated_ts` BIGINT NOT NULL DEFAULT 0 AFTER `last_updated`;
4 …ET `refresh_time_ts`=TIME_TO_SEC(`refresh_time`), `last_updated_ts`=UNIX_TIMESTAMP(`last_updated`);
6 ALTER TABLE TABLE_PREFIXcarddav_addressbooks DROP COLUMN `last_updated`;
9 ALTER TABLE TABLE_PREFIXcarddav_addressbooks CHANGE COLUMN `last_updated_ts` `last_updated` BIGINT …
/dports/benchmarks/phoronix-test-suite/phoronix-test-suite-10.6.1/ob-cache/openbenchmarking.org/
H A Dpts.index1last_updated":"1605138215","first_added":"1594232753","popularity":"507","downloads":12381,"versio…
H A Dsystem.index1last_updated":"1456764192","first_added":"1452095995","popularity":"855","downloads":32385,"versio…
H A Dgit.index1last_updated":"1552063091","first_added":"1552063091","popularity":"1673","downloads":"2288","vers…
/dports/net/proby/proby-1.0.2/cargo-crates/isahc-0.7.6/src/cookies/psl/
H A Dmod.rs41 last_updated: Option<DateTime<Utc>>, field
59 last_updated: None, in default()
81 if let Some(last_updated) = self.last_updated { in try_refresh()
82 request.header(http::header::IF_MODIFIED_SINCE, last_updated.to_rfc2822()); in try_refresh()
91 self.last_updated = Some(Utc::now()); in try_refresh()
97 self.last_updated = Some(Utc::now()); in try_refresh()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/chromeos/child_accounts/time_limit_consistency_test/
H A Dconsistency_test_utils.cc16 base::Optional<int64_t> last_updated) { in AddWindowLimitEntryToGoldenInput() argument
25 if (last_updated) in AddWindowLimitEntryToGoldenInput()
26 window->set_last_updated_millis(last_updated.value()); in AddWindowLimitEntryToGoldenInput()
33 base::Optional<int64_t> last_updated) { in AddUsageLimitEntryToGoldenInput() argument
39 if (last_updated) in AddUsageLimitEntryToGoldenInput()
40 usage_limit->set_last_updated_millis(last_updated.value()); in AddUsageLimitEntryToGoldenInput()
/dports/databases/py-Pyrseas/Pyrseas-0.9.1/tests/functional/
H A Dpagila-schema.sql1280 CREATE TRIGGER last_updated
1290 CREATE TRIGGER last_updated
1300 CREATE TRIGGER last_updated
1310 CREATE TRIGGER last_updated
1320 CREATE TRIGGER last_updated
1330 CREATE TRIGGER last_updated
1340 CREATE TRIGGER last_updated
1350 CREATE TRIGGER last_updated
1360 CREATE TRIGGER last_updated
1370 CREATE TRIGGER last_updated
[all …]
/dports/textproc/py-openstackdocstheme/openstackdocstheme-2.2.7/openstackdocstheme/
H A Dpage_context.py63 last_updated = None
81 last_updated = _get_last_updated_file(filename)
82 if last_updated:
85 pagename, last_updated)
86 return last_updated
/dports/devel/godot-tools/godot-3.2.3-stable/platform/android/plugin/
H A Dgodot_plugin_config.h74 uint64_t last_updated = 0; member
158 uint64_t last_updated = FileAccess::get_modified_time(config_path); in get_plugin_modification_time() local
159 last_updated = MAX(last_updated, FileAccess::get_modified_time(plugin_config.binary)); in get_plugin_modification_time()
163 last_updated = MAX(last_updated, FileAccess::get_modified_time(binary)); in get_plugin_modification_time()
166 return last_updated; in get_plugin_modification_time()
196 plugin_config.last_updated = get_plugin_modification_time(plugin_config, path); in load_plugin_config()
/dports/devel/godot/godot-3.2.3-stable/platform/android/plugin/
H A Dgodot_plugin_config.h74 uint64_t last_updated = 0; member
158 uint64_t last_updated = FileAccess::get_modified_time(config_path); in get_plugin_modification_time() local
159 last_updated = MAX(last_updated, FileAccess::get_modified_time(plugin_config.binary)); in get_plugin_modification_time()
163 last_updated = MAX(last_updated, FileAccess::get_modified_time(binary)); in get_plugin_modification_time()
166 return last_updated; in get_plugin_modification_time()
196 plugin_config.last_updated = get_plugin_modification_time(plugin_config, path); in load_plugin_config()
/dports/multimedia/gnome-twitch/gnome-twitch-0.4.1-155-g8e774a0/src/
H A Dgt-cache.h24 … self, const gchar* key, gconstpointer data, gsize length, GDateTime* last_updated, GDateTime* exp…
26 …gboolean (*is_data_stale) (GtCache* self, const gchar* key, GDateTime* last_updated, const gchar* …
30 … self, const gchar* key, gconstpointer data, gsize length, GDateTime* last_updated, GDateTime* exp…
32 gboolean gt_cache_is_data_stale(GtCache* self, const gchar* key, GDateTime* last_updated, const gch…
H A Dgt-cache.c38 …cache, const gchar* key, gconstpointer data, gsize length, GDateTime* last_updated, GDateTime* exp… in gt_cache_save_data() argument
43 … return GT_CACHE_GET_IFACE(cache)->save_data(cache, key, data, length, last_updated, expiry, etag); in gt_cache_save_data()
56 gt_cache_is_data_stale(GtCache* cache, const gchar* key, GDateTime* last_updated, const gchar* etag) in gt_cache_is_data_stale() argument
61 return GT_CACHE_GET_IFACE(cache)->is_data_stale(cache, key, last_updated, etag); in gt_cache_is_data_stale()
/dports/net-p2p/ktorrent/ktorrent-21.12.3/plugins/ipfilter/
H A Dipblockingprefpage.cpp172 QDate last_updated = g.readEntry("last_updated", QDate()); in updateAutoUpdate() local
174 if (last_updated.isNull()) in updateAutoUpdate()
177 m_last_updated->setText(last_updated.toString()); in updateAutoUpdate()
179 m_last_updated->setText(i18n("%1 (Last update attempt failed.)", last_updated.toString())); in updateAutoUpdate()
183 if (last_updated.isNull()) in updateAutoUpdate()
186 next_update = last_updated.addDays(kcfg_autoUpdateInterval->value()); in updateAutoUpdate()
/dports/devel/ccache/ccache-3.7.12/src/
H A Dstats.c379 stats_collect(struct counters *counters, time_t *last_updated) in stats_collect() argument
384 *last_updated = 0; in stats_collect()
399 if (stat(fname, &st) == 0 && st.st_mtime > *last_updated) { in stats_collect()
400 *last_updated = st.st_mtime; in stats_collect()
562 time_t last_updated; in stats_summary() local
563 stats_collect(counters, &last_updated); in stats_summary()
570 if (last_updated > 0) { in stats_summary()
572 localtime_r(&last_updated, &tm); in stats_summary()
625 time_t last_updated; in stats_print() local
626 stats_collect(counters, &last_updated); in stats_print()
[all …]
/dports/devel/ccache-static/ccache-3.7.12/src/
H A Dstats.c379 stats_collect(struct counters *counters, time_t *last_updated) in stats_collect() argument
384 *last_updated = 0; in stats_collect()
399 if (stat(fname, &st) == 0 && st.st_mtime > *last_updated) { in stats_collect()
400 *last_updated = st.st_mtime; in stats_collect()
562 time_t last_updated; in stats_summary() local
563 stats_collect(counters, &last_updated); in stats_summary()
570 if (last_updated > 0) { in stats_summary()
572 localtime_r(&last_updated, &tm); in stats_summary()
625 time_t last_updated; in stats_print() local
626 stats_collect(counters, &last_updated); in stats_print()
[all …]

12345678910>>...55