Home
last modified time | relevance | path

Searched refs:is_async (Results 1 – 25 of 44) sorted by relevance

12

/external/tensorflow/tensorflow/core/profiler/convert/
Dxplane_to_tf_data_stats_test.cc100 is_async: true
110 is_async: false
226 is_async: true in TEST()
236 is_async: false in TEST()
358 is_async: true
368 is_async: false
/external/grpc-grpc/src/core/lib/security/credentials/fake/
Dfake_credentials.cc107 if (c->is_async) { in md_only_test_get_request_metadata()
125 const char* md_key, const char* md_value, bool is_async) { in grpc_md_only_test_credentials_create() argument
134 c->is_async = is_async; in grpc_md_only_test_credentials_create()
Dfake_credentials.h61 bool is_async; member
/external/libchrome/third_party/jinja2/
Dasyncfilters.py30 is_async = lambda args: args[0].is_async function
36 is_async = lambda args: args[0].environment.is_async function
40 b = is_async(args)
Dasyncsupport.py52 if not self.environment.is_async:
59 if not self.environment.is_async:
75 if not self.environment.is_async:
92 if not self._context.environment.is_async:
109 if not self._environment.is_async:
126 if self.environment.is_async:
Dcompiler.py501 if self.environment.is_async:
703 if self.environment.is_async:
764 if supports_yield_from and not self.environment.is_async:
770 (self.environment.is_async and 'async ' or ''))
829 if supports_yield_from and not self.environment.is_async and \
834 loop = self.environment.is_async and 'async for' or 'for'
919 loop = self.environment.is_async and 'async for' or 'for'
923 elif self.environment.is_async:
949 if self.environment.is_async:
956 % (self.environment.is_async and '_async' or '',
[all …]
/external/python/jinja/src/jinja2/
Dasyncfilters.py31 def is_async(args): function
32 return args[0].is_async
40 def is_async(args): function
41 return args[0].environment.is_async
45 b = is_async(args)
Dcompiler.py466 if self.environment.is_async:
674 if self.environment.is_async:
737 if not self.environment.is_async:
740 loop = "async for" if self.environment.is_async else "for"
800 if not self.environment.is_async and frame.buffer is None:
805 loop = "async for" if self.environment.is_async else "for"
887 loop = "async for" if self.environment.is_async else "for"
893 elif self.environment.is_async:
915 if self.environment.is_async:
921 func = "make_module" + ("_async" if self.environment.is_async else "")
[all …]
Dasyncsupport.py45 if not self.environment.is_async:
53 if not self.environment.is_async:
67 if not self.environment.is_async:
85 if not self._context.environment.is_async:
102 if not self._environment.is_async:
120 if self.environment.is_async:
Denvironment.py352 self.is_async = self.enable_async and have_async_gen
353 if self.is_async:
1201 if context.environment.is_async:
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/credentials/fake/
Dfake_credentials.h63 bool is_async) in grpc_md_only_test_credentials() argument
68 is_async_(is_async) {} in grpc_md_only_test_credentials()
Dfake_credentials.cc111 const char* md_key, const char* md_value, bool is_async) { in grpc_md_only_test_credentials_create() argument
112 return new grpc_md_only_test_credentials(md_key, md_value, is_async); in grpc_md_only_test_credentials_create()
/external/tensorflow/tensorflow/python/eager/
Dexecutor.py61 def is_async(self): member in Executor
Dcontext.py895 return ASYNC if self.is_async() else SYNC
908 if self.is_async() != enable_async:
919 def is_async(self): member in Context
921 return self.executor.is_async()
2214 def is_async(): function
2216 return context().is_async()
/external/tensorflow/tensorflow/c/eager/parallel_device/
Dparallel_device_lib.cc64 explicit DeviceThread(const std::string& device, const bool is_async) in DeviceThread() argument
73 executor_(TFE_NewExecutor(is_async)), in DeviceThread()
259 const bool is_async) in ParallelDevice() argument
265 new DeviceThread(devices[device_index].c_str(), is_async)); in ParallelDevice()
Dparallel_device_lib.h58 const bool is_async = false);
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/
DEagerPyFunc.pbtxt42 name: "is_async"
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/
DEagerPyFunc.pbtxt42 name: "is_async"
/external/grpc-grpc/src/core/lib/security/credentials/
Dcredentials.h202 const char* md_key, const char* md_value, bool is_async);
/external/tensorflow/tensorflow/python/ops/
Dscript_ops.py346 is_async=context.is_async(),
/external/rust/crates/grpcio-sys/grpc/src/core/lib/security/credentials/
Dcredentials.h216 const char* md_key, const char* md_value, bool is_async);
/external/python/cpython3/Python/
Dast.c1714 asdl_seq *decorator_seq, bool is_async) in ast_for_funcdef_impl() argument
1717 const node * const n = is_async ? CHILD(n0, 1) : n0; in ast_for_funcdef_impl()
1727 if (is_async && c->c_feature_version < 5) { in ast_for_funcdef_impl()
1775 if (is_async) in ast_for_funcdef_impl()
2037 int is_async = 0; in ast_for_comprehension() local
2042 is_async = 1; in ast_for_comprehension()
2052 if (is_async && c->c_feature_version < 6) { in ast_for_comprehension()
2071 is_async, c->c_arena); in ast_for_comprehension()
2076 expression, NULL, is_async, c->c_arena); in ast_for_comprehension()
4039 ast_for_for_stmt(struct compiling *c, const node *n0, bool is_async) in ast_for_for_stmt() argument
[all …]
/external/tensorflow/tensorflow/core/profiler/protobuf/
Dtf_data_stats.proto39 bool is_async = 4; field
/external/tensorflow/tensorflow/c/eager/
Dc_api_experimental.cc517 TFE_Executor* TFE_NewExecutor(bool is_async) { in TFE_NewExecutor() argument
518 return new TFE_Executor(is_async); in TFE_NewExecutor()
/external/python/cpython3/Parser/
DPython.asdl104 comprehension = (expr target, expr iter, expr* ifs, int is_async)

12