Searched refs:to_restore (Results 1 – 5 of 5) sorted by relevance
/external/tensorflow/tensorflow/python/feature_column/ |
D | feature_column.py | 2542 to_restore = embedding_weights 2543 if isinstance(to_restore, variables.PartitionedVariable): 2544 to_restore = to_restore._get_variable_list() # pylint: disable=protected-access 2546 self.tensor_name_in_ckpt: to_restore 2692 to_restore = embedding_weights 2693 if isinstance(to_restore, variables.PartitionedVariable): 2694 to_restore = to_restore._get_variable_list() # pylint: disable=protected-access 2696 self.tensor_name_in_ckpt: to_restore
|
D | feature_column_v2.py | 2915 to_restore = embedding_weights 2916 if isinstance(to_restore, variables.PartitionedVariable): 2917 to_restore = to_restore._get_variable_list() # pylint: disable=protected-access 2919 self.tensor_name_in_ckpt: to_restore 3134 to_restore = var 3135 if isinstance(to_restore, variables.PartitionedVariable): 3136 to_restore = to_restore._get_variable_list() # pylint: disable=protected-access 3138 self._ckpt_to_load_from, {self._tensor_name_in_ckpt: to_restore})
|
/external/crosvm/sys_util/src/ |
D | scoped_signal_handler.rs | 395 let to_restore = get_sigaction(Signal::Interrupt).unwrap(); in waitforinterrupt_success() localVariable 416 unsafe { restore_sigaction(Signal::Interrupt, to_restore) }.unwrap(); in waitforinterrupt_success()
|
/external/mesa3d/src/gallium/auxiliary/cso_cache/ |
D | cso_context.c | 235 unsigned to_restore = 0; in sanitize_hash() local 257 samplers_to_restore[to_restore++] = sampler; in sanitize_hash() 280 while (to_restore--) { in sanitize_hash() 281 struct cso_sampler *sampler = samplers_to_restore[to_restore]; in sanitize_hash()
|
/external/minijail/ |
D | libminijail.c | 3124 sigset_t to_block, to_restore; in minijail_run_internal() local 3129 if (sigprocmask(SIG_BLOCK, &to_block, &to_restore) < 0) in minijail_run_internal() 3151 if (sigprocmask(SIG_SETMASK, &to_restore, NULL) < 0) in minijail_run_internal()
|