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

org.tensorflow.distruntime.ServerDef Maven / Gradle / Ivy

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

package org.tensorflow.distruntime;

/**
 * 
 * Defines the configuration of a single TensorFlow server.
 * 
* * Protobuf type {@code tensorflow.ServerDef} */ public final class ServerDef extends com.google.protobuf.GeneratedMessageV3 implements // @@protoc_insertion_point(message_implements:tensorflow.ServerDef) ServerDefOrBuilder { // Use ServerDef.newBuilder() to construct. private ServerDef(com.google.protobuf.GeneratedMessageV3.Builder builder) { super(builder); } private ServerDef() { jobName_ = ""; taskIndex_ = 0; protocol_ = ""; } @java.lang.Override public final com.google.protobuf.UnknownFieldSet getUnknownFields() { return com.google.protobuf.UnknownFieldSet.getDefaultInstance(); } private ServerDef( 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 10: { org.tensorflow.distruntime.ClusterDef.Builder subBuilder = null; if (cluster_ != null) { subBuilder = cluster_.toBuilder(); } cluster_ = input.readMessage(org.tensorflow.distruntime.ClusterDef.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(cluster_); cluster_ = subBuilder.buildPartial(); } break; } case 18: { java.lang.String s = input.readStringRequireUtf8(); jobName_ = s; break; } case 24: { taskIndex_ = input.readInt32(); break; } case 34: { org.tensorflow.framework.ConfigProto.Builder subBuilder = null; if (defaultSessionConfig_ != null) { subBuilder = defaultSessionConfig_.toBuilder(); } defaultSessionConfig_ = input.readMessage(org.tensorflow.framework.ConfigProto.parser(), extensionRegistry); if (subBuilder != null) { subBuilder.mergeFrom(defaultSessionConfig_); defaultSessionConfig_ = subBuilder.buildPartial(); } break; } case 42: { java.lang.String s = input.readStringRequireUtf8(); protocol_ = 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.distruntime.ServerProtos.internal_static_tensorflow_ServerDef_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.distruntime.ServerProtos.internal_static_tensorflow_ServerDef_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.distruntime.ServerDef.class, org.tensorflow.distruntime.ServerDef.Builder.class); } public static final int CLUSTER_FIELD_NUMBER = 1; private org.tensorflow.distruntime.ClusterDef cluster_; /** *
   * The cluster of which this server is a member.
   * 
* * .tensorflow.ClusterDef cluster = 1; */ public boolean hasCluster() { return cluster_ != null; } /** *
   * The cluster of which this server is a member.
   * 
* * .tensorflow.ClusterDef cluster = 1; */ public org.tensorflow.distruntime.ClusterDef getCluster() { return cluster_ == null ? org.tensorflow.distruntime.ClusterDef.getDefaultInstance() : cluster_; } /** *
   * The cluster of which this server is a member.
   * 
* * .tensorflow.ClusterDef cluster = 1; */ public org.tensorflow.distruntime.ClusterDefOrBuilder getClusterOrBuilder() { return getCluster(); } public static final int JOB_NAME_FIELD_NUMBER = 2; private volatile java.lang.Object jobName_; /** *
   * The name of the job of which this server is a member.
   * NOTE(mrry): The `cluster` field must contain a `JobDef` with a `name` field
   * that matches this name.
   * 
* * string job_name = 2; */ public java.lang.String getJobName() { java.lang.Object ref = jobName_; 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(); jobName_ = s; return s; } } /** *
   * The name of the job of which this server is a member.
   * NOTE(mrry): The `cluster` field must contain a `JobDef` with a `name` field
   * that matches this name.
   * 
* * string job_name = 2; */ public com.google.protobuf.ByteString getJobNameBytes() { java.lang.Object ref = jobName_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); jobName_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } public static final int TASK_INDEX_FIELD_NUMBER = 3; private int taskIndex_; /** *
   * The task index of this server in its job.
   * NOTE: The `cluster` field must contain a `JobDef` with a matching `name`
   * and a mapping in its `tasks` field for this index.
   * 
* * int32 task_index = 3; */ public int getTaskIndex() { return taskIndex_; } public static final int DEFAULT_SESSION_CONFIG_FIELD_NUMBER = 4; private org.tensorflow.framework.ConfigProto defaultSessionConfig_; /** *
   * The default configuration for sessions that run on this server.
   * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public boolean hasDefaultSessionConfig() { return defaultSessionConfig_ != null; } /** *
   * The default configuration for sessions that run on this server.
   * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public org.tensorflow.framework.ConfigProto getDefaultSessionConfig() { return defaultSessionConfig_ == null ? org.tensorflow.framework.ConfigProto.getDefaultInstance() : defaultSessionConfig_; } /** *
   * The default configuration for sessions that run on this server.
   * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public org.tensorflow.framework.ConfigProtoOrBuilder getDefaultSessionConfigOrBuilder() { return getDefaultSessionConfig(); } public static final int PROTOCOL_FIELD_NUMBER = 5; private volatile java.lang.Object protocol_; /** *
   * The protocol to be used by this server.
   * Acceptable values include: "grpc".
   * 
* * string protocol = 5; */ public java.lang.String getProtocol() { java.lang.Object ref = protocol_; 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(); protocol_ = s; return s; } } /** *
   * The protocol to be used by this server.
   * Acceptable values include: "grpc".
   * 
* * string protocol = 5; */ public com.google.protobuf.ByteString getProtocolBytes() { java.lang.Object ref = protocol_; if (ref instanceof java.lang.String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); protocol_ = 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 (cluster_ != null) { output.writeMessage(1, getCluster()); } if (!getJobNameBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 2, jobName_); } if (taskIndex_ != 0) { output.writeInt32(3, taskIndex_); } if (defaultSessionConfig_ != null) { output.writeMessage(4, getDefaultSessionConfig()); } if (!getProtocolBytes().isEmpty()) { com.google.protobuf.GeneratedMessageV3.writeString(output, 5, protocol_); } } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (cluster_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(1, getCluster()); } if (!getJobNameBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, jobName_); } if (taskIndex_ != 0) { size += com.google.protobuf.CodedOutputStream .computeInt32Size(3, taskIndex_); } if (defaultSessionConfig_ != null) { size += com.google.protobuf.CodedOutputStream .computeMessageSize(4, getDefaultSessionConfig()); } if (!getProtocolBytes().isEmpty()) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, protocol_); } 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.distruntime.ServerDef)) { return super.equals(obj); } org.tensorflow.distruntime.ServerDef other = (org.tensorflow.distruntime.ServerDef) obj; boolean result = true; result = result && (hasCluster() == other.hasCluster()); if (hasCluster()) { result = result && getCluster() .equals(other.getCluster()); } result = result && getJobName() .equals(other.getJobName()); result = result && (getTaskIndex() == other.getTaskIndex()); result = result && (hasDefaultSessionConfig() == other.hasDefaultSessionConfig()); if (hasDefaultSessionConfig()) { result = result && getDefaultSessionConfig() .equals(other.getDefaultSessionConfig()); } result = result && getProtocol() .equals(other.getProtocol()); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); if (hasCluster()) { hash = (37 * hash) + CLUSTER_FIELD_NUMBER; hash = (53 * hash) + getCluster().hashCode(); } hash = (37 * hash) + JOB_NAME_FIELD_NUMBER; hash = (53 * hash) + getJobName().hashCode(); hash = (37 * hash) + TASK_INDEX_FIELD_NUMBER; hash = (53 * hash) + getTaskIndex(); if (hasDefaultSessionConfig()) { hash = (37 * hash) + DEFAULT_SESSION_CONFIG_FIELD_NUMBER; hash = (53 * hash) + getDefaultSessionConfig().hashCode(); } hash = (37 * hash) + PROTOCOL_FIELD_NUMBER; hash = (53 * hash) + getProtocol().hashCode(); hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.tensorflow.distruntime.ServerDef parseFrom( java.nio.ByteBuffer data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.distruntime.ServerDef parseFrom( java.nio.ByteBuffer data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.distruntime.ServerDef parseFrom( com.google.protobuf.ByteString data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.distruntime.ServerDef 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.distruntime.ServerDef parseFrom(byte[] data) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.distruntime.ServerDef parseFrom( byte[] data, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.distruntime.ServerDef parseFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.distruntime.ServerDef 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.distruntime.ServerDef parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.tensorflow.distruntime.ServerDef 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.distruntime.ServerDef parseFrom( com.google.protobuf.CodedInputStream input) throws java.io.IOException { return com.google.protobuf.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.distruntime.ServerDef 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.distruntime.ServerDef 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; } /** *
   * Defines the configuration of a single TensorFlow server.
   * 
* * Protobuf type {@code tensorflow.ServerDef} */ public static final class Builder extends com.google.protobuf.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tensorflow.ServerDef) org.tensorflow.distruntime.ServerDefOrBuilder { public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { return org.tensorflow.distruntime.ServerProtos.internal_static_tensorflow_ServerDef_descriptor; } protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.distruntime.ServerProtos.internal_static_tensorflow_ServerDef_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.distruntime.ServerDef.class, org.tensorflow.distruntime.ServerDef.Builder.class); } // Construct using org.tensorflow.distruntime.ServerDef.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(); if (clusterBuilder_ == null) { cluster_ = null; } else { cluster_ = null; clusterBuilder_ = null; } jobName_ = ""; taskIndex_ = 0; if (defaultSessionConfigBuilder_ == null) { defaultSessionConfig_ = null; } else { defaultSessionConfig_ = null; defaultSessionConfigBuilder_ = null; } protocol_ = ""; return this; } public com.google.protobuf.Descriptors.Descriptor getDescriptorForType() { return org.tensorflow.distruntime.ServerProtos.internal_static_tensorflow_ServerDef_descriptor; } public org.tensorflow.distruntime.ServerDef getDefaultInstanceForType() { return org.tensorflow.distruntime.ServerDef.getDefaultInstance(); } public org.tensorflow.distruntime.ServerDef build() { org.tensorflow.distruntime.ServerDef result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public org.tensorflow.distruntime.ServerDef buildPartial() { org.tensorflow.distruntime.ServerDef result = new org.tensorflow.distruntime.ServerDef(this); if (clusterBuilder_ == null) { result.cluster_ = cluster_; } else { result.cluster_ = clusterBuilder_.build(); } result.jobName_ = jobName_; result.taskIndex_ = taskIndex_; if (defaultSessionConfigBuilder_ == null) { result.defaultSessionConfig_ = defaultSessionConfig_; } else { result.defaultSessionConfig_ = defaultSessionConfigBuilder_.build(); } result.protocol_ = protocol_; 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.distruntime.ServerDef) { return mergeFrom((org.tensorflow.distruntime.ServerDef)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.tensorflow.distruntime.ServerDef other) { if (other == org.tensorflow.distruntime.ServerDef.getDefaultInstance()) return this; if (other.hasCluster()) { mergeCluster(other.getCluster()); } if (!other.getJobName().isEmpty()) { jobName_ = other.jobName_; onChanged(); } if (other.getTaskIndex() != 0) { setTaskIndex(other.getTaskIndex()); } if (other.hasDefaultSessionConfig()) { mergeDefaultSessionConfig(other.getDefaultSessionConfig()); } if (!other.getProtocol().isEmpty()) { protocol_ = other.protocol_; 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.distruntime.ServerDef parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.google.protobuf.InvalidProtocolBufferException e) { parsedMessage = (org.tensorflow.distruntime.ServerDef) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private org.tensorflow.distruntime.ClusterDef cluster_ = null; private com.google.protobuf.SingleFieldBuilderV3< org.tensorflow.distruntime.ClusterDef, org.tensorflow.distruntime.ClusterDef.Builder, org.tensorflow.distruntime.ClusterDefOrBuilder> clusterBuilder_; /** *
     * The cluster of which this server is a member.
     * 
* * .tensorflow.ClusterDef cluster = 1; */ public boolean hasCluster() { return clusterBuilder_ != null || cluster_ != null; } /** *
     * The cluster of which this server is a member.
     * 
* * .tensorflow.ClusterDef cluster = 1; */ public org.tensorflow.distruntime.ClusterDef getCluster() { if (clusterBuilder_ == null) { return cluster_ == null ? org.tensorflow.distruntime.ClusterDef.getDefaultInstance() : cluster_; } else { return clusterBuilder_.getMessage(); } } /** *
     * The cluster of which this server is a member.
     * 
* * .tensorflow.ClusterDef cluster = 1; */ public Builder setCluster(org.tensorflow.distruntime.ClusterDef value) { if (clusterBuilder_ == null) { if (value == null) { throw new NullPointerException(); } cluster_ = value; onChanged(); } else { clusterBuilder_.setMessage(value); } return this; } /** *
     * The cluster of which this server is a member.
     * 
* * .tensorflow.ClusterDef cluster = 1; */ public Builder setCluster( org.tensorflow.distruntime.ClusterDef.Builder builderForValue) { if (clusterBuilder_ == null) { cluster_ = builderForValue.build(); onChanged(); } else { clusterBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * The cluster of which this server is a member.
     * 
* * .tensorflow.ClusterDef cluster = 1; */ public Builder mergeCluster(org.tensorflow.distruntime.ClusterDef value) { if (clusterBuilder_ == null) { if (cluster_ != null) { cluster_ = org.tensorflow.distruntime.ClusterDef.newBuilder(cluster_).mergeFrom(value).buildPartial(); } else { cluster_ = value; } onChanged(); } else { clusterBuilder_.mergeFrom(value); } return this; } /** *
     * The cluster of which this server is a member.
     * 
* * .tensorflow.ClusterDef cluster = 1; */ public Builder clearCluster() { if (clusterBuilder_ == null) { cluster_ = null; onChanged(); } else { cluster_ = null; clusterBuilder_ = null; } return this; } /** *
     * The cluster of which this server is a member.
     * 
* * .tensorflow.ClusterDef cluster = 1; */ public org.tensorflow.distruntime.ClusterDef.Builder getClusterBuilder() { onChanged(); return getClusterFieldBuilder().getBuilder(); } /** *
     * The cluster of which this server is a member.
     * 
* * .tensorflow.ClusterDef cluster = 1; */ public org.tensorflow.distruntime.ClusterDefOrBuilder getClusterOrBuilder() { if (clusterBuilder_ != null) { return clusterBuilder_.getMessageOrBuilder(); } else { return cluster_ == null ? org.tensorflow.distruntime.ClusterDef.getDefaultInstance() : cluster_; } } /** *
     * The cluster of which this server is a member.
     * 
* * .tensorflow.ClusterDef cluster = 1; */ private com.google.protobuf.SingleFieldBuilderV3< org.tensorflow.distruntime.ClusterDef, org.tensorflow.distruntime.ClusterDef.Builder, org.tensorflow.distruntime.ClusterDefOrBuilder> getClusterFieldBuilder() { if (clusterBuilder_ == null) { clusterBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< org.tensorflow.distruntime.ClusterDef, org.tensorflow.distruntime.ClusterDef.Builder, org.tensorflow.distruntime.ClusterDefOrBuilder>( getCluster(), getParentForChildren(), isClean()); cluster_ = null; } return clusterBuilder_; } private java.lang.Object jobName_ = ""; /** *
     * The name of the job of which this server is a member.
     * NOTE(mrry): The `cluster` field must contain a `JobDef` with a `name` field
     * that matches this name.
     * 
* * string job_name = 2; */ public java.lang.String getJobName() { java.lang.Object ref = jobName_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); jobName_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The name of the job of which this server is a member.
     * NOTE(mrry): The `cluster` field must contain a `JobDef` with a `name` field
     * that matches this name.
     * 
* * string job_name = 2; */ public com.google.protobuf.ByteString getJobNameBytes() { java.lang.Object ref = jobName_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); jobName_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The name of the job of which this server is a member.
     * NOTE(mrry): The `cluster` field must contain a `JobDef` with a `name` field
     * that matches this name.
     * 
* * string job_name = 2; */ public Builder setJobName( java.lang.String value) { if (value == null) { throw new NullPointerException(); } jobName_ = value; onChanged(); return this; } /** *
     * The name of the job of which this server is a member.
     * NOTE(mrry): The `cluster` field must contain a `JobDef` with a `name` field
     * that matches this name.
     * 
* * string job_name = 2; */ public Builder clearJobName() { jobName_ = getDefaultInstance().getJobName(); onChanged(); return this; } /** *
     * The name of the job of which this server is a member.
     * NOTE(mrry): The `cluster` field must contain a `JobDef` with a `name` field
     * that matches this name.
     * 
* * string job_name = 2; */ public Builder setJobNameBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); jobName_ = value; onChanged(); return this; } private int taskIndex_ ; /** *
     * The task index of this server in its job.
     * NOTE: The `cluster` field must contain a `JobDef` with a matching `name`
     * and a mapping in its `tasks` field for this index.
     * 
* * int32 task_index = 3; */ public int getTaskIndex() { return taskIndex_; } /** *
     * The task index of this server in its job.
     * NOTE: The `cluster` field must contain a `JobDef` with a matching `name`
     * and a mapping in its `tasks` field for this index.
     * 
* * int32 task_index = 3; */ public Builder setTaskIndex(int value) { taskIndex_ = value; onChanged(); return this; } /** *
     * The task index of this server in its job.
     * NOTE: The `cluster` field must contain a `JobDef` with a matching `name`
     * and a mapping in its `tasks` field for this index.
     * 
* * int32 task_index = 3; */ public Builder clearTaskIndex() { taskIndex_ = 0; onChanged(); return this; } private org.tensorflow.framework.ConfigProto defaultSessionConfig_ = null; private com.google.protobuf.SingleFieldBuilderV3< org.tensorflow.framework.ConfigProto, org.tensorflow.framework.ConfigProto.Builder, org.tensorflow.framework.ConfigProtoOrBuilder> defaultSessionConfigBuilder_; /** *
     * The default configuration for sessions that run on this server.
     * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public boolean hasDefaultSessionConfig() { return defaultSessionConfigBuilder_ != null || defaultSessionConfig_ != null; } /** *
     * The default configuration for sessions that run on this server.
     * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public org.tensorflow.framework.ConfigProto getDefaultSessionConfig() { if (defaultSessionConfigBuilder_ == null) { return defaultSessionConfig_ == null ? org.tensorflow.framework.ConfigProto.getDefaultInstance() : defaultSessionConfig_; } else { return defaultSessionConfigBuilder_.getMessage(); } } /** *
     * The default configuration for sessions that run on this server.
     * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public Builder setDefaultSessionConfig(org.tensorflow.framework.ConfigProto value) { if (defaultSessionConfigBuilder_ == null) { if (value == null) { throw new NullPointerException(); } defaultSessionConfig_ = value; onChanged(); } else { defaultSessionConfigBuilder_.setMessage(value); } return this; } /** *
     * The default configuration for sessions that run on this server.
     * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public Builder setDefaultSessionConfig( org.tensorflow.framework.ConfigProto.Builder builderForValue) { if (defaultSessionConfigBuilder_ == null) { defaultSessionConfig_ = builderForValue.build(); onChanged(); } else { defaultSessionConfigBuilder_.setMessage(builderForValue.build()); } return this; } /** *
     * The default configuration for sessions that run on this server.
     * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public Builder mergeDefaultSessionConfig(org.tensorflow.framework.ConfigProto value) { if (defaultSessionConfigBuilder_ == null) { if (defaultSessionConfig_ != null) { defaultSessionConfig_ = org.tensorflow.framework.ConfigProto.newBuilder(defaultSessionConfig_).mergeFrom(value).buildPartial(); } else { defaultSessionConfig_ = value; } onChanged(); } else { defaultSessionConfigBuilder_.mergeFrom(value); } return this; } /** *
     * The default configuration for sessions that run on this server.
     * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public Builder clearDefaultSessionConfig() { if (defaultSessionConfigBuilder_ == null) { defaultSessionConfig_ = null; onChanged(); } else { defaultSessionConfig_ = null; defaultSessionConfigBuilder_ = null; } return this; } /** *
     * The default configuration for sessions that run on this server.
     * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public org.tensorflow.framework.ConfigProto.Builder getDefaultSessionConfigBuilder() { onChanged(); return getDefaultSessionConfigFieldBuilder().getBuilder(); } /** *
     * The default configuration for sessions that run on this server.
     * 
* * .tensorflow.ConfigProto default_session_config = 4; */ public org.tensorflow.framework.ConfigProtoOrBuilder getDefaultSessionConfigOrBuilder() { if (defaultSessionConfigBuilder_ != null) { return defaultSessionConfigBuilder_.getMessageOrBuilder(); } else { return defaultSessionConfig_ == null ? org.tensorflow.framework.ConfigProto.getDefaultInstance() : defaultSessionConfig_; } } /** *
     * The default configuration for sessions that run on this server.
     * 
* * .tensorflow.ConfigProto default_session_config = 4; */ private com.google.protobuf.SingleFieldBuilderV3< org.tensorflow.framework.ConfigProto, org.tensorflow.framework.ConfigProto.Builder, org.tensorflow.framework.ConfigProtoOrBuilder> getDefaultSessionConfigFieldBuilder() { if (defaultSessionConfigBuilder_ == null) { defaultSessionConfigBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< org.tensorflow.framework.ConfigProto, org.tensorflow.framework.ConfigProto.Builder, org.tensorflow.framework.ConfigProtoOrBuilder>( getDefaultSessionConfig(), getParentForChildren(), isClean()); defaultSessionConfig_ = null; } return defaultSessionConfigBuilder_; } private java.lang.Object protocol_ = ""; /** *
     * The protocol to be used by this server.
     * Acceptable values include: "grpc".
     * 
* * string protocol = 5; */ public java.lang.String getProtocol() { java.lang.Object ref = protocol_; if (!(ref instanceof java.lang.String)) { com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; java.lang.String s = bs.toStringUtf8(); protocol_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * The protocol to be used by this server.
     * Acceptable values include: "grpc".
     * 
* * string protocol = 5; */ public com.google.protobuf.ByteString getProtocolBytes() { java.lang.Object ref = protocol_; if (ref instanceof String) { com.google.protobuf.ByteString b = com.google.protobuf.ByteString.copyFromUtf8( (java.lang.String) ref); protocol_ = b; return b; } else { return (com.google.protobuf.ByteString) ref; } } /** *
     * The protocol to be used by this server.
     * Acceptable values include: "grpc".
     * 
* * string protocol = 5; */ public Builder setProtocol( java.lang.String value) { if (value == null) { throw new NullPointerException(); } protocol_ = value; onChanged(); return this; } /** *
     * The protocol to be used by this server.
     * Acceptable values include: "grpc".
     * 
* * string protocol = 5; */ public Builder clearProtocol() { protocol_ = getDefaultInstance().getProtocol(); onChanged(); return this; } /** *
     * The protocol to be used by this server.
     * Acceptable values include: "grpc".
     * 
* * string protocol = 5; */ public Builder setProtocolBytes( com.google.protobuf.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); protocol_ = 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.ServerDef) } // @@protoc_insertion_point(class_scope:tensorflow.ServerDef) private static final org.tensorflow.distruntime.ServerDef DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.tensorflow.distruntime.ServerDef(); } public static org.tensorflow.distruntime.ServerDef getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.google.protobuf.Parser PARSER = new com.google.protobuf.AbstractParser() { public ServerDef parsePartialFrom( com.google.protobuf.CodedInputStream input, com.google.protobuf.ExtensionRegistryLite extensionRegistry) throws com.google.protobuf.InvalidProtocolBufferException { return new ServerDef(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.distruntime.ServerDef getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy