HomeSort by relevance Sort by last modified time
    Searched refs:cutoff_date (Results 1 - 3 of 3) sorted by null

  /external/autotest/contrib/
remove_old_tests_in_tko.sql 9 SET @cutoff_date = DATE_SUB(CURDATE(),INTERVAL 180 DAY);
11 WHILE EXISTS (SELECT test_idx FROM tko_tests WHERE started_time < @cutoff_date LIMIT 1) DO
13 SELECT concat("Deleting 5k records in tko_tests older than ", @cutoff_date);
14 DELETE FROM tko_tests WHERE started_time < @cutoff_date LIMIT 5000;
22 WHILE EXISTS (SELECT test_idx FROM tko_tests where started_time IS NULL and finished_time < @cutoff_date LIMIT 1) DO
24 SELECT concat("Deleting 5k records in tko_tests with finished time older than ", @cutoff_date);
25 DELETE FROM tko_tests WHERE started_time IS NULL AND finished_time < @cutoff_date LIMIT 5000;
34 SET @cutoff_date = DATE_SUB(@cutoff_date,INTERVAL 5 DAY);
35 WHILE EXISTS (SELECT job_idx FROM tko_jobs WHERE started_time < @cutoff_date LIMIT 1) D
    [all...]
always_failing_tests.py 44 cutoff_date = datetime.datetime.today() - cutoff_delta
49 ).filter(started_time__gte=cutoff_date
  /external/autotest/frontend/health/
complete_failures.py 73 cutoff_date = datetime.datetime.today() - cutoff_delta
75 started_time__gte=cutoff_date).values('test').distinct()

Completed in 79 milliseconds