##// END OF EJS Templates
Shut down kernels in parallel...
Shut down kernels in parallel When stopping the notebook server, it currently sends a shutdown request to each kernel and then waits for the process to finish. This can be slow if you have several kernels running. This makes it issues all the shutdown requests before waiting on the processes, so shutdown happens in parallel. KernelManager (and MultiKernelManager) gain three new public API methods to allow this: * request_shutdown (promoted from a private method) * wait_shutdown (refactored out of shutdown_kernel) * cleanup (refactored out of shutdown_kernel)

File last commit:

r15427:3bb7cf6a
r16510:633371e5
Show More
init.js
22 lines | 866 B | application/javascript | JavascriptLexer
Jonathan Frederic
Moved base widget model and view into widgets/base.js
r14470 //----------------------------------------------------------------------------
// Copyright (C) 2013 The IPython Development Team
//
// Distributed under the terms of the BSD License. The full license is in
// the file COPYING, distributed as part of this software.
//----------------------------------------------------------------------------
//============================================================================
Jonathan Frederic
renamed: basic_widgets.js -> init.js...
r14546 // Basic Widgets
Jonathan Frederic
Moved base widget model and view into widgets/base.js
r14470 //============================================================================
Jonathan Frederic
renamed: basic_widgets.js -> init.js...
r14546 define([
Jonathan Frederic
Updated require references to point to new files
r15427 "widgets/js/widget_bool",
"widgets/js/widget_button",
"widgets/js/widget_container",
"widgets/js/widget_float",
"widgets/js/widget_image",
"widgets/js/widget_int",
"widgets/js/widget_selection",
"widgets/js/widget_selectioncontainer",
"widgets/js/widget_string",
Jonathan Frederic
renamed: basic_widgets.js -> init.js...
r14546 ], function(){ return true; });