Beispiel #1
0
        public void MergeFrom(pb::CodedInputStream input)
        {
    #if !GOOGLE_PROTOBUF_REFSTRUCT_COMPATIBILITY_MODE
            input.ReadRawMessage(this);
    #else
            uint tag;
            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 10: {
                    if (inputs_ == null)
                    {
                        Inputs = new global::Google.Cloud.AIPlatform.V1.Schema.TrainingJob.Definition.AutoMlImageObjectDetectionInputs();
                    }
                    input.ReadMessage(Inputs);
                    break;
                }

                case 18: {
                    if (metadata_ == null)
                    {
                        Metadata = new global::Google.Cloud.AIPlatform.V1.Schema.TrainingJob.Definition.AutoMlImageObjectDetectionMetadata();
                    }
                    input.ReadMessage(Metadata);
                    break;
                }
                }
            }
    #endif
        }
Beispiel #2
0
        void pb::IBufferMessage.InternalMergeFrom(ref pb::ParseContext input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, ref input);
                    break;

                case 10: {
                    if (inputs_ == null)
                    {
                        Inputs = new global::Google.Cloud.AIPlatform.V1.Schema.TrainingJob.Definition.AutoMlImageObjectDetectionInputs();
                    }
                    input.ReadMessage(Inputs);
                    break;
                }

                case 18: {
                    if (metadata_ == null)
                    {
                        Metadata = new global::Google.Cloud.AIPlatform.V1.Schema.TrainingJob.Definition.AutoMlImageObjectDetectionMetadata();
                    }
                    input.ReadMessage(Metadata);
                    break;
                }
                }
            }
        }
Beispiel #3
0
 public void MergeFrom(AutoMlImageObjectDetection other)
 {
     if (other == null)
     {
         return;
     }
     if (other.inputs_ != null)
     {
         if (inputs_ == null)
         {
             Inputs = new global::Google.Cloud.AIPlatform.V1.Schema.TrainingJob.Definition.AutoMlImageObjectDetectionInputs();
         }
         Inputs.MergeFrom(other.Inputs);
     }
     if (other.metadata_ != null)
     {
         if (metadata_ == null)
         {
             Metadata = new global::Google.Cloud.AIPlatform.V1.Schema.TrainingJob.Definition.AutoMlImageObjectDetectionMetadata();
         }
         Metadata.MergeFrom(other.Metadata);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }