Package org.tensorflow.framework
Interface DebuggedSourceFileOrBuilder
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DebuggedSourceFile,DebuggedSourceFile.Builder
public interface DebuggedSourceFileOrBuilder
extends com.google.protobuf.MessageOrBuilder
-
Method Summary
Modifier and TypeMethodDescriptionlonggetBytes()Byte size of the file.Path to the source code file.com.google.protobuf.ByteStringPath to the source code file.getHost()The host name on which a source code file is located.com.google.protobuf.ByteStringThe host name on which a source code file is located.longThe timestamp at which the source code file is last modified.getLines(int index) Line-by-line content of the source code file.com.google.protobuf.ByteStringgetLinesBytes(int index) Line-by-line content of the source code file.intLine-by-line content of the source code file.Line-by-line content of the source code file.Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitializedMethods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
Method Details
-
getHost
String getHost()The host name on which a source code file is located.
string host = 1;- Returns:
- The host.
-
getHostBytes
com.google.protobuf.ByteString getHostBytes()The host name on which a source code file is located.
string host = 1;- Returns:
- The bytes for host.
-
getFilePath
String getFilePath()Path to the source code file.
string file_path = 2;- Returns:
- The filePath.
-
getFilePathBytes
com.google.protobuf.ByteString getFilePathBytes()Path to the source code file.
string file_path = 2;- Returns:
- The bytes for filePath.
-
getLastModified
long getLastModified()The timestamp at which the source code file is last modified.
int64 last_modified = 3;- Returns:
- The lastModified.
-
getBytes
long getBytes()Byte size of the file.
int64 bytes = 4;- Returns:
- The bytes.
-
getLinesList
Line-by-line content of the source code file.
repeated string lines = 5;- Returns:
- A list containing the lines.
-
getLinesCount
int getLinesCount()Line-by-line content of the source code file.
repeated string lines = 5;- Returns:
- The count of lines.
-
getLines
Line-by-line content of the source code file.
repeated string lines = 5;- Parameters:
index- The index of the element to return.- Returns:
- The lines at the given index.
-
getLinesBytes
com.google.protobuf.ByteString getLinesBytes(int index) Line-by-line content of the source code file.
repeated string lines = 5;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the lines at the given index.
-