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

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

There is a newer version: 1.0.0-M2.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: tensorflow/core/protobuf/master.proto

package org.tensorflow.distruntime;

/**
 * Protobuf type {@code tensorflow.RunCallableRequest}
 */
public  final class RunCallableRequest extends
    com.github.os72.protobuf351.GeneratedMessageV3 implements
    // @@protoc_insertion_point(message_implements:tensorflow.RunCallableRequest)
    RunCallableRequestOrBuilder {
private static final long serialVersionUID = 0L;
  // Use RunCallableRequest.newBuilder() to construct.
  private RunCallableRequest(com.github.os72.protobuf351.GeneratedMessageV3.Builder builder) {
    super(builder);
  }
  private RunCallableRequest() {
    sessionHandle_ = "";
    handle_ = 0L;
    feed_ = java.util.Collections.emptyList();
  }

  @java.lang.Override
  public final com.github.os72.protobuf351.UnknownFieldSet
  getUnknownFields() {
    return this.unknownFields;
  }
  private RunCallableRequest(
      com.github.os72.protobuf351.CodedInputStream input,
      com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry)
      throws com.github.os72.protobuf351.InvalidProtocolBufferException {
    this();
    if (extensionRegistry == null) {
      throw new java.lang.NullPointerException();
    }
    int mutable_bitField0_ = 0;
    com.github.os72.protobuf351.UnknownFieldSet.Builder unknownFields =
        com.github.os72.protobuf351.UnknownFieldSet.newBuilder();
    try {
      boolean done = false;
      while (!done) {
        int tag = input.readTag();
        switch (tag) {
          case 0:
            done = true;
            break;
          default: {
            if (!parseUnknownFieldProto3(
                input, unknownFields, extensionRegistry, tag)) {
              done = true;
            }
            break;
          }
          case 10: {
            java.lang.String s = input.readStringRequireUtf8();

            sessionHandle_ = s;
            break;
          }
          case 16: {

            handle_ = input.readInt64();
            break;
          }
          case 26: {
            if (!((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
              feed_ = new java.util.ArrayList();
              mutable_bitField0_ |= 0x00000004;
            }
            feed_.add(
                input.readMessage(org.tensorflow.framework.TensorProto.parser(), extensionRegistry));
            break;
          }
        }
      }
    } catch (com.github.os72.protobuf351.InvalidProtocolBufferException e) {
      throw e.setUnfinishedMessage(this);
    } catch (java.io.IOException e) {
      throw new com.github.os72.protobuf351.InvalidProtocolBufferException(
          e).setUnfinishedMessage(this);
    } finally {
      if (((mutable_bitField0_ & 0x00000004) == 0x00000004)) {
        feed_ = java.util.Collections.unmodifiableList(feed_);
      }
      this.unknownFields = unknownFields.build();
      makeExtensionsImmutable();
    }
  }
  public static final com.github.os72.protobuf351.Descriptors.Descriptor
      getDescriptor() {
    return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_RunCallableRequest_descriptor;
  }

  protected com.github.os72.protobuf351.GeneratedMessageV3.FieldAccessorTable
      internalGetFieldAccessorTable() {
    return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_RunCallableRequest_fieldAccessorTable
        .ensureFieldAccessorsInitialized(
            org.tensorflow.distruntime.RunCallableRequest.class, org.tensorflow.distruntime.RunCallableRequest.Builder.class);
  }

  private int bitField0_;
  public static final int SESSION_HANDLE_FIELD_NUMBER = 1;
  private volatile java.lang.Object sessionHandle_;
  /**
   * 
   * REQUIRED: session_handle must be returned by a CreateSession call
   * to the same master service.
   * 
* * string session_handle = 1; */ public java.lang.String getSessionHandle() { java.lang.Object ref = sessionHandle_; if (ref instanceof java.lang.String) { return (java.lang.String) ref; } else { com.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.ByteString) ref; java.lang.String s = bs.toStringUtf8(); sessionHandle_ = s; return s; } } /** *
   * REQUIRED: session_handle must be returned by a CreateSession call
   * to the same master service.
   * 
* * string session_handle = 1; */ public com.github.os72.protobuf351.ByteString getSessionHandleBytes() { java.lang.Object ref = sessionHandle_; if (ref instanceof java.lang.String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); sessionHandle_ = b; return b; } else { return (com.github.os72.protobuf351.ByteString) ref; } } public static final int HANDLE_FIELD_NUMBER = 2; private long handle_; /** *
   * REQUIRED: handle must be returned by a MakeCallable call to the same
   * master service.
   * 
* * int64 handle = 2; */ public long getHandle() { return handle_; } public static final int FEED_FIELD_NUMBER = 3; private java.util.List feed_; /** *
   * Values of the tensors passed as arguments to the callable, in the order
   * defined in the CallableOptions.feed field passed to MakeCallable.
   * 
* * repeated .tensorflow.TensorProto feed = 3; */ public java.util.List getFeedList() { return feed_; } /** *
   * Values of the tensors passed as arguments to the callable, in the order
   * defined in the CallableOptions.feed field passed to MakeCallable.
   * 
* * repeated .tensorflow.TensorProto feed = 3; */ public java.util.List getFeedOrBuilderList() { return feed_; } /** *
   * Values of the tensors passed as arguments to the callable, in the order
   * defined in the CallableOptions.feed field passed to MakeCallable.
   * 
* * repeated .tensorflow.TensorProto feed = 3; */ public int getFeedCount() { return feed_.size(); } /** *
   * Values of the tensors passed as arguments to the callable, in the order
   * defined in the CallableOptions.feed field passed to MakeCallable.
   * 
* * repeated .tensorflow.TensorProto feed = 3; */ public org.tensorflow.framework.TensorProto getFeed(int index) { return feed_.get(index); } /** *
   * Values of the tensors passed as arguments to the callable, in the order
   * defined in the CallableOptions.feed field passed to MakeCallable.
   * 
* * repeated .tensorflow.TensorProto feed = 3; */ public org.tensorflow.framework.TensorProtoOrBuilder getFeedOrBuilder( int index) { return feed_.get(index); } 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.github.os72.protobuf351.CodedOutputStream output) throws java.io.IOException { if (!getSessionHandleBytes().isEmpty()) { com.github.os72.protobuf351.GeneratedMessageV3.writeString(output, 1, sessionHandle_); } if (handle_ != 0L) { output.writeInt64(2, handle_); } for (int i = 0; i < feed_.size(); i++) { output.writeMessage(3, feed_.get(i)); } unknownFields.writeTo(output); } public int getSerializedSize() { int size = memoizedSize; if (size != -1) return size; size = 0; if (!getSessionHandleBytes().isEmpty()) { size += com.github.os72.protobuf351.GeneratedMessageV3.computeStringSize(1, sessionHandle_); } if (handle_ != 0L) { size += com.github.os72.protobuf351.CodedOutputStream .computeInt64Size(2, handle_); } for (int i = 0; i < feed_.size(); i++) { size += com.github.os72.protobuf351.CodedOutputStream .computeMessageSize(3, feed_.get(i)); } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; } @java.lang.Override public boolean equals(final java.lang.Object obj) { if (obj == this) { return true; } if (!(obj instanceof org.tensorflow.distruntime.RunCallableRequest)) { return super.equals(obj); } org.tensorflow.distruntime.RunCallableRequest other = (org.tensorflow.distruntime.RunCallableRequest) obj; boolean result = true; result = result && getSessionHandle() .equals(other.getSessionHandle()); result = result && (getHandle() == other.getHandle()); result = result && getFeedList() .equals(other.getFeedList()); result = result && unknownFields.equals(other.unknownFields); return result; } @java.lang.Override public int hashCode() { if (memoizedHashCode != 0) { return memoizedHashCode; } int hash = 41; hash = (19 * hash) + getDescriptor().hashCode(); hash = (37 * hash) + SESSION_HANDLE_FIELD_NUMBER; hash = (53 * hash) + getSessionHandle().hashCode(); hash = (37 * hash) + HANDLE_FIELD_NUMBER; hash = (53 * hash) + com.github.os72.protobuf351.Internal.hashLong( getHandle()); if (getFeedCount() > 0) { hash = (37 * hash) + FEED_FIELD_NUMBER; hash = (53 * hash) + getFeedList().hashCode(); } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; } public static org.tensorflow.distruntime.RunCallableRequest parseFrom( java.nio.ByteBuffer data) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.distruntime.RunCallableRequest parseFrom( java.nio.ByteBuffer data, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.distruntime.RunCallableRequest parseFrom( com.github.os72.protobuf351.ByteString data) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.distruntime.RunCallableRequest parseFrom( com.github.os72.protobuf351.ByteString data, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.distruntime.RunCallableRequest parseFrom(byte[] data) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data); } public static org.tensorflow.distruntime.RunCallableRequest parseFrom( byte[] data, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return PARSER.parseFrom(data, extensionRegistry); } public static org.tensorflow.distruntime.RunCallableRequest parseFrom(java.io.InputStream input) throws java.io.IOException { return com.github.os72.protobuf351.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.distruntime.RunCallableRequest parseFrom( java.io.InputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.github.os72.protobuf351.GeneratedMessageV3 .parseWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.distruntime.RunCallableRequest parseDelimitedFrom(java.io.InputStream input) throws java.io.IOException { return com.github.os72.protobuf351.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input); } public static org.tensorflow.distruntime.RunCallableRequest parseDelimitedFrom( java.io.InputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.github.os72.protobuf351.GeneratedMessageV3 .parseDelimitedWithIOException(PARSER, input, extensionRegistry); } public static org.tensorflow.distruntime.RunCallableRequest parseFrom( com.github.os72.protobuf351.CodedInputStream input) throws java.io.IOException { return com.github.os72.protobuf351.GeneratedMessageV3 .parseWithIOException(PARSER, input); } public static org.tensorflow.distruntime.RunCallableRequest parseFrom( com.github.os72.protobuf351.CodedInputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { return com.github.os72.protobuf351.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.RunCallableRequest 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.github.os72.protobuf351.GeneratedMessageV3.BuilderParent parent) { Builder builder = new Builder(parent); return builder; } /** * Protobuf type {@code tensorflow.RunCallableRequest} */ public static final class Builder extends com.github.os72.protobuf351.GeneratedMessageV3.Builder implements // @@protoc_insertion_point(builder_implements:tensorflow.RunCallableRequest) org.tensorflow.distruntime.RunCallableRequestOrBuilder { public static final com.github.os72.protobuf351.Descriptors.Descriptor getDescriptor() { return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_RunCallableRequest_descriptor; } protected com.github.os72.protobuf351.GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable() { return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_RunCallableRequest_fieldAccessorTable .ensureFieldAccessorsInitialized( org.tensorflow.distruntime.RunCallableRequest.class, org.tensorflow.distruntime.RunCallableRequest.Builder.class); } // Construct using org.tensorflow.distruntime.RunCallableRequest.newBuilder() private Builder() { maybeForceBuilderInitialization(); } private Builder( com.github.os72.protobuf351.GeneratedMessageV3.BuilderParent parent) { super(parent); maybeForceBuilderInitialization(); } private void maybeForceBuilderInitialization() { if (com.github.os72.protobuf351.GeneratedMessageV3 .alwaysUseFieldBuilders) { getFeedFieldBuilder(); } } public Builder clear() { super.clear(); sessionHandle_ = ""; handle_ = 0L; if (feedBuilder_ == null) { feed_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000004); } else { feedBuilder_.clear(); } return this; } public com.github.os72.protobuf351.Descriptors.Descriptor getDescriptorForType() { return org.tensorflow.distruntime.DistributedRuntimeProtos.internal_static_tensorflow_RunCallableRequest_descriptor; } public org.tensorflow.distruntime.RunCallableRequest getDefaultInstanceForType() { return org.tensorflow.distruntime.RunCallableRequest.getDefaultInstance(); } public org.tensorflow.distruntime.RunCallableRequest build() { org.tensorflow.distruntime.RunCallableRequest result = buildPartial(); if (!result.isInitialized()) { throw newUninitializedMessageException(result); } return result; } public org.tensorflow.distruntime.RunCallableRequest buildPartial() { org.tensorflow.distruntime.RunCallableRequest result = new org.tensorflow.distruntime.RunCallableRequest(this); int from_bitField0_ = bitField0_; int to_bitField0_ = 0; result.sessionHandle_ = sessionHandle_; result.handle_ = handle_; if (feedBuilder_ == null) { if (((bitField0_ & 0x00000004) == 0x00000004)) { feed_ = java.util.Collections.unmodifiableList(feed_); bitField0_ = (bitField0_ & ~0x00000004); } result.feed_ = feed_; } else { result.feed_ = feedBuilder_.build(); } result.bitField0_ = to_bitField0_; onBuilt(); return result; } public Builder clone() { return (Builder) super.clone(); } public Builder setField( com.github.os72.protobuf351.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.setField(field, value); } public Builder clearField( com.github.os72.protobuf351.Descriptors.FieldDescriptor field) { return (Builder) super.clearField(field); } public Builder clearOneof( com.github.os72.protobuf351.Descriptors.OneofDescriptor oneof) { return (Builder) super.clearOneof(oneof); } public Builder setRepeatedField( com.github.os72.protobuf351.Descriptors.FieldDescriptor field, int index, java.lang.Object value) { return (Builder) super.setRepeatedField(field, index, value); } public Builder addRepeatedField( com.github.os72.protobuf351.Descriptors.FieldDescriptor field, java.lang.Object value) { return (Builder) super.addRepeatedField(field, value); } public Builder mergeFrom(com.github.os72.protobuf351.Message other) { if (other instanceof org.tensorflow.distruntime.RunCallableRequest) { return mergeFrom((org.tensorflow.distruntime.RunCallableRequest)other); } else { super.mergeFrom(other); return this; } } public Builder mergeFrom(org.tensorflow.distruntime.RunCallableRequest other) { if (other == org.tensorflow.distruntime.RunCallableRequest.getDefaultInstance()) return this; if (!other.getSessionHandle().isEmpty()) { sessionHandle_ = other.sessionHandle_; onChanged(); } if (other.getHandle() != 0L) { setHandle(other.getHandle()); } if (feedBuilder_ == null) { if (!other.feed_.isEmpty()) { if (feed_.isEmpty()) { feed_ = other.feed_; bitField0_ = (bitField0_ & ~0x00000004); } else { ensureFeedIsMutable(); feed_.addAll(other.feed_); } onChanged(); } } else { if (!other.feed_.isEmpty()) { if (feedBuilder_.isEmpty()) { feedBuilder_.dispose(); feedBuilder_ = null; feed_ = other.feed_; bitField0_ = (bitField0_ & ~0x00000004); feedBuilder_ = com.github.os72.protobuf351.GeneratedMessageV3.alwaysUseFieldBuilders ? getFeedFieldBuilder() : null; } else { feedBuilder_.addAllMessages(other.feed_); } } } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; } public final boolean isInitialized() { return true; } public Builder mergeFrom( com.github.os72.protobuf351.CodedInputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws java.io.IOException { org.tensorflow.distruntime.RunCallableRequest parsedMessage = null; try { parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); } catch (com.github.os72.protobuf351.InvalidProtocolBufferException e) { parsedMessage = (org.tensorflow.distruntime.RunCallableRequest) e.getUnfinishedMessage(); throw e.unwrapIOException(); } finally { if (parsedMessage != null) { mergeFrom(parsedMessage); } } return this; } private int bitField0_; private java.lang.Object sessionHandle_ = ""; /** *
     * REQUIRED: session_handle must be returned by a CreateSession call
     * to the same master service.
     * 
* * string session_handle = 1; */ public java.lang.String getSessionHandle() { java.lang.Object ref = sessionHandle_; if (!(ref instanceof java.lang.String)) { com.github.os72.protobuf351.ByteString bs = (com.github.os72.protobuf351.ByteString) ref; java.lang.String s = bs.toStringUtf8(); sessionHandle_ = s; return s; } else { return (java.lang.String) ref; } } /** *
     * REQUIRED: session_handle must be returned by a CreateSession call
     * to the same master service.
     * 
* * string session_handle = 1; */ public com.github.os72.protobuf351.ByteString getSessionHandleBytes() { java.lang.Object ref = sessionHandle_; if (ref instanceof String) { com.github.os72.protobuf351.ByteString b = com.github.os72.protobuf351.ByteString.copyFromUtf8( (java.lang.String) ref); sessionHandle_ = b; return b; } else { return (com.github.os72.protobuf351.ByteString) ref; } } /** *
     * REQUIRED: session_handle must be returned by a CreateSession call
     * to the same master service.
     * 
* * string session_handle = 1; */ public Builder setSessionHandle( java.lang.String value) { if (value == null) { throw new NullPointerException(); } sessionHandle_ = value; onChanged(); return this; } /** *
     * REQUIRED: session_handle must be returned by a CreateSession call
     * to the same master service.
     * 
* * string session_handle = 1; */ public Builder clearSessionHandle() { sessionHandle_ = getDefaultInstance().getSessionHandle(); onChanged(); return this; } /** *
     * REQUIRED: session_handle must be returned by a CreateSession call
     * to the same master service.
     * 
* * string session_handle = 1; */ public Builder setSessionHandleBytes( com.github.os72.protobuf351.ByteString value) { if (value == null) { throw new NullPointerException(); } checkByteStringIsUtf8(value); sessionHandle_ = value; onChanged(); return this; } private long handle_ ; /** *
     * REQUIRED: handle must be returned by a MakeCallable call to the same
     * master service.
     * 
* * int64 handle = 2; */ public long getHandle() { return handle_; } /** *
     * REQUIRED: handle must be returned by a MakeCallable call to the same
     * master service.
     * 
* * int64 handle = 2; */ public Builder setHandle(long value) { handle_ = value; onChanged(); return this; } /** *
     * REQUIRED: handle must be returned by a MakeCallable call to the same
     * master service.
     * 
* * int64 handle = 2; */ public Builder clearHandle() { handle_ = 0L; onChanged(); return this; } private java.util.List feed_ = java.util.Collections.emptyList(); private void ensureFeedIsMutable() { if (!((bitField0_ & 0x00000004) == 0x00000004)) { feed_ = new java.util.ArrayList(feed_); bitField0_ |= 0x00000004; } } private com.github.os72.protobuf351.RepeatedFieldBuilderV3< org.tensorflow.framework.TensorProto, org.tensorflow.framework.TensorProto.Builder, org.tensorflow.framework.TensorProtoOrBuilder> feedBuilder_; /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public java.util.List getFeedList() { if (feedBuilder_ == null) { return java.util.Collections.unmodifiableList(feed_); } else { return feedBuilder_.getMessageList(); } } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public int getFeedCount() { if (feedBuilder_ == null) { return feed_.size(); } else { return feedBuilder_.getCount(); } } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public org.tensorflow.framework.TensorProto getFeed(int index) { if (feedBuilder_ == null) { return feed_.get(index); } else { return feedBuilder_.getMessage(index); } } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public Builder setFeed( int index, org.tensorflow.framework.TensorProto value) { if (feedBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFeedIsMutable(); feed_.set(index, value); onChanged(); } else { feedBuilder_.setMessage(index, value); } return this; } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public Builder setFeed( int index, org.tensorflow.framework.TensorProto.Builder builderForValue) { if (feedBuilder_ == null) { ensureFeedIsMutable(); feed_.set(index, builderForValue.build()); onChanged(); } else { feedBuilder_.setMessage(index, builderForValue.build()); } return this; } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public Builder addFeed(org.tensorflow.framework.TensorProto value) { if (feedBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFeedIsMutable(); feed_.add(value); onChanged(); } else { feedBuilder_.addMessage(value); } return this; } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public Builder addFeed( int index, org.tensorflow.framework.TensorProto value) { if (feedBuilder_ == null) { if (value == null) { throw new NullPointerException(); } ensureFeedIsMutable(); feed_.add(index, value); onChanged(); } else { feedBuilder_.addMessage(index, value); } return this; } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public Builder addFeed( org.tensorflow.framework.TensorProto.Builder builderForValue) { if (feedBuilder_ == null) { ensureFeedIsMutable(); feed_.add(builderForValue.build()); onChanged(); } else { feedBuilder_.addMessage(builderForValue.build()); } return this; } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public Builder addFeed( int index, org.tensorflow.framework.TensorProto.Builder builderForValue) { if (feedBuilder_ == null) { ensureFeedIsMutable(); feed_.add(index, builderForValue.build()); onChanged(); } else { feedBuilder_.addMessage(index, builderForValue.build()); } return this; } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public Builder addAllFeed( java.lang.Iterable values) { if (feedBuilder_ == null) { ensureFeedIsMutable(); com.github.os72.protobuf351.AbstractMessageLite.Builder.addAll( values, feed_); onChanged(); } else { feedBuilder_.addAllMessages(values); } return this; } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public Builder clearFeed() { if (feedBuilder_ == null) { feed_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000004); onChanged(); } else { feedBuilder_.clear(); } return this; } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public Builder removeFeed(int index) { if (feedBuilder_ == null) { ensureFeedIsMutable(); feed_.remove(index); onChanged(); } else { feedBuilder_.remove(index); } return this; } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public org.tensorflow.framework.TensorProto.Builder getFeedBuilder( int index) { return getFeedFieldBuilder().getBuilder(index); } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public org.tensorflow.framework.TensorProtoOrBuilder getFeedOrBuilder( int index) { if (feedBuilder_ == null) { return feed_.get(index); } else { return feedBuilder_.getMessageOrBuilder(index); } } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public java.util.List getFeedOrBuilderList() { if (feedBuilder_ != null) { return feedBuilder_.getMessageOrBuilderList(); } else { return java.util.Collections.unmodifiableList(feed_); } } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public org.tensorflow.framework.TensorProto.Builder addFeedBuilder() { return getFeedFieldBuilder().addBuilder( org.tensorflow.framework.TensorProto.getDefaultInstance()); } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public org.tensorflow.framework.TensorProto.Builder addFeedBuilder( int index) { return getFeedFieldBuilder().addBuilder( index, org.tensorflow.framework.TensorProto.getDefaultInstance()); } /** *
     * Values of the tensors passed as arguments to the callable, in the order
     * defined in the CallableOptions.feed field passed to MakeCallable.
     * 
* * repeated .tensorflow.TensorProto feed = 3; */ public java.util.List getFeedBuilderList() { return getFeedFieldBuilder().getBuilderList(); } private com.github.os72.protobuf351.RepeatedFieldBuilderV3< org.tensorflow.framework.TensorProto, org.tensorflow.framework.TensorProto.Builder, org.tensorflow.framework.TensorProtoOrBuilder> getFeedFieldBuilder() { if (feedBuilder_ == null) { feedBuilder_ = new com.github.os72.protobuf351.RepeatedFieldBuilderV3< org.tensorflow.framework.TensorProto, org.tensorflow.framework.TensorProto.Builder, org.tensorflow.framework.TensorProtoOrBuilder>( feed_, ((bitField0_ & 0x00000004) == 0x00000004), getParentForChildren(), isClean()); feed_ = null; } return feedBuilder_; } public final Builder setUnknownFields( final com.github.os72.protobuf351.UnknownFieldSet unknownFields) { return super.setUnknownFieldsProto3(unknownFields); } public final Builder mergeUnknownFields( final com.github.os72.protobuf351.UnknownFieldSet unknownFields) { return super.mergeUnknownFields(unknownFields); } // @@protoc_insertion_point(builder_scope:tensorflow.RunCallableRequest) } // @@protoc_insertion_point(class_scope:tensorflow.RunCallableRequest) private static final org.tensorflow.distruntime.RunCallableRequest DEFAULT_INSTANCE; static { DEFAULT_INSTANCE = new org.tensorflow.distruntime.RunCallableRequest(); } public static org.tensorflow.distruntime.RunCallableRequest getDefaultInstance() { return DEFAULT_INSTANCE; } private static final com.github.os72.protobuf351.Parser PARSER = new com.github.os72.protobuf351.AbstractParser() { public RunCallableRequest parsePartialFrom( com.github.os72.protobuf351.CodedInputStream input, com.github.os72.protobuf351.ExtensionRegistryLite extensionRegistry) throws com.github.os72.protobuf351.InvalidProtocolBufferException { return new RunCallableRequest(input, extensionRegistry); } }; public static com.github.os72.protobuf351.Parser parser() { return PARSER; } @java.lang.Override public com.github.os72.protobuf351.Parser getParserForType() { return PARSER; } public org.tensorflow.distruntime.RunCallableRequest getDefaultInstanceForType() { return DEFAULT_INSTANCE; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy