8af7e1d683b691a3cfbf1c47ed32cc88f33e33f6,tensorboard/plugins/debugger_v2/debugger_v2_plugin.py,DebuggerV2Plugin,serve_execution_data,#DebuggerV2Plugin#Any#,123

Before Change


                "application/json",
            )
        except (IndexError, ValueError) as e:
            return http_util.Respond(
                request, {"error": str(e)}, "application/json", code=400,
            )

    @wrappers.Request.application
    def serve_source_files_list(self, request):
        Serves a list of all source files involved in the debugged program.

After Change


                "application/json",
            )
        except errors.InvalidArgumentError as e:
            return _error_response(request, str(e))

    @wrappers.Request.application
    def serve_source_files_list(self, request):
        Serves a list of all source files involved in the debugged program.
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: tensorflow/tensorboard
Commit Name: 8af7e1d683b691a3cfbf1c47ed32cc88f33e33f6
Time: 2020-01-22
Author: cais@google.com
File Name: tensorboard/plugins/debugger_v2/debugger_v2_plugin.py
Class Name: DebuggerV2Plugin
Method Name: serve_execution_data


Project Name: tensorflow/tensorboard
Commit Name: 8af7e1d683b691a3cfbf1c47ed32cc88f33e33f6
Time: 2020-01-22
Author: cais@google.com
File Name: tensorboard/plugins/debugger_v2/debugger_v2_plugin.py
Class Name: DebuggerV2Plugin
Method Name: serve_source_file


Project Name: tensorflow/tensorboard
Commit Name: 8af7e1d683b691a3cfbf1c47ed32cc88f33e33f6
Time: 2020-01-22
Author: cais@google.com
File Name: tensorboard/plugins/debugger_v2/debugger_v2_plugin.py
Class Name: DebuggerV2Plugin
Method Name: serve_execution_digests