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

  /external/chromium-trace/catapult/dashboard/dashboard/
namespaced_stored_object_test.py 8 from dashboard import stored_object
26 self.assertEqual(12345, stored_object.Get('internal_only__foo'))
27 self.assertIsNone(stored_object.Get('externally_visible__foo'))
32 self.assertIsNone(stored_object.Get('internal_only__foo'))
33 self.assertEqual(12345, stored_object.Get('externally_visible__foo'))
38 self.assertIsNone(stored_object.Get('internal_only__foo'))
39 self.assertEqual(12345, stored_object.Get('externally_visible__foo'))
46 stored_object.Set('internal_only__foo', [1, 2, 3])
47 stored_object.Set('externally_visible__foo', [4, 5, 6])
52 stored_object.Set('internal_only__foo', [1, 2, 3]
    [all...]
stored_object_test.py 9 from dashboard import stored_object
31 keys = stored_object.MultipartCache._GetCacheKeyList(key)
37 stored_object.Set('chris', new_account)
38 chris_account = stored_object.Get('chris')
43 stored_object.Set('chris', new_account)
44 stored_object.MultipartCache.Delete('chris')
45 chris_account = stored_object.Get('chris')
53 stored_object.Set('chris', new_account)
54 chris_account = stored_object.Get('chris')
56 part_entities = stored_object.PartEntity.query().fetch(
    [all...]
namespaced_stored_object.py 5 """A wrapper for stored_object that separates internal and external."""
8 from dashboard import stored_object
14 return stored_object.Get(namespaced_key)
20 return stored_object.Get(namespaced_key)
26 stored_object.Set(namespaced_key, value)
32 stored_object.Set(namespaced_key, value)
39 stored_object.Delete(internal_key)
40 stored_object.Delete(external_key)
bisect_fyi_test.py 13 from dashboard import stored_object
63 stored_object.Set(
65 stored_object.Set(
edit_site_config_test.py 14 from dashboard import stored_object
35 stored_object.Set('foo', 'XXXYYY')
69 self.assertEqual([1, 2, 3], stored_object.Get('foo'))
72 stored_object.Set('foo', 'XXX')
79 self.assertEqual('XXX', stored_object.Get('foo'))
graph_revisions_test.py 13 from dashboard import stored_object
29 """Adds mock data to the datastore, not updating stored_object."""
48 cached_rows = stored_object.Get(
60 stored_object.Set(
71 stored_object.Set(
97 stored_object.Get('externally_visible__num_revisions_'
edit_site_config.py 20 from dashboard import stored_object
56 value = stored_object.Get(key)
101 old_value = stored_object.Get(key)
105 stored_object.Set(key, new_value)
bisect_fyi.py 16 from dashboard import stored_object
44 bisect_fyi_configs = stored_object.Get(_BISECT_FYI_CONFIGS_KEY)
172 bisect_fyi_configs = stored_object.Get(_BISECT_FYI_CONFIGS_KEY)
update_test_suites.py 13 from dashboard import stored_object
23 cached = stored_object.Get(cache_key)
29 cached = stored_object.Get(cache_key)
58 stored_object.Set(key, suite_dict)
utils.py 24 from dashboard import stored_object
53 project_id = stored_object.Get(_PROJECT_ID_KEY)
279 account_details = stored_object.Get(SERVICE_ACCOUNT_KEY)
292 sheriff_domains = stored_object.Get(SHERIFF_DOMAINS_KEY)
299 return stored_object.Get(IP_WHITELIST_KEY)
testing_common.py 21 from dashboard import stored_object
238 stored_object.Set(utils.SHERIFF_DOMAINS_KEY, domains)
243 stored_object.Set(utils.IP_WHITELIST_KEY, ip_addresses)
update_test_suites_test.py 13 from dashboard import stored_object
36 stored_object.Set(key, {'foo': 'bar'})
72 stored_object.Set(key, {'foo': 'bar'})
auto_bisect_test.py 15 from dashboard import stored_object
27 stored_object.Set(
97 stored_object.Set(
update_bug_with_results_test.py 18 from dashboard import stored_object
389 stored_object.Set(
416 stored_object.Set(
add_point_queue.py 18 from dashboard import stored_object
51 bot_whitelist = stored_object.Get(BOT_WHITELIST_KEY)
start_try_job.py 24 from dashboard import stored_object
857 recipe_tester_director_mapping = stored_object.Get(
start_try_job_test.py 19 from dashboard import stored_object
320 stored_object.Set(
    [all...]
add_point_test.py 20 from dashboard import stored_object
422 stored_object.Set(
    [all...]

Completed in 89 milliseconds