org.tensorflow.util.testlog.CommitIdOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto Show documentation
Show all versions of proto Show documentation
Java API for TensorFlow protocol buffers.
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: tensorflow/core/util/test_log.proto
package org.tensorflow.util.testlog;
public interface CommitIdOrBuilder extends
// @@protoc_insertion_point(interface_extends:tensorflow.CommitId)
com.google.protobuf.MessageOrBuilder {
/**
*
* Submitted changelist.
*
*
* int64 changelist = 1;
*/
long getChangelist();
/**
* string hash = 2;
*/
java.lang.String getHash();
/**
* string hash = 2;
*/
com.google.protobuf.ByteString
getHashBytes();
/**
*
* Hash of intermediate change between hash/changelist and what was tested.
* Not used if the build is from a commit without modifications.
*
*
* string snapshot = 3;
*/
java.lang.String getSnapshot();
/**
*
* Hash of intermediate change between hash/changelist and what was tested.
* Not used if the build is from a commit without modifications.
*
*
* string snapshot = 3;
*/
com.google.protobuf.ByteString
getSnapshotBytes();
/**
*
* Changelist tested if the change list is not already submitted.
*
*
* int64 pending_changelist = 4;
*/
long getPendingChangelist();
public org.tensorflow.util.testlog.CommitId.KindCase getKindCase();
}