Package org.tensorflow.framework
Interface DebuggedSourceFileOrBuilder
-
- All Superinterfaces:
org.nd4j.shade.protobuf.MessageLiteOrBuilder,org.nd4j.shade.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DebuggedSourceFile,DebuggedSourceFile.Builder
public interface DebuggedSourceFileOrBuilder extends org.nd4j.shade.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longgetBytes()Byte size of the file.StringgetFilePath()Path to the source code file.org.nd4j.shade.protobuf.ByteStringgetFilePathBytes()Path to the source code file.StringgetHost()The host name on which a source code file is located.org.nd4j.shade.protobuf.ByteStringgetHostBytes()The host name on which a source code file is located.longgetLastModified()The timestamp at which the source code file is last modified.StringgetLines(int index)Line-by-line content of the source code file.org.nd4j.shade.protobuf.ByteStringgetLinesBytes(int index)Line-by-line content of the source code file.intgetLinesCount()Line-by-line content of the source code file.List<String>getLinesList()Line-by-line content of the source code file.-
Methods inherited from interface org.nd4j.shade.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getHost
String getHost()
The host name on which a source code file is located.
string host = 1;- Returns:
- The host.
-
getHostBytes
org.nd4j.shade.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
org.nd4j.shade.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
List<String> 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
String getLines(int index)
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
org.nd4j.shade.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.
-
-