Check the modified time of ~/.local/share/code-server/heartbeat.
If it is older than max_idle_second seconds, kill the container.
Otherwise, check again every HEARTBEAT_CHECK_SECONDS.
Wait for user to resume the task. If resume_task is set, terminate the VSCode server, reload the task function, and run it with the input of the task.
Returns the code server information based on the system’s architecture.
This function checks the system’s architecture and returns the corresponding
code server information from the provided dictionary. The function currently
supports AMD64 and ARM64 architectures.
Parameter
Type
code_server_info_dict
dict
get_installed_extensions()
defget_installed_extensions()
Get the list of installed extensions.
Returns:
List[str]: The list of installed extensions.
Copy the original task file to the context working directory. This ensures that the inputs.pb can be loaded, as loading requires the original task interface.
By doing so, even if users change the task interface in their code, we can use the copied task file to load the inputs as native Python objects.
Generate a Python script and a launch.json for users to debug interactively.
Parameter
Type
task_function
prepare_launch_json()
defprepare_launch_json()
Generate the launch.json and settings.json for users to easily launch interactive debugging and task resumption.
prepare_resume_task_python()
defprepare_resume_task_python(
pid: int,
)
Generate a Python script for users to resume the task.
Parameter
Type
pid
int
flytekit.interactive.vscode_lib.decorator.vscode
Abstract class for class decorators.
We can attach config on the decorator class and use it in the upper level.