All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tensorflow.util.SessionLog Maven / Gradle / Ivy

// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow/core/util/event.proto

package org.tensorflow.util;

/**
 * 
 * Protocol buffer used for logging session state.
 * 
* * Protobuf type {@code tensorflow.SessionLog} */ public final class SessionLog extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:tensorflow.SessionLog) SessionLogOrBuilder { // Use SessionLog.newBuilder() to construct. private SessionLog(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private SessionLog() { status_ = 0; checkpointPath_ = ""; msg_ = ""; } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } private SessionLog( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { this(); int mutable_bitField0_ = 0; try { boolean done = false; while (!done) { int tag = input.readTag(); switch (tag) { case 0: done = true; break; default: { if (!input.skipField(tag)) { done = true; } break; } case 8: { int rawValue = input.readEnum(); status_ = rawValue; break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); checkpointPath_ = s; break; } case 26: { java.lang.String s = input.readStringRequireUtf8(); msg_ = s; break; } } } } catch (com.google.protobuf.InvalidProtocolBufferException e) { throw e.setUnfinishedMessage(this); } catch (java.io.IOException e) { throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { makeExtensionsImmutable(); } } public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.util.EventProtos.internal_static_tensorflow_SessionLog_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.util.EventProtos.internal_static_tensorflow_SessionLog_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.util.SessionLog.class, org.tensorflow.util.SessionLog.Builder.class); } /** * Protobuf enum {@code tensorflow.SessionLog.SessionStatus} */ public enum SessionStatus implements com.google.protobuf.ProtocolMessageEnum { /** * STATUS_UNSPECIFIED = 0; */ STATUS_UNSPECIFIED(0), /** * START = 1; */ START(1), /** * STOP = 2; */ STOP(2), /** * CHECKPOINT = 3; */ CHECKPOINT(3), UNRECOGNIZED(-1), ; /** * STATUS_UNSPECIFIED = 0; */ public static final int STATUS_UNSPECIFIED_VALUE = 0; /** * START = 1; */ public static final int START_VALUE = 1; /** * STOP = 2; */ public static final int STOP_VALUE = 2; /** * CHECKPOINT = 3; */ public static final int CHECKPOINT_VALUE = 3; public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; } /** * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static SessionStatus valueOf(int value) { return forNumber(value); } public static SessionStatus forNumber(int value) { switch (value) { case 0: return STATUS_UNSPECIFIED; case 1: return START; case 2: return STOP; case 3: return CHECKPOINT; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap< SessionStatus> internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { public SessionStatus findValueByNumber(int number) { return SessionStatus.forNumber(number); } }; public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return org.tensorflow.util.SessionLog.getDescriptor().getEnumTypes().get(0); } private static final SessionStatus[] VALUES = values(); public static SessionStatus valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; } return VALUES[desc.getIndex()]; } private final int value; private SessionStatus(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:tensorflow.SessionLog.SessionStatus) } public static final int STATUS_FIELD_NUMBER = 1; private int status_; /** * .tensorflow.SessionLog.SessionStatus status = 1; */ public int getStatusValue() { return status_; } /** * .tensorflow.SessionLog.SessionStatus status = 1; */ public org.tensorflow.util.SessionLog.SessionStatus getStatus() { org.tensorflow.util.SessionLog.SessionStatus result = org.tensorflow.util.SessionLog.SessionStatus.valueOf(status_); return result == null ? org.tensorflow.util.SessionLog.SessionStatus.UNRECOGNIZED : result; } public static final int CHECKPOINT_PATH_FIELD_NUMBER = 2; private volatile java.lang.Object checkpointPath_; /** *
   * This checkpoint_path contains both the path and filename.
   * 
* * string checkpoint_path = 2; */ public java.lang.String getCheckpointPath() { java.lang.Object ref = checkpointPath_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); checkpointPath_ = s; return s; } } /** *
   * This checkpoint_path contains both the path and filename.
   * 
* * string checkpoint_path = 2; */ public com.google.protobuf.ByteString getCheckpointPathBytes() { java.lang.Object ref = checkpointPath_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); checkpointPath_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int MSG_FIELD_NUMBER = 3; private volatile java.lang.Object msg_; /** * string msg = 3; */ public java.lang.String getMsg() { java.lang.Object ref = msg_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); msg_ = s; return s; } } /** * string msg = 3; */ public com.google.protobuf.ByteString getMsgBytes() { java.lang.Object ref = msg_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); msg_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } private byte memoizedIsInitialized = -1; public final boolean isInitialized() { byte isInitialized = memoizedIsInitialized; if (isInitialized == 1) return true; if (isInitialized == 0) return false; memoizedIsInitialized = 1; return true; } public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io.IOException { if (status_ != org.tensorflow.util.SessionLog.SessionStatus.STATUS_UNSPECIFIED.getNumber()) { output.writeEnum(1, status_); } if (!getCheckpointPathBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, checkpointPath_); } if (!getMsgBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 3, msg_); } } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (status_ != org.tensorflow.util.SessionLog.SessionStatus.STATUS_UNSPECIFIED.getNumber()) { size += com.google.protobuf.CodedOutputStream .computeEnumSize(1, status_); } if (!getCheckpointPathBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, checkpointPath_); } if (!getMsgBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, msg_); } memoizedSize = size; return size; } private static final long serialVersionUID = 0L; @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof org.tensorflow.util.SessionLog)) { return super.equals(obj); } org.tensorflow.util.SessionLog other = (org.tensorflow.util.SessionLog) obj; boolean result = true; result = result && status_ == other.status_; result = result && getCheckpointPath() .equals(other.getCheckpointPath()); result = result && getMsg() .equals(other.getMsg()); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + STATUS_FIELD_NUMBER; hash = (53 * hash) + status_; hash = (37 * hash) + CHECKPOINT_PATH_FIELD_NUMBER; hash = (53 * hash) + getCheckpointPath().hashCode(); hash = (37 * hash) + MSG_FIELD_NUMBER; hash = (53 * hash) + getMsg().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.tensorflow.util.SessionLog parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.util.SessionLog parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.util.SessionLog parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.util.SessionLog parseFrom( com.google.protobuf.ByteString data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.util.SessionLog parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.util.SessionLog parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.util.SessionLog parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.util.SessionLog parseFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.util.SessionLog parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.tensorflow.util.SessionLog parseDelimitedFrom( java.io.InputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.util.SessionLog parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.util.SessionLog parseFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public Builder newBuilderForType() { return newBuilder(); } public static Builder newBuilder() { return DEFAULT_INSTANCE.toBuilder(); } public static Builder newBuilder(org.tensorflow.util.SessionLog prototype) { return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); } public Builder toBuilder() { return this == DEFAULT_INSTANCE ? new Builder() : new Builder().mergeFrom(this); } @java.lang.Override protected Builder newBuilderForType( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** *
   * Protocol buffer used for logging session state.
   * 
* * Protobuf type {@code tensorflow.SessionLog} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tensorflow.SessionLog) org.tensorflow.util.SessionLogOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.util.EventProtos.internal_static_tensorflow_SessionLog_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.util.EventProtos.internal_static_tensorflow_SessionLog_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.util.SessionLog.class, org.tensorflow.util.SessionLog.Builder.class); } // Construct using org.tensorflow.util.SessionLog.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { } } public Builder clear() { super.clear(); status_ = 0; checkpointPath_ = ""; msg_ = ""; return this; } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.tensorflow.util.EventProtos.internal_static_tensorflow_SessionLog_descriptor; } public org.tensorflow.util.SessionLog getDefaultInstanceForType() { return org.tensorflow.util.SessionLog.getDefaultInstance(); } public org.tensorflow.util.SessionLog build() { org.tensorflow.util.SessionLog result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public org.tensorflow.util.SessionLog buildPartial() { org.tensorflow.util.SessionLog result = new org.tensorflow.util.SessionLog(this); result.status_ = status_; result.checkpointPath_ = checkpointPath_; result.msg_ = msg_; onBuilt(); return result; } public Builder clone() { return (Builder) super.clone(); } public Builder setField( com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return (Builder) super.setField(field, value); } public Builder clearField( com.google.protobuf.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } public Builder clearOneof( com.google.protobuf.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, int index, Object value) { return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( com.google.protobuf.Descriptors.FieldDescriptor field, Object value) { return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.google.protobuf.Message other) { if (other instanceof org.tensorflow.util.SessionLog) { return mergeFrom((org.tensorflow.util.SessionLog)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.tensorflow.util.SessionLog other) { if (other == org.tensorflow.util.SessionLog.getDefaultInstance()) return this; if (other.status_ != 0) { setStatusValue(other.getStatusValue()); } if (!other.getCheckpointPath().isEmpty()) { checkpointPath_ = other.checkpointPath_; onChanged(); } if (!other.getMsg().isEmpty()) { msg_ = other.msg_; onChanged(); } onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { org.tensorflow.util.SessionLog parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.tensorflow.util.SessionLog) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int status_ = 0; /** * .tensorflow.SessionLog.SessionStatus status = 1; */ public int getStatusValue() { return status_; } /** * .tensorflow.SessionLog.SessionStatus status = 1; */ public Builder setStatusValue(int value) { status_ = value; onChanged(); return this; } /** * .tensorflow.SessionLog.SessionStatus status = 1; */ public org.tensorflow.util.SessionLog.SessionStatus getStatus() { org.tensorflow.util.SessionLog.SessionStatus result = org.tensorflow.util.SessionLog.SessionStatus.valueOf(status_); return result == null ? org.tensorflow.util.SessionLog.SessionStatus.UNRECOGNIZED : result; } /** * .tensorflow.SessionLog.SessionStatus status = 1; */ public Builder setStatus(org.tensorflow.util.SessionLog.SessionStatus value) { if (value == null) { throw new NullPointerException(); } status_ = value.getNumber(); onChanged(); return this; } /** * .tensorflow.SessionLog.SessionStatus status = 1; */ public Builder clearStatus() { status_ = 0; onChanged(); return this; } private java.lang.Object checkpointPath_ = ""; /** *
     * This checkpoint_path contains both the path and filename.
     * 
* * string checkpoint_path = 2; */ public java.lang.String getCheckpointPath() { java.lang.Object ref = checkpointPath_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); checkpointPath_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * This checkpoint_path contains both the path and filename.
     * 
* * string checkpoint_path = 2; */ public com.google.protobuf.ByteString getCheckpointPathBytes() { java.lang.Object ref = checkpointPath_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); checkpointPath_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * This checkpoint_path contains both the path and filename.
     * 
* * string checkpoint_path = 2; */ public Builder setCheckpointPath( java.lang.String value) { if (value == null) { throw new NullPointerException(); } checkpointPath_ = value; onChanged(); return this; } /** *
     * This checkpoint_path contains both the path and filename.
     * 
* * string checkpoint_path = 2; */ public Builder clearCheckpointPath() { checkpointPath_ = getDefaultInstance().getCheckpointPath(); onChanged(); return this; } /** *
     * This checkpoint_path contains both the path and filename.
     * 
* * string checkpoint_path = 2; */ public Builder setCheckpointPathBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); checkpointPath_ = value; onChanged(); return this; } private java.lang.Object msg_ = ""; /** * string msg = 3; */ public java.lang.String getMsg() { java.lang.Object ref = msg_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); msg_ = s; return s; } else { return (java.lang.String) ref; } } /** * string msg = 3; */ public com.google.protobuf.ByteString getMsgBytes() { java.lang.Object ref = msg_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); msg_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** * string msg = 3; */ public Builder setMsg( java.lang.String value) { if (value == null) { throw new NullPointerException(); } msg_ = value; onChanged(); return this; } /** * string msg = 3; */ public Builder clearMsg() { msg_ = getDefaultInstance().getMsg(); onChanged(); return this; } /** * string msg = 3; */ public Builder setMsgBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); msg_ = value; onChanged(); return this; } public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return this; } public final Builder mergeUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { return this; } // @@protoc_insertion_point(builder_scope:tensorflow.SessionLog) } // @@protoc_insertion_point(class_scope:tensorflow.SessionLog) private static final org.tensorflow.util.SessionLog DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.tensorflow.util.SessionLog(); } public static org.tensorflow.util.SessionLog getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { public SessionLog parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new SessionLog(input, extensionRegistry); } }; public static com.google.protobuf.Parser parser() { return PARSER; } @java.lang.Override public com.google.protobuf.Parser getParserForType() { return PARSER; } public org.tensorflow.util.SessionLog getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy