/dports/math/scilab/scilab-6.1.1/scilab/modules/history_manager/locales/ |
H A D | history_manager.pot | 1 # Localization of the module history_manager 20 # File: modules/history_manager/sci_gateway/c/sci_historysize.c, line: 40 26 # File: modules/history_manager/sci_gateway/c/sci_historysize.c, line: 59 33 # File: modules/history_manager/sci_gateway/c/sci_historysize.c, line: 67 39 # File: modules/history_manager/sci_gateway/c/sci_historysize.c, line: 73 40 # File: modules/history_manager/sci_gateway/c/sci_historysize.c, line: 96 48 # File: modules/history_manager/sci_gateway/c/sci_historysize.c, line: 89 55 # File: modules/history_manager/sci_gateway/c/sci_historysize.c, line: 102 185 # File: modules/history_manager/src/c/getCommentDateSession.c, line: 28 285 # File: modules/history_manager/src/cpp/HistoryManager.cpp, line: 387 [all …]
|
/dports/devel/ipython/ipython-7.29.0/IPython/core/tests/ |
H A D | test_history.py | 32 hist_manager_ori = ip.history_manager 40 ip.history_manager.db_log_output = True 43 ip.history_manager.store_output(3) 64 ip.history_manager.reset() 138 ip.history_manager.writeout_cache() 142 ip.history_manager.save_thread.stop() 144 ip.history_manager.db.close() 173 info = ip.history_manager.get_session_info() 199 hist_manager_ori = ip.history_manager 208 ip.history_manager.reset() [all …]
|
/dports/devel/ipython5/ipython-5.10.0/IPython/core/tests/ |
H A D | test_history.py | 33 hist_manager_ori = ip.history_manager 41 ip.history_manager.db_log_output = True 44 ip.history_manager.store_output(3) 65 ip.history_manager.reset() 139 ip.history_manager.writeout_cache() 143 ip.history_manager.save_thread.stop() 145 ip.history_manager.db.close() 174 info = ip.history_manager.get_session_info() 200 hist_manager_ori = ip.history_manager 209 ip.history_manager.reset() [all …]
|
H A D | test_magic.py | 276 ip.history_manager.reset() # Clear any existing history. 279 ip.history_manager.store_inputs(i, cmd) 291 ip.history_manager.reset() 663 _ip.history_manager.reset() # Clear any existing history. 666 _ip.history_manager.store_inputs(i, cmd) 937 ip.history_manager.reset() # Clear any existing history. 940 ip.history_manager.store_inputs(i, cmd)
|
/dports/devel/ipython/ipython-7.29.0/IPython/core/magics/ |
H A D | history.py | 138 history_manager = self.shell.history_manager 142 if session in (0, history_manager.session_number): 183 hist = history_manager.get_tail(n, raw=raw, output=get_output) 186 hist = history_manager.get_range_by_str(" ".join(args.range), 189 hist = history_manager.get_range(raw=raw, output=get_output) 260 histlines = self.shell.history_manager.get_range_by_str(arg) 269 histlines = self.shell.history_manager.search("*"+arg+"*") 297 hist = self.shell.history_manager.get_tail(n) 300 hist = list(self.shell.history_manager.search(p)) 308 hist = self.shell.history_manager.get_range_by_str(args) [all …]
|
H A D | logging.py | 141 input_hist = self.shell.history_manager.input_hist_raw 143 input_hist = self.shell.history_manager.input_hist_parsed 147 output_hist = self.shell.history_manager.output_hist
|
/dports/devel/ipython5/ipython-5.10.0/IPython/core/magics/ |
H A D | history.py | 140 history_manager = self.shell.history_manager 144 if session in (0, history_manager.session_number): 185 hist = history_manager.get_tail(n, raw=raw, output=get_output) 188 hist = history_manager.get_range_by_str(" ".join(args.range), 191 hist = history_manager.get_range(raw=raw, output=get_output) 262 histlines = self.shell.history_manager.get_range_by_str(arg) 271 histlines = self.shell.history_manager.search("*"+arg+"*") 298 hist = self.shell.history_manager.get_tail(n) 301 hist = list(self.shell.history_manager.search(p)) 309 hist = self.shell.history_manager.get_range_by_str(args) [all …]
|
H A D | logging.py | 131 input_hist = self.shell.history_manager.input_hist_raw 133 input_hist = self.shell.history_manager.input_hist_parsed 137 output_hist = self.shell.history_manager.output_hist
|
/dports/math/scilab/scilab-6.1.1/scilab/modules/history_manager/src/c/ |
H A D | history_manager.rc | 68 VALUE "FileDescription", "history_manager module" 70 VALUE "InternalName", "history_manager module" 72 VALUE "OriginalFilename", "history_manager.dll" 73 VALUE "ProductName", " history_manager"
|
/dports/www/py-django-simple-history/django-simple-history-2.12.0/simple_history/ |
H A D | utils.py | 80 history_manager = get_history_manager_for_model(model) 88 history_manager.bulk_history_create( 106 history_manager.bulk_history_create( 148 history_manager = get_history_manager_for_model(model) 155 history_manager.bulk_history_create(
|
/dports/devel/xeus/xeus-0.24.4/src/ |
H A D | xkernel.cpp | 59 history_manager_ptr history_manager, in xkernel() argument 67 , p_history_manager(std::move(history_manager)) in xkernel() 78 history_manager_ptr history_manager, in xkernel() argument 85 , p_history_manager(std::move(history_manager)) in xkernel()
|
/dports/net-im/gajim/gajim-gajim-1.3.3/ |
H A D | launch-history-manager.py | 3 from gajim import history_manager 4 history_manager.main()
|
/dports/devel/ipython/ipython-7.29.0/IPython/core/ |
H A D | history.py | 815 def __init__(self, history_manager): argument 817 self.history_manager = history_manager 818 self.enabled = history_manager.enabled 825 self.db = sqlite3.connect(self.history_manager.hist_file, 826 **self.history_manager.connection_options 829 self.history_manager.save_flag.wait() 833 self.history_manager.save_flag.clear() 834 self.history_manager.writeout_cache(self.db) 846 self.history_manager.save_flag.set()
|
/dports/devel/ipython5/ipython-5.10.0/IPython/core/ |
H A D | history.py | 821 def __init__(self, history_manager): argument 823 self.history_manager = history_manager 824 self.enabled = history_manager.enabled 831 self.db = sqlite3.connect(self.history_manager.hist_file, 832 **self.history_manager.connection_options 835 self.history_manager.save_flag.wait() 839 self.history_manager.save_flag.clear() 840 self.history_manager.writeout_cache(self.db) 852 self.history_manager.save_flag.set()
|
H A D | interactiveshell.py | 1167 ns['_ih'] = self.history_manager.input_hist_parsed 1168 ns['_oh'] = self.history_manager.output_hist 1169 ns['_dh'] = self.history_manager.dir_hist 1175 ns['In'] = self.history_manager.input_hist_parsed 1176 ns['Out'] = self.history_manager.output_hist 1212 self.history_manager.reset(new_session) 1277 ns_refs.append(self.history_manager.output_hist) 1580 self.configurables.append(self.history_manager) 2664 self.history_manager.store_inputs(self.execution_count, 2729 self.history_manager.store_output(self.execution_count) [all …]
|
/dports/math/scilab/scilab-6.1.1/scilab/ |
H A D | scilab-lib.properties.in | 82 library.history_manager.dir=${modules.dir}/history_manager/${build.jar.dir}/ 83 library.history_manager.src.dir=${modules.dir}/history_manager/${library.src.path} 84 library.history_manager.name=org.scilab.modules.history_manager.jar
|
H A D | scilab-lib.properties.vc | 78 library.history_manager.dir=${modules.dir}/history_manager/${build.jar.dir}/ 79 library.history_manager.src.dir=${modules.dir}/history_manager/${library.src.path} 80 library.history_manager.name=org.scilab.modules.history_manager.jar
|
/dports/math/scilab/scilab-6.1.1/scilab/modules/history_manager/ |
H A D | Makefile.am | 90 modulename=history_manager 99 etc/history_manager.quit \ 100 etc/history_manager.start \
|
H A D | .gitignore | 4 src/c/history_manager.def
|
H A D | history_manager.iss | 19 ; history_manager module 22 #define HISTORY_MANAGER "history_manager"
|
/dports/devel/xeus/xeus-0.24.4/include/xeus/ |
H A D | xkernel.hpp | 50 history_manager_ptr history_manager = make_in_memory_history_manager(), 58 history_manager_ptr history_manager = make_in_memory_history_manager(),
|
/dports/devel/py-envisage/envisage-4.9.0/envisage/plugins/ipython_kernel/ |
H A D | kernelapp.py | 236 shell.history_manager.save_thread.stop() 237 atexit_unregister(shell.history_manager.save_thread.stop) 240 shell.history_manager.db.close()
|
/dports/www/elinks/elinks-0.11.7/src/globhist/ |
H A D | dialogs.h | 8 void history_manager(struct session *);
|
/dports/net-p2p/vuze/vuze-5.7.4.0_2/com/aelitis/azureus/ui/swt/shells/main/ |
H A D | MainMDISetup.java | 470 …final DownloadHistoryManager history_manager = (DownloadHistoryManager)AzureusCoreFactory.getSingl… in setupSideBar() 481 if ( history_manager == null ){ in setupSideBar() 485 }else if ( history_manager.isEnabled()){ in setupSideBar() 487 int num = history_manager.getHistoryCount(); in setupSideBar() 509 if ( history_manager != null ){ in setupSideBar() 522 history_manager.addListener( history_listener, false ); in setupSideBar() 531 history_manager.removeListener( history_listener ); in setupSideBar()
|
/dports/devel/py-nbclient/nbclient-0.5.9/nbclient/tests/files/ |
H A D | Check History in Memory.ipynb | 21 "assert ip.history_manager.hist_file == ':memory:'"
|