Home
last modified time | relevance | path

Searched refs:var_cached (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Python/
Dcontext.c188 if (var->var_cached != NULL && in PyContextVar_Get()
192 *val = var->var_cached; in PyContextVar_Get()
206 var->var_cached = found; /* borrow */ in PyContextVar_Get()
699 var->var_cached = NULL; in contextvar_set()
715 var->var_cached = val; /* borrow */ in contextvar_set()
724 var->var_cached = NULL; in contextvar_del()
801 var->var_cached = NULL; in contextvar_new()
841 self->var_cached = NULL; in contextvar_tp_clear()
/external/python/cpython3/Include/internal/
Dpycore_context.h23 PyObject *var_cached; member
/external/tensorflow/tensorflow/python/kernel_tests/
Dvariables_test.py326 var_cached = variables.Variable(2.0, caching_device="/job:foo")
327 self.assertFalse(var_cached.device.startswith("/job:foo"))
328 self.assertTrue(var_cached.value().device.startswith("/job:foo"))