org.tensorflow.framework.DebuggedSourceFileOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/protobuf/debug.proto
package org.tensorflow.framework;
public interface DebuggedSourceFileOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.DebuggedSourceFile)
org.nd4j.shade.protobuf.MessageOrBuilder {
/**
*
* The host name on which a source code file is located.
*
*
* string host = 1;
*/
java.lang.String getHost();
/**
*
* The host name on which a source code file is located.
*
*
* string host = 1;
*/
org.nd4j.shade.protobuf.ByteString
getHostBytes();
/**
*
* Path to the source code file.
*
*
* string file_path = 2;
*/
java.lang.String getFilePath();
/**
*
* Path to the source code file.
*
*
* string file_path = 2;
*/
org.nd4j.shade.protobuf.ByteString
getFilePathBytes();
/**
*
* The timestamp at which the source code file is last modified.
*
*
* int64 last_modified = 3;
*/
long getLastModified();
/**
*
* Byte size of the file.
*
*
* int64 bytes = 4;
*/
long getBytes();
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
java.util.List
getLinesList();
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
int getLinesCount();
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
java.lang.String getLines(int index);
/**
*
* Line-by-line content of the source code file.
*
*
* repeated string lines = 5;
*/
org.nd4j.shade.protobuf.ByteString
getLinesBytes(int index);
}