OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:source_file_proto
(Results
1 - 2
of
2
) sorted by null
/external/tensorflow/tensorflow/python/debug/lib/
source_remote.py
35
def _load_debugged_source_file(file_path,
source_file_proto
):
37
source_file_proto
.host = socket.gethostname()
38
source_file_proto
.file_path = file_path
39
source_file_proto
.last_modified = file_stat.mtime_nsec
40
source_file_proto
.bytes = file_stat.length
43
source_file_proto
.lines.extend(f.read().splitlines())
grpc_debug_test_server.py
355
for
source_file_proto
in source_files.source_files:
356
if
source_file_proto
.file_path == file_path:
357
return
source_file_proto
.lines[lineno - 1]
Completed in 417 milliseconds