{"commit":"8f3ab4ef69d5ce82fd1b2d792e8e604e45712113","old_file":"proto_defs\/trace_message\/TraceMessage.proto","new_file":"proto_defs\/trace_message\/TraceMessage.proto","old_contents":"message TraceMessage {\n required string act_id=1;\n required string msg=2;\n required int32 flags=3;\n}\n","new_contents":"message TraceMessage {\n required string act_id=1;\n required string msg=2;\n required uint64 ts_origin=3;\n required int32 flags=4;\n}\n","subject":"Add the local timestamp to the Trace Message","message":"Add the local timestamp to the Trace Message\n","lang":"Protocol Buffer","license":"mit","repos":"jamessnee\/clacks,jamessnee\/clacks,jamessnee\/clacks"} {"commit":"d2b0c5d45b52df4238dbf4152acb0c0ea543fa62","old_file":"proto\/google\/events\/cloud\/scheduler\/v1\/events.proto","new_file":"proto\/google\/events\/cloud\/scheduler\/v1\/events.proto","old_contents":"\/\/ Copyright 2020 Google LLC\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.events.cloud.scheduler.v1;\n\noption csharp_namespace = \"Google.Events.Protobuf.Cloud.Scheduler.V1\";\n\nimport \"google\/events\/cloudevent.proto\";\nimport \"google\/protobuf\/timestamp.proto\";\n\n\/\/ The CloudEvent raised when a Scheduler job is executed.\nmessage JobExecutedEvent {\n option (google.events.cloud_event_type) =\n \"google.cloud.scheduler.job.v1.executed\";\n\n \/\/ The data associated with the event.\n SchedulerData data = 1;\n}\n\n\/\/ Scheduler event data.\nmessage SchedulerData {\n \/\/ The custom data the user specified when creating the scheduler source.\n bytes custom_data = 1;\n\n \/\/ The time at which the job was executed, populated by the server.\n google.protobuf.Timestamp execution_time = 2;\n}","new_contents":"\/\/ Copyright 2020 Google LLC\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.events.cloud.scheduler.v1;\n\noption csharp_namespace = \"Google.Events.Protobuf.Cloud.Scheduler.V1\";\n\nimport \"google\/events\/cloudevent.proto\";\nimport \"google\/protobuf\/timestamp.proto\";\n\n\/\/ The CloudEvent raised when a Scheduler job is executed.\nmessage JobExecutedEvent {\n option (google.events.cloud_event_type) =\n \"google.cloud.scheduler.job.v1.executed\";\n\n \/\/ The data associated with the event.\n SchedulerData data = 1;\n}\n\n\/\/ Scheduler event data.\nmessage SchedulerData {\n \/\/ The custom data the user specified when creating the scheduler source.\n bytes custom_data = 1;\n}","subject":"Remove execution time from scheduler schema","message":"Remove execution time from scheduler schema\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"googleapis\/google-cloudevents,googleapis\/google-cloudevents,googleapis\/google-cloudevents"} {"commit":"de90e9fc416b89778e6bdfc9fb1ba3f3c73bc90e","old_file":"proto\/dclauth\/revoked_account.proto","new_file":"proto\/dclauth\/revoked_account.proto","old_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.dclauth;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/dclauth\/types\";\n\nimport \"gogoproto\/gogo.proto\";\nimport \"dclauth\/account.proto\";\nimport \"dclauth\/grant.proto\";\n\nmessage RevokedAccount {\n Account account = 1 [(gogoproto.embed) = true]; \n repeated Grant revoke_approvals = 2;\n}\n\n","new_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.dclauth;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/dclauth\/types\";\n\nimport \"gogoproto\/gogo.proto\";\nimport \"dclauth\/account.proto\";\nimport \"dclauth\/grant.proto\";\n\nmessage RevokedAccount {\n Account account = 1 [(gogoproto.embed) = true]; \n repeated Grant revokeApprovals = 2;\n}\n\n","subject":"Change variable name in protofile","message":"Change variable name in protofile\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger"} {"commit":"6b7d61d7db5581fedc105d0e38b0d438158127c1","old_file":"Cura.proto","new_file":"Cura.proto","old_contents":"syntax = \"proto3\";\n\npackage Cura;\n\n\/\/ typeid 1\nmessage ObjectList {\n repeated Object objects = 1;\n}\n\nmessage Object {\n int64 id = 1;\n bytes vertices = 2; \/\/An array of 3 floats.\n bytes normals = 3; \/\/An array of 3 floats.\n bytes indices = 4; \/\/An array of ints.\n}\n\n\/\/ typeid 3\nmessage Progress {\n float amount = 1;\n}\n\n\/\/ typeid 2\nmessage SlicedObjectList {\n repeated SlicedObject objects = 1;\n}\n\nmessage SlicedObject {\n int64 id = 1;\n\n repeated Layer layers = 2;\n}\n\nmessage Layer {\n int32 id = 1;\n repeated Polygon polygons = 2;\n}\n\nmessage Polygon {\n enum Type {\n NoneType = 0;\n Inset0Type = 1;\n InsetXType = 2;\n SkinType = 3;\n SupportType = 4;\n SkirtType = 5;\n }\n Type type = 1;\n bytes points = 2;\n}\n\n\/\/ typeid 4\nmessage GCode {\n string filename = 1;\n}\n\n\/\/ typeid 5\nmessage ObjectPrintTime {\n int64 id = 1;\n float time = 2;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage Cura;\n\n\/\/ typeid 1\nmessage ObjectList {\n repeated Object objects = 1;\n}\n\nmessage Object {\n int64 id = 1;\n bytes vertices = 2; \/\/An array of 3 floats.\n bytes normals = 3; \/\/An array of 3 floats.\n bytes indices = 4; \/\/An array of ints.\n}\n\n\/\/ typeid 3\nmessage Progress {\n float amount = 1;\n}\n\n\/\/ typeid 2\nmessage SlicedObjectList {\n repeated SlicedObject objects = 1;\n}\n\nmessage SlicedObject {\n int64 id = 1;\n\n repeated Layer layers = 2;\n}\n\nmessage Layer {\n int32 id = 1;\n repeated Polygon polygons = 2;\n}\n\nmessage Polygon {\n enum Type {\n NoneType = 0;\n Inset0Type = 1;\n InsetXType = 2;\n SkinType = 3;\n SupportType = 4;\n SkirtType = 5;\n }\n Type type = 1;\n bytes points = 2;\n}\n\n\/\/ typeid 4\nmessage GCode {\n string filename = 1;\n}\n\n\/\/ typeid 5\nmessage ObjectPrintTime {\n int64 id = 1;\n float time = 2;\n}\n\n\/\/ typeid 6\nmessage SettingList {\n repeated Setting settings = 1;\n}\n\nmessage Setting {\n string name = 1;\n\n bytes value = 2;\n}\n","subject":"Add SettingList and Setting messages to the protocol","message":"Add SettingList and Setting messages to the protocol\n","lang":"Protocol Buffer","license":"agpl-3.0","repos":"foosel\/CuraEngine,alephobjects\/CuraEngine,mspark93\/CuraEngine,fxtentacle\/CuraEngine,foosel\/CuraEngine,fxtentacle\/CuraEngine,pratikshashroff\/pcura,totalretribution\/CuraEngine,foosel\/CuraEngine,Ultimaker\/CuraEngine,alex1818\/CuraEngine,alex1818\/CuraEngine,patrick3coffee\/CuraTinyG,mspark93\/CuraEngine,uus169\/CuraEngine,jacobdai\/CuraEngine-1,alephobjects\/CuraEngine,derekhe\/CuraEngine,ROBO3D\/CuraEngine,totalretribution\/CuraEngine,jacobdai\/CuraEngine-1,jacobdai\/CuraEngine-1,totalretribution\/CuraEngine,derekhe\/CuraEngine,markwal\/CuraEngine,mspark93\/CuraEngine,Ultimaker\/CuraEngine,alex1818\/CuraEngine,pratikshashroff\/pcura,patrick3coffee\/CuraTinyG,pratikshashroff\/pcura,markwal\/CuraEngine,fxtentacle\/CuraEngine,derekhe\/CuraEngine,uus169\/CuraEngine,uus169\/CuraEngine,electrocbd\/CuraEngine,electrocbd\/CuraEngine,electrocbd\/CuraEngine,ROBO3D\/CuraEngine,markwal\/CuraEngine,patrick3coffee\/CuraTinyG,ROBO3D\/CuraEngine,alephobjects\/CuraEngine"} {"commit":"28b8abab71c1523af47c1aef375da829cf5181bd","old_file":"proto\/otmp_meta_proto.proto","new_file":"proto\/otmp_meta_proto.proto","old_contents":"message meta {\n required msgtype type = 1;\n required bytes msg = 2;\n}\n\nenum msgtype {\n meta = 0;\n ping = 1;\n pong = 2;\n connect = 3;\n disconnect = 4;\n connect_resp = 5;\n force_disconnect = 6;\n client_egress_chat_msg = 7;\n server_egress_chat_msg = 8;\n}\n","new_contents":"message meta {\n enum msgtype {\n meta = 0;\n ping = 1;\n pong = 2;\n connect = 3;\n disconnect = 4;\n connect_resp = 5;\n force_disconnect = 6;\n client_egress_chat_msg = 7;\n server_egress_chat_msg = 8;\n }\n required msgtype type = 1;\n required bytes msg = 2;\n}\n","subject":"Move the msgtype enum out of the root namespace","message":"Move the msgtype enum out of the root namespace\n","lang":"Protocol Buffer","license":"mit","repos":"otmp\/otmp-server"} {"commit":"95cedd98da877e720bd48aa0e9c6e313612c2f84","old_file":"tensorflow_serving\/apis\/model.proto","new_file":"tensorflow_serving\/apis\/model.proto","old_contents":"syntax = \"proto3\";\n\npackage tensorflow.serving;\noption cc_enable_arenas = true;\n\nimport \"google\/protobuf\/wrappers.proto\";\n\n\/\/ Metadata for an inference request such as the model name and version.\nmessage ModelSpec {\n \/\/ Required servable name.\n string name = 1;\n\n \/\/ Optional version. If unspecified, will use the latest (numerical) version.\n \/\/ Typically not needed unless coordinating across multiple models that were\n \/\/ co-trained and\/or have inter-dependencies on the versions used at inference\n \/\/ time.\n google.protobuf.Int64Value version = 2;\n\n \/\/ A named signature to evaluate. If unspecified, the default signature will\n \/\/ be used. Note that only MultiInference will initially support this.\n string signature_name = 3;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage tensorflow.serving;\noption cc_enable_arenas = true;\n\nimport \"google\/protobuf\/wrappers.proto\";\n\n\/\/ Metadata for an inference request such as the model name and version.\nmessage ModelSpec {\n \/\/ Required servable name.\n string name = 1;\n\n \/\/ Optional version. If unspecified, will use the latest (numerical) version.\n \/\/ Typically not needed unless coordinating across multiple models that were\n \/\/ co-trained and\/or have inter-dependencies on the versions used at inference\n \/\/ time.\n google.protobuf.Int64Value version = 2;\n\n \/\/ A named signature to evaluate. If unspecified, the default signature will\n \/\/ be used.\n string signature_name = 3;\n}\n","subject":"Update outdated comment now that all functions in the Prediction API support signature_name. Change: 158580011","message":"Update outdated comment now that all functions in the Prediction API support signature_name.\nChange: 158580011\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"sreddybr3\/serving,penguin138\/serving,tensorflow\/serving,tensorflow\/serving,penguin138\/serving,tensorflow\/serving,sreddybr3\/serving,penguin138\/serving,sreddybr3\/serving,sreddybr3\/serving,penguin138\/serving,tensorflow\/serving"} {"commit":"12cde3a3d73641314f6d11585b5136bd328a67af","old_file":"signalfuse-protoc\/src\/main\/protobuf\/signal_fuse_protocol_buffers.proto","new_file":"signalfuse-protoc\/src\/main\/protobuf\/signal_fuse_protocol_buffers.proto","old_contents":"package com.signalfuse.metrics.protobuf;\n\nenum MetricType {\n \/**\n * Numerical: Periodic, instantaneous measurement of some state.\n *\/\n GAUGE = 0;\n \/**\n * Numerical: Count of occurrences. Generally non-negative integers.\n *\/\n COUNTER = 1;\n \/**\n * String: Used for non-continuous quantities (that is, measurements where there is a fixed\n * set of meaningful values). This is essentially a special case of gauge.\n *\/\n ENUM = 2;\n \/**\n * Tracks a value that increases over time, where only the difference is important.\n *\/\n CUMULATIVE_COUNTER =3;\n}\n\n\nmessage Datum {\n optional string strValue = 1;\n optional double doubleValue = 2;\n optional int64 intValue = 3;\n}\n\nmessage DataPoint {\n optional string source = 1;\n optional string metric = 2;\n optional int64 timestamp = 3;\n optional Datum value = 4;\n optional MetricType metricType = 5;\n}\n\nmessage PointValue {\n optional int64 timestamp = 3;\n optional Datum value = 4;\n}\n","new_contents":"package com.signalfuse.metrics.protobuf;\n\nenum MetricType {\n \/**\n * Numerical: Periodic, instantaneous measurement of some state.\n *\/\n GAUGE = 0;\n \/**\n * Numerical: Count of occurrences. Generally non-negative integers.\n *\/\n COUNTER = 1;\n \/**\n * String: Used for non-continuous quantities (that is, measurements where there is a fixed\n * set of meaningful values). This is essentially a special case of gauge.\n *\/\n ENUM = 2;\n \/**\n * Tracks a value that increases over time, where only the difference is important.\n *\/\n CUMULATIVE_COUNTER =3;\n}\n\n\nmessage Datum {\n optional string strValue = 1;\n optional double doubleValue = 2;\n optional int64 intValue = 3;\n}\n\nmessage Dimension {\n optional string key = 1;\n optional string value = 2;\n}\n\nmessage DataPoint {\n optional string source = 1;\n optional string metric = 2;\n optional int64 timestamp = 3;\n optional Datum value = 4;\n optional MetricType metricType = 5;\n repeated Dimension dimensions = 6;\n}\n\nmessage DataPointUploadMessage {\n repeated DataPoint datapoints = 1;\n}\n\nmessage PointValue {\n optional int64 timestamp = 3;\n optional Datum value = 4;\n}\n","subject":"Add dimensions to protocol buffer","message":"Add dimensions to protocol buffer\n\nSummary: Dimensions in protocol buffer\n\nTest Plan: compile\n\nReviewers: kris, arijit, psi, tedo\n\nReviewed By: psi, tedo\n\nSubscribers: Diffs_emails\n\nDifferential Revision: http:\/\/phabricator.signalfuse.com\/D3201\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"signalfx\/signalfx-java,lganzzzo\/signalfx-java,lganzzzo\/signalfx-java,lganzzzo\/signalfx-java,signalfx\/signalfx-java,signalfx\/signalfx-java"} {"commit":"cd70f403808acb51f7628501da84d604f8d274c5","old_file":"envelope.proto","new_file":"envelope.proto","old_contents":"syntax = \"proto3\";\n\npackage io.intoto;\n\n\/\/ An authenticated message of arbitrary type.\nmessage Envelope {\n \/\/ Message to be signed. (In JSON, this is encoded as base64.)\n bytes payload = 1;\n\n \/\/ String unambiguously identifying how to interpret payload.\n string payloadType = 2;\n\n \/\/ Signature over:\n \/\/ le64(2) || le64(len(utf8(payloadType))) || utf8(payloadType) ||\n \/\/ le64(len(payload)) || payload\n \/\/ At least one signature must be present.\n repeated Signature signatures = 3;\n}\n\nmessage Signature {\n \/\/ Signature itself. (In JSON, this is encoded as base64.)\n bytes sig = 1;\n\n \/\/ *Unauthenticated* hint identifying which public key was used.\n string keyid = 2;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage io.intoto;\n\n\/\/ An authenticated message of arbitrary type.\nmessage Envelope {\n \/\/ Message to be signed. (In JSON, this is encoded as base64.)\n \/\/ REQUIRED.\n bytes payload = 1;\n\n \/\/ String unambiguously identifying how to interpret payload.\n \/\/ REQUIRED.\n string payloadType = 2;\n\n \/\/ Signature over:\n \/\/ le64(2) || le64(len(utf8(payloadType))) || utf8(payloadType) ||\n \/\/ le64(len(payload)) || payload\n \/\/ where:\n \/\/ le64(n) := 64-bit little-endian encoding of integer `n`, 0 <= n < 2^63\n \/\/ len(s) := number of octets in byte sequence `s`\n \/\/ utf8(s) := UTF-8 encoding of unicode string `s`\n \/\/ REQUIRED (length >= 1).\n repeated Signature signatures = 3;\n}\n\nmessage Signature {\n \/\/ Signature itself. (In JSON, this is encoded as base64.)\n \/\/ REQUIRED.\n bytes sig = 1;\n\n \/\/ *Unauthenticated* hint identifying which public key was used.\n \/\/ OPTIONAL.\n string keyid = 2;\n}\n","subject":"Add required\/optional and explain PAE.","message":"proto: Add required\/optional and explain PAE.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"secure-systems-lab\/dsse"} {"commit":"d356b057aa38ea088cedfe26f562b981171239fc","old_file":"openxc.proto","new_file":"openxc.proto","old_contents":"package openxc;\n\nmessage VehicleMessage {\n enum Type { RAW = 1; STRING = 2; NUM = 3; BOOL = 4; }\n\n optional Type type = 1;\n\n optional RawMessage raw_message = 2;\n optional TranslatedStringMessage string_message = 3;\n optional TranslatedNumericMessage numerical_message = 4;\n optional TranslatedBooleanMessage boolean_message = 5;\n}\n\nmessage RawMessage {\n optional uint32 message_id = 1;\n optional double data = 2;\n}\n\nmessage TranslatedStringMessage {\n optional string name = 1;\n optional string value = 2;\n}\n\nmessage TranslatedNumericMessage {\n optional string name = 1;\n optional double value = 2;\n}\n\nmessage TranslatedBooleanMessage {\n optional string name = 1;\n optional bool value = 2;\n}\n\n\/\/ TODO we should also consider having an enum type, h aving each specific\n\/\/ message defined as a protobuf\n","new_contents":"package openxc;\n\nmessage VehicleMessage {\n enum Type { RAW = 1; STRING = 2; NUM = 3; BOOL = 4; }\n\n optional Type type = 1;\n\n optional RawMessage raw_message = 2;\n optional TranslatedStringMessage string_message = 3;\n optional TranslatedNumericMessage numerical_message = 4;\n optional TranslatedBooleanMessage boolean_message = 5;\n}\n\nmessage RawMessage {\n optional int32 bus = 1;\n optional uint32 message_id = 2;\n optional sint64 data = 3;\n}\n\nmessage TranslatedStringMessage {\n optional string name = 1;\n optional string value = 2;\n}\n\nmessage TranslatedNumericMessage {\n optional string name = 1;\n optional double value = 2;\n}\n\nmessage TranslatedBooleanMessage {\n optional string name = 1;\n optional bool value = 2;\n}\n\n\/\/ TODO we should also consider having an enum type, h aving each specific\n\/\/ message defined as a protobuf\n","subject":"Add a bus field to RawMessage and make data an 64-bit int.","message":"Add a bus field to RawMessage and make data an 64-bit int.\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"openxc\/openxc-message-format,openxc\/openxc-message-format,mgiannikouris\/openxc-message-format,openxc\/openxc-message-format,mgiannikouris\/openxc-message-format,mgiannikouris\/openxc-message-format,mgiannikouris\/openxc-message-format"} {"commit":"50a0e911c4c2772ff422c6ad077c2d42eb88ec64","old_file":"src\/net\/instaweb\/rewriter\/critical_line_info.proto","new_file":"src\/net\/instaweb\/rewriter\/critical_line_info.proto","old_contents":"\/*\n * Copyright 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\n\/\/ Author: rahulbansal@google.com (Rahul Bansal)\n\/\/\n\/\/ Proto representing critical line information.\n\nsyntax = \"proto2\";\n\noption optimize_for = LITE_RUNTIME;\n\npackage net_instaweb;\n\n\/\/ Protobuf to encapsulate the information use by blink flow.\n\/\/ Next id = 3\nmessage CriticalLineInfo {\n \/\/ Panels that are below the critical line.\n repeated Panel panels = 1;\n \/\/ URLs of images above the critical line.\n repeated string critical_image_url = 2;\n}\n\nmessage Panel {\n \/\/ XPath identifying the start instance tag for the panel.\n required string start_xpath = 1;\n \/\/ XPath identifying the marker beyond instances of this panel.\n \/\/ The marker can be text\/comment\/tag\n \/\/ The marker is not part of the panel.\n optional string end_marker_xpath = 2;\n};\n","new_contents":"\/*\n * Copyright 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\n\/\/ Author: rahulbansal@google.com (Rahul Bansal)\n\/\/\n\/\/ Proto representing critical line information.\n\nsyntax = \"proto2\";\n\noption optimize_for = LITE_RUNTIME;\n\npackage net_instaweb;\n\n\/\/ Protobuf to encapsulate the information use by blink flow.\n\/\/ Next id = 4\nmessage CriticalLineInfo {\n \/\/ Panels that are below the critical line.\n repeated Panel panels = 1;\n \/\/ URLs of images above the critical line.\n repeated string critical_image_url = 2;\n \/\/ URLs of css background images above the critical line.\n repeated string css_critical_image_url = 3;\n}\n\nmessage Panel {\n \/\/ XPath identifying the start instance tag for the panel.\n required string start_xpath = 1;\n \/\/ XPath identifying the marker beyond instances of this panel.\n \/\/ The marker can be text\/comment\/tag\n \/\/ The marker is not part of the panel.\n optional string end_marker_xpath = 2;\n};\n","subject":"Add css critical images field to critical line proto.","message":"Add css critical images field to critical line proto.\n\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"jalonsoa\/mod_pagespeed,webscale-networks\/mod_pagespeed,jalonsoa\/mod_pagespeed,ajayanandgit\/mod_pagespeed,ajayanandgit\/mod_pagespeed,hashashin\/src,patricmutwiri\/mod_pagespeed,patricmutwiri\/mod_pagespeed,patricmutwiri\/mod_pagespeed,wanrui\/mod_pagespeed,patricmutwiri\/mod_pagespeed,hashashin\/src,hashashin\/src,VersoBit\/mod_pagespeed,VersoBit\/mod_pagespeed,webscale-networks\/mod_pagespeed,hashashin\/src,pagespeed\/mod_pagespeed,ajayanandgit\/mod_pagespeed,webscale-networks\/mod_pagespeed,wanrui\/mod_pagespeed,pagespeed\/mod_pagespeed,hashashin\/src,wanrui\/mod_pagespeed,jalonsoa\/mod_pagespeed,ajayanandgit\/mod_pagespeed,wanrui\/mod_pagespeed,hashashin\/src,webhost\/mod_pagespeed,webscale-networks\/mod_pagespeed,ajayanandgit\/mod_pagespeed,patricmutwiri\/mod_pagespeed,webhost\/mod_pagespeed,webscale-networks\/mod_pagespeed,VersoBit\/mod_pagespeed,patricmutwiri\/mod_pagespeed,wanrui\/mod_pagespeed,VersoBit\/mod_pagespeed,jalonsoa\/mod_pagespeed,webhost\/mod_pagespeed,VersoBit\/mod_pagespeed,webscale-networks\/mod_pagespeed,wanrui\/mod_pagespeed,patricmutwiri\/mod_pagespeed,VersoBit\/mod_pagespeed,jalonsoa\/mod_pagespeed,jalonsoa\/mod_pagespeed,hashashin\/src,webhost\/mod_pagespeed,ajayanandgit\/mod_pagespeed,pagespeed\/mod_pagespeed,webhost\/mod_pagespeed,wanrui\/mod_pagespeed,jalonsoa\/mod_pagespeed,webhost\/mod_pagespeed,hashashin\/src,webhost\/mod_pagespeed,webscale-networks\/mod_pagespeed,pagespeed\/mod_pagespeed,jalonsoa\/mod_pagespeed,pagespeed\/mod_pagespeed,pagespeed\/mod_pagespeed,pagespeed\/mod_pagespeed,patricmutwiri\/mod_pagespeed,ajayanandgit\/mod_pagespeed,wanrui\/mod_pagespeed,webscale-networks\/mod_pagespeed,ajayanandgit\/mod_pagespeed,webhost\/mod_pagespeed,VersoBit\/mod_pagespeed"} {"commit":"079cc15fa16b428c679ba52637316e44e000c016","old_file":"proto\/uav_arm_system_config.proto","new_file":"proto\/uav_arm_system_config.proto","old_contents":"syntax = \"proto2\";\n\nimport \"pose_controller_config.proto\";\nimport \"arm_system_config.proto\";\nimport \"transform.proto\";\n\nmessage UAVArmSystemConfig {\n\n \/**\n * @brief Arm transform in the frame of the UAV (assuming NWU).\n *\/\n optional config.Transform arm_transform = 3;\n\n \/**\n * @brief Config for arm controller\n *\/\n optional PoseControllerConfig position_controller_config = 6;\n\n \/**\n * @brief How much time to spend trying to grip the object in milliseconds\n *\/\n optional uint32 grip_timeout = 7 [ default = 2000 ];\n\n \/**\n * @brief Configuration for arm system\n *\/\n optional ArmSystemConfig arm_system_config = 9;\n}\n","new_contents":"syntax = \"proto2\";\n\nimport \"pose_controller_config.proto\";\nimport \"arm_system_config.proto\";\nimport \"transform.proto\";\n\nmessage UAVArmSystemConfig {\n\n \/**\n * @brief Arm transform in the frame of the UAV (assuming NWU).\n *\/\n optional config.Transform arm_transform = 3;\n\n \/**\n * @brief Config for arm controller\n *\/\n optional PoseControllerConfig position_controller_config = 6;\n\n \/**\n * @brief Configuration for arm system\n *\/\n optional ArmSystemConfig arm_system_config = 9;\n}\n","subject":"Remove grip timeout from proto file","message":"Remove grip timeout from proto file\n","lang":"Protocol Buffer","license":"mpl-2.0","repos":"jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy"} {"commit":"44f0e7f9ca27469c1d7f7f6c88d83121678f8d5e","old_file":"proto\/modules\/drive_to_point.proto","new_file":"proto\/modules\/drive_to_point.proto","old_contents":"package amber.drive_to_point_proto;\noption java_package = \"pl.edu.agh.amber.drivetopoint.proto\";\noption java_outer_classname = \"DriveToPointProto\";\n\nimport \"drivermsg.proto\";\n\nextend amber.DriverMsg {\n optional bool setTargets = 80;\n optional bool getNextTarget = 81;\n optional bool getNextTargets = 82;\n optional bool getVisitedTarget = 83;\n optional bool getVisitedTargets = 84;\n optional Targets targets = 85;\n}\n\nmessage Targets {\n repeated double longitudes = 1 [packed = true];\n repeated double latitudes = 2 [packed = true];\n repeated double radiuses = 3 [packed = true];\n}\n","new_contents":"package amber.drive_to_point_proto;\noption java_package = \"pl.edu.agh.amber.drivetopoint.proto\";\noption java_outer_classname = \"DriveToPointProto\";\n\nimport \"drivermsg.proto\";\n\nextend amber.DriverMsg {\n optional bool setTargets = 80;\n optional bool getNextTarget = 81;\n optional bool getNextTargets = 82;\n optional bool getVisitedTarget = 83;\n optional bool getVisitedTargets = 84;\n optional Targets targets = 85;\n optional Location location = 86;\n optional bool getConfiguration = 87;\n optional Configuration configuration = 88;\n}\n\nmessage Targets {\n repeated double longitudes = 1 [packed = true];\n repeated double latitudes = 2 [packed = true];\n repeated double radiuses = 3 [packed = true];\n}\n\nmessage Location {\n optional double x = 1;\n optional double y = 2;\n optional double p = 3;\n optional double alfa = 4;\n optional double timeStamp = 5;\n}\n\nmessage Configuration {\n optional double maxSpeed = 1;\n}\n","subject":"Add information about location and configuration to drive to point protobuf file","message":"Add information about location and configuration to drive to point protobuf file\n","lang":"Protocol Buffer","license":"mit","repos":"project-capo\/amber-common"} {"commit":"a2f09fc22ba78f4e3d018c24db35c6b7e8274128","old_file":"common\/protobuf\/availability.proto","new_file":"common\/protobuf\/availability.proto","old_contents":"package aris;\n\nmessage Availability {\n optional uint32 serialNumber = 1;\n optional SystemType systemType = 2;\n optional SoftwareVersion softwareVersion = 3;\n optional ConnectionState connectionState = 4;\n optional Capabilities capabilities = 5;\n optional uint32 reserved6 = 6; \/\/ was ack port\n optional CommLinkPreference commLinkPreference = 7;\n optional float cpuTemp = 8;\n optional PowerDownReason powerDownReason = 9;\n optional float overTempLimitDegreesC = 10;\n optional uint32 overTempLimitSeconds = 11;\n optional bool isDiverHeld = 12;\n\n enum SystemType {\n ARIS_1800 = 0;\n ARIS_3000 = 1;\n ARIS_1200 = 2;\n }\n\n message SoftwareVersion {\n optional uint32 major = 1;\n optional uint32 minor = 2;\n optional uint32 buildnumber = 3;\n }\n\n enum ConnectionState {\n AVAILABLE = 0;\n BUSY = 1;\n }\n\n message Capabilities {\n \/\/ KA : TCP keepalives \n repeated string enabled = 1;\n }\n\n enum CommLinkPreference {\n HomePlug = 0;\n Ethernet = 1;\n }\n\n enum PowerDownReason {\n OverTemp = 0;\n }\n}\n","new_contents":"package aris;\n\nmessage Availability {\n optional uint32 serialNumber = 1;\n optional SystemType systemType = 2;\n optional SoftwareVersion softwareVersion = 3;\n optional ConnectionState connectionState = 4;\n optional Capabilities capabilities = 5;\n optional uint32 reserved6 = 6; \/\/ was ack port\n optional CommLinkPreference commLinkPreference = 7;\n optional float cpuTemp = 8;\n optional PowerDownReason powerDownReason = 9;\n optional float overTempLimitDegreesC = 10;\n optional uint32 overTempLimitSeconds = 11;\n optional bool isDiverHeld = 12;\n optional SystemVariants systemVariants = 13;\n\n enum SystemType {\n ARIS_1800 = 0;\n ARIS_3000 = 1;\n ARIS_1200 = 2;\n }\n\n message SoftwareVersion {\n optional uint32 major = 1;\n optional uint32 minor = 2;\n optional uint32 buildnumber = 3;\n }\n\n enum ConnectionState {\n AVAILABLE = 0;\n BUSY = 1;\n }\n\n message Capabilities {\n \/\/ KA : TCP keepalives \n repeated string enabled = 1;\n }\n\n enum CommLinkPreference {\n HomePlug = 0;\n Ethernet = 1;\n }\n\n enum PowerDownReason {\n OverTemp = 0;\n }\n \n message SystemVariants {\n \/\/ DF : Defender\n repeated string enabled = 1;\n }\n\n}\n","subject":"Add system variants to sonar beacon.","message":"Add system variants to sonar beacon.\n","lang":"Protocol Buffer","license":"mit","repos":"SoundMetrics\/aris-integration-sdk,SoundMetrics\/aris-integration-sdk,SoundMetrics\/aris-integration-sdk,SoundMetrics\/aris-integration-sdk,SoundMetrics\/aris-integration-sdk"} {"commit":"09b5d43a854ed67187f067db38a3152811fbc60b","old_file":"src\/analytics\/protobuf_schema.proto","new_file":"src\/analytics\/protobuf_schema.proto","old_contents":"\/*\n * Copyright (c) 2014 Juniper Networks, Inc. All rights reserved.\n *\/\n\nimport \"google\/protobuf\/descriptor.proto\";\n\nmessage SelfDescribingMessage {\n \/\/ Timestamp\n required uint64 timestamp = 1;\n\n \/\/ Set of .proto files which define the type.\n optional google.protobuf.FileDescriptorSet proto_files = 2;\n\n \/\/ Name of the message type. Must be defined by one of the files in\n \/\/ proto_files.\n required string type_name = 3;\n\n \/\/ The message data.\n required bytes message_data = 4;\n}\n\nmessage TelemetryFieldOptions {\n \/\/ Key\n optional bool is_key = 1;\n\n \/\/ Timestamp\n optional bool is_timestamp = 2;\n}\n\nextend google.protobuf.FieldOptions {\n optional TelemetryFieldOptions telemetry_options = 33333;\n}\n","new_contents":"\/*\n * Copyright (c) 2014 Juniper Networks, Inc. All rights reserved.\n *\/\n\nimport \"google\/protobuf\/descriptor.proto\";\n\nmessage SelfDescribingMessage {\n \/\/ Timestamp\n required uint64 timestamp = 1;\n\n \/\/ Set of .proto files which define the type.\n optional google.protobuf.FileDescriptorSet proto_files = 2;\n\n \/\/ Name of the message type. Must be defined by one of the files in\n \/\/ proto_files.\n required string type_name = 3;\n\n \/\/ The message data.\n required bytes message_data = 4;\n}\n\nmessage TelemetryFieldOptions {\n \/\/ Key\n optional bool is_key = 1;\n\n \/\/ Timestamp\n optional bool is_timestamp = 2;\n}\n\nextend google.protobuf.FieldOptions {\n optional TelemetryFieldOptions telemetry_options = 50000;\n}\n","subject":"Fix the extension number for TelemetryFieldOptions to be in sync with MX","message":"Fix the extension number for TelemetryFieldOptions to be in sync\nwith MX\n\nChange-Id: Ib7d7987d810185d6f01f53426b45f9bc687b081d\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"vmahuli\/contrail-controller,codilime\/contrail-controller,nischalsheth\/contrail-controller,tcpcloud\/contrail-controller,eonpatapon\/contrail-controller,nischalsheth\/contrail-controller,vpramo\/contrail-controller,rombie\/contrail-controller,facetothefate\/contrail-controller,nischalsheth\/contrail-controller,tcpcloud\/contrail-controller,DreamLab\/contrail-controller,vpramo\/contrail-controller,hthompson6\/contrail-controller,reiaaoyama\/contrail-controller,reiaaoyama\/contrail-controller,codilime\/contrail-controller,sajuptpm\/contrail-controller,codilime\/contrail-controller,numansiddique\/contrail-controller,codilime\/contrail-controller,tcpcloud\/contrail-controller,codilime\/contrail-controller,eonpatapon\/contrail-controller,DreamLab\/contrail-controller,reiaaoyama\/contrail-controller,codilime\/contrail-controller,rombie\/contrail-controller,nischalsheth\/contrail-controller,hthompson6\/contrail-controller,sajuptpm\/contrail-controller,eonpatapon\/contrail-controller,tcpcloud\/contrail-controller,DreamLab\/contrail-controller,numansiddique\/contrail-controller,nischalsheth\/contrail-controller,numansiddique\/contrail-controller,sajuptpm\/contrail-controller,sajuptpm\/contrail-controller,eonpatapon\/contrail-controller,rombie\/contrail-controller,nischalsheth\/contrail-controller,DreamLab\/contrail-controller,vpramo\/contrail-controller,hthompson6\/contrail-controller,hthompson6\/contrail-controller,tcpcloud\/contrail-controller,vmahuli\/contrail-controller,DreamLab\/contrail-controller,eonpatapon\/contrail-controller,numansiddique\/contrail-controller,facetothefate\/contrail-controller,sajuptpm\/contrail-controller,rombie\/contrail-controller,facetothefate\/contrail-controller,rombie\/contrail-controller,vpramo\/contrail-controller,eonpatapon\/contrail-controller,nischalsheth\/contrail-controller,nischalsheth\/contrail-controller,reiaaoyama\/contrail-controller,tcpcloud\/contrail-controller,reiaaoyama\/contrail-controller,vmahuli\/contrail-controller,vpramo\/contrail-controller,eonpatapon\/contrail-controller,rombie\/contrail-controller,facetothefate\/contrail-controller,facetothefate\/contrail-controller,numansiddique\/contrail-controller,vmahuli\/contrail-controller,rombie\/contrail-controller,vmahuli\/contrail-controller,hthompson6\/contrail-controller,sajuptpm\/contrail-controller"} {"commit":"deb10de07d1739e21bedd3a409b13f2738d42737","old_file":"tensorflow_serving\/apis\/model.proto","new_file":"tensorflow_serving\/apis\/model.proto","old_contents":"syntax = \"proto3\";\n\npackage tensorflow.serving;\noption cc_enable_arenas = true;\n\nimport \"google\/protobuf\/wrappers.proto\";\n\n\/\/ Metadata for an inference request such as the model name and version.\nmessage ModelSpec {\n \/\/ Required servable name.\n string name = 1;\n\n \/\/ Optional version.\n google.protobuf.Int64Value version = 2;\n\n \/\/ A named signature to evaluate. If unspecified, the default signature will\n \/\/ be used.\n string signature_name = 3;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage tensorflow.serving;\noption cc_enable_arenas = true;\n\nimport \"google\/protobuf\/wrappers.proto\";\n\n\/\/ Metadata for an inference request such as the model name and version.\nmessage ModelSpec {\n \/\/ Required servable name.\n string name = 1;\n\n \/\/ Optional version. Recommended to be left unset in the common case. Should\n \/\/ be specified only when there is a strong version consistency requirement.\n \/\/\n \/\/ When left unspecified, the system will serve the best available version.\n \/\/ This is typically the latest version, though during version transitions,\n \/\/ notably when serving on a fleet of instances, may be either the previous or\n \/\/ new version.\n google.protobuf.Int64Value version = 2;\n\n \/\/ A named signature to evaluate. If unspecified, the default signature will\n \/\/ be used.\n string signature_name = 3;\n}\n","subject":"Clarify the ModelSpec API to recommend that users leave the version field unspecified for the common case.","message":"Clarify the ModelSpec API to recommend that users leave the version field\nunspecified for the common case.\n\nPiperOrigin-RevId: 200066733\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"penguin138\/serving,tensorflow\/serving,tensorflow\/serving,tensorflow\/serving,penguin138\/serving,penguin138\/serving,tensorflow\/serving,penguin138\/serving"} {"commit":"945c13b0d100fd427dfef93d71da5142fa5c7fd2","old_file":"src\/main\/proto\/lineage_messages.proto","new_file":"src\/main\/proto\/lineage_messages.proto","old_contents":"syntax = \"proto3\";\npackage com.google.cloud.solutions.datalineage.model;\n\nmessage CompositeLineage {\n uint64 reconcileTime = 1;\n JobInformation jobInformation = 2;\n TableLineage tableLineage = 5;\n repeated ColumnLineage columnsLineage = 10;\n}\n\nmessage JobInformation {\n string jobId = 1;\n uint64 jobTime = 2;\n string jobType = 5;\n string actuator = 10;\n}\n\nmessage TableLineage {\n DataEntity target = 1;\n string operation = 2;\n repeated DataEntity parents = 5;\n}\n\nmessage ColumnLineage {\n ColumnEntity target = 1;\n repeated string operations = 2;\n repeated ColumnEntity parents = 5;\n}\n\nmessage DataEntity {\n enum DataEntityTypes {\n UNKNOWN = 0;\n QUERY_LEVEL_TABLE = 1;\n CLOUD_STORAGE_FILE = 5;\n BIGQUERY_TABLE = 10;\n }\n\n DataEntityTypes kind = 1;\n string sqlResource = 2;\n string linkedResource = 3;\n}\n\n\nmessage ColumnEntity {\n DataEntity table = 1;\n string column = 2;\n}\n\nmessage TargetPolicyTags {\n DataEntity table = 1;\n repeated ColumnPolicyTags policyTags = 5;\n}\n\nmessage ColumnPolicyTags {\n string column = 1;\n repeated string policyTagIds = 2;\n}","new_contents":"syntax = \"proto3\";\npackage com.google.cloud.solutions.datalineage.model;\n\nmessage CompositeLineage {\n int64 reconcileTime = 1;\n JobInformation jobInformation = 2;\n TableLineage tableLineage = 5;\n repeated ColumnLineage columnsLineage = 10;\n}\n\nmessage JobInformation {\n string jobId = 1;\n int64 jobTime = 2;\n string jobType = 5;\n string actuator = 10;\n}\n\nmessage TableLineage {\n DataEntity target = 1;\n string operation = 2;\n repeated DataEntity parents = 5;\n}\n\nmessage ColumnLineage {\n ColumnEntity target = 1;\n repeated string operations = 2;\n repeated ColumnEntity parents = 5;\n}\n\nmessage DataEntity {\n enum DataEntityTypes {\n UNKNOWN = 0;\n QUERY_LEVEL_TABLE = 1;\n CLOUD_STORAGE_FILE = 5;\n BIGQUERY_TABLE = 10;\n }\n\n DataEntityTypes kind = 1;\n string sqlResource = 2;\n string linkedResource = 3;\n}\n\n\nmessage ColumnEntity {\n DataEntity table = 1;\n string column = 2;\n}\n\nmessage TargetPolicyTags {\n DataEntity table = 1;\n repeated ColumnPolicyTags policyTags = 5;\n}\n\nmessage ColumnPolicyTags {\n string column = 1;\n repeated string policyTagIds = 2;\n}\n","subject":"Make proto timestamp type signed","message":"Make proto timestamp type signed","lang":"Protocol Buffer","license":"apache-2.0","repos":"GoogleCloudPlatform\/bigquery-data-lineage,GoogleCloudPlatform\/bigquery-data-lineage,GoogleCloudPlatform\/bigquery-data-lineage"} {"commit":"bbfe8e6e6ec13aae8cb3d00ce1d6ae49f4697600","old_file":"tensorflow\/core\/protobuf\/saver.proto","new_file":"tensorflow\/core\/protobuf\/saver.proto","old_contents":"syntax = \"proto3\";\n\npackage tensorflow;\noption cc_enable_arenas = true;\noption java_outer_classname = \"SaverProtos\";\noption java_multiple_files = true;\noption java_package = \"org.tensorflow.util\";\n\n\/\/ Protocol buffer representing the configuration of a SaveRestoreHelper.\nmessage SaverDef {\n \/\/ The name of the tensor in which to specify the filename when saving or\n \/\/ restoring a model checkpoint.\n string filename_tensor_name = 1;\n\n \/\/ The operation to run when saving a model checkpoint.\n string save_tensor_name = 2;\n\n \/\/ The operation to run when restoring a model checkpoint.\n string restore_op_name = 3;\n\n \/\/ Maximum number of checkpoints to keep. If 0, no checkpoints are deleted.\n int32 max_to_keep = 4;\n\n \/\/ Shard the save files, one per device that has Variable nodes.\n bool sharded = 5;\n\n \/\/ How often to keep an additional checkpoint. If not specified, only the last\n \/\/ \"max_to_keep\" checkpoints are kept; if specified, in addition to keeping\n \/\/ the last \"max_to_keep\" checkpoints, an additional checkpoint will be kept\n \/\/ for every n hours of training.\n float keep_checkpoint_every_n_hours = 6;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage tensorflow;\noption cc_enable_arenas = true;\noption java_outer_classname = \"SaverProtos\";\noption java_multiple_files = true;\noption java_package = \"org.tensorflow.util\";\n\n\/\/ Protocol buffer representing the configuration of a Saver.\nmessage SaverDef {\n \/\/ The name of the tensor in which to specify the filename when saving or\n \/\/ restoring a model checkpoint.\n string filename_tensor_name = 1;\n\n \/\/ The operation to run when saving a model checkpoint.\n string save_tensor_name = 2;\n\n \/\/ The operation to run when restoring a model checkpoint.\n string restore_op_name = 3;\n\n \/\/ Maximum number of checkpoints to keep. If 0, no checkpoints are deleted.\n int32 max_to_keep = 4;\n\n \/\/ Shard the save files, one per device that has Variable nodes.\n bool sharded = 5;\n\n \/\/ How often to keep an additional checkpoint. If not specified, only the last\n \/\/ \"max_to_keep\" checkpoints are kept; if specified, in addition to keeping\n \/\/ the last \"max_to_keep\" checkpoints, an additional checkpoint will be kept\n \/\/ for every n hours of training.\n float keep_checkpoint_every_n_hours = 6;\n}\n","subject":"Replace a minomer: s\/SaveRestoreHelper\/Saver. Change: 129002390","message":"Replace a minomer: s\/SaveRestoreHelper\/Saver.\nChange: 129002390\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"ZhangXinNan\/tensorflow,DavidNorman\/tensorflow,meteorcloudy\/tensorflow,aam-at\/tensorflow,neilhan\/tensorflow,ppwwyyxx\/tensorflow,odejesush\/tensorflow,renyi533\/tensorflow,HKUST-SING\/tensorflow,allenlavoie\/tensorflow,admcrae\/tensorflow,jendap\/tensorflow,aldian\/tensorflow,taknevski\/tensorflow-xsmm,aam-at\/tensorflow,meteorcloudy\/tensorflow,eadgarchen\/tensorflow,seaotterman\/tensorflow,manipopopo\/tensorflow,ppwwyyxx\/tensorflow,johndpope\/tensorflow,pierreg\/tensorflow,ibmsoe\/tensorflow,xzturn\/tensorflow,brchiu\/tensorflow,pcm17\/tensorflow,mortada\/tensorflow,mdrumond\/tensorflow,alivecor\/tensorflow,mengxn\/tensorflow,odejesush\/tensorflow,ageron\/tensorflow,strint\/tensorflow,mdrumond\/tensorflow,petewarden\/tensorflow,jostep\/tensorflow,HKUST-SING\/tensorflow,yaroslavvb\/tensorflow,asadziach\/tensorflow,Bulochkin\/tensorflow_pack,nburn42\/tensorflow,odejesush\/tensorflow,guschmue\/tensorflow,alivecor\/tensorflow,ghchinoy\/tensorflow,laszlocsomor\/tensorflow,rabipanda\/tensorflow,gautam1858\/tensorflow,MoamerEncsConcordiaCa\/tensorflow,haeusser\/tensorflow,gojira\/tensorflow,Intel-Corporation\/tensorflow,nightjean\/Deep-Learning,neilhan\/tensorflow,thjashin\/tensorflow,nolanliou\/tensorflow,mortada\/tensorflow,JVillella\/tensorflow,AnishShah\/tensorflow,rabipanda\/tensorflow,rabipanda\/tensorflow,mrry\/tensorflow,annarev\/tensorflow,sandeepdsouza93\/TensorFlow-15712,with-git\/tensorflow,nikste\/tensorflow,ville-k\/tensorflow,ravindrapanda\/tensorflow,davidzchen\/tensorflow,handroissuazo\/tensorflow,AnishShah\/tensorflow,renyi533\/tensorflow,eadgarchen\/tensorflow,MoamerEncsConcordiaCa\/tensorflow,whn09\/tensorflow,ppwwyyxx\/tensorflow,apark263\/tensorflow,renyi533\/tensorflow,pierreg\/tensorflow,Xeralux\/tensorflow,karllessard\/tensorflow,frreiss\/tensorflow-fred,suiyuan2009\/tensorflow,alsrgv\/tensorflow,RapidApplicationDevelopment\/tensorflow,paolodedios\/tensorflow,johndpope\/tensorflow,pierreg\/tensorflow,wangyum\/tensorflow,chris-chris\/tensorflow,bowang\/tensorflow,lukeiwanski\/tensorflow,MostafaGazar\/tensorflow,taknevski\/tensorflow-xsmm,DCSaunders\/tensorflow,xodus7\/tensorflow,jostep\/tensorflow,zycdragonball\/tensorflow,chemelnucfin\/tensorflow,zasdfgbnm\/tensorflow,thesuperzapper\/tensorflow,hehongliang\/tensorflow,benoitsteiner\/tensorflow-xsmm,gnieboer\/tensorflow,pavelchristof\/gomoku-ai,thjashin\/tensorflow,aam-at\/tensorflow,drpngx\/tensorflow,hsaputra\/tensorflow,elingg\/tensorflow,XueqingLin\/tensorflow,anand-c-goog\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,manjunaths\/tensorflow,raymondxyang\/tensorflow,dongjoon-hyun\/tensorflow,haeusser\/tensorflow,cancan101\/tensorflow,manipopopo\/tensorflow,aselle\/tensorflow,juharris\/tensorflow,manjunaths\/tensorflow,ZhangXinNan\/tensorflow,alistairlow\/tensorflow,guschmue\/tensorflow,lakshayg\/tensorflow,JingJunYin\/tensorflow,a-doumoulakis\/tensorflow,snnn\/tensorflow,freedomtan\/tensorflow,manipopopo\/tensorflow,yanchen036\/tensorflow,laszlocsomor\/tensorflow,benoitsteiner\/tensorflow,johndpope\/tensorflow,meteorcloudy\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,chemelnucfin\/tensorflow,mengxn\/tensorflow,gautam1858\/tensorflow,llhe\/tensorflow,alsrgv\/tensorflow,jwlawson\/tensorflow,naturali\/tensorflow,sandeepgupta2k4\/tensorflow,llhe\/tensorflow,vrv\/tensorflow,alsrgv\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,jhaux\/tensorflow,tornadozou\/tensorflow,JVillella\/tensorflow,llhe\/tensorflow,jostep\/tensorflow,Mistobaan\/tensorflow,mortada\/tensorflow,alistairlow\/tensorflow,ZhangXinNan\/tensorflow,jhseu\/tensorflow,kchodorow\/tensorflow,Bulochkin\/tensorflow_pack,kevin-coder\/tensorflow-fork,alshedivat\/tensorflow,eadgarchen\/tensorflow,abhitopia\/tensorflow,tongwang01\/tensorflow,jeffzheng1\/tensorflow,unsiloai\/syntaxnet-ops-hack,XueqingLin\/tensorflow,LUTAN\/tensorflow,alsrgv\/tensorflow,drpngx\/tensorflow,laszlocsomor\/tensorflow,markslwong\/tensorflow,tongwang01\/tensorflow,wangyum\/tensorflow,nburn42\/tensorflow,Kongsea\/tensorflow,benoitsteiner\/tensorflow,chris-chris\/tensorflow,cxxgtxy\/tensorflow,johndpope\/tensorflow,RapidApplicationDevelopment\/tensorflow,unsiloai\/syntaxnet-ops-hack,sandeepdsouza93\/TensorFlow-15712,jbedorf\/tensorflow,ibmsoe\/tensorflow,zycdragonball\/tensorflow,nanditav\/15712-TensorFlow,sandeepdsouza93\/TensorFlow-15712,zycdragonball\/tensorflow,gunan\/tensorflow,jeffzheng1\/tensorflow,tillahoffmann\/tensorflow,MostafaGazar\/tensorflow,gautam1858\/tensorflow,laszlocsomor\/tensorflow,davidzchen\/tensorflow,martinwicke\/tensorflow,tomasreimers\/tensorflow-emscripten,Carmezim\/tensorflow,yanchen036\/tensorflow,jbedorf\/tensorflow,allenlavoie\/tensorflow,HKUST-SING\/tensorflow,xzturn\/tensorflow,andrewcmyers\/tensorflow,ppries\/tensorflow,RapidApplicationDevelopment\/tensorflow,renyi533\/tensorflow,seaotterman\/tensorflow,gibiansky\/tensorflow,dyoung418\/tensorflow,drpngx\/tensorflow,tiagofrepereira2012\/tensorflow,llhe\/tensorflow,bowang\/tensorflow,lakshayg\/tensorflow,yongtang\/tensorflow,Mistobaan\/tensorflow,MycChiu\/tensorflow,ran5515\/DeepDecision,gibiansky\/tensorflow,benoitsteiner\/tensorflow-xsmm,AnishShah\/tensorflow,rabipanda\/tensorflow,kobejean\/tensorflow,kchodorow\/tensorflow,strint\/tensorflow,handroissuazo\/tensorflow,RapidApplicationDevelopment\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,ishay2b\/tensorflow,XueqingLin\/tensorflow,anand-c-goog\/tensorflow,sarvex\/tensorflow,odejesush\/tensorflow,chris-chris\/tensorflow,jart\/tensorflow,calebfoss\/tensorflow,ychfan\/tensorflow,naturali\/tensorflow,laszlocsomor\/tensorflow,chenjun0210\/tensorflow,haeusser\/tensorflow,chris-chris\/tensorflow,Mazecreator\/tensorflow,asimshankar\/tensorflow,petewarden\/tensorflow,hsaputra\/tensorflow,kevin-coder\/tensorflow-fork,chris-chris\/tensorflow,gautam1858\/tensorflow,seanli9jan\/tensorflow,HKUST-SING\/tensorflow,Intel-tensorflow\/tensorflow,ppwwyyxx\/tensorflow,jalexvig\/tensorflow,yongtang\/tensorflow,JingJunYin\/tensorflow,codrut3\/tensorflow,nikste\/tensorflow,suiyuan2009\/tensorflow,jart\/tensorflow,JVillella\/tensorflow,alistairlow\/tensorflow,MycChiu\/tensorflow,eerwitt\/tensorflow,tomasreimers\/tensorflow-emscripten,gnieboer\/tensorflow,codrut3\/tensorflow,johndpope\/tensorflow,caisq\/tensorflow,jart\/tensorflow,jhseu\/tensorflow,admcrae\/tensorflow,andrewcmyers\/tensorflow,LUTAN\/tensorflow,ibmsoe\/tensorflow,kevin-coder\/tensorflow-fork,arborh\/tensorflow,anand-c-goog\/tensorflow,AndreasMadsen\/tensorflow,yaroslavvb\/tensorflow,aldian\/tensorflow,tensorflow\/tensorflow,krikru\/tensorflow-opencl,suiyuan2009\/tensorflow,jbedorf\/tensorflow,elingg\/tensorflow,yufengg\/tensorflow,AndreasMadsen\/tensorflow,thesuperzapper\/tensorflow,adamtiger\/tensorflow,LUTAN\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,frreiss\/tensorflow-fred,xodus7\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,seaotterman\/tensorflow,lukeiwanski\/tensorflow,apark263\/tensorflow,eadgarchen\/tensorflow,Carmezim\/tensorflow,arborh\/tensorflow,aselle\/tensorflow,chemelnucfin\/tensorflow,chemelnucfin\/tensorflow,DavidNorman\/tensorflow,jostep\/tensorflow,sandeepdsouza93\/TensorFlow-15712,jendap\/tensorflow,Carmezim\/tensorflow,lukeiwanski\/tensorflow-opencl,ppwwyyxx\/tensorflow,xodus7\/tensorflow,handroissuazo\/tensorflow,rdipietro\/tensorflow,nolanliou\/tensorflow,ArtsiomCh\/tensorflow,ravindrapanda\/tensorflow,mdrumond\/tensorflow,eaplatanios\/tensorflow,RapidApplicationDevelopment\/tensorflow,Bismarrck\/tensorflow,jhaux\/tensorflow,ghchinoy\/tensorflow,Bulochkin\/tensorflow_pack,jendap\/tensorflow,nightjean\/Deep-Learning,alistairlow\/tensorflow,odejesush\/tensorflow,jbedorf\/tensorflow,lukeiwanski\/tensorflow-opencl,rabipanda\/tensorflow,jwlawson\/tensorflow,nolanliou\/tensorflow,tongwang01\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,alistairlow\/tensorflow,DCSaunders\/tensorflow,pcm17\/tensorflow,a-doumoulakis\/tensorflow,dongjoon-hyun\/tensorflow,bowang\/tensorflow,jwlawson\/tensorflow,jeffzheng1\/tensorflow,horance-liu\/tensorflow,mrry\/tensorflow,frreiss\/tensorflow-fred,MostafaGazar\/tensorflow,vrv\/tensorflow,brchiu\/tensorflow,tensorflow\/tensorflow,cg31\/tensorflow,Intel-tensorflow\/tensorflow,ville-k\/tensorflow,meteorcloudy\/tensorflow,raymondxyang\/tensorflow,yongtang\/tensorflow,krikru\/tensorflow-opencl,Xeralux\/tensorflow,horance-liu\/tensorflow,pcm17\/tensorflow,calebfoss\/tensorflow,suiyuan2009\/tensorflow,naturali\/tensorflow,apark263\/tensorflow,jhaux\/tensorflow,theflofly\/tensorflow,haeusser\/tensorflow,SnakeJenny\/TensorFlow,alheinecke\/tensorflow-xsmm,LUTAN\/tensorflow,chemelnucfin\/tensorflow,tntnatbry\/tensorflow,alsrgv\/tensorflow,seanli9jan\/tensorflow,XueqingLin\/tensorflow,RapidApplicationDevelopment\/tensorflow,mrry\/tensorflow,eaplatanios\/tensorflow,tensorflow\/tensorflow,code-sauce\/tensorflow,kevin-coder\/tensorflow-fork,mixturemodel-flow\/tensorflow,theflofly\/tensorflow,Kongsea\/tensorflow,jhseu\/tensorflow,mengxn\/tensorflow,ibmsoe\/tensorflow,zasdfgbnm\/tensorflow,girving\/tensorflow,eaplatanios\/tensorflow,abhitopia\/tensorflow,rabipanda\/tensorflow,unsiloai\/syntaxnet-ops-hack,lukeiwanski\/tensorflow,martinwicke\/tensorflow,lukeiwanski\/tensorflow-opencl,tensorflow\/tensorflow-pywrap_tf_optimizer,dancingdan\/tensorflow,wangyum\/tensorflow,neilhan\/tensorflow,lakshayg\/tensorflow,dendisuhubdy\/tensorflow,guschmue\/tensorflow,karllessard\/tensorflow,jhaux\/tensorflow,Bulochkin\/tensorflow_pack,ville-k\/tensorflow,asadziach\/tensorflow,yanchen036\/tensorflow,jhseu\/tensorflow,hfp\/tensorflow-xsmm,kamcpp\/tensorflow,mrry\/tensorflow,aselle\/tensorflow,gojira\/tensorflow,eadgarchen\/tensorflow,ravindrapanda\/tensorflow,freedomtan\/tensorflow,aselle\/tensorflow,ishay2b\/tensorflow,whn09\/tensorflow,yaroslavvb\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,mrry\/tensorflow,gnieboer\/tensorflow,jhseu\/tensorflow,gunan\/tensorflow,jalexvig\/tensorflow,code-sauce\/tensorflow,ran5515\/DeepDecision,martinwicke\/tensorflow,tntnatbry\/tensorflow,laosiaudi\/tensorflow,alshedivat\/tensorflow,lakshayg\/tensorflow,gunan\/tensorflow,jeffzheng1\/tensorflow,laosiaudi\/tensorflow,aam-at\/tensorflow,Bulochkin\/tensorflow_pack,ychfan\/tensorflow,alivecor\/tensorflow,Moriadry\/tensorflow,arborh\/tensorflow,zasdfgbnm\/tensorflow,thjashin\/tensorflow,seaotterman\/tensorflow,mdrumond\/tensorflow,nightjean\/Deep-Learning,ghchinoy\/tensorflow,cxxgtxy\/tensorflow,bowang\/tensorflow,code-sauce\/tensorflow,nburn42\/tensorflow,vrv\/tensorflow,laosiaudi\/tensorflow,scenarios\/tensorflow,strint\/tensorflow,sandeepgupta2k4\/tensorflow,Moriadry\/tensorflow,hsaputra\/tensorflow,gojira\/tensorflow,seaotterman\/tensorflow,av8ramit\/tensorflow,XueqingLin\/tensorflow,renyi533\/tensorflow,mavenlin\/tensorflow,Mazecreator\/tensorflow,Moriadry\/tensorflow,apark263\/tensorflow,ppries\/tensorflow,brchiu\/tensorflow,gunan\/tensorflow,MoamerEncsConcordiaCa\/tensorflow,LUTAN\/tensorflow,Bulochkin\/tensorflow_pack,cxxgtxy\/tensorflow,zasdfgbnm\/tensorflow,gunan\/tensorflow,xzturn\/tensorflow,jendap\/tensorflow,markslwong\/tensorflow,admcrae\/tensorflow,Intel-tensorflow\/tensorflow,sjperkins\/tensorflow,brchiu\/tensorflow,kchodorow\/tensorflow,seanli9jan\/tensorflow,alivecor\/tensorflow,laosiaudi\/tensorflow,laszlocsomor\/tensorflow,mrry\/tensorflow,ppries\/tensorflow,gibiansky\/tensorflow,martinwicke\/tensorflow,sandeepgupta2k4\/tensorflow,hfp\/tensorflow-xsmm,markslwong\/tensorflow,gautam1858\/tensorflow,Mazecreator\/tensorflow,paolodedios\/tensorflow,Intel-tensorflow\/tensorflow,kobejean\/tensorflow,MycChiu\/tensorflow,SnakeJenny\/TensorFlow,tensorflow\/tensorflow-pywrap_tf_optimizer,taknevski\/tensorflow-xsmm,Carmezim\/tensorflow,theflofly\/tensorflow,nightjean\/Deep-Learning,Kongsea\/tensorflow,zasdfgbnm\/tensorflow,anilmuthineni\/tensorflow,mdrumond\/tensorflow,guschmue\/tensorflow,guschmue\/tensorflow,ville-k\/tensorflow,Bismarrck\/tensorflow,jendap\/tensorflow,Intel-tensorflow\/tensorflow,yufengg\/tensorflow,meteorcloudy\/tensorflow,frreiss\/tensorflow-fred,mengxn\/tensorflow,Carmezim\/tensorflow,markslwong\/tensorflow,ageron\/tensorflow,ageron\/tensorflow,abhitopia\/tensorflow,jeffzheng1\/tensorflow,xzturn\/tensorflow,manipopopo\/tensorflow,tongwang01\/tensorflow,Xeralux\/tensorflow,annarev\/tensorflow,jhaux\/tensorflow,jbedorf\/tensorflow,ran5515\/DeepDecision,meteorcloudy\/tensorflow,ychfan\/tensorflow,pavelchristof\/gomoku-ai,ville-k\/tensorflow,dancingdan\/tensorflow,mrry\/tensorflow,horance-liu\/tensorflow,dendisuhubdy\/tensorflow,cancan101\/tensorflow,AnishShah\/tensorflow,XueqingLin\/tensorflow,nolanliou\/tensorflow,zasdfgbnm\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,jwlawson\/tensorflow,ageron\/tensorflow,jostep\/tensorflow,renyi533\/tensorflow,a-doumoulakis\/tensorflow,sarvex\/tensorflow,SnakeJenny\/TensorFlow,martinwicke\/tensorflow,tiagofrepereira2012\/tensorflow,memo\/tensorflow,DavidNorman\/tensorflow,dongjoon-hyun\/tensorflow,Bismarrck\/tensorflow,mortada\/tensorflow,eaplatanios\/tensorflow,thesuperzapper\/tensorflow,pavelchristof\/gomoku-ai,jalexvig\/tensorflow,nburn42\/tensorflow,girving\/tensorflow,dyoung418\/tensorflow,adit-chandra\/tensorflow,rdipietro\/tensorflow,gautam1858\/tensorflow,kamcpp\/tensorflow,thesuperzapper\/tensorflow,caisq\/tensorflow,jbedorf\/tensorflow,davidzchen\/tensorflow,mixturemodel-flow\/tensorflow,xodus7\/tensorflow,eadgarchen\/tensorflow,nolanliou\/tensorflow,dongjoon-hyun\/tensorflow,guschmue\/tensorflow,whn09\/tensorflow,DCSaunders\/tensorflow,SnakeJenny\/TensorFlow,ravindrapanda\/tensorflow,eerwitt\/tensorflow,tillahoffmann\/tensorflow,Intel-tensorflow\/tensorflow,calebfoss\/tensorflow,JingJunYin\/tensorflow,naturali\/tensorflow,gunan\/tensorflow,rdipietro\/tensorflow,tillahoffmann\/tensorflow,gnieboer\/tensorflow,brchiu\/tensorflow,code-sauce\/tensorflow,cg31\/tensorflow,caisq\/tensorflow,JingJunYin\/tensorflow,jart\/tensorflow,mrry\/tensorflow,freedomtan\/tensorflow,kchodorow\/tensorflow,petewarden\/tensorflow,a-doumoulakis\/tensorflow,markslwong\/tensorflow,hfp\/tensorflow-xsmm,MycChiu\/tensorflow,nikste\/tensorflow,hehongliang\/tensorflow,Kongsea\/tensorflow,aldian\/tensorflow,xzturn\/tensorflow,seanli9jan\/tensorflow,codrut3\/tensorflow,caisq\/tensorflow,gojira\/tensorflow,adamtiger\/tensorflow,JVillella\/tensorflow,MoamerEncsConcordiaCa\/tensorflow,zasdfgbnm\/tensorflow,benoitsteiner\/tensorflow,memo\/tensorflow,renyi533\/tensorflow,tensorflow\/tensorflow,chemelnucfin\/tensorflow,caisq\/tensorflow,annarev\/tensorflow,aselle\/tensorflow,lakshayg\/tensorflow,whn09\/tensorflow,abhitopia\/tensorflow,jhaux\/tensorflow,karllessard\/tensorflow,tomasreimers\/tensorflow-emscripten,girving\/tensorflow,ppwwyyxx\/tensorflow,tensorflow\/tensorflow,alisidd\/tensorflow,caisq\/tensorflow,ychfan\/tensorflow,girving\/tensorflow,mavenlin\/tensorflow,lukeiwanski\/tensorflow-opencl,AndreasMadsen\/tensorflow,xzturn\/tensorflow,tiagofrepereira2012\/tensorflow,freedomtan\/tensorflow,alivecor\/tensorflow,hfp\/tensorflow-xsmm,hehongliang\/tensorflow,ghchinoy\/tensorflow,hfp\/tensorflow-xsmm,dendisuhubdy\/tensorflow,andrewcmyers\/tensorflow,maciekcc\/tensorflow,codrut3\/tensorflow,yufengg\/tensorflow,hehongliang\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,hfp\/tensorflow-xsmm,odejesush\/tensorflow,chemelnucfin\/tensorflow,paolodedios\/tensorflow,HKUST-SING\/tensorflow,rdipietro\/tensorflow,XueqingLin\/tensorflow,rabipanda\/tensorflow,dancingdan\/tensorflow,manazhao\/tf_recsys,andrewcmyers\/tensorflow,MycChiu\/tensorflow,nburn42\/tensorflow,anilmuthineni\/tensorflow,sandeepgupta2k4\/tensorflow,yanchen036\/tensorflow,aselle\/tensorflow,juharris\/tensorflow,horance-liu\/tensorflow,Moriadry\/tensorflow,eerwitt\/tensorflow,kevin-coder\/tensorflow-fork,LUTAN\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,vrv\/tensorflow,anilmuthineni\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,nikste\/tensorflow,yaroslavvb\/tensorflow,codrut3\/tensorflow,eaplatanios\/tensorflow,ppwwyyxx\/tensorflow,calebfoss\/tensorflow,annarev\/tensorflow,mdrumond\/tensorflow,asimshankar\/tensorflow,cg31\/tensorflow,lukeiwanski\/tensorflow,alsrgv\/tensorflow,krikru\/tensorflow-opencl,thjashin\/tensorflow,Bulochkin\/tensorflow_pack,zycdragonball\/tensorflow,tornadozou\/tensorflow,pavelchristof\/gomoku-ai,yongtang\/tensorflow,adamtiger\/tensorflow,MoamerEncsConcordiaCa\/tensorflow,kamcpp\/tensorflow,xzturn\/tensorflow,ychfan\/tensorflow,paolodedios\/tensorflow,DCSaunders\/tensorflow,memo\/tensorflow,SnakeJenny\/TensorFlow,tensorflow\/tensorflow-pywrap_saved_model,caisq\/tensorflow,DavidNorman\/tensorflow,nburn42\/tensorflow,Mazecreator\/tensorflow,arborh\/tensorflow,memo\/tensorflow,Moriadry\/tensorflow,jeffzheng1\/tensorflow,admcrae\/tensorflow,cancan101\/tensorflow,kamcpp\/tensorflow,alivecor\/tensorflow,pierreg\/tensorflow,tiagofrepereira2012\/tensorflow,Bulochkin\/tensorflow_pack,av8ramit\/tensorflow,a-doumoulakis\/tensorflow,tongwang01\/tensorflow,kamcpp\/tensorflow,yufengg\/tensorflow,gibiansky\/tensorflow,rabipanda\/tensorflow,tornadozou\/tensorflow,adit-chandra\/tensorflow,Xeralux\/tensorflow,alheinecke\/tensorflow-xsmm,Kongsea\/tensorflow,aldian\/tensorflow,rdipietro\/tensorflow,ville-k\/tensorflow,SnakeJenny\/TensorFlow,ghchinoy\/tensorflow,abhitopia\/tensorflow,ghchinoy\/tensorflow,suiyuan2009\/tensorflow,dongjoon-hyun\/tensorflow,alistairlow\/tensorflow,MostafaGazar\/tensorflow,chenjun0210\/tensorflow,freedomtan\/tensorflow,anilmuthineni\/tensorflow,codrut3\/tensorflow,hsaputra\/tensorflow,alisidd\/tensorflow,Mazecreator\/tensorflow,cg31\/tensorflow,nanditav\/15712-TensorFlow,alisidd\/tensorflow,chemelnucfin\/tensorflow,tntnatbry\/tensorflow,rabipanda\/tensorflow,pcm17\/tensorflow,allenlavoie\/tensorflow,tornadozou\/tensorflow,yongtang\/tensorflow,snnn\/tensorflow,sarvex\/tensorflow,taknevski\/tensorflow-xsmm,chenjun0210\/tensorflow,zasdfgbnm\/tensorflow,eerwitt\/tensorflow,jwlawson\/tensorflow,pavelchristof\/gomoku-ai,JingJunYin\/tensorflow,ibmsoe\/tensorflow,chenjun0210\/tensorflow,Xeralux\/tensorflow,cg31\/tensorflow,allenlavoie\/tensorflow,jwlawson\/tensorflow,sjperkins\/tensorflow,johndpope\/tensorflow,aam-at\/tensorflow,hsaputra\/tensorflow,yufengg\/tensorflow,eerwitt\/tensorflow,apark263\/tensorflow,mortada\/tensorflow,vrv\/tensorflow,JingJunYin\/tensorflow,eadgarchen\/tensorflow,lukeiwanski\/tensorflow,nikste\/tensorflow,sarvex\/tensorflow,Mistobaan\/tensorflow,haeusser\/tensorflow,tomasreimers\/tensorflow-emscripten,gojira\/tensorflow,karllessard\/tensorflow,wangyum\/tensorflow,asimshankar\/tensorflow,maciekcc\/tensorflow,nanditav\/15712-TensorFlow,thjashin\/tensorflow,theflofly\/tensorflow,sandeepdsouza93\/TensorFlow-15712,raymondxyang\/tensorflow,Xeralux\/tensorflow,horance-liu\/tensorflow,tomasreimers\/tensorflow-emscripten,nikste\/tensorflow,meteorcloudy\/tensorflow,alsrgv\/tensorflow,handroissuazo\/tensorflow,alsrgv\/tensorflow,anand-c-goog\/tensorflow,cg31\/tensorflow,arborh\/tensorflow,ravindrapanda\/tensorflow,ArtsiomCh\/tensorflow,wangyum\/tensorflow,theflofly\/tensorflow,hehongliang\/tensorflow,gautam1858\/tensorflow,asimshankar\/tensorflow,raymondxyang\/tensorflow,RapidApplicationDevelopment\/tensorflow,lakshayg\/tensorflow,horance-liu\/tensorflow,llhe\/tensorflow,calebfoss\/tensorflow,gibiansky\/tensorflow,sandeepgupta2k4\/tensorflow,krikru\/tensorflow-opencl,wangyum\/tensorflow,xodus7\/tensorflow,sandeepgupta2k4\/tensorflow,yufengg\/tensorflow,markslwong\/tensorflow,dongjoon-hyun\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,DCSaunders\/tensorflow,unsiloai\/syntaxnet-ops-hack,tornadozou\/tensorflow,allenlavoie\/tensorflow,tntnatbry\/tensorflow,odejesush\/tensorflow,with-git\/tensorflow,Bismarrck\/tensorflow,renyi533\/tensorflow,alheinecke\/tensorflow-xsmm,jart\/tensorflow,yaroslavvb\/tensorflow,handroissuazo\/tensorflow,theflofly\/tensorflow,strint\/tensorflow,manjunaths\/tensorflow,snnn\/tensorflow,drpngx\/tensorflow,scenarios\/tensorflow,jhaux\/tensorflow,nanditav\/15712-TensorFlow,xzturn\/tensorflow,petewarden\/tensorflow,dyoung418\/tensorflow,sarvex\/tensorflow,karllessard\/tensorflow,juharris\/tensorflow,apark263\/tensorflow,gibiansky\/tensorflow,benoitsteiner\/tensorflow-opencl,arborh\/tensorflow,ibmsoe\/tensorflow,MycChiu\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,manjunaths\/tensorflow,Mazecreator\/tensorflow,asadziach\/tensorflow,nolanliou\/tensorflow,taknevski\/tensorflow-xsmm,cancan101\/tensorflow,dancingdan\/tensorflow,nanditav\/15712-TensorFlow,juharris\/tensorflow,gnieboer\/tensorflow,apark263\/tensorflow,LUTAN\/tensorflow,adit-chandra\/tensorflow,dyoung418\/tensorflow,hehongliang\/tensorflow,tntnatbry\/tensorflow,sandeepdsouza93\/TensorFlow-15712,Mistobaan\/tensorflow,dongjoon-hyun\/tensorflow,ageron\/tensorflow,LUTAN\/tensorflow,AnishShah\/tensorflow,asimshankar\/tensorflow,raymondxyang\/tensorflow,benoitsteiner\/tensorflow,aldian\/tensorflow,Bismarrck\/tensorflow,ageron\/tensorflow,dendisuhubdy\/tensorflow,code-sauce\/tensorflow,asadziach\/tensorflow,alsrgv\/tensorflow,nburn42\/tensorflow,mortada\/tensorflow,jalexvig\/tensorflow,alshedivat\/tensorflow,nightjean\/Deep-Learning,hsaputra\/tensorflow,pcm17\/tensorflow,brchiu\/tensorflow,chenjun0210\/tensorflow,pierreg\/tensorflow,tensorflow\/tensorflow,manipopopo\/tensorflow,Intel-Corporation\/tensorflow,suiyuan2009\/tensorflow,davidzchen\/tensorflow,anilmuthineni\/tensorflow,ychfan\/tensorflow,benoitsteiner\/tensorflow-opencl,nburn42\/tensorflow,codrut3\/tensorflow,admcrae\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,lukeiwanski\/tensorflow,eadgarchen\/tensorflow,kchodorow\/tensorflow,nanditav\/15712-TensorFlow,mixturemodel-flow\/tensorflow,benoitsteiner\/tensorflow,pierreg\/tensorflow,mixturemodel-flow\/tensorflow,scenarios\/tensorflow,Kongsea\/tensorflow,vrv\/tensorflow,code-sauce\/tensorflow,davidzchen\/tensorflow,calebfoss\/tensorflow,yaroslavvb\/tensorflow,petewarden\/tensorflow,juharris\/tensorflow,neilhan\/tensorflow,lukeiwanski\/tensorflow-opencl,benoitsteiner\/tensorflow-xsmm,nanditav\/15712-TensorFlow,eerwitt\/tensorflow,ZhangXinNan\/tensorflow,seanli9jan\/tensorflow,yanchen036\/tensorflow,alisidd\/tensorflow,ravindrapanda\/tensorflow,DavidNorman\/tensorflow,Intel-Corporation\/tensorflow,dendisuhubdy\/tensorflow,tiagofrepereira2012\/tensorflow,suiyuan2009\/tensorflow,anilmuthineni\/tensorflow,arborh\/tensorflow,MoamerEncsConcordiaCa\/tensorflow,davidzchen\/tensorflow,theflofly\/tensorflow,gautam1858\/tensorflow,dongjoon-hyun\/tensorflow,sandeepdsouza93\/TensorFlow-15712,petewarden\/tensorflow,tiagofrepereira2012\/tensorflow,lukeiwanski\/tensorflow-opencl,eaplatanios\/tensorflow,Intel-tensorflow\/tensorflow,DavidNorman\/tensorflow,MoamerEncsConcordiaCa\/tensorflow,laosiaudi\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,maciekcc\/tensorflow,mavenlin\/tensorflow,aldian\/tensorflow,nburn42\/tensorflow,kobejean\/tensorflow,tongwang01\/tensorflow,horance-liu\/tensorflow,with-git\/tensorflow,jhaux\/tensorflow,kobejean\/tensorflow,ArtsiomCh\/tensorflow,jbedorf\/tensorflow,benoitsteiner\/tensorflow,sandeepgupta2k4\/tensorflow,yongtang\/tensorflow,laosiaudi\/tensorflow,MycChiu\/tensorflow,juharris\/tensorflow,yongtang\/tensorflow,nikste\/tensorflow,yaroslavvb\/tensorflow,aam-at\/tensorflow,cxxgtxy\/tensorflow,kevin-coder\/tensorflow-fork,hsaputra\/tensorflow,jbedorf\/tensorflow,maciekcc\/tensorflow,dyoung418\/tensorflow,xodus7\/tensorflow,cancan101\/tensorflow,ishay2b\/tensorflow,xzturn\/tensorflow,freedomtan\/tensorflow,benoitsteiner\/tensorflow-xsmm,tensorflow\/tensorflow-experimental_link_static_libraries_once,ageron\/tensorflow,maciekcc\/tensorflow,renyi533\/tensorflow,DavidNorman\/tensorflow,girving\/tensorflow,ville-k\/tensorflow,zasdfgbnm\/tensorflow,freedomtan\/tensorflow,wangyum\/tensorflow,renyi533\/tensorflow,thjashin\/tensorflow,pavelchristof\/gomoku-ai,memo\/tensorflow,drpngx\/tensorflow,Xeralux\/tensorflow,Bismarrck\/tensorflow,ZhangXinNan\/tensorflow,memo\/tensorflow,thesuperzapper\/tensorflow,frreiss\/tensorflow-fred,Carmezim\/tensorflow,naturali\/tensorflow,AnishShah\/tensorflow,benoitsteiner\/tensorflow-opencl,alistairlow\/tensorflow,frreiss\/tensorflow-fred,adit-chandra\/tensorflow,jeffzheng1\/tensorflow,DCSaunders\/tensorflow,dancingdan\/tensorflow,ageron\/tensorflow,av8ramit\/tensorflow,eaplatanios\/tensorflow,alisidd\/tensorflow,AndreasMadsen\/tensorflow,ArtsiomCh\/tensorflow,kobejean\/tensorflow,memo\/tensorflow,Kongsea\/tensorflow,ppries\/tensorflow,nolanliou\/tensorflow,Mazecreator\/tensorflow,krikru\/tensorflow-opencl,ghchinoy\/tensorflow,Carmezim\/tensorflow,brchiu\/tensorflow,guschmue\/tensorflow,scenarios\/tensorflow,tomasreimers\/tensorflow-emscripten,alheinecke\/tensorflow-xsmm,nanditav\/15712-TensorFlow,av8ramit\/tensorflow,Mistobaan\/tensorflow,benoitsteiner\/tensorflow,johndpope\/tensorflow,elingg\/tensorflow,aselle\/tensorflow,ghchinoy\/tensorflow,arborh\/tensorflow,gibiansky\/tensorflow,horance-liu\/tensorflow,zycdragonball\/tensorflow,seaotterman\/tensorflow,adit-chandra\/tensorflow,sandeepdsouza93\/TensorFlow-15712,Intel-tensorflow\/tensorflow,apark263\/tensorflow,petewarden\/tensorflow,mengxn\/tensorflow,av8ramit\/tensorflow,martinwicke\/tensorflow,ibmsoe\/tensorflow,frreiss\/tensorflow-fred,anand-c-goog\/tensorflow,tornadozou\/tensorflow,gautam1858\/tensorflow,HKUST-SING\/tensorflow,tensorflow\/tensorflow,gunan\/tensorflow,whn09\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,ravindrapanda\/tensorflow,jendap\/tensorflow,chenjun0210\/tensorflow,nburn42\/tensorflow,lukeiwanski\/tensorflow-opencl,lukeiwanski\/tensorflow-opencl,mdrumond\/tensorflow,theflofly\/tensorflow,Kongsea\/tensorflow,alheinecke\/tensorflow-xsmm,odejesush\/tensorflow,DavidNorman\/tensorflow,cancan101\/tensorflow,calebfoss\/tensorflow,maciekcc\/tensorflow,yongtang\/tensorflow,aselle\/tensorflow,gautam1858\/tensorflow,av8ramit\/tensorflow,laosiaudi\/tensorflow,snnn\/tensorflow,JVillella\/tensorflow,haeusser\/tensorflow,ishay2b\/tensorflow,girving\/tensorflow,seanli9jan\/tensorflow,AndreasMadsen\/tensorflow,whn09\/tensorflow,davidzchen\/tensorflow,AnishShah\/tensorflow,ArtsiomCh\/tensorflow,Mistobaan\/tensorflow,DavidNorman\/tensorflow,bowang\/tensorflow,benoitsteiner\/tensorflow-xsmm,haeusser\/tensorflow,handroissuazo\/tensorflow,hehongliang\/tensorflow,with-git\/tensorflow,gnieboer\/tensorflow,thesuperzapper\/tensorflow,manjunaths\/tensorflow,ravindrapanda\/tensorflow,cg31\/tensorflow,AndreasMadsen\/tensorflow,xodus7\/tensorflow,HKUST-SING\/tensorflow,drpngx\/tensorflow,girving\/tensorflow,AnishShah\/tensorflow,frreiss\/tensorflow-fred,jart\/tensorflow,kobejean\/tensorflow,haeusser\/tensorflow,ppwwyyxx\/tensorflow,kchodorow\/tensorflow,ppries\/tensorflow,karllessard\/tensorflow,anilmuthineni\/tensorflow,meteorcloudy\/tensorflow,tongwang01\/tensorflow,alshedivat\/tensorflow,jbedorf\/tensorflow,MostafaGazar\/tensorflow,nightjean\/Deep-Learning,odejesush\/tensorflow,JingJunYin\/tensorflow,sandeepgupta2k4\/tensorflow,RapidApplicationDevelopment\/tensorflow,drpngx\/tensorflow,kamcpp\/tensorflow,tillahoffmann\/tensorflow,alistairlow\/tensorflow,jart\/tensorflow,ibmsoe\/tensorflow,strint\/tensorflow,codrut3\/tensorflow,MoamerEncsConcordiaCa\/tensorflow,ZhangXinNan\/tensorflow,gautam1858\/tensorflow,mavenlin\/tensorflow,DCSaunders\/tensorflow,chemelnucfin\/tensorflow,sjperkins\/tensorflow,kamcpp\/tensorflow,tntnatbry\/tensorflow,MostafaGazar\/tensorflow,davidzchen\/tensorflow,lukeiwanski\/tensorflow,johndpope\/tensorflow,xodus7\/tensorflow,tomasreimers\/tensorflow-emscripten,mavenlin\/tensorflow,neilhan\/tensorflow,dancingdan\/tensorflow,apark263\/tensorflow,alisidd\/tensorflow,sjperkins\/tensorflow,alheinecke\/tensorflow-xsmm,davidzchen\/tensorflow,dongjoon-hyun\/tensorflow,Bismarrck\/tensorflow,alshedivat\/tensorflow,Mistobaan\/tensorflow,nanditav\/15712-TensorFlow,dendisuhubdy\/tensorflow,chemelnucfin\/tensorflow,jostep\/tensorflow,HKUST-SING\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow,Xeralux\/tensorflow,ibmsoe\/tensorflow,renyi533\/tensorflow,kobejean\/tensorflow,manazhao\/tf_recsys,abhitopia\/tensorflow,a-doumoulakis\/tensorflow,jhaux\/tensorflow,pcm17\/tensorflow,ageron\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,snnn\/tensorflow,chemelnucfin\/tensorflow,eadgarchen\/tensorflow,mixturemodel-flow\/tensorflow,rdipietro\/tensorflow,apark263\/tensorflow,JingJunYin\/tensorflow,xodus7\/tensorflow,ppries\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,JVillella\/tensorflow,jalexvig\/tensorflow,benoitsteiner\/tensorflow-opencl,tensorflow\/tensorflow-pywrap_saved_model,cxxgtxy\/tensorflow,davidzchen\/tensorflow,arborh\/tensorflow,krikru\/tensorflow-opencl,ZhangXinNan\/tensorflow,mengxn\/tensorflow,yongtang\/tensorflow,gunan\/tensorflow,mortada\/tensorflow,hsaputra\/tensorflow,Bismarrck\/tensorflow,kamcpp\/tensorflow,adamtiger\/tensorflow,ppries\/tensorflow,seanli9jan\/tensorflow,gojira\/tensorflow,manjunaths\/tensorflow,with-git\/tensorflow,naturali\/tensorflow,arborh\/tensorflow,alsrgv\/tensorflow,cg31\/tensorflow,Bulochkin\/tensorflow_pack,kobejean\/tensorflow,ppwwyyxx\/tensorflow,pcm17\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,gunan\/tensorflow,chris-chris\/tensorflow,xodus7\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,alisidd\/tensorflow,allenlavoie\/tensorflow,alivecor\/tensorflow,caisq\/tensorflow,ghchinoy\/tensorflow,with-git\/tensorflow,zycdragonball\/tensorflow,nolanliou\/tensorflow,manjunaths\/tensorflow,renyi533\/tensorflow,seaotterman\/tensorflow,Bulochkin\/tensorflow_pack,gnieboer\/tensorflow,sjperkins\/tensorflow,alisidd\/tensorflow,hfp\/tensorflow-xsmm,cxxgtxy\/tensorflow,adit-chandra\/tensorflow,alshedivat\/tensorflow,ageron\/tensorflow,benoitsteiner\/tensorflow-xsmm,SnakeJenny\/TensorFlow,dancingdan\/tensorflow,markslwong\/tensorflow,ppries\/tensorflow,scenarios\/tensorflow,dancingdan\/tensorflow,code-sauce\/tensorflow,asadziach\/tensorflow,jalexvig\/tensorflow,whn09\/tensorflow,DavidNorman\/tensorflow,xzturn\/tensorflow,gnieboer\/tensorflow,markslwong\/tensorflow,aldian\/tensorflow,yaroslavvb\/tensorflow,ishay2b\/tensorflow,annarev\/tensorflow,adamtiger\/tensorflow,jart\/tensorflow,ychfan\/tensorflow,krikru\/tensorflow-opencl,snnn\/tensorflow,zasdfgbnm\/tensorflow,sjperkins\/tensorflow,yaroslavvb\/tensorflow,alisidd\/tensorflow,sjperkins\/tensorflow,manipopopo\/tensorflow,tomasreimers\/tensorflow-emscripten,LUTAN\/tensorflow,drpngx\/tensorflow,aam-at\/tensorflow,jhseu\/tensorflow,mengxn\/tensorflow,Moriadry\/tensorflow,wangyum\/tensorflow,tornadozou\/tensorflow,ishay2b\/tensorflow,vrv\/tensorflow,drpngx\/tensorflow,adit-chandra\/tensorflow,mavenlin\/tensorflow,jhseu\/tensorflow,alshedivat\/tensorflow,paolodedios\/tensorflow,mixturemodel-flow\/tensorflow,ageron\/tensorflow,av8ramit\/tensorflow,jbedorf\/tensorflow,girving\/tensorflow,asimshankar\/tensorflow,dendisuhubdy\/tensorflow,freedomtan\/tensorflow,gibiansky\/tensorflow,dyoung418\/tensorflow,ppwwyyxx\/tensorflow,asimshankar\/tensorflow,brchiu\/tensorflow,neilhan\/tensorflow,jalexvig\/tensorflow,benoitsteiner\/tensorflow-xsmm,hfp\/tensorflow-xsmm,jendap\/tensorflow,llhe\/tensorflow,mengxn\/tensorflow,tntnatbry\/tensorflow,manjunaths\/tensorflow,gautam1858\/tensorflow,jostep\/tensorflow,Xeralux\/tensorflow,Intel-Corporation\/tensorflow,dyoung418\/tensorflow,hfp\/tensorflow-xsmm,sjperkins\/tensorflow,RapidApplicationDevelopment\/tensorflow,manipopopo\/tensorflow,yanchen036\/tensorflow,lukeiwanski\/tensorflow,eerwitt\/tensorflow,maciekcc\/tensorflow,gojira\/tensorflow,Intel-Corporation\/tensorflow,lakshayg\/tensorflow,llhe\/tensorflow,gunan\/tensorflow,neilhan\/tensorflow,elingg\/tensorflow,ghchinoy\/tensorflow,lukeiwanski\/tensorflow,chenjun0210\/tensorflow,brchiu\/tensorflow,wangyum\/tensorflow,juharris\/tensorflow,eaplatanios\/tensorflow,laosiaudi\/tensorflow,aam-at\/tensorflow,jwlawson\/tensorflow,snnn\/tensorflow,freedomtan\/tensorflow,av8ramit\/tensorflow,llhe\/tensorflow,ran5515\/DeepDecision,ppries\/tensorflow,drpngx\/tensorflow,laosiaudi\/tensorflow,ran5515\/DeepDecision,petewarden\/tensorflow,seaotterman\/tensorflow,gojira\/tensorflow,annarev\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,XueqingLin\/tensorflow,mengxn\/tensorflow,manjunaths\/tensorflow,alistairlow\/tensorflow,adit-chandra\/tensorflow,asimshankar\/tensorflow,gojira\/tensorflow,Carmezim\/tensorflow,thesuperzapper\/tensorflow,lukeiwanski\/tensorflow-opencl,DCSaunders\/tensorflow,cxxgtxy\/tensorflow,yanchen036\/tensorflow,annarev\/tensorflow,jalexvig\/tensorflow,cxxgtxy\/tensorflow,tensorflow\/tensorflow,abhitopia\/tensorflow,asadziach\/tensorflow,chris-chris\/tensorflow,benoitsteiner\/tensorflow-opencl,allenlavoie\/tensorflow,tillahoffmann\/tensorflow,raymondxyang\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,nightjean\/Deep-Learning,brchiu\/tensorflow,laszlocsomor\/tensorflow,av8ramit\/tensorflow,with-git\/tensorflow,eaplatanios\/tensorflow,dendisuhubdy\/tensorflow,aselle\/tensorflow,lukeiwanski\/tensorflow,ychfan\/tensorflow,ghchinoy\/tensorflow,rdipietro\/tensorflow,zycdragonball\/tensorflow,alshedivat\/tensorflow,caisq\/tensorflow,adit-chandra\/tensorflow,raymondxyang\/tensorflow,asimshankar\/tensorflow,elingg\/tensorflow,chenjun0210\/tensorflow,kevin-coder\/tensorflow-fork,mavenlin\/tensorflow,thesuperzapper\/tensorflow,alheinecke\/tensorflow-xsmm,benoitsteiner\/tensorflow,unsiloai\/syntaxnet-ops-hack,thesuperzapper\/tensorflow,ageron\/tensorflow,eaplatanios\/tensorflow,Mazecreator\/tensorflow,calebfoss\/tensorflow,scenarios\/tensorflow,eerwitt\/tensorflow,benoitsteiner\/tensorflow-xsmm,paolodedios\/tensorflow,admcrae\/tensorflow,manazhao\/tf_recsys,a-doumoulakis\/tensorflow,ran5515\/DeepDecision,rabipanda\/tensorflow,tornadozou\/tensorflow,martinwicke\/tensorflow,asimshankar\/tensorflow,kevin-coder\/tensorflow-fork,asimshankar\/tensorflow,aam-at\/tensorflow,martinwicke\/tensorflow,pavelchristof\/gomoku-ai,cancan101\/tensorflow,Bismarrck\/tensorflow,andrewcmyers\/tensorflow,Intel-tensorflow\/tensorflow,ran5515\/DeepDecision,jendap\/tensorflow,AndreasMadsen\/tensorflow,Moriadry\/tensorflow,Xeralux\/tensorflow,benoitsteiner\/tensorflow-opencl,guschmue\/tensorflow,neilhan\/tensorflow,rabipanda\/tensorflow,unsiloai\/syntaxnet-ops-hack,tillahoffmann\/tensorflow,nolanliou\/tensorflow,gibiansky\/tensorflow,admcrae\/tensorflow,alheinecke\/tensorflow-xsmm,dancingdan\/tensorflow,handroissuazo\/tensorflow,jart\/tensorflow,annarev\/tensorflow,gojira\/tensorflow,taknevski\/tensorflow-xsmm,kchodorow\/tensorflow,tensorflow\/tensorflow,davidzchen\/tensorflow,nburn42\/tensorflow,vrv\/tensorflow,tomasreimers\/tensorflow-emscripten,adamtiger\/tensorflow,manazhao\/tf_recsys,markslwong\/tensorflow,neilhan\/tensorflow,snnn\/tensorflow,dyoung418\/tensorflow,jhaux\/tensorflow,calebfoss\/tensorflow,laszlocsomor\/tensorflow,xzturn\/tensorflow,juharris\/tensorflow,adit-chandra\/tensorflow,pierreg\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,seanli9jan\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,ZhangXinNan\/tensorflow,jeffzheng1\/tensorflow,whn09\/tensorflow,vrv\/tensorflow,admcrae\/tensorflow,karllessard\/tensorflow,paolodedios\/tensorflow,adit-chandra\/tensorflow,jwlawson\/tensorflow,annarev\/tensorflow,ArtsiomCh\/tensorflow,jhseu\/tensorflow,aselle\/tensorflow,manipopopo\/tensorflow,jart\/tensorflow,mortada\/tensorflow,laszlocsomor\/tensorflow,code-sauce\/tensorflow,av8ramit\/tensorflow,petewarden\/tensorflow,ArtsiomCh\/tensorflow,alsrgv\/tensorflow,codrut3\/tensorflow,cancan101\/tensorflow,seanli9jan\/tensorflow,tiagofrepereira2012\/tensorflow,brchiu\/tensorflow,naturali\/tensorflow,asadziach\/tensorflow,petewarden\/tensorflow,taknevski\/tensorflow-xsmm,benoitsteiner\/tensorflow-opencl,ghchinoy\/tensorflow,gunan\/tensorflow,taknevski\/tensorflow-xsmm,frreiss\/tensorflow-fred,allenlavoie\/tensorflow,scenarios\/tensorflow,girving\/tensorflow,jhseu\/tensorflow,aam-at\/tensorflow,thjashin\/tensorflow,gojira\/tensorflow,petewarden\/tensorflow,andrewcmyers\/tensorflow,bowang\/tensorflow,jbedorf\/tensorflow,horance-liu\/tensorflow,allenlavoie\/tensorflow,manazhao\/tf_recsys,DCSaunders\/tensorflow,jbedorf\/tensorflow,chris-chris\/tensorflow,laszlocsomor\/tensorflow,scenarios\/tensorflow,jendap\/tensorflow,AndreasMadsen\/tensorflow,girving\/tensorflow,guschmue\/tensorflow,benoitsteiner\/tensorflow,ZhangXinNan\/tensorflow,Intel-Corporation\/tensorflow,girving\/tensorflow,anand-c-goog\/tensorflow,JVillella\/tensorflow,krikru\/tensorflow-opencl,adamtiger\/tensorflow,benoitsteiner\/tensorflow-xsmm,Moriadry\/tensorflow,alshedivat\/tensorflow,dongjoon-hyun\/tensorflow,cg31\/tensorflow,alheinecke\/tensorflow-xsmm,jhseu\/tensorflow,chemelnucfin\/tensorflow,ville-k\/tensorflow,ishay2b\/tensorflow,dongjoon-hyun\/tensorflow,snnn\/tensorflow,thjashin\/tensorflow,jalexvig\/tensorflow,jwlawson\/tensorflow,theflofly\/tensorflow,av8ramit\/tensorflow,jhseu\/tensorflow,mixturemodel-flow\/tensorflow,davidzchen\/tensorflow,andrewcmyers\/tensorflow,kobejean\/tensorflow,mixturemodel-flow\/tensorflow,horance-liu\/tensorflow,hsaputra\/tensorflow,elingg\/tensorflow,manazhao\/tf_recsys,sarvex\/tensorflow,tillahoffmann\/tensorflow,strint\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,jhseu\/tensorflow,strint\/tensorflow,MycChiu\/tensorflow,asadziach\/tensorflow,annarev\/tensorflow,taknevski\/tensorflow-xsmm,AndreasMadsen\/tensorflow,kchodorow\/tensorflow,MycChiu\/tensorflow,theflofly\/tensorflow,elingg\/tensorflow,strint\/tensorflow,MostafaGazar\/tensorflow,MostafaGazar\/tensorflow,whn09\/tensorflow,AnishShah\/tensorflow,benoitsteiner\/tensorflow-opencl,codrut3\/tensorflow,jalexvig\/tensorflow,elingg\/tensorflow,AnishShah\/tensorflow,unsiloai\/syntaxnet-ops-hack,chris-chris\/tensorflow,xzturn\/tensorflow,kchodorow\/tensorflow,Mazecreator\/tensorflow,Xeralux\/tensorflow,caisq\/tensorflow,alistairlow\/tensorflow,with-git\/tensorflow,alshedivat\/tensorflow,gunan\/tensorflow,bowang\/tensorflow,pavelchristof\/gomoku-ai,anilmuthineni\/tensorflow,snnn\/tensorflow,memo\/tensorflow,adit-chandra\/tensorflow,freedomtan\/tensorflow,allenlavoie\/tensorflow,ArtsiomCh\/tensorflow,johndpope\/tensorflow,nikste\/tensorflow,hfp\/tensorflow-xsmm,haeusser\/tensorflow,theflofly\/tensorflow,paolodedios\/tensorflow,JingJunYin\/tensorflow,alivecor\/tensorflow,paolodedios\/tensorflow,Intel-Corporation\/tensorflow,jalexvig\/tensorflow,maciekcc\/tensorflow,rdipietro\/tensorflow,nikste\/tensorflow,raymondxyang\/tensorflow,rdipietro\/tensorflow,anand-c-goog\/tensorflow,jwlawson\/tensorflow,allenlavoie\/tensorflow,anand-c-goog\/tensorflow,admcrae\/tensorflow,bowang\/tensorflow,alshedivat\/tensorflow,arborh\/tensorflow,Bulochkin\/tensorflow_pack,yanchen036\/tensorflow,aam-at\/tensorflow,seaotterman\/tensorflow,manazhao\/tf_recsys,benoitsteiner\/tensorflow,frreiss\/tensorflow-fred,krikru\/tensorflow-opencl,ZhangXinNan\/tensorflow,Mistobaan\/tensorflow,kevin-coder\/tensorflow-fork,tntnatbry\/tensorflow,seanli9jan\/tensorflow,snnn\/tensorflow,SnakeJenny\/TensorFlow,Bulochkin\/tensorflow_pack,Bismarrck\/tensorflow,Intel-Corporation\/tensorflow,anand-c-goog\/tensorflow,Mistobaan\/tensorflow,a-doumoulakis\/tensorflow,benoitsteiner\/tensorflow-xsmm,paolodedios\/tensorflow,manipopopo\/tensorflow,ravindrapanda\/tensorflow,meteorcloudy\/tensorflow,sandeepdsouza93\/TensorFlow-15712,benoitsteiner\/tensorflow-opencl,cancan101\/tensorflow,kobejean\/tensorflow,AnishShah\/tensorflow,meteorcloudy\/tensorflow,zasdfgbnm\/tensorflow,mavenlin\/tensorflow,nolanliou\/tensorflow,ville-k\/tensorflow,mdrumond\/tensorflow,annarev\/tensorflow,tensorflow\/tensorflow,hfp\/tensorflow-xsmm,nightjean\/Deep-Learning,eadgarchen\/tensorflow,theflofly\/tensorflow,XueqingLin\/tensorflow,abhitopia\/tensorflow,tntnatbry\/tensorflow,strint\/tensorflow,ppwwyyxx\/tensorflow,naturali\/tensorflow,tongwang01\/tensorflow,tillahoffmann\/tensorflow,dendisuhubdy\/tensorflow,xodus7\/tensorflow,kamcpp\/tensorflow,Intel-tensorflow\/tensorflow,karllessard\/tensorflow,apark263\/tensorflow,martinwicke\/tensorflow,guschmue\/tensorflow,DavidNorman\/tensorflow,manipopopo\/tensorflow,thjashin\/tensorflow,yufengg\/tensorflow,karllessard\/tensorflow,arborh\/tensorflow,eerwitt\/tensorflow,kevin-coder\/tensorflow-fork,JingJunYin\/tensorflow,handroissuazo\/tensorflow,petewarden\/tensorflow,freedomtan\/tensorflow,memo\/tensorflow,llhe\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,Intel-tensorflow\/tensorflow,jwlawson\/tensorflow,HKUST-SING\/tensorflow,ZhangXinNan\/tensorflow,sjperkins\/tensorflow,frreiss\/tensorflow-fred,kevin-coder\/tensorflow-fork,aam-at\/tensorflow,code-sauce\/tensorflow,anilmuthineni\/tensorflow,alsrgv\/tensorflow,pierreg\/tensorflow,abhitopia\/tensorflow,aldian\/tensorflow,dancingdan\/tensorflow,jostep\/tensorflow,eaplatanios\/tensorflow,dancingdan\/tensorflow,frreiss\/tensorflow-fred,karllessard\/tensorflow,andrewcmyers\/tensorflow,mortada\/tensorflow,asadziach\/tensorflow,MostafaGazar\/tensorflow,sjperkins\/tensorflow,ppwwyyxx\/tensorflow,mdrumond\/tensorflow,aselle\/tensorflow,yongtang\/tensorflow,jeffzheng1\/tensorflow,pcm17\/tensorflow,tiagofrepereira2012\/tensorflow,pcm17\/tensorflow,elingg\/tensorflow,DCSaunders\/tensorflow,ychfan\/tensorflow,Bismarrck\/tensorflow,Mistobaan\/tensorflow,MoamerEncsConcordiaCa\/tensorflow,DavidNorman\/tensorflow,yongtang\/tensorflow,mrry\/tensorflow,llhe\/tensorflow,benoitsteiner\/tensorflow-xsmm,kobejean\/tensorflow,seanli9jan\/tensorflow,scenarios\/tensorflow,lakshayg\/tensorflow,manipopopo\/tensorflow,unsiloai\/syntaxnet-ops-hack,sarvex\/tensorflow,gnieboer\/tensorflow,sandeepgupta2k4\/tensorflow,jendap\/tensorflow,johndpope\/tensorflow,dendisuhubdy\/tensorflow,ville-k\/tensorflow,chenjun0210\/tensorflow,jendap\/tensorflow,hsaputra\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,Carmezim\/tensorflow,handroissuazo\/tensorflow,freedomtan\/tensorflow,sarvex\/tensorflow,Mistobaan\/tensorflow"} {"commit":"bf979e9a88e6211066de5ccc6f875228619efecf","old_file":"src\/amberdriver\/common\/drivermsg.proto","new_file":"src\/amberdriver\/common\/drivermsg.proto","old_contents":"package amber;\noption java_package = \"pl.edu.agh.amber.common.proto\";\noption java_outer_classname = \"CommonProto\";\n\noption optimize_for = SPEED;\n\nenum DeviceType { \n NINEDOF = 1;\n ROBOCLAW = 2;\n STARGAZER = 3;\n HOKUYO = 4;\n DUMMY = 5;\n LOCATION = 6;\n MAESTRO = 7;\n}\n\nmessage DriverHdr {\n optional int32 deviceType = 1;\n optional int32 deviceID = 2;\n repeated int32 clientIDs = 3 [packed = true];\n}\n\nmessage DriverMsg {\n enum MsgType {\n DATA = 1;\n PING = 2;\n PONG = 3;\n CLIENT_DIED = 4;\n DRIVER_DIED = 5;\n SUBSCRIBE = 6;\n UNSUBSCRIBE = 7;\n }\n\n required MsgType type = 2;\n optional uint32 synNum = 3;\n optional uint32 ackNum = 4;\n optional uint32 listenerNum = 5;\n extensions 10 to 99;\n}\n","new_contents":"package amber;\noption java_package = \"pl.edu.agh.amber.common.proto\";\noption java_outer_classname = \"CommonProto\";\n\noption optimize_for = SPEED;\n\nenum DeviceType { \n NINEDOF = 1;\n ROBOCLAW = 2;\n STARGAZER = 3;\n HOKUYO = 4;\n DUMMY = 5;\n LOCATION = 6;\n MAESTRO = 7;\n}\n\nmessage DriverHdr {\n optional int32 deviceType = 1;\n optional int32 deviceID = 2;\n repeated int32 clientIDs = 3 [packed = true];\n}\n\nmessage DriverMsg {\n enum MsgType {\n DATA = 1;\n PING = 2;\n PONG = 3;\n CLIENT_DIED = 4;\n DRIVER_DIED = 5;\n SUBSCRIBE = 6;\n UNSUBSCRIBE = 7;\n }\n\n required MsgType type = 2;\n optional uint32 synNum = 3;\n optional uint32 ackNum = 4;\n optional uint32 listenerNum = 5;\n extensions 10 to 89;\n}\n","subject":"Update driver message to the latest version","message":"Update driver message to the latest version\n","lang":"Protocol Buffer","license":"mit","repos":"showmen15\/testEEE,showmen15\/testEEE"} {"commit":"2e171b509ebe163ac54332eec626dccdfa18c9ad","old_file":"sdk\/src\/main\/proto\/proto2_coder_test_messages.proto","new_file":"sdk\/src\/main\/proto\/proto2_coder_test_messages.proto","old_contents":"\/*\n * Copyright (C) 2015 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not\n * use this file except in compliance with the License. You may obtain a copy of\n * the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and limitations under\n * the License.\n *\/\n\n\/*\n * Protocol Buffer messages used for testing Proto2Coder implementation.\n *\/\n\nsyntax = \"proto2\";\n\npackage proto2_coder_test_messages;\n\noption java_package = \"com.google.cloud.dataflow.sdk.coders\";\n\nmessage MessageA {\n optional string field1 = 1;\n repeated MessageB field2 = 2;\n}\n\nmessage MessageB {\n optional bool field1 = 1;\n}\n\nmessage MessageC {\n extensions 100 to 105;\n}\n\nextend MessageC {\n optional MessageA field1 = 101;\n optional MessageB field2 = 102;\n}\n","new_contents":"\/*\n * Copyright (C) 2015 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\"); you may not\n * use this file except in compliance with the License. You may obtain a copy of\n * the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\n * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\n * License for the specific language governing permissions and limitations under\n * the License.\n *\/\n\n\/*\n * Protocol Buffer messages used for testing Proto2Coder implementation.\n *\/\n\nsyntax = \"proto2\";\n\npackage proto2_coder_test_messages;\n\noption java_package = \"com.google.cloud.dataflow.sdk.coders\";\n\nmessage MessageA {\n optional string field1 = 1;\n repeated MessageB field2 = 2;\n}\n\nmessage MessageB {\n optional bool field1 = 1;\n}\n\nmessage MessageC {\n extensions 100 to 105;\n}\n\nextend MessageC {\n optional MessageA field1 = 101;\n optional MessageB field2 = 102;\n}\n\nmessage MessageWithMap {\n map field1 = 1;\n}\n\nmessage ReferencesMessageWithMap {\n repeated MessageWithMap field1 = 1;\n}\n","subject":"Add new test proto messages that use map fields","message":"Add new test proto messages that use map fields\n\nDirectly, and transitively.\n\n----Release Notes----\n[]\n-------------\nCreated by MOE: https:\/\/github.com\/google\/moe\nMOE_MIGRATED_REVID=115280894\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"amitsela\/beam,tweise\/beam,rangadi\/beam,joshualitt\/DataflowJavaSDK,robertwb\/incubator-beam,charlesccychen\/beam,dhalperi\/beam,amarouni\/incubator-beam,vikkyrk\/incubator-beam,rangadi\/incubator-beam,jbonofre\/beam,rangadi\/beam,chamikaramj\/beam,markflyhigh\/incubator-beam,rangadi\/incubator-beam,wangyum\/beam,amitsela\/beam,joshualitt\/incubator-beam,jasonkuster\/beam,RyanSkraba\/beam,charlesccychen\/beam,charlesccychen\/incubator-beam,amitsela\/beam,jbonofre\/incubator-beam,chamikaramj\/beam,apache\/beam,peihe\/incubator-beam,ravwojdyla\/incubator-beam,tgroh\/beam,ravwojdyla\/incubator-beam,staslev\/incubator-beam,markflyhigh\/incubator-beam,charlesccychen\/beam,chamikaramj\/incubator-beam,elibixby\/DataflowJavaSDK,jasonkuster\/incubator-beam,yk5\/beam,wangyum\/beam,wtanaka\/beam,tweise\/incubator-beam,chamikaramj\/beam,markflyhigh\/incubator-beam,manuzhang\/beam,tgroh\/beam,apache\/beam,josauder\/AOP_incubator_beam,manuzhang\/beam,charlesccychen\/beam,rangadi\/beam,chamikaramj\/beam,dhalperi\/incubator-beam,apache\/beam,lukecwik\/incubator-beam,markflyhigh\/incubator-beam,amarouni\/incubator-beam,iemejia\/incubator-beam,chamikaramj\/beam,markflyhigh\/incubator-beam,dhalperi\/beam,lukecwik\/incubator-beam,lukecwik\/incubator-beam,robertwb\/incubator-beam,RyanSkraba\/beam,amitsela\/incubator-beam,manuzhang\/incubator-beam,staslev\/beam,RyanSkraba\/beam,chamikaramj\/beam,tgroh\/beam,xsm110\/Apache-Beam,markflyhigh\/incubator-beam,rangadi\/beam,tweise\/incubator-beam,wtanaka\/beam,apache\/beam,amitsela\/incubator-beam,chamikaramj\/beam,sammcveety\/DataflowJavaSDK,robertwb\/incubator-beam,mxm\/incubator-beam,dhalperi\/incubator-beam,sammcveety\/incubator-beam,jasonkuster\/incubator-beam,ravwojdyla\/incubator-beam,chamikaramj\/incubator-beam,nevillelyh\/DataflowJavaSDK,charlesccychen\/incubator-beam,charlesccychen\/beam,charlesccychen\/incubator-beam,dhalperi\/beam,xsm110\/Apache-Beam,RyanSkraba\/beam,chamikaramj\/beam,yk5\/beam,jasonkuster\/beam,tweise\/beam,rangadi\/beam,apache\/beam,sammcveety\/DataflowJavaSDK,wtanaka\/beam,jasonkuster\/beam,joshualitt\/incubator-beam,chamikaramj\/beam,RyanSkraba\/beam,markflyhigh\/incubator-beam,mxm\/incubator-beam,jbonofre\/beam,staslev\/beam,chamikaramj\/beam,apache\/beam,manuzhang\/incubator-beam,charlesccychen\/beam,jbonofre\/beam,robertwb\/incubator-beam,robertwb\/incubator-beam,sammcveety\/incubator-beam,peihe\/incubator-beam,yk5\/beam,wangyum\/beam,vikkyrk\/incubator-beam,iemejia\/incubator-beam,lukecwik\/incubator-beam,jbonofre\/beam,rangadi\/incubator-beam,RyanSkraba\/beam,elibixby\/DataflowJavaSDK,joshualitt\/DataflowJavaSDK,tgroh\/beam,manuzhang\/beam,rangadi\/beam,staslev\/beam,apache\/beam,charlesccychen\/beam,staslev\/incubator-beam,eljefe6a\/incubator-beam,eljefe6a\/incubator-beam,apache\/beam,apache\/beam,robertwb\/incubator-beam,xsm110\/Apache-Beam,lukecwik\/incubator-beam,eljefe6a\/incubator-beam,lukecwik\/incubator-beam,tgroh\/incubator-beam,apache\/beam,robertwb\/incubator-beam,robertwb\/incubator-beam,sammcveety\/incubator-beam,lukecwik\/incubator-beam,tgroh\/incubator-beam,peihe\/incubator-beam,rangadi\/beam,wangyum\/beam,lukecwik\/incubator-beam,jbonofre\/incubator-beam,vikkyrk\/incubator-beam,robertwb\/incubator-beam,RyanSkraba\/beam,josauder\/AOP_incubator_beam,apache\/beam,lukecwik\/incubator-beam,robertwb\/incubator-beam,lukecwik\/incubator-beam"} {"commit":"544164e4b9d084ec06cd4a7e1cd6ebb09f59a3f7","old_file":"nrpc.proto","new_file":"nrpc.proto","old_contents":"syntax = \"proto3\";\n\npackage nrpc;\n\noption go_package = \"github.com\/rapidloop\/nrpc\";\n\nimport \"google\/protobuf\/descriptor.proto\";\n\nenum SubjectRule {\n COPY = 0;\n TOLOWER = 1;\n}\n\nextend google.protobuf.FileOptions {\n \/\/ A custom subject prefix to use instead of the package name\n string packageSubject = 50000;\n \/\/ Parameters included in the subject at the package level\n repeated string packageSubjectParams = 50001;\n \/\/ Default rule to build a service subject from the service name\n SubjectRule serviceSubjectRule = 50002;\n \/\/ Default rule to build a method subject from its name\n SubjectRule methodSubjectRule = 50003;\n}\n\nextend google.protobuf.ServiceOptions {\n\t\/\/ A custom subject token to use instead of (service name + serviceSubjectRule)\n\tstring serviceSubject = 51000;\n\t\/\/ Parameters included in the subject at the service level\n\trepeated string serviceSubjectParams = 51001;\n}\n\nextend google.protobuf.MethodOptions {\n \/\/ A custom subject to use instead of (methor name + methodSubjectRule)\n string methodSubject = 52000;\n \/\/ Parameters included in the subject at the method level\n repeated string methodSubjectParams = 52001;\n}\n\nmessage Error {\n enum Type {\n CLIENT = 0;\n SERVER = 1;\n }\n Type type = 1;\n\tstring message = 2;\n}\n\nmessage Void {}\n\nmessage NoReply {}\n","new_contents":"syntax = \"proto3\";\n\npackage nrpc;\n\noption go_package = \"github.com\/rapidloop\/nrpc\";\n\nimport \"google\/protobuf\/descriptor.proto\";\n\nenum SubjectRule {\n COPY = 0;\n TOLOWER = 1;\n}\n\nextend google.protobuf.FileOptions {\n \/\/ A custom subject prefix to use instead of the package name\n string packageSubject = 50000;\n \/\/ Parameters included in the subject at the package level\n repeated string packageSubjectParams = 50001;\n \/\/ Default rule to build a service subject from the service name\n SubjectRule serviceSubjectRule = 50002;\n \/\/ Default rule to build a method subject from its name\n SubjectRule methodSubjectRule = 50003;\n}\n\nextend google.protobuf.ServiceOptions {\n\t\/\/ A custom subject token to use instead of (service name + serviceSubjectRule)\n\tstring serviceSubject = 51000;\n\t\/\/ Parameters included in the subject at the service level\n\trepeated string serviceSubjectParams = 51001;\n}\n\nextend google.protobuf.MethodOptions {\n \/\/ A custom subject to use instead of (methor name + methodSubjectRule)\n string methodSubject = 52000;\n \/\/ Parameters included in the subject at the method level\n repeated string methodSubjectParams = 52001;\n}\n\nmessage Error {\n enum Type {\n CLIENT = 0;\n SERVER = 1;\n }\n Type type = 1;\n\tstring message = 2;\n}\n\nmessage Void {}\n\nmessage NoRequest {}\nmessage NoReply {}\n","subject":"Add a 'NoRequest' message type","message":"Add a 'NoRequest' message type\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"rapidloop\/nrpc"} {"commit":"dfe70de06663c9543a5b8884cad793f61aaa8b8f","old_file":"common\/protobuf\/defender_settings.proto","new_file":"common\/protobuf\/defender_settings.proto","old_contents":"syntax = \"proto3\";\n\npackage defender;\n\n\/\/ Commands and reports for communicating with an ARIS Defender.\n\/\/ Note that little is available to control via this interface, as\n\/\/ the diver is intended to have primary control.\n\nmessage DefenderSet {\n string dateTime = 1;\n Frequency frequency = 2;\n uint32 range = 3;\n Units units = 4;\n uint32 antialiasing = 5;\n FrameStreamReceiver receiver = 6;\n}\n\nmessage DefenderReport {\n string dateTime = 1;\n Frequency frequency = 2;\n uint32 range = 3;\n Units units = 4;\n uint32 antialiasing = 5;\n FrameStreamReceiver receiver = 6;\n}\n\nenum Frequency {\n AUTO = 0;\n LOW = 1;\n HIGH = 2;\n}\n\n\/\/ for depth and range markers\nenum Units {\n METERS = 0;\n FEET = 1;\n}\n\nmessage FrameStreamReceiver {\n string ip = 1;\n uint32 port = 2;\n}\n\n","new_contents":"syntax = \"proto3\";\n\npackage defender;\n\n\/\/ Commands and reports for communicating with an ARIS Defender.\n\/\/ Note that little is available to control via this interface, as\n\/\/ the diver is intended to have primary control.\n\nmessage DefenderSet {\n string dateTime = 1;\n Frequency frequency = 2;\n uint32 range = 3;\n Units units = 4;\n uint32 antialiasing = 5;\n FrameStreamReceiver receiver = 6;\n FieldUpdate fieldsUsed = 7;\n}\n\nmessage DefenderReport {\n string dateTime = 1;\n Frequency frequency = 2;\n uint32 range = 3;\n Units units = 4;\n uint32 antialiasing = 5;\n FrameStreamReceiver receiver = 6;\n}\n\nenum Frequency {\n AUTO = 0;\n LOW = 1;\n HIGH = 2;\n}\n\n\/\/ for depth and range markers\nenum Units {\n METERS = 0;\n FEET = 1;\n}\n\nmessage FrameStreamReceiver {\n string ip = 1;\n uint32 port = 2;\n}\n\n\/\/ An effort to deal with the ambiguity of protobuf v3 and its tendency to elide\n\/\/ fields that have a value of zero. The original DefenderSet message was not meant\n\/\/ to send multiple fields at once, but losing the ability to call .has_xxx has been\n\/\/ problematic.\n\/\/\n\/\/ Usage: bitwise-or the field specs that are passed in DefenderSet and set fieldsUsed.\nenum FieldUpdate {\n NONE = 0x00;\n DATETIME = 0x01;\n FREQUENCY = 0x02;\n RANGE = 0x04;\n UNITS = 0x08;\n ANTIALIASING = 0x10; \/\/ Not currently implemented.\n RECEIVER = 0x20;\n}\n","subject":"Add FieldUpdate and fieldsUsed for DefenderSet","message":"Add FieldUpdate and fieldsUsed for DefenderSet\n","lang":"Protocol Buffer","license":"mit","repos":"SoundMetrics\/aris-integration-sdk,SoundMetrics\/aris-integration-sdk,SoundMetrics\/aris-integration-sdk,SoundMetrics\/aris-integration-sdk,SoundMetrics\/aris-integration-sdk"} {"commit":"130caa9b8824d1f5711ba8c40f979bc825df6727","old_file":"base\/src\/main\/proto\/spine\/ui\/language.proto","new_file":"base\/src\/main\/proto\/spine\/ui\/language.proto","old_contents":"\/*\n * Copyright 2019, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.ui;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_multiple_files = true;\noption java_outer_classname = \"LanguageProto\";\noption java_package = \"io.spine.ui\";\n\nenum Language {\n UNDEFINED = 0;\n\n \/\/TODO:2015-12-16:alexander.yevsyukov: Implement\n}\n","new_contents":"\/*\n * Copyright 2019, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.ui;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_multiple_files = true;\noption java_outer_classname = \"LanguageProto\";\noption java_package = \"io.spine.ui\";\n\n\/\/ A human language.\n\/\/\n\/\/ See https:\/\/github.com\/SpineEventEngine\/base\/issues\/2\nenum Language {\n\n UNDEFINED = 0;\n}\n","subject":"Remove `Language` todo item and replace it with a reference to an issue.","message":"Remove `Language` todo item and replace it with a reference to an issue.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/base,SpineEventEngine\/base,SpineEventEngine\/base"} {"commit":"5778b3b91eb44abd6ff23f321f97fac5c9eb9513","old_file":"proto\/otmp_meta_proto.proto","new_file":"proto\/otmp_meta_proto.proto","old_contents":"package otmp.meta;\n\nmessage meta {\n enum msgtype {\n meta = 0;\n ping = 1;\n pong = 2;\n connect = 3;\n disconnect = 4;\n connect_resp = 5;\n force_disconnect = 6;\n client_egress_chat_msg = 7;\n server_egress_chat_msg = 8;\n }\n required msgtype type = 1;\n required bytes msg = 2;\n}\n","new_contents":"package otmp.meta;\n\nmessage meta {\n enum msgtype {\n meta = 0;\n ping = 1;\n pong = 2;\n connect = 3;\n disconnect = 4;\n conn_status = 5;\n client_egress_chat_msg = 6;\n server_egress_chat_msg = 7;\n }\n required msgtype type = 1;\n required bytes msg = 2;\n}\n","subject":"Correct meta enums to reflect current state of protocol","message":"Correct meta enums to reflect current state of protocol\n","lang":"Protocol Buffer","license":"mit","repos":"otmp\/otmp-server"} {"commit":"757eb1ae66e40c1b80a4c631b0e86f5e7e6d69ff","old_file":"client\/minicomm\/config.proto","new_file":"client\/minicomm\/config.proto","old_contents":"syntax = \"proto2\";\n\noption cc_api_version = 2;\npackage grr;\n\nmessage ClientConfiguration {\n repeated string control_url = 1;\n repeated string proxy_server = 2;\n\n \/\/ The ca certificate which is used to validate server certs.\n optional string ca_cert_pem = 3;\n\n \/\/ The RSA private key of the client.\n optional string client_private_key_pem = 4;\n\n optional int32 last_server_cert_serial_number = 5;\n\n \/\/ The file to write configuration updates.\n optional string writeback_filename = 6;\n\n message SubprocessConfig {\n optional string filename = 1;\n repeated string argv = 2;\n repeated string env = 3;\n }\n optional SubprocessConfig subprocess_config = 7;\n}\n","new_contents":"syntax = \"proto2\";\n\npackage grr;\n\nmessage ClientConfiguration {\n repeated string control_url = 1;\n repeated string proxy_server = 2;\n\n \/\/ The ca certificate which is used to validate server certs.\n optional string ca_cert_pem = 3;\n\n \/\/ The RSA private key of the client.\n optional string client_private_key_pem = 4;\n\n optional int32 last_server_cert_serial_number = 5;\n\n \/\/ The file to write configuration updates.\n optional string writeback_filename = 6;\n\n message SubprocessConfig {\n optional string filename = 1;\n repeated string argv = 2;\n repeated string env = 3;\n }\n optional SubprocessConfig subprocess_config = 7;\n}\n","subject":"Remove version from proto file","message":"Remove version from proto file\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"statik\/grr,google\/grr,destijl\/grr,darrenbilby\/grr,shifter\/grr,shifter\/grr,ahojjati\/grr,dunkhong\/grr,ksmaheshkumar\/grr,pchaigno\/grr,pchaigno\/grr,dunkhong\/grr,pombredanne\/grr,google\/grr,pidydx\/grr,bgalehouse\/grr,ahojjati\/grr,pombredanne\/grr,darrenbilby\/grr,google\/grr,ksmaheshkumar\/grr,pchaigno\/grr,shifter\/grr,destijl\/grr,ahojjati\/grr,statik\/grr,darrenbilby\/grr,ksmaheshkumar\/grr,pidydx\/grr,pombredanne\/grr,pidydx\/grr,wandec\/grr,darrenbilby\/grr,pombredanne\/grr,wandec\/grr,dunkhong\/grr,google\/grr,pombredanne\/grr,ahojjati\/grr,pidydx\/grr,destijl\/grr,wandec\/grr,dunkhong\/grr,wandec\/grr,bgalehouse\/grr,darrenbilby\/grr,pchaigno\/grr,shifter\/grr,statik\/grr,pchaigno\/grr,bgalehouse\/grr,pidydx\/grr,ahojjati\/grr,darrenbilby\/grr,bgalehouse\/grr,statik\/grr,pchaigno\/grr,ksmaheshkumar\/grr,shifter\/grr,bgalehouse\/grr,google\/grr,destijl\/grr,wandec\/grr,pombredanne\/grr,pombredanne\/grr,wandec\/grr,dunkhong\/grr,ksmaheshkumar\/grr,google\/grr,ksmaheshkumar\/grr,statik\/grr,google\/grr,ksmaheshkumar\/grr,destijl\/grr,dunkhong\/grr,bgalehouse\/grr,pidydx\/grr,ahojjati\/grr,destijl\/grr,pchaigno\/grr,statik\/grr,ahojjati\/grr,shifter\/grr,statik\/grr,bgalehouse\/grr,destijl\/grr,darrenbilby\/grr,dunkhong\/grr,shifter\/grr,pidydx\/grr"} {"commit":"51da8329bb8e2c96ae8e206e8c83eaa6ecfe1ef9","old_file":"bq_field.proto","new_file":"bq_field.proto","old_contents":"\/\/ Copyright 2014 Google Inc. All rights reserved.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto2\";\npackage gen_bq_schema;\n\noption go_package = \"protos\";\n\nimport \"google\/protobuf\/descriptor.proto\";\n\nextend google.protobuf.FieldOptions {\n \/\/ Flag to specify that a field should be marked as 'REQUIRED' when\n \/\/ used to generate schema for BigQuery.\n \/\/\n \/\/ TODO: register with protobuf-global-extension-registry@google.com\n optional bool require = 1022;\n\n \/\/ Optionally override whatever type is resolved by the schema\n \/\/ generator. This is useful, for example, to store epoch timestamps\n \/\/ with the underlying 'TIMESTAMP' type, when normally, they would\n \/\/ be structured as 'INTEGER' fields.\n \/\/\n \/\/ TODO: register with protobuf-global-extension-registry@google.com\n optional string type_override = 1023;\n}\n","new_contents":"\/\/ Copyright 2014 Google Inc. All rights reserved.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto2\";\npackage gen_bq_schema;\n\noption go_package = \"protos\";\n\nimport \"google\/protobuf\/descriptor.proto\";\n\nextend google.protobuf.FieldOptions {\n \/\/ Flag to specify that a field should be marked as 'REQUIRED' when\n \/\/ used to generate schema for BigQuery.\n \/\/\n \/\/ TODO: register with protobuf-global-extension-registry@google.com\n optional bool require = 1022;\n\n \/\/ Optionally override whatever type is resolved by the schema\n \/\/ generator. This is useful, for example, to store epoch timestamps\n \/\/ with the underlying 'TIMESTAMP' type, when normally, they would\n \/\/ be structured as 'INTEGER' fields.\n \/\/\n \/\/ TODO: register with protobuf-global-extension-registry@google.com\n optional string type_override = 1023;\n\n \/\/ Optionally omit a field from BigQuery schema.\n \/\/\n \/\/ TODO: register with protobuf-global-extension-registry@google.com\n optional bool ignore = 1024;\n}\n","subject":"Add ignore field to proto","message":"Add ignore field to proto\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"GoogleCloudPlatform\/protoc-gen-bq-schema"} {"commit":"ea6c0e58c9ab13bb7676f5211ca81e2a71ac5a71","old_file":"examples\/proto\/Booking.proto","new_file":"examples\/proto\/Booking.proto","old_contents":"\/**\n * Booking related messages.\n *\n * This file is really just an example. The data model is completely\n * fictional.\n *\n * Author: Elvis Stansvik\n *\/\npackage com.example;\n\n\/**\n * Represents the status of a vehicle booking.\n *\/\nmessage BookingStatus {\n required int32 id = 1; \/\/\/ Unique booking status ID.\n required string description = 2; \/\/\/ Booking status description. E.g. \"Active\".\n}\n\n\/**\n * Represents the booking of a vehicle.\n *\n * Vehicles are some cool shit. But drive carefully!\n *\/\nmessage Booking {\n required int32 vehicle_id = 1; \/\/\/ ID of booked vehicle.\n required int32 customer_id = 2; \/\/\/ Customer that booked the vehicle.\n required BookingStatus status = 3; \/\/\/ Status of the booking.\n\n \/** Has booking confirmation been sent? *\/\n required bool confirmation_sent = 4;\n\n \/** Has payment been received? *\/\n required bool payment_received = 5;\n}\n\n\/**\n * Service for handling vehicle bookings.\n *\/\nservice BookingService {\n rpc BookVehicle (Booking) returns (BookingStatus); \/\/\/ Used to book a vehicle. Pass in a Booking and a Booking Status will be returned\n}\n","new_contents":"\/**\n * Booking related messages.\n *\n * This file is really just an example. The data model is completely\n * fictional.\n *\n * Author: Elvis Stansvik\n *\/\npackage com.example;\n\n\/**\n * Represents the status of a vehicle booking.\n *\/\nmessage BookingStatus {\n required int32 id = 1; \/\/\/ Unique booking status ID.\n required string description = 2; \/\/\/ Booking status description. E.g. \"Active\".\n}\n\n\/**\n * Represents the booking of a vehicle.\n *\n * Vehicles are some cool shit. But drive carefully!\n *\/\nmessage Booking {\n required int32 vehicle_id = 1; \/\/\/ ID of booked vehicle.\n required int32 customer_id = 2; \/\/\/ Customer that booked the vehicle.\n required BookingStatus status = 3; \/\/\/ Status of the booking.\n\n \/** Has booking confirmation been sent? *\/\n required bool confirmation_sent = 4;\n\n \/** Has payment been received? *\/\n required bool payment_received = 5;\n}\n\n\/**\n * Service for handling vehicle bookings.\n *\/\nservice BookingService {\n \/\/\/ Used to book a vehicle. Pass in a Booking and a Booking Status will be returned\n rpc BookVehicle (Booking) returns (BookingStatus);\n}\n","subject":"Put comment before RPC method","message":"Put comment before RPC method\n\nAvoids the very long line.\n","lang":"Protocol Buffer","license":"mit","repos":"dr-joy\/protoc-gen-doc,DengKe1994\/protoc-gen-doc,pseudomuto\/protoc-gen-doc,dr-joy\/protoc-gen-doc,DengKe1994\/protoc-gen-doc,estan\/protoc-gen-doc,estan\/protoc-gen-doc,DengKe1994\/protoc-gen-doc,estan\/protoc-gen-doc,pseudomuto\/protoc-gen-doc,DengKe1994\/protoc-gen-doc"} {"commit":"8845a03b43ccb7b83c7cdf8680663e3b2903e1dd","old_file":"version1.proto","new_file":"version1.proto","old_contents":"option optimize_for = LITE_RUNTIME;\n\npackage orwell.com;\n\n\/\/ Base message used for communication, it contains an header defining the type of message\n\/\/ And another message serialized in a byte array\nmessage base_message {\n\trequired string message_type = 1;\n\trequired bytes serialized_message = 2;\n\toptional string recipient = 3;\n}\n\n\/\/ This message is used to handle a new client's login\nmessage login_message {\n\trequired string client_id = 1;\n\trequired string wished_robot_type = 2;\n}\n\nmessage sample_message {\n\trequired string login = 1;\n}\n\nmessage move_tank_message {\n\trequired double left = 1;\n\trequired double right = 2;\n}\n\n","new_contents":"option optimize_for = LITE_RUNTIME;\n\npackage orwell.com;\n\n\/\/ Base message used for communication, it contains an header defining the type of message\n\/\/ And another message serialized in a byte array\nmessage base_message {\n\trequired string message_type = 1;\n\trequired bytes serialized_message = 2;\n}\n\n\/\/ This message is used to handle a new client's login\nmessage login_message {\n\trequired string client_id = 1;\n\trequired string wished_robot_type = 2;\n}\n\nmessage sample_message {\n\trequired string login = 1;\n}\n\nmessage move_tank_message {\n\trequired double left = 1;\n\trequired double right = 2;\n}\n\n","subject":"Remove recipient in message as zmq can filter at a higher level.","message":"Remove recipient in message as zmq can filter at a higher level.\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"orwell-int\/messages,dchilot\/messages,dchilot\/messages,orwell-int\/messages"} {"commit":"f48d5941f7bf7603f955eb84fcd174a8e9088388","old_file":"server\/src\/test\/proto\/spine\/test\/entity\/natural_number.proto","new_file":"server\/src\/test\/proto\/spine\/test\/entity\/natural_number.proto","old_contents":"\/\/\n\/\/ Copyright 2017, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.test.entity.number;\n\noption (type_url_prefix) = \"type.spine3.org\";\noption java_package = \"org.spine3.test.entity.number\";\noption java_multiple_files = true;\n\nimport \"spine\/annotations.proto\";\nimport \"spine\/validate.proto\";\n\nmessage NaturalNumber {\n int32 value = 1 [(min).value = \"1\"];\n}\n","new_contents":"\/\/\n\/\/ Copyright 2017, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.test.entity.number;\n\noption (type_url_prefix) = \"type.spine3.org\";\noption java_package = \"org.spine3.test.entity.number\";\noption java_multiple_files = true;\n\nimport \"spine\/annotations.proto\";\nimport \"spine\/validate.proto\";\n\nmessage NaturalNumber {\n int32 value = 1 [(min).value = \"0\"];\n}\n","subject":"Change min natural number value","message":"Change min natural number value\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"15c82ae154516879b90501620b9ffaf01c115f62","old_file":"values\/src\/main\/proto\/spine\/base\/email.proto","new_file":"values\/src\/main\/proto\/spine\/base\/email.proto","old_contents":"\/\/\n\/\/ Copyright 2016, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.base;\n\noption java_generate_equals_and_hash = true;\noption java_multiple_files = true;\noption java_outer_classname = \"EmailProto\";\noption java_package = \"org.spine3.base\";\n\n\/\/ An email address.\n\/\/ No validation is performed for the passed value.\nmessage EmailAddress {\n \/\/ String value of the address.\n string value = 1;\n}","new_contents":"\/\/\n\/\/ Copyright 2016, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.base;\n\noption java_generate_equals_and_hash = true;\noption java_multiple_files = true;\noption java_outer_classname = \"EmailProto\";\noption java_package = \"org.spine3.base\";\n\n\/\/ An email address.\n\/\/ No validation is performed for the passed value.\nmessage EmailAddress {\n\n \/\/TODO:2016-02-20:alexander.yevsyukov: Make it structured, to reflect http:\/\/www.ietf.org\/rfc\/rfc822.txt\n \/\/ A minimum it should have fields like `user`, `domain`, `personal`, `suffix` - the part coming after `+`.\n \/\/ See also InternetAddress from JavaMail: http:\/\/docs.oracle.com\/javaee\/6\/api\/javax\/mail\/internet\/InternetAddress.html\n\n \/\/ String value of the address.\n string value = 1;\n}","subject":"Add todo for improving `EmailAddress` type.","message":"Add todo for improving `EmailAddress` type.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"483c8d035692de98038447097900f3ea9cb2ff61","old_file":"ksurobot\/protocol\/proto\/main.proto","new_file":"ksurobot\/protocol\/proto\/main.proto","old_contents":"\nmessage Robot {\n \/\/ Message to the robot\n optional LED headlights = 1;\n optional Motor motor_left = 2;\n optional Motor motor_right = 3;\n repeated Procedure procedures = 4;\n\n message Motor {\n optional bool update = 1;\n \/\/ range 0 to 100, as precent of total\n optional int32 speed = 2;\n optional bool breaks = 3;\n }\n message Servo {\n optional bool update = 1;\n optional int32 degree = 2;\n }\n message LED {\n optional bool update = 1;\n optional bool on = 2;\n }\n message Procedure {\n oneof procedure {\n GoInCircle circle = 1;\n }\n\n message GoInCircle {\n required int32 radius = 1;\n }\n }\n}\n\nmessage BaseStation {\n \/\/ Message to the basestation\n optional Battery battery = 1;\n\n message Battery {\n optional int32 charge = 1;\n }\n}\n","new_contents":"message Robot {\n \/\/ Message to the robot\n optional LED headlights = 1;\n optional Motor motor_left = 2;\n optional Motor motor_right = 3;\n repeated Procedure procedures = 4;\n optional Servo arm = 5;\n\n message Motor {\n optional bool update = 1;\n \/\/ range 0 to 100, as precent of total\n optional int32 speed = 2;\n optional bool breaks = 3;\n }\n message Servo {\n optional bool update = 1;\n optional int32 degree = 2;\n }\n message LED {\n optional bool update = 1;\n optional bool on = 2;\n }\n message Procedure {\n oneof procedure {\n GoInCircle circle = 1;\n }\n\n message GoInCircle {\n required int32 radius = 1;\n }\n }\n}\n\nmessage BaseStation {\n \/\/ Message to the basestation\n optional Battery battery = 1;\n optional Distance sensor_data = 2;\n\n message Battery {\n optional int32 charge = 1;\n }\n\n message Distance {\n optional int32 front_right = 1;\n optional int32 front_left = 2;\n optional int32 back_right = 3;\n optional int32 back_left = 4;\n optional bool update = 5;\n }\n}\n","subject":"Add sensor data to protobuf","message":"Add sensor data to protobuf\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"ksurct\/MercuryRoboticsEmbedded2016,ksurct\/MercuryRoboticsEmbedded2016,ksurct\/MercuryRoboticsEmbedded2016"} {"commit":"9da1094c6c3c13c33b70382714e429166df6deb3","old_file":"src\/main\/protobuf\/CommonModelMessages.proto","new_file":"src\/main\/protobuf\/CommonModelMessages.proto","old_contents":"option java_multiple_files = true;\noption java_generate_equals_and_hash = true;\noption java_package = \"com.xtrader.protocol.proto.commons.model\";\noption java_outer_classname = \"ContainerCommonModelMessages\";\n\n\n\/\/ --- COMMON API 50 - 69 --- [1 - 49 reserved for traffic intensive messages]\nenum ProtoPayloadType {\n ERROR_RES = 50;\n HEARTBEAT_EVENT = 51;\n PING_REQ = 52;\n PING_RES = 53;\n}\n\n\/\/ COMMON error codes 1 - 99\nenum ProtoErrorCode {\n UNKNOWN_ERROR = 1;\n UNSUPPORTED_MESSAGE = 2;\n INVALID_REQUEST = 3;\n WRONG_PASSWORD = 4;\n TIMEOUT_ERROR = 5;\n ENTITY_NOT_FOUND = 6;\n CANT_ROUTE_REQUEST = 7;\n FRAME_TOO_LONG = 8;\n MARKET_CLOSED = 9;\n CONCURRENT_MODIFICATION = 10;\n}\n\nmessage ProtoIntRange {\n optional int32 from = 1;\n optional int32 to = 2;\n}\n\nmessage ProtoLongRange {\n optional int64 from = 1;\n optional int64 to = 2;\n}\n\nmessage ProtoDoubleRange {\n optional double from = 1;\n optional double to = 2;\n}\n\nenum ProtoTradeSide {\n BUY = 1;\n SELL = 2;\n}\n\nenum ProtoQuoteType {\n BID = 1;\n ASK = 2;\n}\n\nenum ProtoTimeInForce {\n GOOD_TILL_DATE = 1;\n GOOD_TILL_CANCEL = 2;\n IMMEDIATE_OR_CANCEL = 3;\n}\n","new_contents":"option java_multiple_files = true;\noption java_generate_equals_and_hash = true;\noption java_package = \"com.xtrader.protocol.proto.commons.model\";\noption java_outer_classname = \"ContainerCommonModelMessages\";\n\n\n\/\/ --- COMMON API 50 - 69 --- [1 - 49 reserved for traffic intensive messages]\nenum ProtoPayloadType {\n ERROR_RES = 50;\n HEARTBEAT_EVENT = 51;\n PING_REQ = 52;\n PING_RES = 53;\n}\n\n\/\/ COMMON error codes 1 - 99\nenum ProtoErrorCode {\n UNKNOWN_ERROR = 1;\n UNSUPPORTED_MESSAGE = 2;\n INVALID_REQUEST = 3;\n WRONG_PASSWORD = 4;\n TIMEOUT_ERROR = 5;\n ENTITY_NOT_FOUND = 6;\n CANT_ROUTE_REQUEST = 7;\n FRAME_TOO_LONG = 8;\n MARKET_CLOSED = 9;\n CONCURRENT_MODIFICATION = 10;\n}\n\nmessage ProtoIntRange {\n optional int32 from = 1;\n optional int32 to = 2;\n}\n\nmessage ProtoLongRange {\n optional int64 from = 1;\n optional int64 to = 2;\n}\n\nmessage ProtoDoubleRange {\n optional double from = 1;\n optional double to = 2;\n}\n","subject":"Remove these enums as they are already defined elsewhere","message":"Remove these enums as they are already defined elsewhere\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"spotware\/connect-protobuf-messages"} {"commit":"98f8de224eff0f4088c030072ff69a95f1e2f8c7","old_file":"src\/xapian\/asxentries.proto","new_file":"src\/xapian\/asxentries.proto","old_contents":"package AppStream;\noption optimize_for = LITE_RUNTIME;\n\nmessage Urls {\n enum UrlType {\n UNKNOWN = 0;\n HOMEPAGE = 1;\n BUGTRACKER = 2;\n FAQ = 3;\n HELP = 4;\n DONATION = 5;\n }\n\n message Url {\n required UrlType type = 1 [default = UNKNOWN];\n required string url = 2;\n }\n\n repeated Url url = 1;\n}\n","new_contents":"package AppStream;\noption optimize_for = LITE_RUNTIME;\n\n\/* =================================== *\/\nmessage Urls {\n enum UrlType {\n UNKNOWN = 0;\n HOMEPAGE = 1;\n BUGTRACKER = 2;\n FAQ = 3;\n HELP = 4;\n DONATION = 5;\n }\n\n message Url {\n required UrlType type = 1 [default = UNKNOWN];\n required string url = 2;\n }\n\n repeated Url url = 1;\n}\n\n\/* =================================== *\/\nmessage Bundles {\n enum BundleType {\n UNKNOWN = 0;\n LIMBA = 1;\n XDG_APP = 2;\n }\n\n message Bundle {\n required BundleType type = 1 [default = UNKNOWN];\n required string id = 2;\n }\n\n repeated Bundle bundle = 1;\n}\n\n\/* =================================== *\/\nmessage Screenshots {\n message Image {\n required int32 width = 1;\n required int32 height = 2;\n required string url = 3;\n }\n\n message Screenshot {\n required bool primary = 1 [default = false];\n required Image source_image = 2;\n repeated Image thumbnail = 3;\n }\n\n repeated Screenshot screenshot = 1;\n}\n\n\/* =================================== *\/\nmessage Languages {\n message Language {\n required string locale = 1;\n required int32 completion = 2 [default = 0];\n }\n\n repeated Language language = 1;\n}\n","subject":"Define most field types we want for the DB as Protobuf messages","message":"Define most field types we want for the DB as Protobuf messages\n","lang":"Protocol Buffer","license":"lgpl-2.1","repos":"ximion\/appstream,ximion\/appstream,ximion\/appstream,ximion\/appstream"} {"commit":"82b0bd3c6de2bd2f5f9bd4057b5ba0e15ca65c10","old_file":"proto\/onboard_system_handler_config.proto","new_file":"proto\/onboard_system_handler_config.proto","old_contents":"import \"uav_system_config.proto\";\n\nmessage OnboardSystemHandlerConfig {\n required UAVSystemConfig uav_system_config = 1;\n required string uav_parser_type = 2;\n optional int32 uav_parser_load_timeout = 3 [ default = 5 ];\n optional int32 uav_controller_timer_duration = 4 [ default = 20 ]; \/\/ millis\n optional int32 state_machine_timer_duration = 5 [ default = 20 ]; \/\/ millis\n}\n","new_contents":"import \"uav_system_config.proto\";\n\nmessage OnboardSystemHandlerConfig {\n required UAVSystemConfig uav_system_config = 1;\n required string uav_parser_type = 2;\n optional int32 uav_controller_timer_duration = 3 [ default = 20 ]; \/\/ millis\n optional int32 state_machine_timer_duration = 4 [ default = 20 ]; \/\/ millis\n}\n","subject":"Remove parser timeout config param","message":"Remove parser timeout config param\n","lang":"Protocol Buffer","license":"mpl-2.0","repos":"jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy"} {"commit":"24ec490468da0b8202aba34b00471981962fa81f","old_file":"src\/analytics\/self_describing_message.proto","new_file":"src\/analytics\/self_describing_message.proto","old_contents":"\/*\n * Copyright (c) 2014 Juniper Networks, Inc. All rights reserved.\n *\/\n\nimport \"google\/protobuf\/descriptor.proto\";\n\nmessage SelfDescribingMessage {\n \/\/ Timestamp\n required uint64 timestamp = 1;\n\n \/\/ Set of .proto files which define the type.\n required google.protobuf.FileDescriptorSet proto_files = 2;\n\n \/\/ Name of the message type. Must be defined by one of the files in\n \/\/ proto_files.\n required string type_name = 3;\n\n \/\/ The message data.\n required bytes message_data = 4;\n}\n","new_contents":"\/*\n * Copyright (c) 2014 Juniper Networks, Inc. All rights reserved.\n *\/\n\nimport \"google\/protobuf\/descriptor.proto\";\n\nmessage SelfDescribingMessage {\n \/\/ Timestamp\n required uint64 timestamp = 1;\n\n \/\/ Set of .proto files which define the type.\n optional google.protobuf.FileDescriptorSet proto_files = 2;\n\n \/\/ Name of the message type. Must be defined by one of the files in\n \/\/ proto_files.\n required string type_name = 3;\n\n \/\/ The message data.\n required bytes message_data = 4;\n}\n","subject":"Change FileDescriptorSet to be an optional field in self describing message proto file to accomodate any future plans to send schemas separately from the protobuf messages.","message":"Change FileDescriptorSet to be an optional field in self describing\nmessage proto file to accomodate any future plans to send schemas\nseparately from the protobuf messages.\n\nChange-Id: I4a2b96585b20102a850503cc23ed0a354bbb2771\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"vmahuli\/contrail-controller,DreamLab\/contrail-controller,nischalsheth\/contrail-controller,sajuptpm\/contrail-controller,srajag\/contrail-controller,nischalsheth\/contrail-controller,DreamLab\/contrail-controller,nischalsheth\/contrail-controller,hthompson6\/contrail-controller,rombie\/contrail-controller,vmahuli\/contrail-controller,cloudwatt\/contrail-controller,DreamLab\/contrail-controller,rombie\/contrail-controller,srajag\/contrail-controller,numansiddique\/contrail-controller,eonpatapon\/contrail-controller,nischalsheth\/contrail-controller,cloudwatt\/contrail-controller,facetothefate\/contrail-controller,hthompson6\/contrail-controller,hthompson6\/contrail-controller,tcpcloud\/contrail-controller,numansiddique\/contrail-controller,codilime\/contrail-controller,eonpatapon\/contrail-controller,vpramo\/contrail-controller,cloudwatt\/contrail-controller,vpramo\/contrail-controller,hthompson6\/contrail-controller,reiaaoyama\/contrail-controller,sajuptpm\/contrail-controller,sajuptpm\/contrail-controller,codilime\/contrail-controller,DreamLab\/contrail-controller,srajag\/contrail-controller,eonpatapon\/contrail-controller,nischalsheth\/contrail-controller,rombie\/contrail-controller,nischalsheth\/contrail-controller,numansiddique\/contrail-controller,facetothefate\/contrail-controller,eonpatapon\/contrail-controller,tcpcloud\/contrail-controller,reiaaoyama\/contrail-controller,codilime\/contrail-controller,rombie\/contrail-controller,tcpcloud\/contrail-controller,nischalsheth\/contrail-controller,vmahuli\/contrail-controller,vpramo\/contrail-controller,reiaaoyama\/contrail-controller,DreamLab\/contrail-controller,vmahuli\/contrail-controller,vmahuli\/contrail-controller,codilime\/contrail-controller,reiaaoyama\/contrail-controller,codilime\/contrail-controller,cloudwatt\/contrail-controller,sajuptpm\/contrail-controller,reiaaoyama\/contrail-controller,cloudwatt\/contrail-controller,vpramo\/contrail-controller,codilime\/contrail-controller,rombie\/contrail-controller,numansiddique\/contrail-controller,sajuptpm\/contrail-controller,facetothefate\/contrail-controller,rombie\/contrail-controller,sajuptpm\/contrail-controller,facetothefate\/contrail-controller,facetothefate\/contrail-controller,rombie\/contrail-controller,tcpcloud\/contrail-controller,srajag\/contrail-controller,vpramo\/contrail-controller,hthompson6\/contrail-controller,eonpatapon\/contrail-controller,eonpatapon\/contrail-controller,tcpcloud\/contrail-controller,nischalsheth\/contrail-controller,eonpatapon\/contrail-controller,numansiddique\/contrail-controller,tcpcloud\/contrail-controller,srajag\/contrail-controller"} {"commit":"350280518536b868fdb3b75f70fc6d033ca7a9fc","old_file":"proto\/vtworkerservice.proto","new_file":"proto\/vtworkerservice.proto","old_contents":"\/\/ RPC interface for vtworker.\n\/\/ The interface is very similar to the vtctld interface (see vtctlservice.proto).\n\nsyntax = \"proto3\";\n\npackage vtworkerservice;\n\nimport \"vtworkerdata.proto\";\n\n\/\/ Service Vtworker contains the vtworker RPC calls.\nservice Vtworker {\n rpc ExecuteVtworkerCommand (vtworkerdata.ExecuteVtworkerCommandRequest) returns (stream vtworkerdata.ExecuteVtworkerCommandResponse) {};\n}\n","new_contents":"\/\/ RPC interface for vtworker.\n\/\/ The interface is very similar to the vtctld interface (see vtctlservice.proto).\n\nsyntax = \"proto3\";\n\npackage vtworkerservice;\n\nimport \"vtworkerdata.proto\";\n\n\/\/ Service Vtworker contains the vtworker RPC calls.\nservice Vtworker {\n \/\/ ExecuteVtworkerCommand allows to run a vtworker command by specifying the\n \/\/ same arguments as on the command line.\n rpc ExecuteVtworkerCommand (vtworkerdata.ExecuteVtworkerCommandRequest) returns (stream vtworkerdata.ExecuteVtworkerCommandResponse) {};\n}\n","subject":"Add comment to RPC proto definition.","message":"vtworker: Add comment to RPC proto definition.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"netroby\/vitess,applift\/vitess,cgvarela\/vitess,tinyspeck\/vitess,mattharden\/vitess,alainjobart\/vitess,yangzhongj\/vitess,rnavarro\/vitess,mapbased\/vitess,michael-berlin\/vitess,yangzhongj\/vitess,erzel\/vitess,skyportsystems\/vitess,pivanof\/vitess,tirsen\/vitess,vitessio\/vitess,yangzhongj\/vitess,fengshao0907\/vitess,mlc0202\/vitess,SDHM\/vitess,enisoc\/vitess,enisoc\/vitess,dumbunny\/vitess,yaoshengzhe\/vitess,dumbunny\/vitess,dumbunny\/vitess,xgwubin\/vitess,atyenoria\/vitess,atyenoria\/vitess,anusornc\/vitess,sougou\/vitess,mahak\/vitess,alainjobart\/vitess,nurblieh\/vitess,netroby\/vitess,rnavarro\/vitess,alainjobart\/vitess,kuipertan\/vitess,erzel\/vitess,nurblieh\/vitess,AndyDiamondstein\/vitess,dcadevil\/vitess,enisoc\/vitess,mahak\/vitess,michael-berlin\/vitess,AndyDiamondstein\/vitess,mahak\/vitess,atyenoria\/vitess,pivanof\/vitess,enisoc\/vitess,mattharden\/vitess,cgvarela\/vitess,sougou\/vitess,skyportsystems\/vitess,ptomasroos\/vitess,mapbased\/vitess,alainjobart\/vitess,applift\/vitess,netroby\/vitess,alainjobart\/vitess,tirsen\/vitess,rnavarro\/vitess,sougou\/vitess,rnavarro\/vitess,xgwubin\/vitess,nurblieh\/vitess,michael-berlin\/vitess,SDHM\/vitess,cgvarela\/vitess,kmiku7\/vitess-annotated,tinyspeck\/vitess,dcadevil\/vitess,erzel\/vitess,yangzhongj\/vitess,skyportsystems\/vitess,vitessio\/vitess,enisoc\/vitess,erzel\/vitess,tinyspeck\/vitess,yaoshengzhe\/vitess,dcadevil\/vitess,HubSpot\/vitess,erzel\/vitess,aaijazi\/vitess,HubSpot\/vitess,mattharden\/vitess,kmiku7\/vitess-annotated,sougou\/vitess,applift\/vitess,dumbunny\/vitess,SDHM\/vitess,pivanof\/vitess,cgvarela\/vitess,guokeno0\/vitess,ptomasroos\/vitess,tinyspeck\/vitess,mahak\/vitess,netroby\/vitess,kuipertan\/vitess,sougou\/vitess,tjyang\/vitess,tjyang\/vitess,tjyang\/vitess,tinyspeck\/vitess,yaoshengzhe\/vitess,cloudbearings\/vitess,pivanof\/vitess,fengshao0907\/vitess,tirsen\/vitess,nurblieh\/vitess,yaoshengzhe\/vitess,yangzhongj\/vitess,atyenoria\/vitess,cloudbearings\/vitess,mahak\/vitess,aaijazi\/vitess,tirsen\/vitess,dumbunny\/vitess,michael-berlin\/vitess,netroby\/vitess,kuipertan\/vitess,anusornc\/vitess,vitessio\/vitess,xgwubin\/vitess,pivanof\/vitess,skyportsystems\/vitess,aaijazi\/vitess,guokeno0\/vitess,tirsen\/vitess,yangzhongj\/vitess,SDHM\/vitess,yaoshengzhe\/vitess,xgwubin\/vitess,yaoshengzhe\/vitess,tirsen\/vitess,AndyDiamondstein\/vitess,applift\/vitess,sougou\/vitess,SDHM\/vitess,kuipertan\/vitess,applift\/vitess,guokeno0\/vitess,atyenoria\/vitess,applift\/vitess,ptomasroos\/vitess,mlc0202\/vitess,kmiku7\/vitess-annotated,HubSpot\/vitess,mapbased\/vitess,kmiku7\/vitess-annotated,erzel\/vitess,mapbased\/vitess,alainjobart\/vitess,mapbased\/vitess,ptomasroos\/vitess,kmiku7\/vitess-annotated,fengshao0907\/vitess,mattharden\/vitess,michael-berlin\/vitess,HubSpot\/vitess,cloudbearings\/vitess,xgwubin\/vitess,SDHM\/vitess,kuipertan\/vitess,aaijazi\/vitess,mattharden\/vitess,michael-berlin\/vitess,tjyang\/vitess,AndyDiamondstein\/vitess,alainjobart\/vitess,kuipertan\/vitess,fengshao0907\/vitess,nurblieh\/vitess,cgvarela\/vitess,mlc0202\/vitess,anusornc\/vitess,enisoc\/vitess,mahak\/vitess,kuipertan\/vitess,SDHM\/vitess,netroby\/vitess,netroby\/vitess,kuipertan\/vitess,mapbased\/vitess,michael-berlin\/vitess,pivanof\/vitess,skyportsystems\/vitess,tjyang\/vitess,mattharden\/vitess,cloudbearings\/vitess,mlc0202\/vitess,mattharden\/vitess,vitessio\/vitess,yangzhongj\/vitess,vitessio\/vitess,tirsen\/vitess,alainjobart\/vitess,yangzhongj\/vitess,AndyDiamondstein\/vitess,nurblieh\/vitess,tjyang\/vitess,mapbased\/vitess,cloudbearings\/vitess,kmiku7\/vitess-annotated,nurblieh\/vitess,SDHM\/vitess,tjyang\/vitess,anusornc\/vitess,kmiku7\/vitess-annotated,davygeek\/vitess,dcadevil\/vitess,skyportsystems\/vitess,mlc0202\/vitess,aaijazi\/vitess,ptomasroos\/vitess,davygeek\/vitess,guokeno0\/vitess,kmiku7\/vitess-annotated,erzel\/vitess,AndyDiamondstein\/vitess,nurblieh\/vitess,aaijazi\/vitess,mlc0202\/vitess,ptomasroos\/vitess,guokeno0\/vitess,mlc0202\/vitess,mattharden\/vitess,anusornc\/vitess,guokeno0\/vitess,xgwubin\/vitess,atyenoria\/vitess,anusornc\/vitess,yaoshengzhe\/vitess,HubSpot\/vitess,cloudbearings\/vitess,vitessio\/vitess,pivanof\/vitess,fengshao0907\/vitess,mattharden\/vitess,pivanof\/vitess,sougou\/vitess,rnavarro\/vitess,nurblieh\/vitess,tirsen\/vitess,anusornc\/vitess,yaoshengzhe\/vitess,vitessio\/vitess,dumbunny\/vitess,mahak\/vitess,xgwubin\/vitess,erzel\/vitess,dumbunny\/vitess,atyenoria\/vitess,dcadevil\/vitess,AndyDiamondstein\/vitess,michael-berlin\/vitess,davygeek\/vitess,applift\/vitess,kuipertan\/vitess,pivanof\/vitess,michael-berlin\/vitess,mapbased\/vitess,aaijazi\/vitess,erzel\/vitess,sougou\/vitess,fengshao0907\/vitess,xgwubin\/vitess,tinyspeck\/vitess,HubSpot\/vitess,skyportsystems\/vitess,erzel\/vitess,cloudbearings\/vitess,mattharden\/vitess,davygeek\/vitess,dcadevil\/vitess,AndyDiamondstein\/vitess,mlc0202\/vitess,fengshao0907\/vitess,fengshao0907\/vitess,dcadevil\/vitess,cloudbearings\/vitess,tirsen\/vitess,dumbunny\/vitess,dumbunny\/vitess,ptomasroos\/vitess,mapbased\/vitess,skyportsystems\/vitess,guokeno0\/vitess,rnavarro\/vitess,ptomasroos\/vitess,cloudbearings\/vitess,tjyang\/vitess,fengshao0907\/vitess,netroby\/vitess,yaoshengzhe\/vitess,cgvarela\/vitess,atyenoria\/vitess,rnavarro\/vitess,AndyDiamondstein\/vitess,applift\/vitess,guokeno0\/vitess,mapbased\/vitess,tinyspeck\/vitess,ptomasroos\/vitess,applift\/vitess,anusornc\/vitess,aaijazi\/vitess,enisoc\/vitess,rnavarro\/vitess,dumbunny\/vitess,davygeek\/vitess,HubSpot\/vitess,cgvarela\/vitess,mlc0202\/vitess,mahak\/vitess,yangzhongj\/vitess,tjyang\/vitess,skyportsystems\/vitess,cgvarela\/vitess,vitessio\/vitess,cgvarela\/vitess,kmiku7\/vitess-annotated,xgwubin\/vitess,atyenoria\/vitess,davygeek\/vitess,guokeno0\/vitess,SDHM\/vitess,HubSpot\/vitess,aaijazi\/vitess,anusornc\/vitess,netroby\/vitess,davygeek\/vitess,applift\/vitess,rnavarro\/vitess"} {"commit":"c979c55a7223b25987f3047512698e74217fd3ec","old_file":"protobuf-test\/src\/common\/v2\/test_carllerche_bytes_pb.proto","new_file":"protobuf-test\/src\/common\/v2\/test_carllerche_bytes_pb.proto","old_contents":"syntax = \"proto2\";\n\nimport \"rustproto.proto\";\n\noption (rustproto.carllerche_bytes_for_bytes_all) = true;\noption (rustproto.carllerche_bytes_for_string_all) = true;\n\nmessage TestCarllercheBytes {\n optional bytes b1 = 1;\n optional string s1 = 2;\n repeated bytes br = 3;\n repeated string sr = 4;\n}\n","new_contents":"syntax = \"proto2\";\n\nimport \"rustproto.proto\";\n\noption (rustproto.carllerche_bytes_for_bytes_all) = true;\noption (rustproto.carllerche_bytes_for_string_all) = true;\noption (rustproto.generate_accessors_all) = true;\n\nmessage TestCarllercheBytes {\n optional bytes b1 = 1;\n optional string s1 = 2;\n repeated bytes br = 3;\n repeated string sr = 4;\n}\n","subject":"Test test compilation when `with-bytes` feature enabled","message":"Test test compilation when `with-bytes` feature enabled\n","lang":"Protocol Buffer","license":"mit","repos":"stepancheg\/rust-protobuf,stepancheg\/rust-protobuf,stepancheg\/rust-protobuf"} {"commit":"670bb1048d47719f9bff81e161a89cd1d48c6aff","old_file":"events\/envelope.proto","new_file":"events\/envelope.proto","old_contents":"package events;\n\nimport \"heartbeat.proto\";\nimport \"http.proto\";\nimport \"log.proto\";\nimport \"metric.proto\";\nimport \"error.proto\";\n\n\/\/\/ Envelope wraps an Event and adds metadata.\nmessage Envelope {\n \/\/\/ Type of the wrapped event.\n enum EventType {\n Heartbeat = 1;\n HttpStart = 2;\n HttpStop = 3;\n HttpStartStop = 4;\n LogMessage = 5;\n ValueMetric = 6;\n CounterEvent = 7;\n Error = 8;\n ContainerMetric = 9;\n }\n\n required string origin = 1; \/\/\/ Unique description of the origin of this event.\n required EventType eventType = 2; \/\/\/ Type of wrapped event. Only the optional field corresponding to the value of eventType should be set.\n\n optional int64 timestamp = 6; \/\/\/ UNIX timestamp (in nanoseconds) event was wrapped in this Envelope.\n\n optional Heartbeat heartbeat = 3;\n optional HttpStart httpStart = 4;\n optional HttpStop httpStop = 5;\n optional HttpStartStop httpStartStop = 7;\n optional LogMessage logMessage = 8;\n optional ValueMetric valueMetric = 9;\n optional CounterEvent counterEvent = 10;\n optional Error error = 11;\n optional ContainerMetric containerMetric = 12;\n\n repeated Tag tags = 13; \/\/\/ Optional list of key-value pairs. Should hold meta\/descriptive information about the event contained in this envelope, not metric data itself.\n}\n\n\/\/\/ Tag holds a key-value pair\nmessage Tag {\n required string key = 1;\n required string value = 2;\n}","new_contents":"package events;\n\nimport \"heartbeat.proto\";\nimport \"http.proto\";\nimport \"log.proto\";\nimport \"metric.proto\";\nimport \"error.proto\";\n\n\/\/\/ Envelope wraps an Event and adds metadata.\nmessage Envelope {\n \/\/\/ Type of the wrapped event.\n enum EventType {\n Heartbeat = 1;\n HttpStart = 2;\n HttpStop = 3;\n HttpStartStop = 4;\n LogMessage = 5;\n ValueMetric = 6;\n CounterEvent = 7;\n Error = 8;\n ContainerMetric = 9;\n }\n\n required string origin = 1; \/\/\/ Unique description of the origin of this event.\n required EventType eventType = 2; \/\/\/ Type of wrapped event. Only the optional field corresponding to the value of eventType should be set.\n\n optional int64 timestamp = 6; \/\/\/ UNIX timestamp (in nanoseconds) event was wrapped in this Envelope.\n\n optional string deployment = 13; \/\/\/ Deployment name (used to uniquely identify source).\n optional string job = 14; \/\/\/ Job name (used to uniquely identify source).\n optional string index = 15; \/\/\/ Index of job (used to uniquely identify source).\n optional string ip = 16; \/\/\/ IP address (used to uniquely identify source).\n\n optional Heartbeat heartbeat = 3;\n optional HttpStart httpStart = 4;\n optional HttpStop httpStop = 5;\n optional HttpStartStop httpStartStop = 7;\n optional LogMessage logMessage = 8;\n optional ValueMetric valueMetric = 9;\n optional CounterEvent counterEvent = 10;\n optional Error error = 11;\n optional ContainerMetric containerMetric = 12;\n}\n\n","subject":"Swap tags for explicit deployment, job, index, ip fields","message":"Swap tags for explicit deployment, job, index, ip fields\n\n[#92626928]\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"stefanschneider\/dropsonde-protocol,cloudfoundry\/dropsonde-protocol,stefanschneider\/dropsonde-protocol"} {"commit":"fbd36fbf27cd8183989c70a26ef8fc260c029d8c","old_file":"aqddnsdomains.proto","new_file":"aqddnsdomains.proto","old_contents":"\/\/ -*- cpy-indent-level: 4; indent-tabs-mode: nil -*-\n\/\/ ex: set expandtab softtabstop=4 shiftwidth=4:\npackage aqddnsdomains;\n\n\nmessage DNSDomain {\n optional string name = 1;\n}\n\nmessage DNSDomainList {\n repeated DNSDomain dns_domains = 1;\n}\n","new_contents":"\/\/ -*- cpy-indent-level: 4; indent-tabs-mode: nil -*-\n\/\/ ex: set expandtab softtabstop=4 shiftwidth=4:\npackage aqddnsdomains;\n\n\nmessage DNSDomain {\n optional string name = 1;\n optional bool restricted = 2;\n}\n\nmessage DNSDomainList {\n repeated DNSDomain dns_domains = 1;\n}\n","subject":"Add restricted attribute to DnsDomain","message":"Add restricted attribute to DnsDomain\n\nChange-Id: I405cbf05e363af2490d5bdc3067dedb7c2b38d0d\nReviewed-by: Priya Joshi <3c6cfa6f57440adfc837c4ad04483313acbc2582@morganstanley.com>\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"quattor\/aquilon-protocols,quattor\/aquilon-protocols"} {"commit":"49f064ca8eee39008089f5605f6b28b2568ab754","old_file":"src\/POGOProtos\/Networking\/Envelopes\/ResponseEnvelope.proto","new_file":"src\/POGOProtos\/Networking\/Envelopes\/ResponseEnvelope.proto","old_contents":"syntax = \"proto3\";\npackage POGOProtos.Networking.Envelopes;\n\nimport \"POGOProtos\/Networking\/Envelopes\/AuthTicket.proto\";\nimport \"POGOProtos\/Networking\/Platform\/PlatformRequestType.proto\";\n\nmessage ResponseEnvelope {\n\tStatusCode status_code = 1;\n\tuint64 request_id = 2;\n\tstring api_url = 3;\n\n\trepeated PlatformResponse platform_returns = 6;\n\t.POGOProtos.Networking.Envelopes.AuthTicket auth_ticket = 7;\n\n\trepeated bytes returns = 100;\n\tstring error = 101;\n\n\tmessage PlatformResponse {\n\t\t.POGOProtos.Networking.Platform.PlatformRequestType type = 1;\n\t\tbytes response = 2;\n\t}\n\n\tenum StatusCode {\n\t\tUNKNOWN = 0;\n\t\tOK = 1; \/\/ valid response with no api url\n\t\tOK_RPC_URL_IN_RESPONSE = 2; \/\/ the response envelope has api_url set and this response is valid\n\t\tINVALID = 3; \/\/ bad request\n\t\tINVALID_REQUEST = 51; \/\/ using unimplemented request or corrupt request\n\t\tINVALID_PLATFORM_REQUEST = 52; \/\/ invalid platform request or corrupt platform request\n\t\tREDIRECT = 53; \/\/ a new rpc endpoint is available and you should redirect to there\n\t\tSESSION_INVALIDATED = 100; \/\/ occurs when you send blank authinfo, or sending nonsense timings (ie LocationFix.timestampSnapshot == Signature.timestampSinceStart)\n\t\tINVALID_AUTH_TOKEN = 102; \/\/ occurs when the login token is invalid\n }\n}\n","new_contents":"syntax = \"proto3\";\npackage POGOProtos.Networking.Envelopes;\n\nimport \"POGOProtos\/Networking\/Envelopes\/AuthTicket.proto\";\nimport \"POGOProtos\/Networking\/Platform\/PlatformRequestType.proto\";\n\nmessage ResponseEnvelope {\n\tStatusCode status_code = 1;\n\tuint64 request_id = 2;\n\tstring api_url = 3;\n\n\trepeated PlatformResponse platform_returns = 6;\n\t.POGOProtos.Networking.Envelopes.AuthTicket auth_ticket = 7;\n\n\trepeated bytes returns = 100;\n\tstring error = 101;\n\n\tmessage PlatformResponse {\n\t\t.POGOProtos.Networking.Platform.PlatformRequestType type = 1;\n\t\tbytes response = 2;\n\t}\n\n\tenum StatusCode {\n\t\tUNKNOWN = 0;\n\t\tOK = 1; \/\/ valid response with no api url\n\t\tOK_RPC_URL_IN_RESPONSE = 2; \/\/ the response envelope has api_url set and this response is valid\n\t\tBAD_REQUEST = 3; \/\/ bad request\n\t\tINVALID_REQUEST = 51; \/\/ using unimplemented request or corrupt request\n\t\tINVALID_PLATFORM_REQUEST = 52; \/\/ invalid platform request or corrupt platform request\n\t\tREDIRECT = 53; \/\/ a new rpc endpoint is available and you should redirect to there\n\t\tSESSION_INVALIDATED = 100; \/\/ occurs when you send blank authinfo, or sending nonsense timings (ie LocationFix.timestampSnapshot == Signature.timestampSinceStart)\n\t\tINVALID_AUTH_TOKEN = 102; \/\/ occurs when the login token is invalid\n }\n}\n","subject":"Rename INVALID status code to BAD_REQUEST","message":"Rename INVALID status code to BAD_REQUEST\n","lang":"Protocol Buffer","license":"mit","repos":"alucas\/POGOProtos,AeonLucid\/POGOProtos"} {"commit":"d18d159359a6189bdf1302dfda70ed6447f042eb","old_file":"server\/src\/test\/proto\/spine\/test\/bus\/stock\/share.proto","new_file":"server\/src\/test\/proto\/spine\/test\/bus\/stock\/share.proto","old_contents":"syntax = \"proto3\";\n\npackage spine.test.bus.stock;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package = \"io.spine.test.bus\";\noption java_outer_classname = \"StockProto\";\noption java_multiple_files = true;\n\nmessage ShareId {\n string value = 1;\n}\n\nmessage Share {\n option (entity).kind = AGGREGATE;\n\n ShareId id = 1;\n\n Price price = 2;\n}\n\nmessage Price {\n\n float usd = 2 [(digits).fraction_max = 2];\n}\n","new_contents":"syntax = \"proto3\";\n\npackage spine.test.bus.stock;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package = \"io.spine.test.bus\";\noption java_outer_classname = \"StockProto\";\noption java_multiple_files = true;\n\nmessage ShareId {\n string value = 1;\n}\n\nmessage Share {\n option (entity).kind = AGGREGATE;\n\n ShareId id = 1;\n\n Price price = 2;\n}\n\nmessage Price {\n\n float usd = 2;\n}\n","subject":"Remove outdated proto option usage","message":"Remove outdated proto option usage\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"cc4029a50421859299bd8f52768d4614923fded6","old_file":"addons\/pkg-maven\/common\/src\/main\/resources\/metadata_info.proto","new_file":"addons\/pkg-maven\/common\/src\/main\/resources\/metadata_info.proto","old_contents":"package metadata_info;\n\nmessage MetadataInfo\n{\n optional metadata metadata = 1;\n optional string metadataMergeInfo = 2;\n}\n\nmessage Metadata\n{\n optional string modelVersion = 1;\n required string groupId = 2;\n required string artifactId = 3;\n required string version = 4;\n optional Versioning versioning = 5;\n repeated Plugin plugins = 6;\n optional string modelEncoding = 7;\n}\n\nmessage Versioning\n{\n optional string latest = 1;\n optional string release = 2;\n optional Snapshot snapshot = 3;\n repeated string versions = 4;\n optional string lastUpdated = 5;\n repeated SnapshotVersion snapshotVersions = 6;\n}\n\nmessage Plugin\n{\n optional string artifactId = 1;\n optional string name = 2;\n optional string prefix = 3;\n}\n\nmessage Snapshot\n{\n optional string timestamp = 1;\n optional int32 buildNumber = 2;\n optional bool localCopy = 3;\n}\n\nmessage SnapshotVersion\n{\n optional string classifier = 1;\n optional string extension = 2;\n optional string version = 3;\n optional string updated = 4;\n}\n\n","new_contents":"package metadata_info;\n\nmessage MetadataInfo\n{\n optional Metadata metadata = 1;\n optional string metadataMergeInfo = 2;\n}\n\nmessage Metadata\n{\n optional string modelVersion = 1;\n required string groupId = 2;\n required string artifactId = 3;\n required string version = 4;\n optional Versioning versioning = 5;\n repeated Plugin plugins = 6;\n optional string modelEncoding = 7;\n}\n\nmessage Versioning\n{\n optional string latest = 1;\n optional string release = 2;\n optional Snapshot snapshot = 3;\n repeated string versions = 4;\n optional string lastUpdated = 5;\n repeated SnapshotVersion snapshotVersions = 6;\n}\n\nmessage Plugin\n{\n optional string artifactId = 1;\n optional string name = 2;\n optional string prefix = 3;\n}\n\nmessage Snapshot\n{\n optional string timestamp = 1;\n optional int32 buildNumber = 2;\n optional bool localCopy = 3;\n}\n\nmessage SnapshotVersion\n{\n optional string classifier = 1;\n optional string extension = 2;\n optional string version = 3;\n optional string updated = 4;\n}\n\n","subject":"Fix the type in .proto","message":"Fix the type in .proto\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"yma88\/indy,pkocandr\/indy,jdcasey\/indy,ruhan1\/indy,Commonjava\/indy,pkocandr\/indy,ruhan1\/indy,yma88\/indy,pkocandr\/indy,Commonjava\/indy,ruhan1\/indy,yma88\/indy,Commonjava\/indy,ruhan1\/indy,pkocandr\/indy,Commonjava\/indy,jdcasey\/indy,jdcasey\/indy,ligangty\/indy,pkocandr\/indy,jdcasey\/indy,yma88\/indy,Commonjava\/indy,ligangty\/indy,Commonjava\/indy,ligangty\/indy,jdcasey\/indy,ligangty\/indy,yma88\/indy,jdcasey\/indy,ligangty\/indy,pkocandr\/indy,ruhan1\/indy,ruhan1\/indy,ligangty\/indy,yma88\/indy"} {"commit":"65af66bc21be7aebf843b6a2ef124ac3f1d8fd20","old_file":"tools\/protoc-plugin\/src\/test\/proto\/spine\/tools\/protoc\/iface\/entity_states.proto","new_file":"tools\/protoc-plugin\/src\/test\/proto\/spine\/tools\/protoc\/iface\/entity_states.proto","old_contents":"\/*\n * Copyright 2019, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.tools.protoc.iface;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_multiple_files = true;\noption java_outer_classname = \"EntityStatesProto\";\noption java_package = \"io.spine.tools.protoc.iface\";\n\n\nmessage ProtocProject {\n option (entity).kind = PROJECTION;\n\n ProtocProjectId id = 1;\n}\n\nmessage ProtocProjectId {\n string uuid = 1;\n}\n\nmessage ProtocTask {\n option (entity) = {};\n\n string id = 1;\n}\n","new_contents":"\/*\n * Copyright 2019, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.tools.protoc.iface;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_multiple_files = true;\noption java_outer_classname = \"EntityStatesProto\";\noption java_package = \"io.spine.tools.protoc.iface\";\n\nmessage ProtocProject {\n option (entity).kind = PROJECTION;\n\n ProtocProjectId id = 1;\n}\n\nmessage ProtocProjectId {\n string uuid = 1;\n}\n\nmessage ProtocTask {\n option (entity) = {};\n\n string id = 1;\n}\n","subject":"Delete a redundant empty line","message":"Delete a redundant empty line\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/base,SpineEventEngine\/base,SpineEventEngine\/base"} {"commit":"7c0661e837310df86dadd531c1c5a63648b6c354","old_file":"proto\/dclauth\/revoked_account.proto","new_file":"proto\/dclauth\/revoked_account.proto","old_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.dclauth;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/dclauth\/types\";\n\nimport \"gogoproto\/gogo.proto\";\nimport \"dclauth\/account.proto\";\nimport \"dclauth\/grant.proto\";\n\nmessage RevokedAccount {\n Account account = 1 [(gogoproto.embed) = true]; \n repeated Grant revokeApprovals = 2;\n}\n\n","new_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.dclauth;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/dclauth\/types\";\n\nimport \"gogoproto\/gogo.proto\";\nimport \"dclauth\/account.proto\";\nimport \"dclauth\/grant.proto\";\nimport \"cosmos_proto\/cosmos.proto\";\n\nmessage RevokedAccount {\n Account account = 1 [(gogoproto.embed) = true]; \n repeated Grant revokeApprovals = 2;\n string revokedReason = 3 [(cosmos_proto.scalar) = \"cosmos.AddressString\"]; \n}\n\n","subject":"Add a new field revokedReason for RevokedAccount","message":"Add a new field revokedReason for RevokedAccount\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger"} {"commit":"80ac22006b644c3de7ace117a303870d4a3e8467","old_file":"src\/main\/proto\/wfa\/measurement\/internal\/kingdom\/report_details.proto","new_file":"src\/main\/proto\/wfa\/measurement\/internal\/kingdom\/report_details.proto","old_contents":"\/\/ Copyright 2020 The Measurement System Authors\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage wfa.measurement.internal.kingdom;\n\noption java_package = \"org.wfanet.measurement.internal.kingdom\";\noption java_multiple_files = true;\n\nmessage ReportDetails {\n repeated string confirmed_duchies = 1;\n repeated string unconfirmed_duchies = 2;\n}","new_contents":"\/\/ Copyright 2020 The Measurement System Authors\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage wfa.measurement.internal.kingdom;\n\noption java_package = \"org.wfanet.measurement.internal.kingdom\";\noption java_multiple_files = true;\n\nmessage ReportDetails {\n \/\/ Before a Report can be started, each Duchy involved needs to confirm its\n \/\/ readiness. This holds the list of Duchies that are ready.\n repeated string confirmed_duchies = 1;\n}","subject":"Document and fix up ReportDetails proto fields","message":"Document and fix up ReportDetails proto fields\n\nChange-Id: I7a3cf7b33c3200e4fa2204bf6468159289f07878\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"world-federation-of-advertisers\/cross-media-measurement,world-federation-of-advertisers\/cross-media-measurement,world-federation-of-advertisers\/cross-media-measurement"} {"commit":"d7f4d18c0033809faf77d7e26cd6934f13ffaef1","old_file":"chrome\/browser\/sync_file_system\/drive_backend\/metadata_database.proto","new_file":"chrome\/browser\/sync_file_system\/drive_backend\/metadata_database.proto","old_contents":"\/\/ Copyright 2013 The Chromium Authors. All rights reserved.\n\/\/ Use of this source code is governed by a BSD-style license that can be\n\/\/ found in the LICENSE file.\n\/\/\n\/\/ Protocol buffer definitions for Drive backend of Syncable FileSystem.\n\nsyntax = \"proto2\";\n\noption optimize_for = LITE_RUNTIME;\n\npackage sync_file_system.drive_backend;\n\nenum FileKind {\n KIND_UNSUPPORTED = 0;\n KIND_FILE = 1;\n KIND_FOLDER = 2;\n}\n\nmessage ServiceMetadata {\n optional int64 largest_change_id = 1;\n optional string sync_root_folder_id = 2;\n}\n","new_contents":"\/\/ Copyright 2013 The Chromium Authors. All rights reserved.\n\/\/ Use of this source code is governed by a BSD-style license that can be\n\/\/ found in the LICENSE file.\n\/\/\n\/\/ Protocol buffer definitions for Drive backend of Syncable FileSystem.\n\nsyntax = \"proto2\";\n\noption optimize_for = LITE_RUNTIME;\n\npackage sync_file_system.drive_backend;\n\nenum FileKind {\n KIND_UNSUPPORTED = 0;\n KIND_FILE = 1;\n KIND_FOLDER = 2;\n}\n\nmessage ServiceMetadata {\n optional int64 largest_change_id = 1;\n optional int64 sync_root_tracker_id = 2;\n\n \/\/ The sequence number of FileTrackers. Must be positive.\n optional int64 next_tracker_id = 3;\n}\n\n\/\/ Holds details of file\/folder metadata.\nmessage FileDetails {\n repeated string parent_folder_ids = 1;\n\n optional string title = 2;\n optional FileKind kind = 3;\n optional string md5 = 4;\n optional string etag = 5;\n\n \/\/ Creation time and modification time of the resource.\n \/\/ Serialized by Time::ToInternalValue.\n optional int64 creation_time = 6;\n optional int64 modification_time = 7;\n\n optional bool deleted = 8;\n optional int64 change_id = 9;\n}\n\n\/\/ Represents a server-side file.\nmessage FileMetadata {\n \/\/ File ID of the remote file\/folder which the FileMetadata represents.\n required string file_id = 1;\n\n optional FileDetails details = 2;\n}\n\n\/\/ Represents synced local file.\nmessage FileTracker {\n \/\/ A unique sequence number to identify the tracker. Must be positive.\n required int64 tracker_id = 1;\n\n \/\/ Points the parent tracker in the tracker tree. 0 if there's no parent.\n required int64 parent_tracker_id = 2;\n\n required string file_id = 3;\n\n optional string app_id = 4;\n optional bool is_app_root = 5;\n\n optional FileDetails synced_details = 6;\n\n \/\/ True if the file is changed since the last update for this file.\n optional bool dirty = 7;\n\n \/\/ True if the FileTracker is active.\n \/\/ Remote file modification should only be applied to active trackers.\n \/\/ Active FileTracker must have a unique title under its parent.\n optional bool active = 8;\n\n \/\/ Valid only for folders.\n \/\/ True if the folder contents have not yet been fetched.\n optional bool needs_folder_listing = 9;\n}\n","subject":"Add FileMetadata and FileTracker for MetadataDatabase","message":"[SyncFS] Add FileMetadata and FileTracker for MetadataDatabase\n\nBUG=240165\n\nReview URL: https:\/\/chromiumcodereview.appspot.com\/22369003\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@215875 0039d316-1c4b-4281-b951-d872f2087c98\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"M4sse\/chromium.src,Chilledheart\/chromium,hgl888\/chromium-crosswalk-efl,fujunwei\/chromium-crosswalk,ChromiumWebApps\/chromium,Jonekee\/chromium.src,TheTypoMaster\/chromium-crosswalk,hgl888\/chromium-crosswalk-efl,ondra-novak\/chromium.src,ondra-novak\/chromium.src,ltilve\/chromium,PeterWangIntel\/chromium-crosswalk,patrickm\/chromium.src,Pluto-tv\/chromium-crosswalk,Just-D\/chromium-1,ChromiumWebApps\/chromium,crosswalk-project\/chromium-crosswalk-efl,krieger-od\/nwjs_chromium.src,anirudhSK\/chromium,mohamed--abdel-maksoud\/chromium.src,krieger-od\/nwjs_chromium.src,M4sse\/chromium.src,bright-sparks\/chromium-spacewalk,krieger-od\/nwjs_chromium.src,Just-D\/chromium-1,Jonekee\/chromium.src,mogoweb\/chromium-crosswalk,ChromiumWebApps\/chromium,M4sse\/chromium.src,crosswalk-project\/chromium-crosswalk-efl,TheTypoMaster\/chromium-crosswalk,dushu1203\/chromium.src,mogoweb\/chromium-crosswalk,M4sse\/chromium.src,Chilledheart\/chromium,mohamed--abdel-maksoud\/chromium.src,markYoungH\/chromium.src,Just-D\/chromium-1,Pluto-tv\/chromium-crosswalk,ChromiumWebApps\/chromium,chuan9\/chromium-crosswalk,mohamed--abdel-maksoud\/chromium.src,mohamed--abdel-maksoud\/chromium.src,ltilve\/chromium,ChromiumWebApps\/chromium,jaruba\/chromium.src,axinging\/chromium-crosswalk,bright-sparks\/chromium-spacewalk,axinging\/chromium-crosswalk,ondra-novak\/chromium.src,axinging\/chromium-crosswalk,bright-sparks\/chromium-spacewalk,axinging\/chromium-crosswalk,dednal\/chromium.src,anirudhSK\/chromium,mohamed--abdel-maksoud\/chromium.src,M4sse\/chromium.src,mogoweb\/chromium-crosswalk,PeterWangIntel\/chromium-crosswalk,hgl888\/chromium-crosswalk,M4sse\/chromium.src,chuan9\/chromium-crosswalk,Pluto-tv\/chromium-crosswalk,TheTypoMaster\/chromium-crosswalk,PeterWangIntel\/chromium-crosswalk,dushu1203\/chromium.src,Jonekee\/chromium.src,markYoungH\/chromium.src,axinging\/chromium-crosswalk,jaruba\/chromium.src,Jonekee\/chromium.src,axinging\/chromium-crosswalk,PeterWangIntel\/chromium-crosswalk,jaruba\/chromium.src,Fireblend\/chromium-crosswalk,ChromiumWebApps\/chromium,Pluto-tv\/chromium-crosswalk,PeterWangIntel\/chromium-crosswalk,hgl888\/chromium-crosswalk-efl,bright-sparks\/chromium-spacewalk,dushu1203\/chromium.src,axinging\/chromium-crosswalk,ChromiumWebApps\/chromium,Jonekee\/chromium.src,Just-D\/chromium-1,patrickm\/chromium.src,dednal\/chromium.src,patrickm\/chromium.src,bright-sparks\/chromium-spacewalk,mogoweb\/chromium-crosswalk,M4sse\/chromium.src,Jonekee\/chromium.src,Chilledheart\/chromium,ChromiumWebApps\/chromium,Jonekee\/chromium.src,mohamed--abdel-maksoud\/chromium.src,bright-sparks\/chromium-spacewalk,Chilledheart\/chromium,krieger-od\/nwjs_chromium.src,fujunwei\/chromium-crosswalk,dednal\/chromium.src,jaruba\/chromium.src,hgl888\/chromium-crosswalk,Just-D\/chromium-1,Jonekee\/chromium.src,fujunwei\/chromium-crosswalk,jaruba\/chromium.src,hgl888\/chromium-crosswalk-efl,dushu1203\/chromium.src,dednal\/chromium.src,hgl888\/chromium-crosswalk-efl,fujunwei\/chromium-crosswalk,PeterWangIntel\/chromium-crosswalk,anirudhSK\/chromium,Fireblend\/chromium-crosswalk,hgl888\/chromium-crosswalk,mogoweb\/chromium-crosswalk,chuan9\/chromium-crosswalk,Jonekee\/chromium.src,krieger-od\/nwjs_chromium.src,littlstar\/chromium.src,crosswalk-project\/chromium-crosswalk-efl,dednal\/chromium.src,anirudhSK\/chromium,patrickm\/chromium.src,anirudhSK\/chromium,littlstar\/chromium.src,hgl888\/chromium-crosswalk,Chilledheart\/chromium,patrickm\/chromium.src,fujunwei\/chromium-crosswalk,dushu1203\/chromium.src,Pluto-tv\/chromium-crosswalk,bright-sparks\/chromium-spacewalk,chuan9\/chromium-crosswalk,krieger-od\/nwjs_chromium.src,Chilledheart\/chromium,bright-sparks\/chromium-spacewalk,ondra-novak\/chromium.src,M4sse\/chromium.src,dednal\/chromium.src,fujunwei\/chromium-crosswalk,Chilledheart\/chromium,Just-D\/chromium-1,chuan9\/chromium-crosswalk,fujunwei\/chromium-crosswalk,dushu1203\/chromium.src,ltilve\/chromium,anirudhSK\/chromium,Fireblend\/chromium-crosswalk,dushu1203\/chromium.src,M4sse\/chromium.src,markYoungH\/chromium.src,Pluto-tv\/chromium-crosswalk,anirudhSK\/chromium,hgl888\/chromium-crosswalk,mogoweb\/chromium-crosswalk,chuan9\/chromium-crosswalk,ltilve\/chromium,crosswalk-project\/chromium-crosswalk-efl,anirudhSK\/chromium,krieger-od\/nwjs_chromium.src,hgl888\/chromium-crosswalk-efl,jaruba\/chromium.src,fujunwei\/chromium-crosswalk,dednal\/chromium.src,ltilve\/chromium,ondra-novak\/chromium.src,littlstar\/chromium.src,PeterWangIntel\/chromium-crosswalk,patrickm\/chromium.src,jaruba\/chromium.src,markYoungH\/chromium.src,M4sse\/chromium.src,mogoweb\/chromium-crosswalk,krieger-od\/nwjs_chromium.src,mohamed--abdel-maksoud\/chromium.src,Pluto-tv\/chromium-crosswalk,fujunwei\/chromium-crosswalk,Fireblend\/chromium-crosswalk,hgl888\/chromium-crosswalk-efl,Pluto-tv\/chromium-crosswalk,dushu1203\/chromium.src,ltilve\/chromium,hgl888\/chromium-crosswalk,hgl888\/chromium-crosswalk,anirudhSK\/chromium,axinging\/chromium-crosswalk,patrickm\/chromium.src,ltilve\/chromium,TheTypoMaster\/chromium-crosswalk,anirudhSK\/chromium,Fireblend\/chromium-crosswalk,krieger-od\/nwjs_chromium.src,Pluto-tv\/chromium-crosswalk,hgl888\/chromium-crosswalk,hgl888\/chromium-crosswalk-efl,crosswalk-project\/chromium-crosswalk-efl,mohamed--abdel-maksoud\/chromium.src,ltilve\/chromium,littlstar\/chromium.src,ondra-novak\/chromium.src,krieger-od\/nwjs_chromium.src,krieger-od\/nwjs_chromium.src,ondra-novak\/chromium.src,Jonekee\/chromium.src,crosswalk-project\/chromium-crosswalk-efl,Just-D\/chromium-1,axinging\/chromium-crosswalk,PeterWangIntel\/chromium-crosswalk,chuan9\/chromium-crosswalk,chuan9\/chromium-crosswalk,Fireblend\/chromium-crosswalk,TheTypoMaster\/chromium-crosswalk,dednal\/chromium.src,bright-sparks\/chromium-spacewalk,littlstar\/chromium.src,axinging\/chromium-crosswalk,anirudhSK\/chromium,ChromiumWebApps\/chromium,littlstar\/chromium.src,mogoweb\/chromium-crosswalk,hgl888\/chromium-crosswalk-efl,ChromiumWebApps\/chromium,markYoungH\/chromium.src,ltilve\/chromium,mohamed--abdel-maksoud\/chromium.src,dushu1203\/chromium.src,jaruba\/chromium.src,TheTypoMaster\/chromium-crosswalk,hgl888\/chromium-crosswalk-efl,crosswalk-project\/chromium-crosswalk-efl,Fireblend\/chromium-crosswalk,jaruba\/chromium.src,patrickm\/chromium.src,Chilledheart\/chromium,dednal\/chromium.src,hgl888\/chromium-crosswalk,Fireblend\/chromium-crosswalk,mohamed--abdel-maksoud\/chromium.src,mogoweb\/chromium-crosswalk,Chilledheart\/chromium,Just-D\/chromium-1,ChromiumWebApps\/chromium,dednal\/chromium.src,anirudhSK\/chromium,ondra-novak\/chromium.src,mohamed--abdel-maksoud\/chromium.src,axinging\/chromium-crosswalk,TheTypoMaster\/chromium-crosswalk,markYoungH\/chromium.src,dednal\/chromium.src,mogoweb\/chromium-crosswalk,jaruba\/chromium.src,crosswalk-project\/chromium-crosswalk-efl,crosswalk-project\/chromium-crosswalk-efl,Jonekee\/chromium.src,Just-D\/chromium-1,markYoungH\/chromium.src,ondra-novak\/chromium.src,PeterWangIntel\/chromium-crosswalk,jaruba\/chromium.src,TheTypoMaster\/chromium-crosswalk,dushu1203\/chromium.src,littlstar\/chromium.src,dushu1203\/chromium.src,chuan9\/chromium-crosswalk,Fireblend\/chromium-crosswalk,patrickm\/chromium.src,markYoungH\/chromium.src,littlstar\/chromium.src,M4sse\/chromium.src,markYoungH\/chromium.src,markYoungH\/chromium.src,TheTypoMaster\/chromium-crosswalk,ChromiumWebApps\/chromium,markYoungH\/chromium.src"} {"commit":"1eb971980ff43b08bfbd3ad4aa6949f5b885ffd2","old_file":"tensorflow\/core\/protobuf\/distributed_runtime_payloads.proto","new_file":"tensorflow\/core\/protobuf\/distributed_runtime_payloads.proto","old_contents":"syntax = \"proto3\";\n\npackage tensorflow.distributed_runtime;\n\noption cc_enable_arenas = true;\n\n\/\/ Used to serialize and transmit tensorflow::Status payloads through\n\/\/ grpc::Status `error_details` since grpc::Status lacks payload API.\n\/\/ TODO(b\/204231601): Use GRPC API once supported.\nmessage GrpcPayloadContainer {\n map payloads = 1;\n}\n\n\/\/ If included as a payload, this message flags the Status to have lost payloads\n\/\/ during the GRPC transmission.\n\/\/ URI: \"type.googleapis.com\/tensorflow.distributed_runtime.GrpcPayloadsLost\"\nmessage GrpcPayloadsLost {}\n\n\/\/ If included as a payload, this message flags the Status to be a possible\n\/\/ outcome of a worker restart.\n\/\/ URI:\n\/\/ \"type.googleapis.com\/tensorflow.distributed_runtime.WorkerPossiblyRestarted\"\nmessage WorkerPossiblyRestarted {}\n","new_contents":"syntax = \"proto3\";\n\npackage tensorflow.distributed_runtime;\n\noption cc_enable_arenas = true;\noption go_package = \"github.com\/tensorflow\/tensorflow\/tensorflow\/go\/core\/protobuf\/for_core_protos_go_proto\";\n\n\/\/ Used to serialize and transmit tensorflow::Status payloads through\n\/\/ grpc::Status `error_details` since grpc::Status lacks payload API.\n\/\/ TODO(b\/204231601): Use GRPC API once supported.\nmessage GrpcPayloadContainer {\n map payloads = 1;\n}\n\n\/\/ If included as a payload, this message flags the Status to have lost payloads\n\/\/ during the GRPC transmission.\n\/\/ URI: \"type.googleapis.com\/tensorflow.distributed_runtime.GrpcPayloadsLost\"\nmessage GrpcPayloadsLost {}\n\n\/\/ If included as a payload, this message flags the Status to be a possible\n\/\/ outcome of a worker restart.\n\/\/ URI:\n\/\/ \"type.googleapis.com\/tensorflow.distributed_runtime.WorkerPossiblyRestarted\"\nmessage WorkerPossiblyRestarted {}\n","subject":"Declare import path in distributed runtime payloads proto","message":"Declare import path in distributed runtime payloads proto\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,yongtang\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_tf_optimizer,paolodedios\/tensorflow,tensorflow\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,yongtang\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-pywrap_tf_optimizer,paolodedios\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,karllessard\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,gautam1858\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_tf_optimizer,karllessard\/tensorflow,tensorflow\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,Intel-tensorflow\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,paolodedios\/tensorflow,yongtang\/tensorflow,Intel-tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-pywrap_saved_model,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,paolodedios\/tensorflow,yongtang\/tensorflow,yongtang\/tensorflow,paolodedios\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,paolodedios\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,karllessard\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,Intel-Corporation\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-pywrap_saved_model,tensorflow\/tensorflow,karllessard\/tensorflow,gautam1858\/tensorflow,Intel-tensorflow\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,yongtang\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,Intel-tensorflow\/tensorflow,gautam1858\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-experimental_link_static_libraries_once,Intel-tensorflow\/tensorflow,paolodedios\/tensorflow,yongtang\/tensorflow,Intel-Corporation\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,Intel-tensorflow\/tensorflow,karllessard\/tensorflow,yongtang\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,yongtang\/tensorflow,yongtang\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,paolodedios\/tensorflow,yongtang\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-experimental_link_static_libraries_once,gautam1858\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,karllessard\/tensorflow,paolodedios\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow,tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,karllessard\/tensorflow,gautam1858\/tensorflow"} {"commit":"5eee30a59659e41509feec4c05a32b39284ca4f3","old_file":"proto\/google\/events\/cloudevent.proto","new_file":"proto\/google\/events\/cloudevent.proto","old_contents":"\/\/ Copyright 2020 Google LLC.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ https:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.events;\n\nimport \"google\/protobuf\/descriptor.proto\";\n\noption csharp_namespace = \"Google.Events.Protobuf\";\n\nextend google.protobuf.MessageOptions {\n \/\/ The CloudEvent type (e.g. \"google.cloud.storage.object.v1.finalized\")\n \/\/ that relates to this message.\n string cloud_event_type = 311716486;\n}\n","new_contents":"\/\/ Copyright 2020 Google LLC.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ https:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.events;\n\nimport \"google\/protobuf\/descriptor.proto\";\n\noption csharp_namespace = \"Google.Events.Protobuf\";\n\nextend google.protobuf.MessageOptions {\n \/\/ The CloudEvent type (e.g. \"google.cloud.storage.object.v1.finalized\")\n \/\/ that relates to this message.\n string cloud_event_type = 11716486;\n}\n","subject":"Use a smaller extension field number for the cloud_event_type","message":"Use a smaller extension field number for the cloud_event_type\n\nWhile the field number here *should* be valid, it at least causes\nproblems in C#. I'll investigate whether this is a Google.Protobuf bug\nseparately, but it does no harm to use a smaller number here.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"googleapis\/google-cloudevents,googleapis\/google-cloudevents,googleapis\/google-cloudevents"} {"commit":"d9be0330f2766155850bf84b54954e5d8206b764","old_file":"proto\/drivermsg.proto","new_file":"proto\/drivermsg.proto","old_contents":"package amber;\noption java_package = \"pl.edu.agh.amber.common.proto\";\noption java_outer_classname = \"CommonProto\";\n\noption optimize_for = SPEED;\n\nenum DeviceType { \n NINEDOF = 1;\n ROBOCLAW = 2;\n STARGAZER = 3;\n HOKUYO = 4;\n DUMMY = 5;\n LOCATION = 6;\n MAESTRO = 7;\n DRIVE_TO_POINT = 8;\n COLLISION_AVOIDANCE = 9;\n}\n\nmessage DriverHdr {\n optional int32 deviceType = 1;\n optional int32 deviceID = 2;\n repeated int32 clientIDs = 3 [packed = true];\n}\n\nmessage DriverMsg {\n enum MsgType {\n DATA = 1;\n PING = 2;\n PONG = 3;\n CLIENT_DIED = 4;\n DRIVER_DIED = 5;\n SUBSCRIBE = 6;\n UNSUBSCRIBE = 7;\n }\n\n required MsgType type = 2;\n optional uint32 synNum = 3;\n optional uint32 ackNum = 4;\n optional uint32 listenerNum = 5;\n extensions 10 to 99;\n}\n","new_contents":"package amber;\noption java_package = \"pl.edu.agh.amber.common.proto\";\noption java_outer_classname = \"CommonProto\";\n\noption optimize_for = SPEED;\n\nenum DeviceType { \n NINEDOF = 1;\n ROBOCLAW = 2;\n STARGAZER = 3;\n HOKUYO = 4;\n DUMMY = 5;\n LOCATION = 6;\n MAESTRO = 7;\n DRIVE_TO_POINT = 8;\n COLLISION_AVOIDANCE = 9;\n PID_FOLLOW_TRAJECTORY = 10;\n}\n\nmessage DriverHdr {\n optional int32 deviceType = 1;\n optional int32 deviceID = 2;\n repeated int32 clientIDs = 3 [packed = true];\n}\n\nmessage DriverMsg {\n enum MsgType {\n DATA = 1;\n PING = 2;\n PONG = 3;\n CLIENT_DIED = 4;\n DRIVER_DIED = 5;\n SUBSCRIBE = 6;\n UNSUBSCRIBE = 7;\n }\n\n required MsgType type = 2;\n optional uint32 synNum = 3;\n optional uint32 ackNum = 4;\n optional uint32 listenerNum = 5;\n extensions 10 to 199;\n}","subject":"Extend number of extenstions to 199, add PID follow trajectory driver","message":"Extend number of extenstions to 199, add PID follow trajectory driver\n","lang":"Protocol Buffer","license":"mit","repos":"project-capo\/amber-common"} {"commit":"8d382a5651408faf6666e990892c83f6bd1b382d","old_file":"protofiles\/aqdnetworks.proto","new_file":"protofiles\/aqdnetworks.proto","old_contents":"\/\/ -*- cpy-indent-level: 4; indent-tabs-mode: nil -*-\n\/\/ ex: set expandtab softtabstop=4 shiftwidth=4:\npackage aqdnetworks;\n\nimport \"aqdsystems.proto\";\nimport \"aqdlocations.proto\";\n\n\nmessage DynamicRange {\n optional string start = 1;\n optional string end = 2;\n}\n\nmessage Network {\n optional string name = 1;\n optional string ip = 2;\n optional int32 cidr = 3;\n optional string bcast = 4;\n optional string netmask = 5;\n optional string side = 6;\n optional string sysloc = 7;\n optional aqdlocations.Location location = 8;\n repeated aqdsystems.Host hosts = 9;\n optional int32 id = 10 [deprecated=true];\n optional string type = 11;\n optional bool discoverable = 12 [deprecated=true];\n optional bool discovered = 13 [deprecated=true];\n optional string env_name = 14;\n repeated DynamicRange dynamic_ranges = 15;\n repeated string routers = 16;\n optional string compartment = 17;\n optional aqdsystems.NetworkEnvironment network_environment = 18;\n \/\/ Note: network_environment.name == env_name\n}\n\nmessage NetworkList {\n repeated Network networks = 1;\n}\n\nmessage NetworkCompartment {\n required string name = 1;\n}\n\nmessage NetworkCompartmentList {\n repeated NetworkCompartment compartments = 1;\n}\n","new_contents":"\/\/ -*- cpy-indent-level: 4; indent-tabs-mode: nil -*-\n\/\/ ex: set expandtab softtabstop=4 shiftwidth=4:\npackage aqdnetworks;\n\nimport \"aqdsystems.proto\";\nimport \"aqdlocations.proto\";\n\n\nmessage DynamicRange {\n optional string start = 1;\n optional string end = 2;\n optional string range_class = 3;\n}\n\nmessage Network {\n optional string name = 1;\n optional string ip = 2;\n optional int32 cidr = 3;\n optional string bcast = 4;\n optional string netmask = 5;\n optional string side = 6;\n optional string sysloc = 7;\n optional aqdlocations.Location location = 8;\n repeated aqdsystems.Host hosts = 9;\n optional int32 id = 10 [deprecated=true];\n optional string type = 11;\n optional bool discoverable = 12 [deprecated=true];\n optional bool discovered = 13 [deprecated=true];\n optional string env_name = 14;\n repeated DynamicRange dynamic_ranges = 15;\n repeated string routers = 16;\n optional string compartment = 17;\n optional aqdsystems.NetworkEnvironment network_environment = 18;\n \/\/ Note: network_environment.name == env_name\n}\n\nmessage NetworkList {\n repeated Network networks = 1;\n}\n\nmessage NetworkCompartment {\n required string name = 1;\n}\n\nmessage NetworkCompartmentList {\n repeated NetworkCompartment compartments = 1;\n}\n","subject":"Add range_class option to dynamic ranges","message":"Add range_class option to dynamic ranges\n\nDynamic ranges should have a range_class option to describe what\nthe dynamic range will be used for. This has been added for\nfully-automated-build purposes.\n\nAddresses-Issue: Jira\/AQUILON-4586\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"quattor\/aquilon-protocols,quattor\/aquilon-protocols"} {"commit":"05613e2e40c211d0e16ecbfb5f8eb30e65d4881c","old_file":"OpenScienceJournal\/whistlepunk_library\/src\/main\/proto\/caption.proto","new_file":"OpenScienceJournal\/whistlepunk_library\/src\/main\/proto\/caption.proto","old_contents":"\/*\n * Copyright 2017 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nsyntax = \"proto2\";\n\npackage goosci;\noption java_package = \"com.google.android.apps.forscience.whistlepunk.metadata\";\noption java_outer_classname = \"GoosciCaption\";\noption objc_class_prefix = \"GSJ\";\noption optimize_for = LITE_RUNTIME;\n\n\/\/ A user-added caption. This can be applied to trials and labels.\nmessage Caption {\n optional string text = 1;\n\n optional string lastEditedTimestamp = 2;\n}","new_contents":"\/*\n * Copyright 2017 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nsyntax = \"proto2\";\n\npackage goosci;\noption java_package = \"com.google.android.apps.forscience.whistlepunk.metadata\";\noption java_outer_classname = \"GoosciCaption\";\noption objc_class_prefix = \"GSJ\";\noption optimize_for = LITE_RUNTIME;\n\n\/\/ A user-added caption. This can be applied to trials and labels.\nmessage Caption {\n optional string text = 1;\n\n optional int64 lastEditedTimestamp = 2;\n}","subject":"Fix proto timestamp: should be long, not string.","message":"Fix proto timestamp: should be long, not string.\n\nChange-Id: Id26771074ef589fa9d936644e9690cfb0721c98b\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"googlearchive\/science-journal,googlearchive\/science-journal,googlearchive\/science-journal"} {"commit":"83e6efc6fcb44f5d8436f68856dac0ea42537b05","old_file":"pkg\/api\/runtimeoptions\/v1\/api.proto","new_file":"pkg\/api\/runtimeoptions\/v1\/api.proto","old_contents":"\/\/ To regenerate api.pb.go run `make proto`\nsyntax = \"proto3\";\n\npackage cri.runtimeoptions.v1;\n\nimport \"github.com\/gogo\/protobuf\/gogoproto\/gogo.proto\";\n\noption (gogoproto.goproto_stringer_all) = false;\noption (gogoproto.stringer_all) = true;\noption (gogoproto.goproto_getters_all) = true;\noption (gogoproto.marshaler_all) = true;\noption (gogoproto.sizer_all) = true;\noption (gogoproto.unmarshaler_all) = true;\noption (gogoproto.goproto_unrecognized_all) = false;\n\nmessage Options {\n \/\/ TypeUrl specifies the type of the content inside the config file.\n string type_url = 1;\n \/\/ ConfigPath specifies the filesystem location of the config file\n \/\/ used by the runtime.\n string config_path = 2;\n}\n","new_contents":"\/\/ To regenerate api.pb.go run `make proto`\nsyntax = \"proto3\";\n\npackage cri.runtimeoptions.v1;\n\nimport \"github.com\/gogo\/protobuf\/gogoproto\/gogo.proto\";\n\noption (gogoproto.goproto_stringer_all) = false;\noption (gogoproto.stringer_all) = true;\noption (gogoproto.goproto_getters_all) = true;\noption (gogoproto.marshaler_all) = true;\noption (gogoproto.sizer_all) = true;\noption (gogoproto.unmarshaler_all) = true;\noption (gogoproto.goproto_unrecognized_all) = false;\n\nmessage Options {\n\t\/\/ TypeUrl specifies the type of the content inside the config file.\n\tstring type_url = 1;\n\t\/\/ ConfigPath specifies the filesystem location of the config file\n\t\/\/ used by the runtime.\n\tstring config_path = 2;\n}\n","subject":"Use tabs in protofile indentation","message":"Use tabs in protofile indentation\n\nThis is enforced as part of containerd's fmt checks\n\nSigned-off-by: Derek McGowan \n","lang":"Protocol Buffer","license":"apache-2.0","repos":"mikebrow\/containerd,containerd\/containerd,dmcgowan\/containerd,estesp\/containerd,containerd\/containerd,thaJeztah\/containerd,vdemeester\/containerd,vdemeester\/containerd,dmcgowan\/containerd,mikebrow\/containerd,estesp\/containerd,thaJeztah\/containerd"} {"commit":"ad25ef96414b6beda93e331a2ccc6d9b8b2f809e","old_file":"semanticdb\/semanticdb2\/semanticdb2.proto","new_file":"semanticdb\/semanticdb2\/semanticdb2.proto","old_contents":"syntax = \"proto3\";\n\npackage org.langmeta.internal.semanticdb.schema;\n\nmessage TextDocuments {\n repeated TextDocument documents = 1;\n}\n\nmessage TextDocument {\n reserved 1;\n reserved 5;\n string format = 10;\n string uri = 9;\n string text = 8;\n string language = 7;\n repeated SymbolInformation symbols = 4;\n repeated SymbolOccurrence occurrences = 2;\n repeated Diagnostic diagnostics = 3;\n repeated Synthetic synthetics = 6;\n}\n\nmessage SymbolInformation {\n string symbol = 1;\n Denotation denotation = 2;\n}\n\nmessage Denotation {\n int64 flags = 1;\n string name = 2;\n string signature = 3;\n repeated SymbolOccurrence occurrences = 4;\n repeated string members = 5;\n repeated string overrides = 6;\n}\n\nmessage SymbolOccurrence {\n Position position = 1;\n string symbol = 2;\n bool is_definition = 3;\n}\n\nmessage Position {\n int32 start = 2;\n int32 end = 3;\n}\n\nmessage Diagnostic {\n enum Severity {\n UNKNOWN = 0;\n INFO = 1;\n WARNING = 2;\n ERROR = 3;\n }\n Position position = 1;\n Severity severity = 2;\n string text = 3;\n}\n\nmessage Synthetic {\n Position pos = 1;\n string text = 2;\n repeated SymbolOccurrence occurrences = 3;\n}","new_contents":"syntax = \"proto3\";\n\npackage org.langmeta.internal.semanticdb.schema;\n\nmessage TextDocuments {\n repeated TextDocument documents = 1;\n}\n\nmessage TextDocument {\n reserved 1;\n reserved 5;\n string format = 10;\n string uri = 9;\n string text = 8;\n string language = 7;\n repeated SymbolInformation symbols = 4;\n repeated SymbolOccurrence occurrences = 2;\n repeated Diagnostic diagnostics = 3;\n repeated Synthetic synthetics = 6;\n}\n\nmessage Position {\n int32 start = 2;\n int32 end = 3;\n}\n\nmessage SymbolInformation {\n string symbol = 1;\n Denotation denotation = 2;\n}\n\nmessage Denotation {\n int64 flags = 1;\n string name = 2;\n string signature = 3;\n repeated SymbolOccurrence occurrences = 4;\n repeated string members = 5;\n repeated string overrides = 6;\n}\n\nmessage SymbolOccurrence {\n Position position = 1;\n string symbol = 2;\n bool is_definition = 3;\n}\n\nmessage Diagnostic {\n enum Severity {\n UNKNOWN = 0;\n INFO = 1;\n WARNING = 2;\n ERROR = 3;\n }\n Position position = 1;\n Severity severity = 2;\n string text = 3;\n}\n\nmessage Synthetic {\n Position pos = 1;\n string text = 2;\n repeated SymbolOccurrence occurrences = 3;\n}","subject":"Move s.Position to be directly under s.TextDocument","message":"Move s.Position to be directly under s.TextDocument\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"olafurpg\/scalameta,scalameta\/scalameta,xeno-by\/scalameta,scalameta\/scalameta,xeno-by\/scalameta,scalameta\/scalameta,olafurpg\/scalameta,MasseGuillaume\/scalameta,MasseGuillaume\/scalameta,scalameta\/scalameta,xeno-by\/scalameta,olafurpg\/scalameta,MasseGuillaume\/scalameta,scalameta\/scalameta"} {"commit":"ebbec203d5aaf1a2c481c4554ee3f9f3f826389a","old_file":"fs\/wire\/dirent.proto","new_file":"fs\/wire\/dirent.proto","old_contents":"syntax = \"proto3\";\n\npackage bazil.db;\n\noption go_package = \"wire\";\n\nimport \"bazil.org\/bazil\/cas\/wire\/manifest.proto\";\n\nmessage Dirent {\n uint64 inode = 1;\n oneof type {\n File file = 2;\n Dir dir = 3;\n }\n\n \/\/ TODO executable, xattr, acl\n \/\/ TODO mtime\n \/\/ TODO vector clocks\n}\n\nmessage File {\n bazil.cas.Manifest manifest = 1;\n}\n\n\/\/ Dir is a directory stored fully in the database, not persisted\n\/\/ in objects.\nmessage Dir {\n}\n","new_contents":"syntax = \"proto3\";\n\npackage bazil.db;\n\noption go_package = \"wire\";\n\nimport \"bazil.org\/bazil\/cas\/wire\/manifest.proto\";\n\nmessage Dirent {\n uint64 inode = 1;\n oneof type {\n File file = 2;\n Dir dir = 3;\n }\n\n \/\/ TODO executable, xattr, acl\n \/\/ TODO mtime\n}\n\nmessage File {\n bazil.cas.Manifest manifest = 1;\n}\n\n\/\/ Dir is a directory stored fully in the database, not persisted\n\/\/ in objects.\nmessage Dir {\n}\n","subject":"Remove TODO note, logical clocks are now implemented","message":"fs\/wire: Remove TODO note, logical clocks are now implemented\n","lang":"Protocol Buffer","license":"mit","repos":"lisael\/bazil,bazil\/bazil"} {"commit":"095e6185fa3870de3e086b0d0c336f82fba1c49a","old_file":"indexer\/drawing_rules.proto","new_file":"indexer\/drawing_rules.proto","old_contents":"\nmessage ColorProto\n{\n required int32 color = 1;\n optional uint8 opacity = 2; \/\/ opacity : 0 - completly invisible, 255 - completly visible\n}\n\nmessage DashDotProto\n{\n repeated double dd = 1;\n}\n\nmessage LineRuleProto\n{\n required double width = 1;\n required ColorProto color = 2;\n optional DashDotProto dashdot = 4;\n}\n\nmessage AreaRuleProto\n{\n required ColorProto color = 1;\n optional LineRuleProto border = 3;\n}\n\nmessage SymbolRuleProto\n{\n required string name = 1;\n}\n\nmessage CaptionRuleProto\n{\n required int32 height = 1;\n optional ColorProto color = 2;\n optional ColorProto stroke_color = 3;\n}\n\nmessage CircleRuleProto\n{\n required double rad = 1;\n required ColorProto color = 2;\n optional LineRuleProto border = 3;\n}\n\n\/\/ PathTextRule is same as CaptionRule\n\n\/\/ WayMarkerRule not used yet\n","new_contents":"\nmessage ColorProto\n{\n required int32 color = 1;\n optional uint8 opacity = 2; \/\/ opacity : 0 - completly invisible, 255 - completly visible\n}\n\nmessage DashDotProto\n{\n repeated double dd = 1;\n}\n\nmessage LineRuleProto\n{\n required double width = 1;\n required ColorProto color = 2;\n optional DashDotProto dashdot = 4;\n}\n\nmessage AreaRuleProto\n{\n required ColorProto color = 1;\n optional LineRuleProto border = 3;\n}\n\nmessage SymbolRuleProto\n{\n required string name = 1;\n}\n\nmessage CaptionRuleProto\n{\n required int32 height = 1;\n optional ColorProto color = 2;\n optional ColorProto stroke_color = 3;\n}\n\nmessage CircleRuleProto\n{\n required double rad = 1;\n required ColorProto color = 2;\n optional LineRuleProto border = 3;\n}\n\n\/\/ PathTextRule is same as CaptionRule\n\n\/\/ WayMarkerRule not used yet\n\n\n\/\/ Describe containers.\n\nmessage DrawElementProto\n{\n required int8 scale = 1;\n optional repeated LineRuleProto lines = 2;\n optional AreaRuleProto area = 3;\n optional SymbolRuleProto = 4;\n optional CaptionRuleProto = 5;\n optional CircleRuleProto = 6;\n}\n\nmessage ClassifElementProto\n{\n required string name = 1;\n repeated DrawElementProto lines = 2;\n}\n\nmessage ContainerProto\n{\n repeated ClassifElementProto cont = 1;\n}\n","subject":"Add drawing rules container definition.","message":"Add drawing rules container definition.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"lydonchandra\/omim,Komzpa\/omim,gardster\/omim,syershov\/omim,therearesomewhocallmetim\/omim,alexzatsepin\/omim,programming086\/omim,bykoianko\/omim,VladiMihaylenko\/omim,guard163\/omim,sidorov-panda\/omim,trashkalmar\/omim,goblinr\/omim,milchakov\/omim,darina\/omim,kw217\/omim,sidorov-panda\/omim,ygorshenin\/omim,Zverik\/omim,ygorshenin\/omim,victorbriz\/omim,mpimenov\/omim,krasin\/omim,goblinr\/omim,AlexanderMatveenko\/omim,rokuz\/omim,Komzpa\/omim,krasin\/omim,victorbriz\/omim,stangls\/omim,mgsergio\/omim,augmify\/omim,65apps\/omim,goblinr\/omim,AlexanderMatveenko\/omim,TimurTarasenko\/omim,65apps\/omim,sidorov-panda\/omim,syershov\/omim,syershov\/omim,rokuz\/omim,mapsme\/omim,vng\/omim,Zverik\/omim,65apps\/omim,guard163\/omim,Zverik\/omim,rokuz\/omim,goblinr\/omim,mapsme\/omim,yunikkk\/omim,igrechuhin\/omim,Komzpa\/omim,Saicheg\/omim,Endika\/omim,bykoianko\/omim,mpimenov\/omim,Saicheg\/omim,dobriy-eeh\/omim,victorbriz\/omim,krasin\/omim,Zverik\/omim,Endika\/omim,rokuz\/omim,igrechuhin\/omim,Volcanoscar\/omim,TimurTarasenko\/omim,goblinr\/omim,alexzatsepin\/omim,vng\/omim,wersoo\/omim,TimurTarasenko\/omim,victorbriz\/omim,dkorolev\/omim,VladiMihaylenko\/omim,simon247\/omim,andrewshadura\/omim,matsprea\/omim,mpimenov\/omim,trashkalmar\/omim,TimurTarasenko\/omim,rokuz\/omim,mapsme\/omim,sidorov-panda\/omim,AlexanderMatveenko\/omim,dobriy-eeh\/omim,wersoo\/omim,wersoo\/omim,milchakov\/omim,programming086\/omim,bykoianko\/omim,dobriy-eeh\/omim,andrewshadura\/omim,mapsme\/omim,mpimenov\/omim,milchakov\/omim,syershov\/omim,simon247\/omim,vladon\/omim,darina\/omim,yunikkk\/omim,ygorshenin\/omim,felipebetancur\/omim,vasilenkomike\/omim,felipebetancur\/omim,darina\/omim,dobriy-eeh\/omim,ygorshenin\/omim,andrewshadura\/omim,mapsme\/omim,Transtech\/omim,programming086\/omim,mgsergio\/omim,albertshift\/omim,andrewshadura\/omim,felipebetancur\/omim,kw217\/omim,augmify\/omim,Volcanoscar\/omim,programming086\/omim,guard163\/omim,bykoianko\/omim,jam891\/omim,darina\/omim,ygorshenin\/omim,TimurTarasenko\/omim,VladiMihaylenko\/omim,augmify\/omim,stangls\/omim,alexzatsepin\/omim,albertshift\/omim,Zverik\/omim,bykoianko\/omim,mpimenov\/omim,Volcanoscar\/omim,edl00k\/omim,simon247\/omim,albertshift\/omim,lydonchandra\/omim,yunikkk\/omim,Zverik\/omim,stangls\/omim,vladon\/omim,felipebetancur\/omim,alexzatsepin\/omim,Saicheg\/omim,therearesomewhocallmetim\/omim,trashkalmar\/omim,AlexanderMatveenko\/omim,vng\/omim,milchakov\/omim,sidorov-panda\/omim,vladon\/omim,guard163\/omim,Komzpa\/omim,stangls\/omim,dobriy-eeh\/omim,yunikkk\/omim,stangls\/omim,alexzatsepin\/omim,kw217\/omim,ygorshenin\/omim,darina\/omim,kw217\/omim,UdjinM6\/omim,andrewshadura\/omim,gardster\/omim,Komzpa\/omim,65apps\/omim,bykoianko\/omim,syershov\/omim,edl00k\/omim,vasilenkomike\/omim,dobriy-eeh\/omim,augmify\/omim,trashkalmar\/omim,mapsme\/omim,vladon\/omim,mapsme\/omim,victorbriz\/omim,sidorov-panda\/omim,dkorolev\/omim,Transtech\/omim,AlexanderMatveenko\/omim,Komzpa\/omim,dkorolev\/omim,igrechuhin\/omim,kw217\/omim,ygorshenin\/omim,bykoianko\/omim,stangls\/omim,therearesomewhocallmetim\/omim,kw217\/omim,ygorshenin\/omim,VladiMihaylenko\/omim,andrewshadura\/omim,TimurTarasenko\/omim,darina\/omim,victorbriz\/omim,guard163\/omim,stangls\/omim,mgsergio\/omim,guard163\/omim,gardster\/omim,Zverik\/omim,Saicheg\/omim,therearesomewhocallmetim\/omim,stangls\/omim,Volcanoscar\/omim,alexzatsepin\/omim,igrechuhin\/omim,alexzatsepin\/omim,edl00k\/omim,vladon\/omim,augmify\/omim,AlexanderMatveenko\/omim,simon247\/omim,kw217\/omim,goblinr\/omim,Volcanoscar\/omim,matsprea\/omim,therearesomewhocallmetim\/omim,rokuz\/omim,ygorshenin\/omim,matsprea\/omim,syershov\/omim,milchakov\/omim,mapsme\/omim,mgsergio\/omim,mapsme\/omim,simon247\/omim,stangls\/omim,darina\/omim,krasin\/omim,Volcanoscar\/omim,Komzpa\/omim,goblinr\/omim,darina\/omim,yunikkk\/omim,albertshift\/omim,Zverik\/omim,Saicheg\/omim,mpimenov\/omim,UdjinM6\/omim,krasin\/omim,jam891\/omim,milchakov\/omim,gardster\/omim,trashkalmar\/omim,edl00k\/omim,VladiMihaylenko\/omim,VladiMihaylenko\/omim,jam891\/omim,matsprea\/omim,VladiMihaylenko\/omim,mgsergio\/omim,syershov\/omim,rokuz\/omim,goblinr\/omim,augmify\/omim,therearesomewhocallmetim\/omim,UdjinM6\/omim,vladon\/omim,programming086\/omim,andrewshadura\/omim,mpimenov\/omim,albertshift\/omim,VladiMihaylenko\/omim,AlexanderMatveenko\/omim,milchakov\/omim,edl00k\/omim,milchakov\/omim,wersoo\/omim,AlexanderMatveenko\/omim,vladon\/omim,wersoo\/omim,victorbriz\/omim,Komzpa\/omim,edl00k\/omim,dkorolev\/omim,programming086\/omim,alexzatsepin\/omim,Endika\/omim,alexzatsepin\/omim,krasin\/omim,Saicheg\/omim,VladiMihaylenko\/omim,albertshift\/omim,VladiMihaylenko\/omim,Endika\/omim,alexzatsepin\/omim,AlexanderMatveenko\/omim,yunikkk\/omim,Komzpa\/omim,therearesomewhocallmetim\/omim,UdjinM6\/omim,guard163\/omim,sidorov-panda\/omim,UdjinM6\/omim,dkorolev\/omim,matsprea\/omim,milchakov\/omim,TimurTarasenko\/omim,programming086\/omim,trashkalmar\/omim,igrechuhin\/omim,Zverik\/omim,igrechuhin\/omim,syershov\/omim,Transtech\/omim,trashkalmar\/omim,mgsergio\/omim,lydonchandra\/omim,gardster\/omim,trashkalmar\/omim,mpimenov\/omim,wersoo\/omim,Transtech\/omim,dobriy-eeh\/omim,matsprea\/omim,edl00k\/omim,rokuz\/omim,lydonchandra\/omim,guard163\/omim,Endika\/omim,Saicheg\/omim,albertshift\/omim,Volcanoscar\/omim,VladiMihaylenko\/omim,igrechuhin\/omim,wersoo\/omim,trashkalmar\/omim,simon247\/omim,vladon\/omim,darina\/omim,edl00k\/omim,programming086\/omim,TimurTarasenko\/omim,bykoianko\/omim,milchakov\/omim,dobriy-eeh\/omim,Endika\/omim,bykoianko\/omim,dkorolev\/omim,trashkalmar\/omim,goblinr\/omim,ygorshenin\/omim,stangls\/omim,rokuz\/omim,vasilenkomike\/omim,65apps\/omim,Transtech\/omim,therearesomewhocallmetim\/omim,Transtech\/omim,gardster\/omim,Endika\/omim,goblinr\/omim,ygorshenin\/omim,UdjinM6\/omim,vng\/omim,65apps\/omim,gardster\/omim,gardster\/omim,jam891\/omim,matsprea\/omim,jam891\/omim,Endika\/omim,dkorolev\/omim,edl00k\/omim,mapsme\/omim,therearesomewhocallmetim\/omim,wersoo\/omim,krasin\/omim,mapsme\/omim,felipebetancur\/omim,felipebetancur\/omim,vng\/omim,mgsergio\/omim,augmify\/omim,andrewshadura\/omim,simon247\/omim,Komzpa\/omim,vng\/omim,bykoianko\/omim,bykoianko\/omim,UdjinM6\/omim,Saicheg\/omim,stangls\/omim,vasilenkomike\/omim,vng\/omim,Zverik\/omim,lydonchandra\/omim,gardster\/omim,vasilenkomike\/omim,Transtech\/omim,victorbriz\/omim,65apps\/omim,mpimenov\/omim,sidorov-panda\/omim,TimurTarasenko\/omim,edl00k\/omim,mgsergio\/omim,Transtech\/omim,Volcanoscar\/omim,gardster\/omim,syershov\/omim,wersoo\/omim,bykoianko\/omim,65apps\/omim,dobriy-eeh\/omim,trashkalmar\/omim,vng\/omim,lydonchandra\/omim,felipebetancur\/omim,igrechuhin\/omim,UdjinM6\/omim,Saicheg\/omim,jam891\/omim,darina\/omim,darina\/omim,lydonchandra\/omim,augmify\/omim,vladon\/omim,syershov\/omim,vladon\/omim,victorbriz\/omim,krasin\/omim,mapsme\/omim,rokuz\/omim,simon247\/omim,albertshift\/omim,mapsme\/omim,TimurTarasenko\/omim,Zverik\/omim,goblinr\/omim,augmify\/omim,simon247\/omim,milchakov\/omim,therearesomewhocallmetim\/omim,ygorshenin\/omim,kw217\/omim,rokuz\/omim,vasilenkomike\/omim,programming086\/omim,Volcanoscar\/omim,sidorov-panda\/omim,matsprea\/omim,mpimenov\/omim,dobriy-eeh\/omim,dkorolev\/omim,VladiMihaylenko\/omim,jam891\/omim,lydonchandra\/omim,Transtech\/omim,goblinr\/omim,guard163\/omim,krasin\/omim,goblinr\/omim,rokuz\/omim,vasilenkomike\/omim,albertshift\/omim,igrechuhin\/omim,alexzatsepin\/omim,darina\/omim,darina\/omim,albertshift\/omim,programming086\/omim,vasilenkomike\/omim,mpimenov\/omim,kw217\/omim,alexzatsepin\/omim,Transtech\/omim,jam891\/omim,bykoianko\/omim,mgsergio\/omim,mpimenov\/omim,andrewshadura\/omim,vasilenkomike\/omim,syershov\/omim,lydonchandra\/omim,dkorolev\/omim,rokuz\/omim,felipebetancur\/omim,Endika\/omim,65apps\/omim,syershov\/omim,Zverik\/omim,vng\/omim,Endika\/omim,dkorolev\/omim,milchakov\/omim,krasin\/omim,dobriy-eeh\/omim,vasilenkomike\/omim,Transtech\/omim,dobriy-eeh\/omim,simon247\/omim,yunikkk\/omim,augmify\/omim,AlexanderMatveenko\/omim,wersoo\/omim,jam891\/omim,guard163\/omim,victorbriz\/omim,UdjinM6\/omim,jam891\/omim,alexzatsepin\/omim,yunikkk\/omim,andrewshadura\/omim,mgsergio\/omim,matsprea\/omim,matsprea\/omim,milchakov\/omim,felipebetancur\/omim,yunikkk\/omim,felipebetancur\/omim,dobriy-eeh\/omim,igrechuhin\/omim,Volcanoscar\/omim,kw217\/omim,trashkalmar\/omim,mpimenov\/omim,lydonchandra\/omim,Transtech\/omim,VladiMihaylenko\/omim,vng\/omim,mgsergio\/omim,65apps\/omim,syershov\/omim,UdjinM6\/omim,yunikkk\/omim,Zverik\/omim,Saicheg\/omim,yunikkk\/omim,sidorov-panda\/omim,mgsergio\/omim,65apps\/omim"} {"commit":"bbdd2d9cc53f159603d7658bc50eeec1abf06a00","old_file":"hypebot\/protos\/channel.proto","new_file":"hypebot\/protos\/channel.proto","old_contents":"\/\/ Copyright 2018 The Hypebot Authors. All rights reserved.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\nsyntax = \"proto3\";\n\npackage hypebot;\n\nmessage Channel {\n \/\/ The unique name of the target. For IRC, the channel or username. For\n \/\/ Hangouts Chat, the Space name. This is intended to be the replacement for\n \/\/ everything that currently uses target as a string.\n string id = 1;\n\n enum Visibility {\n PUBLIC = 0;\n PRIVATE = 1;\n }\n\n \/\/ Indicates who can see messages sent to the channel. Certain behavior (spam)\n \/\/ is only acceptable in private channels.\n Visibility visibility = 2;\n\n \/\/ Human readable name for the room. Make it easier to talk about Hangout\n \/\/ rooms instead of using gibberish.\n string name = 3;\n}\n","new_contents":"\/\/ Copyright 2018 The Hypebot Authors. All rights reserved.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\nsyntax = \"proto3\";\n\npackage hypebot;\n\nmessage Channel {\n \/\/ The unique name of the target. For IRC, the channel or username. For\n \/\/ Hangouts Chat, the Space name. This is intended to be the replacement for\n \/\/ everything that currently uses target as a string. Note that some chat\n \/\/ systems may have case-sensitive identifiers, so this field should not have\n \/\/ case changing operations applied to it.\n string id = 1;\n\n enum Visibility {\n PUBLIC = 0;\n PRIVATE = 1;\n }\n\n \/\/ Indicates who can see messages sent to the channel. Certain behavior (spam)\n \/\/ is only acceptable in private channels.\n Visibility visibility = 2;\n\n \/\/ Human readable name for the room. Make it easier to talk about Hangout\n \/\/ rooms instead of using gibberish.\n string name = 3;\n}\n","subject":"Clarify some semantics of Channel.id.","message":"Clarify some semantics of Channel.id.\n\nPiperOrigin-RevId: 265964814\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"google\/hypebot"} {"commit":"b472d2a4d7887f1f1b2686bbbf11c9c64f66ef55","old_file":"controller.proto","new_file":"controller.proto","old_contents":"option optimize_for = LITE_RUNTIME;\n\nimport \"common.proto\";\npackage orwell.messages;\n\n\/\/ Tell a player wants to join\n\/\/ answered by: Welcome, Goodbye\nmessage Hello {\n\trequired string name = 1;\n\toptional bool ready = 2 [default = true];\n}\n\n\/\/ Notify the state of the inputs to control the robot\nmessage Input {\n\toptional group Move = 1 {\n\t\toptional double left = 1;\n\t\toptional double right = 2;\n\t}\n\toptional group Fire = 2 {\n\t\toptional bool weapon1 = 1;\n\t\toptional bool weapon2 = 2;\n\t}\n}\n\n\/\/ Ask for a pong message to mesure timings\nmessage Ping {\n\trepeated Timing timing = 1;\n}\n","new_contents":"option optimize_for = LITE_RUNTIME;\n\nimport \"common.proto\";\npackage orwell.messages;\n\n\/\/ Tell a player wants to join\n\/\/ answered by: Welcome, Goodbye\nmessage Hello {\n\trequired string name = 1;\n\toptional bool ready = 2 [default = true];\n}\n\nmessage Move {\n\toptional double left = 1;\n\toptional double right = 2;\n}\n\nmessage Fire {\n\toptional bool weapon1 = 1;\n\toptional bool weapon2 = 2;\n}\n\n\/\/ Notify the state of the inputs to control the robot\nmessage Input {\n\toptional Move move = 1;\n\toptional Fire fire = 2;\n}\n\n\/\/ Ask for a pong message to mesure timings\nmessage Ping {\n\trepeated Timing timing = 1;\n}\n","subject":"Replace groups with separate messages (for shooter).","message":"Replace groups with separate messages (for shooter).\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"orwell-int\/messages,orwell-int\/messages"} {"commit":"c3b02b015976404b5146743ee3578e80280a1cc9","old_file":"message\/reply_leader.proto","new_file":"message\/reply_leader.proto","old_contents":"\/*\n * Copyright 2013 Madhusudan C.S.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * you may obtain a copy of the License from\n * \n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n \npackage message;\n\nmessage ReplyLeader {\n\trequired string leader = 1;\n}","new_contents":"\/*\n * Copyright 2013 Madhusudan C.S.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * you may obtain a copy of the License from\n * \n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n * \n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n \npackage message;\n\nmessage ReplyLeader {\n required string leader = 1;\n}","subject":"Update the leader reply proto.","message":"Update the leader reply proto.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"madhusudancs\/paxos"} {"commit":"3c2b270759a778f9e4dc84253dda2b4dbcc268df","old_file":"proto\/dclauth\/revoked_account.proto","new_file":"proto\/dclauth\/revoked_account.proto","old_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.dclauth;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/dclauth\/types\";\n\nimport \"gogoproto\/gogo.proto\";\nimport \"dclauth\/account.proto\";\nimport \"dclauth\/grant.proto\";\nimport \"cosmos_proto\/cosmos.proto\";\n\nmessage RevokedAccount {\n Account account = 1 [(gogoproto.embed) = true]; \n repeated Grant revokeApprovals = 2;\n string revokedReason = 3 [(cosmos_proto.scalar) = \"cosmos.AddressString\"]; \n}\n\n","new_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.dclauth;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/dclauth\/types\";\n\nimport \"gogoproto\/gogo.proto\";\nimport \"dclauth\/account.proto\";\nimport \"dclauth\/grant.proto\";\n\nmessage RevokedAccount {\n Account account = 1 [(gogoproto.embed) = true]; \n repeated Grant revokeApprovals = 2;\n enum Reason {\n TrusteeVoting = 0;\n MaliciousValidator = 1;\n }\n Reason reason = 3;\n}\n\n","subject":"Add a new enum field Reason for RevokedAccount","message":"Add a new enum field Reason for RevokedAccount\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger"} {"commit":"22e20e02fe9e44519f1257ebc652da29f25a85fa","old_file":"src\/messages.proto","new_file":"src\/messages.proto","old_contents":"message Node {\n required string id = 1;\n required bytes ip_address = 2;\n required uint32 port = 3;\n}\n\nmessage FindNodeQuery {\n required Node origin = 1; \/\/ Querying node\n required string target = 2;\n}\n\nmessage FindNodeResponse {\n required Node origin = 1; \/\/ Responding node\n repeated Node nodes = 2;\n}\n\nmessage Envelope {\n enum Type {\n FIND_NODE_QUERY = 1;\n FIND_NODE_RESPONSE = 2;\n }\n required Type message_type = 1;\n optional FindNodeQuery find_node_query = 2;\n optional FindNodeResponse find_node_response = 3;\n}\n","new_contents":"\/\/ Types\n\nmessage Node {\n required string id = 1;\n required bytes ip_address = 2;\n required uint32 port = 3;\n}\n\n\/\/ Messages\n\nmessage FindNodeQuery {\n required Node origin = 1; \/\/ Querying node\n required string target = 2;\n}\n\nmessage FindNodeResponse {\n required Node origin = 1; \/\/ Responding node\n repeated Node nodes = 2;\n}\n\n\/\/ Wrapper\n\nmessage Envelope {\n enum Type {\n FIND_NODE_QUERY = 1;\n FIND_NODE_RESPONSE = 2;\n }\n required Type message_type = 1;\n optional FindNodeQuery find_node_query = 2;\n optional FindNodeResponse find_node_response = 3;\n}\n","subject":"Add some comments to protnbuf definitions","message":"Add some comments to protnbuf definitions\n","lang":"Protocol Buffer","license":"mit","repos":"zacstewart\/comm,zacstewart\/comm,zacstewart\/comm"} {"commit":"287279c780ce61c227050397da987e4d3d713b8a","old_file":"proto\/google\/events\/cloudevent.proto","new_file":"proto\/google\/events\/cloudevent.proto","old_contents":"\/\/ Copyright 2020 Google LLC.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ https:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.events;\n\nimport \"google\/protobuf\/descriptor.proto\";\n\noption csharp_namespace = \"Google.Events.Protobuf\";\n\nextend google.protobuf.MessageOptions {\n \/\/ FIXME: Determine the right field number to use\n \/\/ TODO: Use a message instead of just a string?\n string cloud_event_type = 20000;\n}\n","new_contents":"\/\/ Copyright 2020 Google LLC.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ https:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.events;\n\nimport \"google\/protobuf\/descriptor.proto\";\n\noption csharp_namespace = \"Google.Events.Protobuf\";\n\nextend google.protobuf.MessageOptions {\n \/\/ The CloudEvent type (e.g. \"google.cloud.storage.object.v1.finalized\")\n \/\/ that relates to this message.\n string cloud_event_type = 311716486;\n}\n","subject":"Fix the extension number for cloud_event_type","message":"Fix the extension number for cloud_event_type\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"googleapis\/google-cloudevents,googleapis\/google-cloudevents,googleapis\/google-cloudevents"} {"commit":"bf0b1a87306cbe43b880615f41019f05e5447ac6","old_file":"src\/LeapSerial\/test\/TestProtobuf.proto","new_file":"src\/LeapSerial\/test\/TestProtobuf.proto","old_contents":"package leap.test;\n\nmessage Pet {\n required string name = 1;\n\n enum Species {\n DOG = 0;\n CAT = 1;\n }\n required Species species = 2;\n}\n\nmessage PetFieldEntry {\n required string key = 1;\n required Pet value = 2;\n}\n\nmessage Person {\n required string name = 1;\n required int32 id = 2;\n optional string email = 3;\n\n enum PhoneType {\n MOBILE = 0;\n HOME = 1;\n WORK = 2;\n }\n\n message PhoneNumber {\n required string number = 1;\n optional PhoneType type = 2[default = HOME];\n }\n\n repeated PhoneNumber phone = 4;\n repeated PetFieldEntry pet = 5;\n}\n\nmessage AddressBook {\n repeated Person person = 1;\n}\n\n","new_contents":"syntax = \"proto2\";\npackage leap.test;\n\nmessage Pet {\n required string name = 1;\n\n enum Species {\n DOG = 0;\n CAT = 1;\n }\n required Species species = 2;\n}\n\nmessage PetFieldEntry {\n required string key = 1;\n required Pet value = 2;\n}\n\nmessage Person {\n required string name = 1;\n required int32 id = 2;\n optional string email = 3;\n\n enum PhoneType {\n MOBILE = 0;\n HOME = 1;\n WORK = 2;\n }\n\n message PhoneNumber {\n required string number = 1;\n optional PhoneType type = 2[default = HOME];\n }\n\n repeated PhoneNumber phone = 4;\n repeated PetFieldEntry pet = 5;\n}\n\nmessage AddressBook {\n repeated Person person = 1;\n}\n\n","subject":"Fix warning in build process","message":"Fix warning in build process\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"leapmotion\/leapserial,leapmotion\/leapserial,leapmotion\/leapserial"} {"commit":"05572b7489afc624959e1713f1d8e3bb6009f86c","old_file":"proto\/grid\/messages\/setup_messages.proto","new_file":"proto\/grid\/messages\/setup_messages.proto","old_contents":"syntax = \"proto3\";\n\npackage syft.grid.messages;\n\nimport \"proto\/core\/common\/common_object.proto\";\nimport \"proto\/core\/io\/address.proto\";\n\nmessage CreateInitialSetupMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n}\n\nmessage CreateInitialSetupResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n syft.core.io.Address reply_to = 4;\n}\n\n\nmessage GetSetupMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 3;\n}\n\nmessage GetSetupResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n syft.core.io.Address reply_to = 4;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage syft.grid.messages;\n\nimport \"proto\/core\/common\/common_object.proto\";\nimport \"proto\/core\/io\/address.proto\";\n\nmessage CreateInitialSetUpMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n string content = 3;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage CreateInitialSetUpResponse {\n syft.core.common.UID msg_id = 1;\n bool success = 2;\n string content = 3;\n syft.core.io.Address address = 4;\n}\n\n\nmessage GetSetUpMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n string content = 3;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage GetSetUpResponse {\n syft.core.common.UID msg_id = 1;\n bool success = 2;\n string content = 3;\n syft.core.io.Address address = 4;\n}\n","subject":"ADD setup messages protobuf descriptor","message":"ADD setup messages protobuf descriptor\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft"} {"commit":"7e3f87b652600b30e03b8b52814c841827685b3d","old_file":"proto\/n0core\/lib\/proto\/create_vm_request.proto","new_file":"proto\/n0core\/lib\/proto\/create_vm_request.proto","old_contents":"syntax = \"proto3\";\n\nmessage CreateVMRequest {\n string id = 1;\n string host = 2;\n string arch = 3;\n uint32 vcpus = 4;\n uint32 memory_mb = 5;\n string vnc_password = 6;\n}\n","new_contents":"syntax = \"proto3\";\n\nmessage CreateVMRequest {\n string id = 1;\n string host = 2;\n string arch = 3;\n uint32 vcpus = 4;\n uint32 memory_mb = 5;\n string vnc_password = 6;\n string volume_id = 7;\n}\n","subject":"Add volume_id field to CreateVMRequest","message":"Add volume_id field to CreateVMRequest\n","lang":"Protocol Buffer","license":"bsd-2-clause","repos":"n0stack\/n0core"} {"commit":"472d06c4265b3f11f90be5600984254ad09908ac","old_file":"server\/src\/test\/proto\/spine\/test\/entity\/natural_number.proto","new_file":"server\/src\/test\/proto\/spine\/test\/entity\/natural_number.proto","old_contents":"\/*\n * Copyright 2019, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.test.natural.number;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package = \"io.spine.test.entity.number\";\noption java_multiple_files = true;\n\n\n\/\/ A natural number.\n\/\/\n\/\/ Zero is considered a natural number.\n\/\/\nmessage NaturalNumber {\n option (entity).kind = ENTITY;\n\n \/\/ Natural number value.\n \/\/\n \/\/ Must be greater than or equal to zero.\n int32 value = 1 [(min).value = \"0\"];\n}\n","new_contents":"\/*\n * Copyright 2019, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.test.server.number;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package = \"io.spine.test.server.number\";\noption java_multiple_files = true;\n\n\n\/\/ A natural number.\n\/\/\n\/\/ Zero is considered a natural number.\n\/\/\nmessage NaturalNumber {\n option (entity).kind = ENTITY;\n\n \/\/ Natural number value.\n \/\/\n \/\/ Must be greater than or equal to zero.\n int32 value = 1 [(min).value = \"0\"];\n}\n","subject":"Change proto test package name to `server`","message":"Change proto test package name to `server`\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"dd7c678881a7f8e14fe10c8ee1a3bd84f14e1432","old_file":"proto\/piglow.proto","new_file":"proto\/piglow.proto","old_contents":"syntax = \"proto3\";\n\npackage proto;\n\n\/\/ The remote PiGlow service\nservice PiGlow {\n \/\/ SetLED\n rpc SetLED (LedRequest) returns (Ack) {}\n}\n\nmessage LedRequest {\n int32 num = 1;\n uint32 brightness = 2;\n}\n\nmessage Ack {\n bool ok = 1;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage proto;\n\n\/\/ The remote PiGlow service\nservice PiGlow {\n \/\/ SetLED\n rpc SetLED (LedRequest) returns (Ack) {}\n\n \/\/ Set all LEDs to brightness\n rpc SetAll (BrightnessRequest) returns (Ack) {}\n \/\/ Set all White LEDs to brightness\n rpc SetWhite (BrightnessRequest) returns (Ack) {}\n \/\/ Set all Blue LEDs to brightness\n rpc SetBlue (BrightnessRequest) returns (Ack) {}\n \/\/ Set all Green LEDs to brightness\n rpc SetGreen (BrightnessRequest) returns (Ack) {}\n \/\/ Set all Yellow LEDs to brightness\n rpc SetYellow (BrightnessRequest) returns (Ack) {}\n \/\/ Set all Orange LEDs to brightness\n rpc SetOrange (BrightnessRequest) returns (Ack) {}\n \/\/ Set all Red LEDs to brightness\n rpc SetRed (BrightnessRequest) returns (Ack) {}\n}\n\nmessage LedRequest {\n int32 num = 1;\n uint32 brightness = 2;\n}\n\nmessage BrightnessRequest {\n uint32 brightness = 1;\n}\n\nmessage Ack {\n bool ok = 1;\n}\n","subject":"Implement those calls in protobuf","message":"Implement those calls in protobuf\n","lang":"Protocol Buffer","license":"mit","repos":"didrocks\/grpc-piglow"} {"commit":"b4eca59ff185afb6efe8de7a9b42ad711cb34246","old_file":"proto\/GoogleMapsDirection.proto","new_file":"proto\/GoogleMapsDirection.proto","old_contents":"message GoogleMapsDirection {\n optional string distance = 1;\n required string direction = 2;\n required string eta = 3;\n required TurnDirection tdirection = 4;\n\n enum TurnDirection {\n Right = 0;\n Left = 1;\n Straight = 2;\n TurnAround = 3;\n }\n}\n","new_contents":"message GoogleMapsDirection {\n required TurnDirection tdirection = 4;\n required string distance = 1;\n\n enum TurnDirection {\n Right = 0;\n Left = 1;\n Straight = 2;\n TurnAround = 3;\n }\n}\n","subject":"Update proto to deal with garbage BT adapter.","message":"Update proto to deal with garbage BT adapter.\n","lang":"Protocol Buffer","license":"mit","repos":"cujomalainey\/MapsUp,cujomalainey\/MapsUp,cujomalainey\/MapsUp"} {"commit":"4eb08f783cd0222d13f0773fd97b5960e1fc1ab5","old_file":"proto\/pki\/certificate.proto","new_file":"proto\/pki\/certificate.proto","old_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.pki;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/pki\/types\";\n\n\nimport \"cosmos_proto\/cosmos.proto\";\nimport \"pki\/grant.proto\";\n\nmessage Certificate {\n \n string pemCert = 1; \n string serialNumber = 2; \n string issuer = 3; \n string authorityKeyId = 4; \n string rootSubject = 5; \n string rootSubjectKeyId = 6; \n bool isRoot = 7; \n string owner = 8 [(cosmos_proto.scalar) = \"cosmos.AddressString\"]; \n string subject = 9; \n string subjectKeyId = 10; \n repeated Grant approvals = 11;\n string subjectAsText = 12; \n repeated string rejectApprovals = 13; \n}\n","new_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.pki;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/pki\/types\";\n\n\nimport \"cosmos_proto\/cosmos.proto\";\nimport \"pki\/grant.proto\";\n\nmessage Certificate {\n \n string pemCert = 1; \n string serialNumber = 2; \n string issuer = 3; \n string authorityKeyId = 4; \n string rootSubject = 5; \n string rootSubjectKeyId = 6; \n bool isRoot = 7; \n string owner = 8 [(cosmos_proto.scalar) = \"cosmos.AddressString\"]; \n string subject = 9; \n string subjectKeyId = 10; \n repeated Grant approvals = 11;\n string subjectAsText = 12; \n repeated Grant rejectApprovals = 13; \n}\n","subject":"Change rejectApprovals type from string to Grant","message":"Change rejectApprovals type from string to Grant\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger"} {"commit":"fbdb5fbb4c02778f17848bd02a1cf3b34aba8626","old_file":"addons\/pkg-maven\/common\/src\/main\/resources\/metadata_key.proto","new_file":"addons\/pkg-maven\/common\/src\/main\/resources\/metadata_key.proto","old_contents":"package metadata_key;\n\nmessage MetadataKey\n{\n StoreKey storeKey = 1;\n string path = 2;\n}\n\nmessage StoreKey\n{\n string packageType = 1;\n\n enum StoreType {\n group = 1;\n remote = 2;\n hosted = 3;\n }\n\n string name = 3;\n}","new_contents":"package metadata_key;\n\nmessage MetadataKey\n{\n required StoreKey storeKey = 1;\n optional string path = 2;\n}\n\nmessage StoreKey\n{\n required string packageType = 1;\n\n enum StoreType {\n group = 1;\n remote = 2;\n hosted = 3;\n }\n\n required StoreType type = 2;\n\n optional string name = 3;\n}","subject":"Fix the syntax error in .proto file","message":"Fix the syntax error in .proto file\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"Commonjava\/indy,pkocandr\/indy,Commonjava\/indy,Commonjava\/indy,pkocandr\/indy,yma88\/indy,Commonjava\/indy,pkocandr\/indy,ligangty\/indy,pkocandr\/indy,ligangty\/indy,yma88\/indy,jdcasey\/indy,ligangty\/indy,ligangty\/indy,Commonjava\/indy,ruhan1\/indy,ruhan1\/indy,pkocandr\/indy,pkocandr\/indy,jdcasey\/indy,ligangty\/indy,ruhan1\/indy,yma88\/indy,jdcasey\/indy,ruhan1\/indy,yma88\/indy,ruhan1\/indy,ruhan1\/indy,ligangty\/indy,jdcasey\/indy,jdcasey\/indy,Commonjava\/indy,jdcasey\/indy,yma88\/indy,yma88\/indy"} {"commit":"d3dd630aa62af386fb6fc327bae35eb6c813d487","old_file":"base\/src\/test\/proto\/spine\/test\/string\/stringifiers_test.proto","new_file":"base\/src\/test\/proto\/spine\/test\/string\/stringifiers_test.proto","old_contents":"\/*\n * Copyright 2019, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.test.string;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package=\"io.spine.test.string\";\noption java_multiple_files = true;\noption java_outer_classname = \"StringifiersTestProto\";\n\nmessage STaskId {\n string uuid = 1;\n}\n\nmessage STask {\n STaskId id = 1;\n STaskStatus status = 2;\n}\n\nenum STaskStatus {\n\n OPEN = 0;\n\n DONE = 1;\n}\n","new_contents":"\/*\n * Copyright 2019, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.test.string;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package=\"io.spine.test.string\";\noption java_multiple_files = true;\noption java_outer_classname = \"StringifiersTestProto\";\n\nmessage STaskId {\n string uuid = 1;\n}\n\nmessage STask {\n STaskId id = 1;\n STaskStatus status = 2;\n}\n\nenum STaskStatus {\n OPEN = 0;\n DONE = 1;\n}\n","subject":"Fix formatting in a test proto","message":"Fix formatting in a test proto\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/base,SpineEventEngine\/base,SpineEventEngine\/base"} {"commit":"30d2343177b0b3aea00a114ad22de659edf80491","old_file":"src\/main\/proto\/jejdbc.proto","new_file":"src\/main\/proto\/jejdbc.proto","old_contents":"\/*\n * This file is part of JEJDBC \n * https:\/\/github.com\/perbone\/jejdbc\/\n * \n * Copyright 2013-2017 Paulo Perbone\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License\n *\/\n\nsyntax = \"proto3\";\n\noption java_multiple_files = true;\n\npackage io.perbone.jejdbc.ipc;\n\nservice MonitorService {}\n","new_contents":"\/*\n * This file is part of JEJDBC \n * https:\/\/github.com\/perbone\/jejdbc\/\n * \n * Copyright 2013-2017 Paulo Perbone\n * \n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License\n *\/\n\nsyntax = \"proto3\";\n\noption java_multiple_files = true;\noption java_package = \"io.perbone.jejdbc.ipc.internal\";\noption java_outer_classname = \"JeJdbcProto\";\n\nenum NodeStatus {\n UNKNOWN = 0;\n DETACHED = 1;\n REPLICA = 2;\n MASTER = 3;\n}\n\nmessage StatusRequest {\n bool full = 1;\n}\n\nmessage StatusResponse {\n NodeStatus status = 1;\n}\n\nservice MonitorService {\n rpc getStatus(StatusRequest) returns (StatusResponse) {}\n}\n","subject":"Add more design ideas definition","message":"Add more design ideas definition","lang":"Protocol Buffer","license":"apache-2.0","repos":"perbone\/jejdbc"} {"commit":"dc919ef33b69226ae5cadb49b237d552a7d6aa89","old_file":"proto\/modules\/drive_to_point.proto","new_file":"proto\/modules\/drive_to_point.proto","old_contents":"package amber.drive_to_point_proto;\noption java_package = \"pl.edu.agh.amber.drivetopoint.proto\";\noption java_outer_classname = \"DriveToPointProto\";\n\nimport \"drivermsg.proto\";\n\nextend amber.DriverMsg {\n optional bool setTargets = 80;\n optional bool getNextTarget = 81;\n optional bool getNextTargets = 82;\n optional bool getVisitedTarget = 83;\n optional bool getVisitedTargets = 84;\n optional Targets targets = 85;\n optional Location location = 86;\n optional bool getConfiguration = 87;\n optional Configuration configuration = 88;\n}\n\nmessage Targets {\n repeated double longitudes = 1 [packed = true];\n repeated double latitudes = 2 [packed = true];\n repeated double radiuses = 3 [packed = true];\n}\n\nmessage Location {\n optional double x = 1;\n optional double y = 2;\n optional double p = 3;\n optional double alfa = 4;\n optional double timeStamp = 5;\n}\n\nmessage Configuration {\n optional double maxSpeed = 1;\n}\n","new_contents":"package amber.drive_to_point_proto;\noption java_package = \"pl.edu.agh.amber.drivetopoint.proto\";\noption java_outer_classname = \"DriveToPointProto\";\n\nimport \"drivermsg.proto\";\n\nextend amber.DriverMsg {\n optional bool setTargets = 80;\n optional bool getNextTarget = 81;\n optional bool getNextTargets = 82;\n optional bool getVisitedTarget = 83;\n optional bool getVisitedTargets = 84;\n optional Targets targets = 85;\n optional Location location = 86;\n optional bool getConfiguration = 87;\n optional Configuration configuration = 88;\n}\n\nmessage Targets {\n repeated double longitudes = 1 [packed = true];\n repeated double latitudes = 2 [packed = true];\n repeated double radiuses = 3 [packed = true];\n}\n\nmessage Location {\n optional double x = 1;\n optional double y = 2;\n optional double p = 3;\n optional double alfa = 4;\n optional int64 timeStamp = 5;\n}\n\nmessage Configuration {\n optional double maxSpeed = 1;\n}\n","subject":"Update drive to point proto, get time stamp as int64","message":"Update drive to point proto, get time stamp as int64\n","lang":"Protocol Buffer","license":"mit","repos":"project-capo\/amber-common"} {"commit":"4f8a784b412f1212f34db21ecd3c07b2346055ef","old_file":"api\/shim\/shim.proto","new_file":"api\/shim\/shim.proto","old_contents":"syntax = \"proto3\";\n\npackage containerd.v1;\n\nimport \"google\/protobuf\/empty.proto\";\nimport \"gogoproto\/gogo.proto\";\n\nservice ShimService {\n rpc Create(CreateRequest) returns (google.protobuf.Empty);\n rpc Exec(ExecRequest) returns (google.protobuf.Empty);\n rpc State(StateRequest) returns (StateResponse);\n rpc Pty(PtyRequest) returns (google.protobuf.Empty);\n}\n\nmessage PtyRequest {\n string id = 1 [(gogoproto.customname) = \"ID\"];\n uint32 width = 2;\n uint32 height = 3;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage containerd.v1;\n\nimport \"google\/protobuf\/empty.proto\";\nimport \"gogoproto\/gogo.proto\";\n\nservice ShimService {\n\trpc Create(CreateRequest) returns (google.protobuf.Empty);\n\trpc Exec(ExecRequest) returns (google.protobuf.Empty);\n\trpc State(StateRequest) returns (StateResponse);\n\trpc Pty(PtyRequest) returns (google.protobuf.Empty);\n}\n\nmessage PtyRequest {\n\tstring id = 1 [(gogoproto.customname) = \"ID\"];\n\tuint32 width = 2;\n\tuint32 height = 3;\n}\n","subject":"Indent proto files with tabs only","message":"Indent proto files with tabs only\n\nfix \"make fmt\" failure by switching from spaces to tabs\n\nSigned-Off-By: Davanum Srinivas <36003aec7ba325a16727bc9a176c12d2776a8ce4@gmail.com>\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"mikebrow\/containerd,containerd\/containerd,lichao-mobanche\/containerd,dmcgowan\/containerd,kunalkushwaha\/containerd,thaJeztah\/containerd,docker\/containerd,hqhq\/containerd,crosbymichael\/containerd,chanezon\/containerd,kunalkushwaha\/containerd,miaoyq\/containerd,estesp\/containerd,mikebrow\/containerd,vdemeester\/containerd,xiekeyang\/containerd,containerd\/containerd,estesp\/containerd,dmcgowan\/containerd,crosbymichael\/containerd,vdemeester\/containerd,AkihiroSuda\/containerd,miaoyq\/containerd,thaJeztah\/containerd,rajasec\/containerd,yuexiao-wang\/containerd,Wolphin-project\/containerd"} {"commit":"ff732c97e2606159f7e3947a70abaa5d83a8a68f","old_file":"include\/mesos\/authentication\/authentication.proto","new_file":"include\/mesos\/authentication\/authentication.proto","old_contents":"\/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nimport \"mesos\/mesos.proto\";\n\npackage mesos;\n\noption java_package = \"org.apache.mesos\";\noption java_outer_classname = \"Protos\";\n\n\nmessage AuthenticateMessage {\n required string pid = 1; \/\/ PID that needs to be authenticated.\n}\n\n\nmessage AuthenticationMechanismsMessage {\n repeated string mechanisms = 1; \/\/ List of available SASL mechanisms.\n}\n\n\nmessage AuthenticationStartMessage {\n required string mechanism = 1;\n optional bytes data = 2;\n}\n\n\nmessage AuthenticationStepMessage {\n required bytes data = 1;\n}\n\n\nmessage AuthenticationCompletedMessage {}\n\n\nmessage AuthenticationFailedMessage {}\n\n\nmessage AuthenticationErrorMessage {\n optional string error = 1;\n}\n","new_contents":"\/**\n * Licensed to the Apache Software Foundation (ASF) under one\n * or more contributor license agreements. See the NOTICE file\n * distributed with this work for additional information\n * regarding copyright ownership. The ASF licenses this file\n * to you under the Apache License, Version 2.0 (the\n * \"License\"); you may not use this file except in compliance\n * with the License. You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nimport \"mesos\/mesos.proto\";\n\npackage mesos.internal;\n\noption java_package = \"org.apache.mesos\";\noption java_outer_classname = \"Protos\";\n\n\nmessage AuthenticateMessage {\n required string pid = 1; \/\/ PID that needs to be authenticated.\n}\n\n\nmessage AuthenticationMechanismsMessage {\n repeated string mechanisms = 1; \/\/ List of available SASL mechanisms.\n}\n\n\nmessage AuthenticationStartMessage {\n required string mechanism = 1;\n optional bytes data = 2;\n}\n\n\nmessage AuthenticationStepMessage {\n required bytes data = 1;\n}\n\n\nmessage AuthenticationCompletedMessage {}\n\n\nmessage AuthenticationFailedMessage {}\n\n\nmessage AuthenticationErrorMessage {\n optional string error = 1;\n}\n","subject":"Put Authentication protobufs back in mesos.internal package.","message":"Put Authentication protobufs back in mesos.internal package.\n\nThis is needed for smooth upgrade capability for masters and slaves.\n\nReview: https:\/\/reviews.apache.org\/r\/31331\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"andschwa\/mesos,verizonlabs\/mesos,dforsyth\/mesos,reneploetz\/mesos,craimbert\/mesos,gsantovena\/mesos,craimbert\/mesos,dforsyth\/mesos,andschwa\/mesos,reneploetz\/mesos,kaysoky\/mesos,jpeach\/mesos,verizonlabs\/mesos,neilconway\/mesos,asamerh4\/mesos,kaysoky\/mesos,Gilbert88\/mesos,zmalik\/mesos,Aman-Jain-14\/customizedMesos,yuquanshan\/customizedMesos,abudnik\/mesos,jpeach\/mesos,gsantovena\/mesos,neilconway\/mesos,yuquanshan\/customizedMesos,verizonlabs\/mesos,reneploetz\/mesos,dforsyth\/mesos,kaysoky\/mesos,asamerh4\/mesos,chhsia0\/mesos,yuquanshan\/customizedMesos,gsantovena\/mesos,Gilbert88\/mesos,chhsia0\/mesos,zmalik\/mesos,abudnik\/mesos,craimbert\/mesos,zmalik\/mesos,neilconway\/mesos,zmalik\/mesos,dforsyth\/mesos,yuquanshan\/customizedMesos,craimbert\/mesos,Gilbert88\/mesos,craimbert\/mesos,Gilbert88\/mesos,andschwa\/mesos,Gilbert88\/mesos,gsantovena\/mesos,dforsyth\/mesos,reneploetz\/mesos,verizonlabs\/mesos,abudnik\/mesos,neilconway\/mesos,asamerh4\/mesos,abudnik\/mesos,chhsia0\/mesos,gsantovena\/mesos,asamerh4\/mesos,yuquanshan\/customizedMesos,abudnik\/mesos,jpeach\/mesos,gsantovena\/mesos,Aman-Jain-14\/customizedMesos,jpeach\/mesos,Aman-Jain-14\/customizedMesos,Gilbert88\/mesos,gsantovena\/mesos,kaysoky\/mesos,Aman-Jain-14\/customizedMesos,asamerh4\/mesos,reneploetz\/mesos,craimbert\/mesos,neilconway\/mesos,reneploetz\/mesos,jpeach\/mesos,dforsyth\/mesos,reneploetz\/mesos,Aman-Jain-14\/customizedMesos,Aman-Jain-14\/customizedMesos,zmalik\/mesos,chhsia0\/mesos,asamerh4\/mesos,zmalik\/mesos,abudnik\/mesos,craimbert\/mesos,andschwa\/mesos,Aman-Jain-14\/customizedMesos,asamerh4\/mesos,kaysoky\/mesos,abudnik\/mesos,jpeach\/mesos,zmalik\/mesos,andschwa\/mesos,yuquanshan\/customizedMesos,kaysoky\/mesos,chhsia0\/mesos,andschwa\/mesos,Gilbert88\/mesos,neilconway\/mesos,verizonlabs\/mesos,verizonlabs\/mesos,dforsyth\/mesos,neilconway\/mesos,yuquanshan\/customizedMesos,jpeach\/mesos,chhsia0\/mesos,verizonlabs\/mesos,chhsia0\/mesos,kaysoky\/mesos,andschwa\/mesos"} {"commit":"3b914e69154a263fee089d32e6be9a8cb210814f","old_file":"tests\/oneof-proto.proto","new_file":"tests\/oneof-proto.proto","old_contents":"syntax = \"proto2\";\n\npackage oneof_test;\n\nmessage OneofProto {\n optional int32 outside = 1;\n oneof MyOneof {\n int32 intval = 2;\n string strval = 3;\n bool boolval = 4;\n }\n optional int32 after = 5;\n}\n\nmessage NestedOneof {\n optional int32 outside = 1;\n optional OneofProto nested = 2;\n}\n\nmessage OneofTest {\n message int_list {\n repeated int32 ints = 1;\n }\n\n oneof MyOneof {\n int_list list_of_ints = 1;\n int32 single_int = 2;\n }\n}\n","new_contents":"syntax = \"proto2\";\n\npackage oneof_test;\n\nmessage OneofProto {\n optional int32 outside = 1;\n oneof MyOneof {\n int32 intval = 2;\n string strval = 3;\n bool boolval = 4;\n }\n optional int32 after = 5;\n}\n\nmessage NestedOneof {\n optional int32 outside = 1;\n optional OneofProto nested = 2;\n}\n\nmessage OneofTest {\n message IntList {\n repeated int32 ints = 1;\n }\n\n oneof MyOneof {\n IntList list_of_ints = 1;\n int32 single_int = 2;\n }\n}\n","subject":"Use camelcase for new proto","message":"Use camelcase for new proto\n","lang":"Protocol Buffer","license":"mit","repos":"qitab\/cl-protobufs,qitab\/cl-protobufs"} {"commit":"84a56266a27f2a53398e703d18778fa401e61293","old_file":"examples\/typescript\/grpc\/service.proto","new_file":"examples\/typescript\/grpc\/service.proto","old_contents":"syntax = \"proto3\";\n\npackage blog;\n\nservice Blog {\n \/\/ Read operations\n rpc Feed(FeedRequest) returns (FeedResponse) {};\n rpc FilterPosts(FilterPostsRequest) returns (FilterPostsResponse) {};\n rpc Post(PostRequest) returns (Post) {};\n\n \/\/ Write operations\n rpc SignupUser(SignupUserRequest) returns (User) {};\n rpc CreateDraft(CreateDraftRequest) returns (Post) {};\n rpc DeletePost(DeletePostRequest) returns (Post) {};\n rpc Publish(PublishRequest) returns (Post) {};\n}\n\nmessage Post {\n string id = 1;\n string createdAt = 2;\n string updatedAt = 3;\n string title = 4;\n string content = 5;\n bool published = 6;\n User author = 7; \n}\n\nmessage User {\n string id = 1;\n string email = 2;\n string name = 3;\n repeated Post posts = 4;\n}\n\nmessage FeedRequest {}\n\nmessage FeedResponse {\n repeated Post feed = 1;\n}\n\nmessage FilterPostsRequest {\n string searchString = 1;\n}\n\nmessage FilterPostsResponse {\n repeated Post filteredPosts = 1;\n}\n\nmessage PostRequest {\n string id = 1;\n}\n\nmessage SignupUserRequest {\n string name = 1;\n string email = 2;\n}\n\nmessage CreateDraftRequest {\n string title = 1;\n string content = 2;\n string authorEmail = 3;\n}\n\nmessage PublishRequest {\n string id = 1;\n}\n\nmessage DeletePostRequest {\n string id = 1;\n}","new_contents":"syntax = \"proto3\";\n\npackage blog;\n\nservice Blog {\n \/\/ Read operations\n rpc Feed(FeedRequest) returns (FeedResponse) {};\n rpc FilterPosts(FilterPostsRequest) returns (FilterPostsResponse) {};\n rpc Post(PostRequest) returns (Post) {};\n\n \/\/ Write operations\n rpc SignupUser(SignupUserRequest) returns (User) {};\n rpc CreateDraft(CreateDraftRequest) returns (Post) {};\n rpc DeletePost(DeletePostRequest) returns (Post) {};\n rpc Publish(PublishRequest) returns (Post) {};\n}\n\nmessage Post {\n string id = 1;\n string createdAt = 2;\n string updatedAt = 3;\n string title = 4;\n string content = 5;\n bool published = 6;\n User author = 7; \n}\n\nmessage User {\n string id = 1;\n string email = 2;\n string name = 3;\n repeated Post posts = 4;\n}\n\nmessage FeedRequest {}\n\nmessage FeedResponse {\n repeated Post feed = 1;\n}\n\nmessage FilterPostsRequest {\n string searchString = 1;\n}\n\nmessage FilterPostsResponse {\n repeated Post filteredPosts = 1;\n}\n\nmessage PostRequest {\n string id = 1;\n}\n\nmessage SignupUserRequest {\n string name = 1;\n string email = 2;\n string password = 3;\n}\n\nmessage CreateDraftRequest {\n string title = 1;\n string content = 2;\n string authorEmail = 3;\n}\n\nmessage PublishRequest {\n string id = 1;\n}\n\nmessage DeletePostRequest {\n string id = 1;\n}","subject":"Add password field to SignupUserRequest","message":"Add password field to SignupUserRequest\n\nPassword field was missing from `service.proto` and it was not possible to signup users.\n\n\nFormer-commit-id: 8ff7bc03435f26f50a0e2060c1c080c5a70a988f\nFormer-commit-id: 60bcf6efa94caa22481420a8233cb2a14e9e1f32","lang":"Protocol Buffer","license":"apache-2.0","repos":"prisma\/prisma,prisma\/prisma,prisma\/prisma"} {"commit":"2ed734ff08b5a72500a73b944d535accfa488616","old_file":"smartsteps\/footfalls\/src\/main\/proto\/entry.proto","new_file":"smartsteps\/footfalls\/src\/main\/proto\/entry.proto","old_contents":"package entry;\n\noption java_package = \"es.tid.smartsteps.footfalls.microgrids.data.generated\";\noption java_outer_classname = \"EntryProtocol\";\n\nmessage TrafficCounts {\n required string id = 1;\n required string date = 2;\n required double latitude = 3;\n required double longitude = 4;\n repeated Counts vectors = 5;\n}\n\nmessage Counts {\n required string name = 1;\n repeated double values = 2;\n}\n\nmessage SOACentroid {\n required string soaId = 1;\n required double squaredKilometers = 2;\n required double latitude = 3;\n required double longitude = 4;\n}\n\nmessage Catchments {\n required string id = 1;\n required string date = 2;\n optional double latitude = 3;\n optional double longitude = 4;\n repeated Catchment catchments = 5;\n}\n\nmessage Catchment {\n required uint32 hour = 1;\n repeated TopCell topCells = 2;\n}\n\nmessage TopCell {\n required string id = 1;\n required double count = 2;\n required double latitude = 3;\n required double longitude = 4;\n}\n","new_contents":"package entry;\n\noption java_package = \"es.tid.smartsteps.footfalls.microgrids.data.generated\";\noption java_outer_classname = \"EntryProtocol\";\n\nmessage TrafficCounts {\n required string id = 1;\n required string date = 2;\n required double latitude = 3;\n required double longitude = 4;\n repeated Counts vectors = 5;\n}\n\nmessage Counts {\n required string name = 1;\n repeated double values = 2;\n}\n\nmessage SOACentroid {\n required string soaId = 1;\n required double squaredKilometers = 2;\n required double latitude = 3;\n required double longitude = 4;\n}\n\nmessage Catchments {\n required string id = 1;\n required string date = 2;\n required double latitude = 3;\n required double longitude = 4;\n repeated Catchment catchments = 5;\n}\n\nmessage Catchment {\n required uint32 hour = 1;\n repeated TopCell topCells = 2;\n}\n\nmessage TopCell {\n required string id = 1;\n required double count = 2;\n required double latitude = 3;\n required double longitude = 4;\n}\n","subject":"Make all fields in Catchments required","message":"Make all fields in Catchments required\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"telefonicaid\/fiware-cosmos-platform,telefonicaid\/fiware-cosmos-platform,telefonicaid\/fiware-cosmos-platform,telefonicaid\/fiware-cosmos-platform,telefonicaid\/fiware-cosmos-platform"} {"commit":"c5cebd841188fc1d7402317c1dbe9314415b5a7b","old_file":"src\/main\/protobuf\/pb_message.proto","new_file":"src\/main\/protobuf\/pb_message.proto","old_contents":"\/\/ See README.txt for information and build instructions.\n\npackage pbexample;\n\noption java_package = \"com.ociweb.protocoltest\";\noption java_outer_classname = \"PBMessageProvider\";\n\nmessage ProductQuery {\n required string product_name = 1;\n required int64 online_item_id = 2;\n required string store_item_id = 3;\n optional string product_desc = 4;\n\n required int64 query_time = 5;\n\n message ProductAvailability {\n required int32 store_id = 1;\n required string store_location = 2;\n required int32 num_available = 3;\n }\n\n repeated ProductAvailability in_stock_locations = 6;\n}\n\nmessage ProductQueryProvider {\n repeated ProductQuery queries = 1;\n}\n","new_contents":"\/\/ See README.txt for information and build instructions.\n\npackage pbexample;\n\noption java_package = \"com.ociweb.protocoltest\";\noption java_outer_classname = \"PBMessageProvider\";\n\n\/\/optimize_for (file option):\n\/\/Can be set to SPEED, CODE_SIZE, or LITE_RUNTIME\noption optimize_for = SPEED;\n\nmessage ProductQuery {\n required string product_name = 1;\n required int64 online_item_id = 2;\n required string store_item_id = 3;\n optional string product_desc = 4;\n\n required int64 query_time = 5;\n\n message ProductAvailability {\n required int32 store_id = 1;\n required string store_location = 2;\n required int32 num_available = 3;\n }\n\n repeated ProductAvailability in_stock_locations = 6;\n}\n\nmessage ProductQueryProvider {\n repeated ProductQuery queries = 1;\n}\n","subject":"Add optimization option for protobuf","message":"Add optimization option for protobuf\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"oci-pronghorn\/ProtocolTestProject"} {"commit":"02f7aae66e24e2754566b51f6c9610318ff74d60","old_file":"tensorflow_serving\/apis\/model.proto","new_file":"tensorflow_serving\/apis\/model.proto","old_contents":"syntax = \"proto3\";\n\npackage tensorflow.serving;\noption cc_enable_arenas = true;\n\nimport \"google\/protobuf\/wrappers.proto\";\n\n\/\/ Metadata for an inference request such as the model name and version.\nmessage ModelSpec {\n \/\/ Required servable name.\n string name = 1;\n\n \/\/ Optional version. If unspecified, will use the latest (numerical) version.\n \/\/ Typically not needed unless coordinating across multiple models that were\n \/\/ co-trained and\/or have inter-dependencies on the versions used at inference\n \/\/ time.\n google.protobuf.Int64Value version = 2;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage tensorflow.serving;\noption cc_enable_arenas = true;\n\nimport \"google\/protobuf\/wrappers.proto\";\n\n\/\/ Metadata for an inference request such as the model name and version.\nmessage ModelSpec {\n \/\/ Required servable name.\n string name = 1;\n\n \/\/ Optional version. If unspecified, will use the latest (numerical) version.\n \/\/ Typically not needed unless coordinating across multiple models that were\n \/\/ co-trained and\/or have inter-dependencies on the versions used at inference\n \/\/ time.\n google.protobuf.Int64Value version = 2;\n\n \/\/ A named signature to evaluate. If unspecified, the default signature will\n \/\/ be used. Note that only MultiInference will initially support this.\n string signature_name = 3;\n}\n","subject":"Add signature_name to ModelSpec. Change: 138004925","message":"Add signature_name to ModelSpec.\nChange: 138004925\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"penguin138\/serving,avloss\/serving,avloss\/serving,addappio\/serving,avloss\/serving,sreddybr3\/serving,addappio\/serving,tensorflow\/serving,tensorflow\/serving,sreddybr3\/serving,addappio\/serving,penguin138\/serving,sreddybr3\/serving,kchodorow\/serving,kchodorow\/serving,tensorflow\/serving,penguin138\/serving,kchodorow\/serving,avloss\/serving,penguin138\/serving,addappio\/serving,tensorflow\/serving,sreddybr3\/serving"} {"commit":"bc4723481a8ee30b918c9938e25b7e4ba8282893","old_file":"examples\/addressbook.proto","new_file":"examples\/addressbook.proto","old_contents":"\/\/ See README.txt for information and build instructions.\n\nsyntax = \"proto3\";\n\npackage tutorial;\n\noption java_package = \"com.example.tutorial\";\noption java_outer_classname = \"AddressBookProtos\";\noption csharp_namespace = \"Google.Protobuf.Examples.AddressBook\";\n\nmessage Person {\n string name = 1;\n int32 id = 2; \/\/ Unique ID number for this person.\n string email = 3;\n\n enum PhoneType {\n MOBILE = 0;\n HOME = 1;\n WORK = 2;\n }\n\n message PhoneNumber {\n string number = 1;\n PhoneType type = 2;\n }\n\n repeated PhoneNumber phones = 4;\n}\n\n\/\/ Our address book file is just one of these.\nmessage AddressBook {\n repeated Person people = 1;\n}\n","new_contents":"\/\/ See README.txt for information and build instructions.\n\/\/\n\/\/ Note: START and END tags are used in comments to define sections used in\n\/\/ tutorials. They are not part of the syntax for Protocol Buffers.\n\/\/\n\/\/ To get an in-depth walkthrough of this file and the related examples, see:\n\/\/ https:\/\/developers.google.com\/protocol-buffers\/docs\/tutorials\n\n\/\/ [START declaration]\nsyntax = \"proto3\";\npackage tutorial;\n\/\/ [END declaration]\n\n\/\/ [START java_declaration]\noption java_package = \"com.example.tutorial\";\noption java_outer_classname = \"AddressBookProtos\";\n\/\/ [END java_declaration]\n\n\/\/ [START csharp_declaration]\noption csharp_namespace = \"Google.Protobuf.Examples.AddressBook\";\n\/\/ [END csharp_declaration]\n\n\/\/ [START messages]\nmessage Person {\n string name = 1;\n int32 id = 2; \/\/ Unique ID number for this person.\n string email = 3;\n\n enum PhoneType {\n MOBILE = 0;\n HOME = 1;\n WORK = 2;\n }\n\n message PhoneNumber {\n string number = 1;\n PhoneType type = 2;\n }\n\n repeated PhoneNumber phones = 4;\n}\n\n\/\/ Our address book file is just one of these.\nmessage AddressBook {\n repeated Person people = 1;\n}\n\/\/ [END messages]\n","subject":"Add region tags for protocol buffers tutorials.","message":"Add region tags for protocol buffers tutorials.\n\nSince these tags might be confusing, added a note that these are not\npart of the normal protocol buffers syntax. I also linked to the main\ntutorials page that uses these examples\nhttps:\/\/developers.google.com\/protocol-buffers\/docs\/tutorials so that\nanyone who arrived here without going through that info first can get\nmore explanation if they want.\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"google\/protobuf,google\/protobuf,Livefyre\/protobuf,Livefyre\/protobuf,Livefyre\/protobuf,google\/protobuf,google\/protobuf,google\/protobuf,google\/protobuf,google\/protobuf,google\/protobuf,Livefyre\/protobuf,Livefyre\/protobuf,google\/protobuf,google\/protobuf,google\/protobuf"} {"commit":"cc25dc41fec6523e8f3ef9cdfd85b955a0854809","old_file":"protobuf-examples\/vs-prost\/src\/triangle.proto","new_file":"protobuf-examples\/vs-prost\/src\/triangle.proto","old_contents":"syntax = \"proto3\";\n\nenum Color {\n UNKNOWN = 0;\n RED = 1;\n GREEN = 2;\n BLUE = 3;\n}\n\nmessage Properties {\n oneof properties {\n int32 p1 = 1;\n string p2 = 2;\n }\n}\n\nmessage Triangle {\n string description = 1;\n Color color = 2;\n Properties properties = 3;\n}\n","new_contents":"syntax = \"proto3\";\n\nenum Color {\n UNKNOWN = 0;\n RED = 1;\n GREEN = 2;\n BLUE = 3;\n}\n\nmessage Properties {\n oneof properties {\n int32 p1 = 1;\n string p2 = 2;\n }\n}\n\nmessage Triangle {\n string description = 1;\n Color color = 2;\n Properties properties = 3;\n int32 struct = 4;\n}\n","subject":"Add example of host protobuf vs prost escapes identifiers","message":"Add example of host protobuf vs prost escapes identifiers\n","lang":"Protocol Buffer","license":"mit","repos":"stepancheg\/rust-protobuf,stepancheg\/rust-protobuf,stepancheg\/rust-protobuf"} {"commit":"e3c4c735b4d7827a37b32d58ccbbfc13f4b26615","old_file":"src\/main\/protobuf\/pb_message.proto","new_file":"src\/main\/protobuf\/pb_message.proto","old_contents":"\/\/ See README.txt for information and build instructions.\n\npackage pbexample;\n\noption java_package = \"com.ociweb.protocoltest\";\noption java_outer_classname = \"PBMessageProvider\";\n\n\/\/optimize_for (file option):\n\/\/Can be set to SPEED, CODE_SIZE, or LITE_RUNTIME\noption optimize_for = SPEED;\n\nmessage PBQuery {\n required int32 user = 1;\n required int32 year = 2;\n required int32 month = 3;\n required int32 date = 4;\n required int32 sampleCount = 5;\n\n message PBSample {\n required int32 id = 1;\n required int64 time = 2;\n required int32 measurement = 3;\n required int32 action = 4;\n }\n\n repeated PBSample samples = 6;\n}\n\n\/\/message PBQueryProvider {\n\/\/ repeated PBQuery queries = 1;\n\/\/}\n","new_contents":"\/\/ See README.txt for information and build instructions.\n\npackage pbexample;\n\noption java_package = \"com.ociweb.protocoltest\";\noption java_outer_classname = \"PBMessageProvider\";\n\n\/\/optimize_for (file option):\n\/\/Can be set to SPEED, CODE_SIZE, or LITE_RUNTIME\noption optimize_for = SPEED;\n\nmessage PBQuery {\n optional int32 user = 1;\n optional int32 year = 2;\n optional int32 month = 3;\n optional int32 date = 4;\n optional int32 sampleCount = 5;\n\n message PBSample {\n optional int32 id = 1;\n optional int64 time = 2;\n optional int32 measurement = 3;\n optional int32 action = 4;\n }\n\n repeated PBSample samples = 6;\n}\n\n\/\/message PBQueryProvider {\n\/\/ repeated PBQuery queries = 1;\n\/\/}\n","subject":"Make message fields optional (suggested over required)","message":"Make message fields optional (suggested over required)\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"oci-pronghorn\/ProtocolTestProject"} {"commit":"8b8bc650a2454190431871121257934f928fb272","old_file":"mimosa\/rpc\/samples\/kv-db.proto","new_file":"mimosa\/rpc\/samples\/kv-db.proto","old_contents":"package mimosa.rpc.samples.pb;\n\nenum Status\n{\n kOk = 0;\n kNotFound = 1;\n kInternalError = 2;\n}\n\nmessage Key\n{\n required bytes key = 1;\n}\n\nmessage KeyValue\n{\n required bytes key = 1;\n required bytes value = 2;\n}\n\nmessage Result\n{\n required Status status = 1;\n optional bytes value = 2;\n}\n\nservice Database\n{\n rpc get(Key) returns (Result);\n rpc set(KeyValue) returns (Result);\n rpc del(Key) returns (Result);\n}\n","new_contents":"syntax = \"proto3\";\n\npackage mimosa.rpc.samples.pb;\n\nenum Status\n{\n kOk = 0;\n kNotFound = 1;\n kInternalError = 2;\n}\n\nmessage Key\n{\n bytes key = 1;\n}\n\nmessage KeyValue\n{\n bytes key = 1;\n bytes value = 2;\n}\n\nmessage Result\n{\n Status status = 1;\n bytes value = 2;\n}\n\nservice Database\n{\n rpc get(Key) returns (Result);\n rpc set(KeyValue) returns (Result);\n rpc del(Key) returns (Result);\n}\n","subject":"Switch example to protoc v3","message":"Switch example to protoc v3\n","lang":"Protocol Buffer","license":"mit","repos":"abique\/mimosa,abique\/mimosa"} {"commit":"fcddf1e8b4ddebb57413b91748da710f23e4c29c","old_file":"aggregate.proto","new_file":"aggregate.proto","old_contents":"syntax = \"proto3\";\n\n\n\/\/ AggregateBool is a container that counts individual instances of true\/false\n\/\/ It should be used for aggregating streams of bool values to appropriately\n\/\/ account for their distribution.\nmessage AggregateBool {\n uint64 true = 1;\n uint64 false = 2;\n}\n\n\/\/ AggregateBoolOption is an example container that can switch from single\n\/\/ bool via a bool type and multi bools via an AggregateBool type.\n\/\/ It may be desirable to copy this code and use it directly\nmessage AggregateBoolOption {\n oneof bool_or_aggregate_bool {\n bool single = 1;\n AggregateBool multi = 2;\n }\n}\n \n","new_contents":"syntax = \"proto3\";\n\n\n\/\/ AggregateBool is a container that counts individual instances of true\/false\n\/\/ It should be used for aggregating streams of bool values to appropriately\n\/\/ account for their distribution.\nmessage AggregateBool {\n uint64 true = 1;\n uint64 false = 2;\n}\n\n\/\/ AggregateBoolTag is a tagged union that can switch from single\n\/\/ one via a bool type and many via an AggregateBool type.\n\/\/ It may be desirable to copy this code and use it directly\nmessage AggregateBoolTag {\n oneof one_or_many {\n bool one = 1;\n AggregateBool many = 2;\n }\n}\n\n\/\/ BigInt is a string representation of a big integer\n\/\/ It's not the most efficient transmission, but it's easier than\n\/\/ repeated enum, bytes or repeated uint64 for consuming JSON.\nmessage BigInt {\n string value = 1;\n}\n\n\/\/ AggregateLong is a container that holds information about a set of longs\n\/\/ It should be used for aggregating streams of long values to appropriately\n\/\/ account for their distribution\nmessage AggregateLong {\n BigInt sum = 1; \n uint64 source_count = 2;\n uint64 min = 3;\n uint64 max = 4;\n double mean = 5;\n uint64 median = 6;\n double standard_deviation = 7;\n}\n\n\/\/ AggregateLongTag is a tagged union that can switch from single\n\/\/ one via a long type and multi bools via an AggregateLong type.\n\/\/ It may be desirable to copy this code and use it directly\nmessage AggregateLongTag {\n oneof one_or_many {\n uint64 one = 1;\n AggregateCount many = 2;\n }\n}\n\n\/\/ AggregateDouble is a container that holds information about a set of doubles\n\/\/ It should be used for aggregating streams of double values to appropriately\n\/\/ account for their distribution.\nmessage AggregateDouble {\n double mean = 1;\n uint64 source_count = 2;\n double min = 3;\n double max = 4;\n double median = 5;\n double standard_deviation = 6;\n}\n\n\/\/ AggregateDoubleTag is a tagged union that can switch from single\n\/\/ one via a double type and many via an AggregateDouble type.\n\/\/ It may be desirable to copy this code and use it directly\nmessage AggregateDoubleTag {\n oneof one_or_many {\n double one = 1;\n AggregateDouble many = 2;\n }\n}\n","subject":"Add AggregateDouble and AggregateLong message types","message":"Add AggregateDouble and AggregateLong message types","lang":"Protocol Buffer","license":"mit","repos":"hatchery\/cbdb,hatchery\/cbdb"} {"commit":"b8618c0e884da7088254252012c6ee27e2015a66","old_file":"client\/src\/test\/proto\/spine\/test\/envelope\/events.proto","new_file":"client\/src\/test\/proto\/spine\/test\/envelope\/events.proto","old_contents":"\/\/\n\/\/ Copyright 2017, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.test.envelope;\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package=\"io.spine.test.envelope\";\noption java_outer_classname = \"AggregateEventsProto\";\noption java_multiple_files = true;\n\nimport \"spine\/options.proto\";\nimport \"spine\/test\/envelope\/project.proto\";\n\nmessage ProjectCreated {\n ProjectId project_id = 1;\n}\n","new_contents":"\/\/\n\/\/ Copyright 2017, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.test.envelope;\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package=\"io.spine.test.envelope\";\noption java_outer_classname = \"AggregateEventsProto\";\noption java_multiple_files = true;\n\nimport \"spine\/options.proto\";\nimport \"spine\/test\/envelope\/project.proto\";\n\n\/\/ A test event for the suites targeting the {@link io.spine.envelope.MessageEnvelope} tests.\nmessage ProjectCreated {\n ProjectId project_id = 1;\n}\n","subject":"Add a doc for a test proto definition.","message":"Add a doc for a test proto definition.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"959cb0e2b48a9f5fb6c0db0a8a930cc9b10e3751","old_file":"events\/metric.proto","new_file":"events\/metric.proto","old_contents":"package events;\n\nmessage ValueMetric {\n required string name = 1;\n required double value = 2;\n required string unit = 3;\n}\n\nmessage CounterEvent {\n required string name = 1;\n}\n","new_contents":"package events;\n\nmessage ValueMetric {\n required string name = 1;\n required double value = 2;\n required string unit = 3;\n}\n\nmessage CounterEvent {\n required string name = 1;\n required uint64 delta = 2;\n}\n","subject":"Add required delta to CounterEvent","message":"Add required delta to CounterEvent\n\n[#77046142]\n\nSigned-off-by: Johannes Petzold <688cf9f92d21a1bc04c0c50ee1ca49282872061e@pivotal.io>\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"stefanschneider\/dropsonde-protocol,stefanschneider\/dropsonde-protocol,cloudfoundry\/dropsonde-protocol"} {"commit":"e75744c710b40e98930554615b4dc743b58e7a5c","old_file":"protofiles\/aqdnetworks.proto","new_file":"protofiles\/aqdnetworks.proto","old_contents":"\/\/ -*- cpy-indent-level: 4; indent-tabs-mode: nil -*-\n\/\/ ex: set expandtab softtabstop=4 shiftwidth=4:\npackage aqdnetworks;\n\nimport \"aqdsystems.proto\";\nimport \"aqdlocations.proto\";\n\n\nmessage DynamicRange {\n optional string start = 1;\n optional string end = 2;\n optional string range_class = 3;\n}\n\nmessage Network {\n optional string name = 1;\n optional string ip = 2;\n optional int32 cidr = 3;\n optional string bcast = 4;\n optional string netmask = 5;\n optional string side = 6;\n optional string sysloc = 7;\n optional aqdlocations.Location location = 8;\n repeated aqdsystems.Host hosts = 9;\n optional int32 id = 10 [deprecated=true];\n optional string type = 11;\n optional bool discoverable = 12 [deprecated=true];\n optional bool discovered = 13 [deprecated=true];\n optional string env_name = 14;\n repeated DynamicRange dynamic_ranges = 15;\n repeated string routers = 16;\n optional string compartment = 17;\n optional aqdsystems.NetworkEnvironment network_environment = 18;\n \/\/ Note: network_environment.name == env_name\n}\n\nmessage NetworkList {\n repeated Network networks = 1;\n}\n\nmessage NetworkCompartment {\n required string name = 1;\n}\n\nmessage NetworkCompartmentList {\n repeated NetworkCompartment compartments = 1;\n}\n","new_contents":"\/\/ -*- cpy-indent-level: 4; indent-tabs-mode: nil -*-\n\/\/ ex: set expandtab softtabstop=4 shiftwidth=4:\npackage aqdnetworks;\n\nimport \"aqdsystems.proto\";\nimport \"aqdlocations.proto\";\n\n\nmessage DynamicRange {\n optional string start = 1;\n optional string end = 2;\n optional string range_class = 3;\n}\n\nmessage Network {\n optional string name = 1;\n optional string ip = 2;\n optional int32 cidr = 3;\n optional string bcast = 4;\n optional string netmask = 5;\n optional string side = 6;\n optional string sysloc = 7;\n optional aqdlocations.Location location = 8;\n repeated aqdsystems.Host hosts = 9;\n optional int32 id = 10 [deprecated=true];\n optional string type = 11;\n optional bool discoverable = 12 [deprecated=true];\n optional bool discovered = 13 [deprecated=true];\n optional string env_name = 14;\n repeated DynamicRange dynamic_ranges = 15;\n repeated string routers = 16;\n optional string compartment = 17;\n optional aqdsystems.NetworkEnvironment network_environment = 18;\n repeated aqdsystems.ServiceAddress service_addresses = 19;\n \/\/ Note: network_environment.name == env_name\n}\n\nmessage NetworkList {\n repeated Network networks = 1;\n}\n\nmessage NetworkCompartment {\n required string name = 1;\n}\n\nmessage NetworkCompartmentList {\n repeated NetworkCompartment compartments = 1;\n}\n","subject":"Add service addresses to Network skeleton","message":"Add service addresses to Network skeleton\n\nAdd service address attribute to Network skeleton so that full assigned\naddress view in network can be created.\n\nAddresses Issue: Jira\/AQUILON-4523\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"quattor\/aquilon-protocols,quattor\/aquilon-protocols"} {"commit":"e0992074842cc223ec10eb405062742a80bf5ee5","old_file":"proto\/dclauth\/account.proto","new_file":"proto\/dclauth\/account.proto","old_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.dclauth;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/dclauth\/types\";\n\nimport \"gogoproto\/gogo.proto\";\nimport \"cosmos\/auth\/v1beta1\/auth.proto\";\nimport \"dclauth\/grant.proto\";\n\n\nmessage Account {\n \/\/ TODO issue 99: do we need that ???\n option (gogoproto.goproto_getters) = false;\n option (gogoproto.goproto_stringer) = false;\n\n cosmos.auth.v1beta1.BaseAccount base_account = 1 [(gogoproto.embed) = true];\n \/\/ NOTE. we do not user AccountRoles casting here to preserve repeated form\n \/\/ so protobuf takes care about repeated items in generated code,\n \/\/ (but that might be not the final solution)\n repeated string roles = 2 [(gogoproto.casttype) = \"AccountRole\"]; \n repeated Grant approvals = 3;\n int32 vendorID = 4;\n \n}\n\n","new_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.dclauth;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/dclauth\/types\";\n\nimport \"gogoproto\/gogo.proto\";\nimport \"cosmos\/auth\/v1beta1\/auth.proto\";\nimport \"dclauth\/grant.proto\";\n\n\nmessage Account {\n \/\/ TODO issue 99: do we need that ???\n option (gogoproto.goproto_getters) = false;\n option (gogoproto.goproto_stringer) = false;\n\n cosmos.auth.v1beta1.BaseAccount base_account = 1 [(gogoproto.embed) = true];\n \/\/ NOTE. we do not user AccountRoles casting here to preserve repeated form\n \/\/ so protobuf takes care about repeated items in generated code,\n \/\/ (but that might be not the final solution)\n repeated string roles = 2 [(gogoproto.casttype) = \"AccountRole\"]; \n repeated Grant approvals = 3;\n int32 vendorID = 4;\n repeated Grant rejectApprovals = 5;\n}\n\n","subject":"Add a new filed rejectApprovals","message":"Add a new filed rejectApprovals\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger"} {"commit":"9aa5e61f11a7a0628766fa3143c1eef781ea97c7","old_file":"src\/net\/instaweb\/rewriter\/critical_line_info.proto","new_file":"src\/net\/instaweb\/rewriter\/critical_line_info.proto","old_contents":"\/*\n * Copyright 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\n\/\/ Author: rahulbansal@google.com (Rahul Bansal)\n\/\/\n\/\/ Proto representing critical line information.\n\nsyntax = \"proto2\";\n\noption optimize_for = LITE_RUNTIME;\n\npackage net_instaweb;\n\n\/\/ Protobuf to encapsulate the information use by blink flow.\n\/\/ Next id = 3\nmessage CriticalLineInfo {\n \/\/ Panels that are below the critical line.\n repeated Panel panels = 1;\n \/\/ URLs of images above the critical line.\n repeated string critical_image_url = 2;\n}\n\nmessage Panel {\n \/\/ XPath identifying the start instance tag for the panel.\n required string start_xpath = 1;\n \/\/ XPath identifying the marker beyond instances of this panel.\n \/\/ The marker can be text\/comment\/tag\n \/\/ The marker is not part of the panel.\n optional string end_marker_xpath = 2;\n};\n","new_contents":"\/*\n * Copyright 2012 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\n\/\/ Author: rahulbansal@google.com (Rahul Bansal)\n\/\/\n\/\/ Proto representing critical line information.\n\nsyntax = \"proto2\";\n\noption optimize_for = LITE_RUNTIME;\n\npackage net_instaweb;\n\n\/\/ Protobuf to encapsulate the information use by blink flow.\n\/\/ Next id = 4\nmessage CriticalLineInfo {\n \/\/ Panels that are below the critical line.\n repeated Panel panels = 1;\n \/\/ URLs of images above the critical line.\n repeated string critical_image_url = 2;\n \/\/ URLs of css background images above the critical line.\n repeated string css_critical_image_url = 3;\n}\n\nmessage Panel {\n \/\/ XPath identifying the start instance tag for the panel.\n required string start_xpath = 1;\n \/\/ XPath identifying the marker beyond instances of this panel.\n \/\/ The marker can be text\/comment\/tag\n \/\/ The marker is not part of the panel.\n optional string end_marker_xpath = 2;\n};\n","subject":"Add css critical images field to critical line proto.","message":"Add css critical images field to critical line proto.\n\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"crowell\/modpagespeed_tmp,crowell\/modpagespeed_tmp,crowell\/modpagespeed_tmp,crowell\/modpagespeed_tmp,crowell\/modpagespeed_tmp,crowell\/modpagespeed_tmp,crowell\/modpagespeed_tmp"} {"commit":"803328fc259badbb675417ad9a30125aa1b6b469","old_file":"tensorflow\/compiler\/xla\/tools\/run_hlo_module.proto","new_file":"tensorflow\/compiler\/xla\/tools\/run_hlo_module.proto","old_contents":"syntax = \"proto3\";\n\npackage xla;\n\nimport \"tensorflow\/compiler\/xla\/xla_data.proto\";\n\nmessage RunHloModuleIterationLiterals {\n \/\/ Arguments used by the iteration.\n repeated LiteralProto arguments = 2;\n\n \/\/ Ressult of the iteration on the target platform.\n optional LiteralProto result = 3;\n\n \/\/ Result of the iteration on the reference platform.\n optional LiteralProto reference_result = 4;\n}\n\nmessage RunHloModuleLiterals {\n \/\/ Iterations of run hlo module.\n repeated RunHloModuleIterationLiterals iterations = 1;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage xla;\n\nimport \"tensorflow\/compiler\/xla\/xla_data.proto\";\n\nmessage RunHloModuleIterationLiterals {\n \/\/ Arguments used by the iteration.\n repeated LiteralProto arguments = 2;\n\n \/\/ Ressult of the iteration on the target platform.\n LiteralProto result = 3;\n\n \/\/ Result of the iteration on the reference platform.\n LiteralProto reference_result = 4;\n}\n\nmessage RunHloModuleLiterals {\n \/\/ Iterations of run hlo module.\n repeated RunHloModuleIterationLiterals iterations = 1;\n}\n","subject":"Remove disallowed and redundant optional in proto buf","message":"Remove disallowed and redundant optional in proto buf\n\nProto3 defaults to optional.\n\nPiperOrigin-RevId: 389196994\nChange-Id: Iaf7e6e528b649433b50de4f100e032bb34fbbbe0\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"yongtang\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,yongtang\/tensorflow,Intel-tensorflow\/tensorflow,karllessard\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_tf_optimizer,Intel-Corporation\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow,gautam1858\/tensorflow,karllessard\/tensorflow,Intel-tensorflow\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,gautam1858\/tensorflow,tensorflow\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,frreiss\/tensorflow-fred,frreiss\/tensorflow-fred,yongtang\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,gautam1858\/tensorflow,tensorflow\/tensorflow,paolodedios\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,tensorflow\/tensorflow,tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_tf_optimizer,gautam1858\/tensorflow,yongtang\/tensorflow,frreiss\/tensorflow-fred,paolodedios\/tensorflow,Intel-tensorflow\/tensorflow,frreiss\/tensorflow-fred,tensorflow\/tensorflow-pywrap_tf_optimizer,karllessard\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,Intel-Corporation\/tensorflow,frreiss\/tensorflow-fred,Intel-tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow,gautam1858\/tensorflow,frreiss\/tensorflow-fred,tensorflow\/tensorflow-pywrap_saved_model,yongtang\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,karllessard\/tensorflow,tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,karllessard\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,gautam1858\/tensorflow,frreiss\/tensorflow-fred,frreiss\/tensorflow-fred,tensorflow\/tensorflow-experimental_link_static_libraries_once,paolodedios\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,Intel-Corporation\/tensorflow,yongtang\/tensorflow,yongtang\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,paolodedios\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,frreiss\/tensorflow-fred,Intel-tensorflow\/tensorflow,paolodedios\/tensorflow,yongtang\/tensorflow,yongtang\/tensorflow,paolodedios\/tensorflow,paolodedios\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,Intel-tensorflow\/tensorflow,frreiss\/tensorflow-fred,gautam1858\/tensorflow,Intel-Corporation\/tensorflow,karllessard\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,gautam1858\/tensorflow,frreiss\/tensorflow-fred,yongtang\/tensorflow,frreiss\/tensorflow-fred,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,karllessard\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,yongtang\/tensorflow,gautam1858\/tensorflow,karllessard\/tensorflow,gautam1858\/tensorflow"} {"commit":"5c8be02d118a083c098dcc54484d078fa4fadf78","old_file":"protofiles\/aqdparamdefinitions.proto","new_file":"protofiles\/aqdparamdefinitions.proto","old_contents":"\/\/ -*- cpy-indent-level: 4; indent-tabs-mode: nil -*-\n\/\/ ex: set expandtab softtabstop=4 shiftwidth=4:\npackage aqdparamdefinitions;\n\nimport \"aqdsystems.proto\";\n\n\nmessage ParamDefinition {\n required string path = 1;\n required string value_type = 2;\n optional string default = 3;\n optional string description = 4;\n optional string template = 5;\n optional bool is_required = 6 [default = false];\n optional bool rebuild_required = 7 [deprecated = true];\n optional aqdsystems.Activation activation = 8;\n}\n\nmessage ParamDefinitionList {\n repeated ParamDefinition param_definitions = 1;\n}\n","new_contents":"\/\/ -*- cpy-indent-level: 4; indent-tabs-mode: nil -*-\n\/\/ ex: set expandtab softtabstop=4 shiftwidth=4:\npackage aqdparamdefinitions;\n\nimport \"aqdsystems.proto\";\n\n\nmessage ParamDefinition {\n required string path = 1;\n required string value_type = 2;\n optional string default = 3;\n optional string description = 4;\n optional string template = 5;\n optional bool is_required = 6 [default = false];\n optional bool rebuild_required = 7 [deprecated = true];\n optional aqdsystems.Activation activation = 8;\n optional string archetype = 9;\n optional string feature = 10;\n optional string type = 11;\n}\n\nmessage ParamDefinitionList {\n repeated ParamDefinition param_definitions = 1;\n}\n","subject":"Include archetype and feature fields in ParameterDefinition.","message":"Include archetype and feature fields in ParameterDefinition.\n\nThis will make it possible to return both feature and archetype\nparameter definitions from show_parameter_definitiona --all.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"quattor\/aquilon-protocols,quattor\/aquilon-protocols"} {"commit":"9917db54d851d32da036db5b8a0a91dc2aa045ed","old_file":"core-java\/src\/main\/proto\/spine\/base\/domain.proto","new_file":"core-java\/src\/main\/proto\/spine\/base\/domain.proto","old_contents":"\/\/\n\/\/ Copyright 2015, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.base;\n\noption java_generate_equals_and_hash = true;\noption java_multiple_files = true;\noption java_outer_classname = \"DomainProto\";\noption java_package = \"org.spine3.base\";\n\n\/\/ An Internet domain name.\nmessage DomainName {\n \/\/ The value of the domain name.\n \/\/\n \/\/ It is the responsibility of the application to provide a correct value for this field.\n string value = 1;\n}","new_contents":"\/\/\n\/\/ Copyright 2015, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.base;\n\noption java_generate_equals_and_hash = true;\noption java_multiple_files = true;\noption java_outer_classname = \"DomainProto\";\noption java_package = \"org.spine3.base\";\n\n\/\/ An Internet domain name.\nmessage DomainName {\n \/\/ The value of the domain name.\n \/\/\n \/\/ It is the responsibility of the application to provide a correct value for this field.\n string value = 1;\n}\n","subject":"Add a new line at the end of the file.","message":"Add a new line at the end of the file.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"2dd9d4a5980d264c75b6e8ca7d05fa4cb43f6b17","old_file":"events\/metric.proto","new_file":"events\/metric.proto","old_contents":"package events;\n\nimport \"uuid.proto\";\n\n\/\/\/ A ValueMetric indicates the value of a metric at an instant in time.\nmessage ValueMetric {\n required string name = 1; \/\/\/ Name of the metric. Must be consistent for downstream consumers to associate events semantically.\n required double value = 2; \/\/\/ Value at the time of event emission.\n required string unit = 3; \/\/\/ Unit of the metric. Please see http:\/\/metrics20.org\/spec\/#units for ideas; SI units\/prefixes are recommended where applicable. Should be consistent for the life of the metric (consumers are expected to report, but not interpret, prefixes).\n}\n\n\/\/\/ A CounterEvent represents the increment of a counter. It contains only the change in the value; it is the responsibility of downstream consumers to maintain the value of the counter.\nmessage CounterEvent {\n required string name = 1; \/\/\/ Name of the counter. Must be consistent for downstream consumers to associate events semantically.\n required uint64 delta = 2; \/\/\/ Amount by which to increment the counter.\n}\n\n\/\/\/ A ContainerMetric records resource usage of an app in a container.\n message ContainerMetric {\n required string applicationId = 1; \/\/\/ ID of the contained application.\n required int32 instanceIndex = 2; \/\/\/ Instance index of the contained application. (This, with applicationId, should uniquely identify a container.)\n\n required double cpuPercentage = 3; \/\/\/ CPU used, on a scale of 0 to 100.\n required uint64 memoryBytes = 4; \/\/\/ Bytes of memory used.\n required uint64 diskBytes = 5; \/\/\/ Bytes of disk used.\n }","new_contents":"package events;\n\nimport \"uuid.proto\";\n\n\/\/\/ A ValueMetric indicates the value of a metric at an instant in time.\nmessage ValueMetric {\n required string name = 1; \/\/\/ Name of the metric. Must be consistent for downstream consumers to associate events semantically.\n required double value = 2; \/\/\/ Value at the time of event emission.\n required string unit = 3; \/\/\/ Unit of the metric. Please see http:\/\/metrics20.org\/spec\/#units for ideas; SI units\/prefixes are recommended where applicable. Should be consistent for the life of the metric (consumers are expected to report, but not interpret, prefixes).\n}\n\n\/\/\/ A CounterEvent represents the increment of a counter. It contains only the change in the value; it is the responsibility of downstream consumers to maintain the value of the counter.\nmessage CounterEvent {\n required string name = 1; \/\/\/ Name of the counter. Must be consistent for downstream consumers to associate events semantically.\n required uint64 delta = 2; \/\/\/ Amount by which to increment the counter.\n optional uint64 total = 3; \/\/\/ Total value of the counter. By default, this may be left unset and downstream components will track the total.\n}\n\n\/\/\/ A ContainerMetric records resource usage of an app in a container.\n message ContainerMetric {\n required string applicationId = 1; \/\/\/ ID of the contained application.\n required int32 instanceIndex = 2; \/\/\/ Instance index of the contained application. (This, with applicationId, should uniquely identify a container.)\n\n required double cpuPercentage = 3; \/\/\/ CPU used, on a scale of 0 to 100.\n required uint64 memoryBytes = 4; \/\/\/ Bytes of memory used.\n required uint64 diskBytes = 5; \/\/\/ Bytes of disk used.\n }","subject":"Add optional total to CounterEvent","message":"Add optional total to CounterEvent\n\nSigned-off-by: Alex Jackson <5fd8ab8d1587e7ab8bef2ad3b5211edf3f734ab8@pivotal.io>\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"stefanschneider\/dropsonde-protocol,stefanschneider\/dropsonde-protocol,cloudfoundry\/dropsonde-protocol"} {"commit":"bc577fab08da928ffa8dd225407f7f81bcd6a3b2","old_file":"projects\/OG-Engine\/src\/com\/opengamma\/engine\/security\/DefaultSecurity.proto","new_file":"projects\/OG-Engine\/src\/com\/opengamma\/engine\/security\/DefaultSecurity.proto","old_contents":"\/**\n * Copyright (C) 2009 - 2010 by OpenGamma Inc.\n *\n * Please see distribution for license.\n *\/\n\nnamespace com.opengamma.engine.security {\n\n \/**\n * A simple mutable implementation of {@code Security}.\n *\/\n message DefaultSecurity {\n \n optional com.opengamma.id.UniqueIdentifier uniqueIdentifier;\n required string name [default=\"\"];\n required string securityType;\n required com.opengamma.id.IdentifierBundle identifiers [default=()];\n \n \/\/ TODO: getName - used to call buildDefaultDisplayName if no name was given\n\n binding Java {\n implements \"Security, com.opengamma.id.MutableUniqueIdentifiable\";\n methods \"equals,hashCode\";\n body << env = 3;\n}\n\nmessage CommandOutput {\n string stdout = 1;\n string stderr = 2;\n int32 code = 3;\n}\n\nservice FileSystem {\n rpc createDir(Path) returns (Empty) {}\n\n rpc createFile(Path) returns (Empty) {}\n\n rpc copy(repeated Path) returns (Empty) {}\n\n rpc move(repeated Path) returns (Empty) {}\n\n rpc delete(repeated Path) returns (Empty) {}\n\n rpc exists(Path) returns (Path) {}\n\n rpc readFile(Path) returns (stream Content) {}\n\n rpc writeFile(stream Content) returns (Empty) {}\n\n rpc readDir(Path) returns (stream Content) {}\n\n rpc writeDir(stream Content) returns (Empty) {}\n\n rpc exec(Command) returns (CommandOutput) {}}\n\n rpc execStream(Command) returns (stream CommandOutput) {}\n}\n","subject":"Fix env map in Command message","message":"Fix env map in Command message\n","lang":"Protocol Buffer","license":"mit","repos":"hubot-grpc\/filesystem-grpc,hubot-grpc\/filesystem-grpc"} {"commit":"4d8c00c17639a18ef6549fe01f79d807df62dee1","old_file":"events\/envelope.proto","new_file":"events\/envelope.proto","old_contents":"package events;\n\nimport \"heartbeat.proto\";\nimport \"http.proto\";\nimport \"log.proto\";\nimport \"metric.proto\";\nimport \"error.proto\";\n\nmessage Envelope {\n enum EventType {\n Heartbeat = 1;\n HttpStart = 2;\n HttpStop = 3;\n HttpStartStop = 4;\n LogMessage = 5;\n ValueMetric = 6;\n CounterEvent = 7;\n Error = 8;\n }\n\n required string origin = 1;\n required EventType eventType = 2;\n\n optional int64 timestamp = 6;\n\n optional Heartbeat heartbeat = 3;\n optional HttpStart httpStart = 4;\n optional HttpStop httpStop = 5;\n optional HttpStartStop httpStartStop = 7;\n optional LogMessage logMessage = 8;\n optional ValueMetric valueMetric = 9;\n optional CounterEvent counterEvent = 10;\n optional Error errorEvent = 11;\n}\n","new_contents":"package events;\n\nimport \"heartbeat.proto\";\nimport \"http.proto\";\nimport \"log.proto\";\nimport \"metric.proto\";\nimport \"error.proto\";\n\nmessage Envelope {\n enum EventType {\n Heartbeat = 1;\n HttpStart = 2;\n HttpStop = 3;\n HttpStartStop = 4;\n LogMessage = 5;\n ValueMetric = 6;\n CounterEvent = 7;\n Error = 8;\n }\n\n required string origin = 1;\n required EventType eventType = 2;\n\n optional int64 timestamp = 6;\n\n optional Heartbeat heartbeat = 3;\n optional HttpStart httpStart = 4;\n optional HttpStop httpStop = 5;\n optional HttpStartStop httpStartStop = 7;\n optional LogMessage logMessage = 8;\n optional ValueMetric valueMetric = 9;\n optional CounterEvent counterEvent = 10;\n optional Error error = 11;\n}\n","subject":"Rename errorEvent to error for simplicity","message":"Rename errorEvent to error for simplicity\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"stefanschneider\/dropsonde-protocol,cloudfoundry\/dropsonde-protocol,stefanschneider\/dropsonde-protocol"} {"commit":"44f61e0f860447e198ca044f1cbdac73c5aa2bbf","old_file":"api\/types\/swarm\/runtime\/plugin.proto","new_file":"api\/types\/swarm\/runtime\/plugin.proto","old_contents":"syntax = \"proto3\";\n\n\/\/ PluginSpec defines the base payload which clients can specify for creating\n\/\/ a service with the plugin runtime.\nmessage PluginSpec {\n\tstring name = 1;\n\tstring remote = 2;\n\trepeated PluginPrivilege privileges = 3;\n\tbool disabled = 4;\n}\n\n\/\/ PluginPrivilege describes a permission the user has to accept\n\/\/ upon installing a plugin.\nmessage PluginPrivilege {\n\tstring name = 1;\n\tstring description = 2;\n\trepeated string value = 3;\n}\n","new_contents":"syntax = \"proto3\";\n\noption go_package = \"github.com\/docker\/docker\/api\/types\/swarm\/runtime;runtime\";\n\n\/\/ PluginSpec defines the base payload which clients can specify for creating\n\/\/ a service with the plugin runtime.\nmessage PluginSpec {\n\tstring name = 1;\n\tstring remote = 2;\n\trepeated PluginPrivilege privileges = 3;\n\tbool disabled = 4;\n}\n\n\/\/ PluginPrivilege describes a permission the user has to accept\n\/\/ upon installing a plugin.\nmessage PluginPrivilege {\n\tstring name = 1;\n\tstring description = 2;\n\trepeated string value = 3;\n}\n","subject":"Set a go_package on api\/types\/swarm\/runtime to make it Bazel compatible","message":"Set a go_package on api\/types\/swarm\/runtime to make it Bazel compatible\n\nSigned-off-by: Yves Junqueira \n","lang":"Protocol Buffer","license":"apache-2.0","repos":"kolyshkin\/moby,duglin\/docker,bearstech\/moby,yongtang\/docker,justincormack\/docker,estesp\/docker,justincormack\/docker,YuPengZTE\/docker,konstruktoid\/docker-1,laijs\/docker,konstruktoid\/docker-upstream,konstruktoid\/docker-upstream,bearstech\/moby,bearstech\/moby,vdemeester\/docker,ibuildthecloud\/docker,paralin\/docker,unclejack\/docker,AkihiroSuda\/docker,crosbymichael\/docker,ibuildthecloud\/docker,rhatdan\/docker,flavio\/docker,thaJeztah\/docker,tonistiigi\/docker,trebonian\/docker,KingEmet\/docker,mixja\/docker,djs55\/docker,rancher\/docker,mikebrow\/docker,gnailuy\/docker,trebonian\/docker,moul\/docker,mixja\/docker,jimjag\/docker,jimjag\/docker,AkihiroSuda\/docker,jlhawn\/docker,scotttlin\/docker,moul\/docker,thaJeztah\/docker,AkihiroSuda\/docker,duglin\/docker,pradipd\/moby,gnailuy\/docker,srust\/docker,jimjag\/docker,jthelin\/docker,yongtang\/docker,bearstech\/moby,dmcgowan\/docker,jwhonce\/docker,mikebrow\/docker,johnstep\/moby-moby,thaJeztah\/docker,nawawi\/docker,rancher\/docker,tonistiigi\/docker,allencloud\/docker,tophj-ibm\/moby,laijs\/docker,paralin\/docker,tmp6154\/docker,Mokolea\/docker,whuwxl\/docker,maxamillion\/docker,mikebrow\/docker,Mokolea\/docker,shishir-a412ed\/docker,yosifkit\/docker,djs55\/docker,scotttlin\/docker,PatrickLang\/moby,jthelin\/docker,KingEmet\/docker,nalind\/docker,KarthikNayak\/docker,allencloud\/docker,duglin\/docker,johnstep\/moby-moby,jameszhan\/docker,thaJeztah\/docker,pradipd\/moby,justincormack\/docker,dmcgowan\/docker,tmp6154\/docker,Mokolea\/docker,dccurtis\/docker,kolyshkin\/moby,nawawi\/docker,dims\/docker,PatrickLang\/moby,dmcgowan\/docker,cpuguy83\/docker,whuwxl\/docker,johnstep\/moby-moby,KarthikNayak\/docker,whuwxl\/docker,shishir-a412ed\/docker,docker\/docker,moby\/moby,laijs\/moby,yosifkit\/docker,maxamillion\/docker,tophj-ibm\/docker,konstruktoid\/docker-1,KarthikNayak\/docker,rremer\/moby,docker\/docker,nalind\/docker,dims\/docker,moul\/docker,x1022as\/docker,ibuildthecloud\/docker,ibuildthecloud\/docker,noironetworks\/docker,tophj-ibm\/moby,dccurtis\/docker,ripcurld0\/moby,kojiromike\/docker,ripcurld0\/moby,mahak\/docker,x1022as\/docker,gnailuy\/docker,yosifkit\/docker,SvenDowideit\/docker,trebonian\/docker,trebonian\/docker,tonistiigi\/docker,cpuguy83\/docker,kojiromike\/docker,mahak\/docker,mahak\/docker,noironetworks\/docker,KingEmet\/docker,unclejack\/docker,jwhonce\/docker,shishir-a412ed\/docker,laijs\/docker,kolyshkin\/moby,jvanz\/docker,tophj-ibm\/moby,jimjag\/docker,docker\/docker,rremer\/moby,SvenDowideit\/docker,YuPengZTE\/docker,cpuguy83\/docker,moul\/docker,rhatdan\/docker,moby\/moby,gnailuy\/docker,rremer\/moby,scotttlin\/docker,Ramzec\/docker,nalind\/docker,flavio\/docker,rhatdan\/docker,kolyshkin\/docker,flavio\/docker,crosbymichael\/docker,moby\/moby,Ramzec\/docker,ibuildthecloud\/docker,kojiromike\/docker,laijs\/moby,estesp\/docker,ripcurld0\/moby,kolyshkin\/docker,vdemeester\/docker,paralin\/docker,nawawi\/docker,laijs\/moby,mahak\/docker,AkihiroSuda\/docker,mixja\/docker,jvanz\/docker,paralin\/docker,konstruktoid\/docker-1,maxamillion\/docker,flavio\/docker,konstruktoid\/docker-upstream,jameszhan\/docker,SvenDowideit\/docker,srust\/docker,nalind\/docker,PatrickLang\/moby,estesp\/docker,jlhawn\/docker,tmp6154\/docker,dims\/docker,jameszhan\/docker,yosifkit\/docker,Ramzec\/docker,jlhawn\/docker,jvanz\/docker,noironetworks\/docker,YuPengZTE\/docker,Mokolea\/docker,unclejack\/docker,crosbymichael\/docker,x1022as\/docker,djs55\/docker,jwhonce\/docker,konstruktoid\/docker-upstream,srust\/docker,Ramzec\/docker,nawawi\/docker,allencloud\/docker,tophj-ibm\/docker,cpuguy83\/docker,yongtang\/docker,rancher\/docker,pradipd\/moby,tophj-ibm\/docker,dccurtis\/docker,moby\/moby,vdemeester\/docker"} {"commit":"a29a1c02c52b946090a3394bc1b419d92261c1f5","old_file":"apm-network\/src\/main\/proto\/DiscoveryService.proto","new_file":"apm-network\/src\/main\/proto\/DiscoveryService.proto","old_contents":"syntax = \"proto3\";\n\noption java_multiple_files = true;\noption java_package = \"org.skywalking.apm.network.proto\";\n\nimport \"Downstream.proto\";\n\n\/\/discovery service for application instance, this service is called when application starts\n\/\/or http client connection switch to another collector server instance\nservice InstanceDiscoveryService {\n rpc register (ApplicationInstance) returns (ApplicationInstanceMapping) {\n }\n\n rpc heartbeat (ApplicationInstanceHeartbeat) returns (Downstream) {\n }\n\n rpc registerRecover (ApplicationInstanceMapping) returns (Downstream) {\n }\n}\n\nmessage ApplicationInstance {\n int32 applicationId = 1;\n int64 registerTime = 2;\n}\n\nmessage ApplicationInstanceMapping {\n int32 applicationId = 1;\n int32 applicationInstanceId = 2;\n int64 registerTime = 3;\n}\n\nmessage ApplicationInstanceHeartbeat {\n int32 applicationInstanceId = 1;\n int64 heartbeatTime = 2;\n}\n\n\/\/discovery service for ServiceName by Network address or application code\nservice ServiceNameDiscoveryService {\n rpc discovery (ServiceNameCollection) returns (ServiceNameMappingCollection) {\n }\n}\n\nmessage ServiceNameCollection {\n repeated ServiceNameElement elements = 1;\n}\n\nmessage ServiceNameMappingCollection {\n repeated ServiceNameMappingElement elements = 1;\n}\n\nmessage ServiceNameMappingElement {\n int32 serviceId = 1;\n ServiceNameElement element = 2;\n}\n\nmessage ServiceNameElement {\n string serviceName = 1;\n int32 applicationId = 2;\n}\n\n","new_contents":"syntax = \"proto3\";\n\noption java_multiple_files = true;\noption java_package = \"org.skywalking.apm.network.proto\";\n\nimport \"Downstream.proto\";\n\n\/\/discovery service for application instance, this service is called when application starts\n\/\/or http client connection switch to another collector server instance\nservice InstanceDiscoveryService {\n rpc register (ApplicationInstance) returns (ApplicationInstanceMapping) {\n }\n\n rpc heartbeat (ApplicationInstanceHeartbeat) returns (Downstream) {\n }\n\n rpc registerRecover (ApplicationInstanceRecover) returns (Downstream) {\n }\n}\n\nmessage ApplicationInstance {\n int32 applicationId = 1;\n int64 registerTime = 2;\n}\n\nmessage ApplicationInstanceMapping {\n int32 applicationId = 1;\n int32 applicationInstanceId = 2;\n}\n\nmessage ApplicationInstanceRecover {\n int32 applicationId = 1;\n int32 applicationInstanceId = 2;\n int64 registerTime = 3;\n}\n\nmessage ApplicationInstanceHeartbeat {\n int32 applicationInstanceId = 1;\n int64 heartbeatTime = 2;\n}\n\n\/\/discovery service for ServiceName by Network address or application code\nservice ServiceNameDiscoveryService {\n rpc discovery (ServiceNameCollection) returns (ServiceNameMappingCollection) {\n }\n}\n\nmessage ServiceNameCollection {\n repeated ServiceNameElement elements = 1;\n}\n\nmessage ServiceNameMappingCollection {\n repeated ServiceNameMappingElement elements = 1;\n}\n\nmessage ServiceNameMappingElement {\n int32 serviceId = 1;\n ServiceNameElement element = 2;\n}\n\nmessage ServiceNameElement {\n string serviceName = 1;\n int32 applicationId = 2;\n}","subject":"Add ApplicationInstanceRecover message for the request of instance recover service","message":"Add ApplicationInstanceRecover message for the request of instance recover service\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"zhangkewei\/sky-walking,OpenSkywalking\/skywalking,apache\/skywalking,OpenSkywalking\/skywalking,apache\/skywalking,ascrutae\/sky-walking,hanahmily\/sky-walking,apache\/skywalking,ascrutae\/sky-walking,hanahmily\/sky-walking,apache\/skywalking,apache\/skywalking,apache\/skywalking,ascrutae\/sky-walking,apache\/skywalking,ascrutae\/sky-walking,zhangkewei\/sky-walking"} {"commit":"86a23e6a8ba6a00d6ca690a9af5ef280a5fa78f0","old_file":"containers\/base\/protocolbuffers\/messages.proto","new_file":"containers\/base\/protocolbuffers\/messages.proto","old_contents":"syntax = \"proto3\";\n\nimport public \"shared.proto\";\n\npackage fontbakery.dashboard;\n\nmessage FamilyJob {\n string docid = 1;\n repeated fontbakery.dashboard.File files = 2;\n enum JobType {\n UNKNOWN = 0;\n DRAGANDDROP_ORIGIN = 1;\n DRAGANDDROP_DISTRIBUTED = 2;\n }\n JobType type = 3;\n message DistributedInfo {\n int32 id = 1;\n repeated string order = 2;\n }\n DistributedInfo distributedInfo = 4;\n}\n\n\n\/\/ Cache:\n\/\/ TODO: if implemented widely, fontbakery.dashboard.Files could be replaced\n\/\/ by google.Any, making this a universial protobuf message cache\n\/\/ needs testing. (CacheItem expects fontbakery.dashboard.Files as well)\n\n\/\/ The greeting service definition.\nservice Cache {\n \/\/ Sends a greeting\n rpc Put (stream CacheItem) returns (stream CacheKey) {};\n \/\/ Sends another greeting\n rpc Get (CacheKey) returns (fontbakery.dashboard.Files) {};\n rpc Purge (CacheKey) returns (CacheStatus) {};\n}\n\n\/\/ The request message containing the user's name.\nmessage CacheItem {\n fontbakery.dashboard.Files payload = 1;\n string clientid = 2;\n}\n\nmessage CacheKey {\n string key = 1;\n string clientid = 2; \/\/ optional, set if CacheItem.clientid was set\n bool force = 3; \/\/ used for purge\n}\n\nmessage CacheStatus {\n string key = 1;\n int32 instances = 2;\n}\n\n","new_contents":"syntax = \"proto3\";\n\nimport \"google\/protobuf\/any.proto\";\nimport public \"shared.proto\";\n\npackage fontbakery.dashboard;\n\nmessage FamilyJob {\n string docid = 1;\n repeated fontbakery.dashboard.File files = 2;\n enum JobType {\n UNKNOWN = 0;\n DRAGANDDROP_ORIGIN = 1;\n DRAGANDDROP_DISTRIBUTED = 2;\n }\n JobType type = 3;\n message DistributedInfo {\n int32 id = 1;\n repeated string order = 2;\n }\n DistributedInfo distributedInfo = 4;\n}\n\n\n\/\/ Cache:\n\/\/ TODO: if implemented widely, fontbakery.dashboard.Files could be replaced\n\/\/ by google.Any, making this a universial protobuf message cache\n\/\/ needs testing. (CacheItem expects fontbakery.dashboard.Files as well)\n\n\/\/ The greeting service definition.\nservice Cache {\n \/\/ Sends a greeting\n rpc Put (stream CacheItem) returns (stream CacheKey) {};\n \/\/ Sends another greeting\n rpc Get (CacheKey) returns (google.protobuf.Any) {};\n rpc Purge (CacheKey) returns (CacheStatus) {};\n}\n\n\/\/ The request message containing the user's name.\nmessage CacheItem {\n google.protobuf.Any payload = 1;\n string clientid = 2;\n}\n\nmessage CacheKey {\n string key = 1;\n string clientid = 2; \/\/ optional, set if CacheItem.clientid was set\n bool force = 3; \/\/ used for purge\n}\n\nmessage CacheStatus {\n string key = 1;\n int32 instances = 2;\n}\n\n","subject":"Use Any as payload type","message":"[protocolbuffers\/CacheService] Use Any as payload type\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"googlefonts\/fontbakery-dashboard,googlefonts\/fontbakery-dashboard,googlefonts\/fontbakery-dashboard,googlefonts\/fontbakery-dashboard,googlefonts\/fontbakery-dashboard"} {"commit":"158a0a9576ab144588d3147853b2a3820fd636eb","old_file":"aqdservices.proto","new_file":"aqdservices.proto","old_contents":"\/\/ -*- cpy-indent-level: 4; indent-tabs-mode: nil -*-\n\/\/ ex: set expandtab softtabstop=4 shiftwidth=4:\npackage aqdservices;\n\nimport \"aqdsystems.proto\";\nimport \"aqdlocations.proto\";\nimport \"aqdnetworks.proto\";\n\n\nmessage Service {\n optional string name = 1;\n optional string template = 2 [deprecated=true];\n repeated ServiceInstance serviceinstances = 3;\n}\n\nmessage ServiceList {\n repeated Service services = 1;\n}\n\nmessage ServiceInstance {\n optional string name = 1;\n optional string template = 2 [deprecated=true];\n repeated aqdsystems.Host servers = 3;\n repeated aqdsystems.Host clients = 4 [deprecated=true];\n repeated ServiceInstanceProvider provider = 5;\n}\n\nmessage ServiceInstanceProvider {\n optional string target_ip = 1;\n optional string target_fqdn = 2;\n optional aqdsystems.Host host = 3;\n optional aqdsystems.Cluster cluster = 4;\n optional aqdsystems.ServiceAddress service_address = 5;\n}\n\nmessage ServiceMap {\n optional aqdlocations.Location location = 1;\n optional Service service = 2;\n optional aqdsystems.Personality personality = 3;\n optional aqdnetworks.Network network = 4;\n}\n\nmessage ServiceMapList {\n repeated ServiceMap servicemaps = 1;\n}\n","new_contents":"\/\/ -*- cpy-indent-level: 4; indent-tabs-mode: nil -*-\n\/\/ ex: set expandtab softtabstop=4 shiftwidth=4:\npackage aqdservices;\n\nimport \"aqdsystems.proto\";\nimport \"aqdlocations.proto\";\nimport \"aqdnetworks.proto\";\n\n\nmessage Service {\n optional string name = 1;\n optional string template = 2 [deprecated=true];\n repeated ServiceInstance serviceinstances = 3;\n}\n\nmessage ServiceList {\n repeated Service services = 1;\n}\n\nmessage ServiceInstance {\n optional string name = 1;\n optional string template = 2 [deprecated=true];\n repeated aqdsystems.Host servers = 3;\n repeated aqdsystems.Host clients = 4 [deprecated=true];\n repeated ServiceInstanceProvider provider = 5;\n}\n\nmessage ServiceInstanceProvider {\n optional string target_ip = 1;\n optional string target_fqdn = 2;\n optional aqdsystems.Host host = 3;\n optional aqdsystems.Cluster cluster = 4;\n optional aqdsystems.ServiceAddress service_address = 5;\n}\n\nmessage ServiceMap {\n optional aqdlocations.Location location = 1;\n optional Service service = 2;\n optional aqdsystems.Personality personality = 3;\n optional aqdnetworks.Network network = 4;\n optional string host_environment = 5;\n}\n\nmessage ServiceMapList {\n repeated ServiceMap servicemaps = 1;\n}\n","subject":"Allow mapping services to host environments","message":"Allow mapping services to host environments\n\nChange-Id: I6e57bc5fcfe857df5f465fe3c7085983c88e2cea\nReviewed-by: Priya Joshi <3c6cfa6f57440adfc837c4ad04483313acbc2582@morganstanley.com>\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"quattor\/aquilon-protocols,quattor\/aquilon-protocols"} {"commit":"94fbf54c12edaa0e9083f57f114b6bc86f113cf9","old_file":"clustering\/web\/undertow\/src\/main\/resources\/org.wildfly.clustering.web.undertow.sso.elytron.proto","new_file":"clustering\/web\/undertow\/src\/main\/resources\/org.wildfly.clustering.web.undertow.sso.elytron.proto","old_contents":"package org.wildfly.clustering.web.undertow.sso.elytron;\n\n\/\/ IDs: 250\n\n\/**\n * @TypeId(250)\n *\/\nmessage ElytronAuthentication {\n\toptional\tstring\tmechanism\t= 1;\n\toptional\tstring\tname\t= 2;\n}\n","new_contents":"package org.wildfly.clustering.web.undertow.sso.elytron;\n\n\/\/ IDs: 250\n\n\/**\n * @TypeId(250)\n *\/\nmessage ElytronAuthentication {\n\toptional\tstring\tmechanism\t= 1;\n\toptional\tstring\tname\t= 2;\n\toptional\tbool\tprogrammatic\t= 3;\n}\n","subject":"Add \"programmatic\" to the protobuf schema.","message":"[WFLY-14365] Add \"programmatic\" to the protobuf schema.\n","lang":"Protocol Buffer","license":"lgpl-2.1","repos":"iweiss\/wildfly,iweiss\/wildfly,pferraro\/wildfly,rhusar\/wildfly,wildfly\/wildfly,wildfly\/wildfly,rhusar\/wildfly,jstourac\/wildfly,pferraro\/wildfly,rhusar\/wildfly,jstourac\/wildfly,rhusar\/wildfly,wildfly\/wildfly,jstourac\/wildfly,wildfly\/wildfly,iweiss\/wildfly,jstourac\/wildfly,iweiss\/wildfly,pferraro\/wildfly,pferraro\/wildfly"} {"commit":"85bcc7319790affcaeed83816c01d5eabac3ebbb","old_file":"client\/src\/test\/proto\/spine\/test\/queries\/identifiers.proto","new_file":"client\/src\/test\/proto\/spine\/test\/queries\/identifiers.proto","old_contents":"\/\/\n\/\/ Copyright 2017, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.test.validate.msg;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_generate_equals_and_hash = true;\noption java_multiple_files = true;\noption java_outer_classname = \"QueryTestsIdentifiersProto\";\noption java_package = \"io.spine.test.queries\";\n\nmessage ProjectId {\n string value = 1;\n}\n\nmessage TaskId {\n string value = 1;\n}\n","new_contents":"\/\/\n\/\/ Copyright 2017, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.test.queries;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_generate_equals_and_hash = true;\noption java_multiple_files = true;\noption java_outer_classname = \"QueryTestsIdentifiersProto\";\noption java_package = \"io.spine.test.queries\";\n\nmessage ProjectId {\n string value = 1;\n}\n\nmessage TaskId {\n string value = 1;\n}\n","subject":"Fix invalid proto package name.","message":"Fix invalid proto package name.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"7dcd5d295f8205d836ebe1dc17c81bd134a8f94a","old_file":"packages\/syft\/proto\/grid\/messages\/success_resp_message.proto","new_file":"packages\/syft\/proto\/grid\/messages\/success_resp_message.proto","old_contents":"syntax = \"proto3\";\n\npackage syft.grid.messages;\n\nimport \"proto\/core\/common\/common_object.proto\";\nimport \"proto\/core\/io\/address.proto\";\n\n\nmessage SuccessResponseMessage {\n syft.core.common.UID msg_id = 1;\n string resp_msg = 3;\n syft.core.io.Address address = 4;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage syft.grid.messages;\n\nimport \"proto\/core\/common\/common_object.proto\";\nimport \"proto\/core\/io\/address.proto\";\n\n\nmessage SuccessResponseMessage {\n syft.core.common.UID msg_id = 1;\n string resp_msg = 2;\n syft.core.io.Address address = 3;\n}\n\nmessage ErrorResponseMessage {\n syft.core.common.UID msg_id = 1;\n string resp_msg = 2;\n syft.core.io.Address address = 3;\n}\n","subject":"ADD new Protobuf schema ErrorResponseMessage","message":"ADD new Protobuf schema ErrorResponseMessage\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft"} {"commit":"c2a151b2abc2b9f91f677967f18a959be28a23ec","old_file":"proto\/drivermsg.proto","new_file":"proto\/drivermsg.proto","old_contents":"package amber;\noption java_package = \"pl.edu.agh.amber.common.proto\";\noption java_outer_classname = \"CommonProto\";\n\noption optimize_for = SPEED;\n\nenum DeviceType { \n NINEDOF = 1;\n ROBOCLAW = 2;\n STARGAZER = 3;\n HOKUYO = 4;\n DUMMY = 5;\n}\n\nmessage DriverHdr {\n optional int32 deviceType = 1;\n optional int32 deviceID = 2;\n repeated int32 clientIDs = 3 [packed = true];\n}\n\nmessage DriverMsg {\n enum MsgType {\n DATA = 1;\n PING = 2;\n PONG = 3;\n CLIENT_DIED = 4;\n DRIVER_DIED = 5;\n }\n\n required MsgType type = 2;\n optional uint32 synNum = 3;\n optional uint32 ackNum = 4;\n optional uint32 listenerNum = 5;\n extensions 8 to 63;\n}\n","new_contents":"package amber;\noption java_package = \"pl.edu.agh.amber.common.proto\";\noption java_outer_classname = \"CommonProto\";\n\noption optimize_for = SPEED;\n\nenum DeviceType { \n NINEDOF = 1;\n ROBOCLAW = 2;\n STARGAZER = 3;\n HOKUYO = 4;\n DUMMY = 5;\n}\n\nmessage DriverHdr {\n optional int32 deviceType = 1;\n optional int32 deviceID = 2;\n repeated int32 clientIDs = 3 [packed = true];\n}\n\nmessage DriverMsg {\n enum MsgType {\n DATA = 1;\n PING = 2;\n PONG = 3;\n CLIENT_DIED = 4;\n DRIVER_DIED = 5;\n SUBSCRIBE = 6;\n UNSUBSCRIBE = 7;\n }\n\n required MsgType type = 2;\n optional uint32 synNum = 3;\n optional uint32 ackNum = 4;\n optional uint32 listenerNum = 5;\n extensions 8 to 63;\n}\n","subject":"Add subscribe and unsubscribe action to driver message protobuf file","message":"Add subscribe and unsubscribe action to driver message protobuf file\n","lang":"Protocol Buffer","license":"mit","repos":"project-capo\/amber-common"} {"commit":"966250b36e2640b841e25b8a231ff0468f0c4b4d","old_file":"src\/POGOProtos\/Data\/PlayerData.proto","new_file":"src\/POGOProtos\/Data\/PlayerData.proto","old_contents":"syntax = \"proto3\";\npackage POGOProtos.Data;\n\nimport \"POGOProtos\/Enums\/TutorialState.proto\";\nimport \"POGOProtos\/Data\/Player\/PlayerAvatar.proto\";\nimport \"POGOProtos\/Data\/Player\/DailyBonus.proto\";\nimport \"POGOProtos\/Data\/Player\/EquippedBadge.proto\";\nimport \"POGOProtos\/Data\/Player\/ContactSettings.proto\";\nimport \"POGOProtos\/Data\/Player\/Currency.proto\";\n\nmessage PlayerData {\n\tint64 creation_timestamp_ms = 1;\n\tstring username = 2;\n\tint32 team = 5;\n\trepeated .POGOProtos.Enums.TutorialState tutorial_state = 7;\n\t.POGOProtos.Data.Player.PlayerAvatar avatar = 8;\n\tint32 max_pokemon_storage = 9;\n\tint32 max_item_storage = 10;\n\t.POGOProtos.Data.Player.DailyBonus daily_bonus = 11;\n\t.POGOProtos.Data.Player.EquippedBadge equipped_badge = 12;\n\t.POGOProtos.Data.Player.ContactSettings contact_settings = 13;\n\trepeated .POGOProtos.Data.Player.Currency currencies = 14;\n}\n","new_contents":"syntax = \"proto3\";\npackage POGOProtos.Data;\n\nimport \"POGOProtos\/Enums\/TutorialState.proto\";\nimport \"POGOProtos\/Data\/Player\/PlayerAvatar.proto\";\nimport \"POGOProtos\/Data\/Player\/DailyBonus.proto\";\nimport \"POGOProtos\/Data\/Player\/EquippedBadge.proto\";\nimport \"POGOProtos\/Data\/Player\/ContactSettings.proto\";\nimport \"POGOProtos\/Data\/Player\/Currency.proto\";\n\nmessage PlayerData {\n\tint64 creation_timestamp_ms = 1;\n\tstring username = 2;\n\tint32 team = 5;\n\trepeated .POGOProtos.Enums.TutorialState tutorial_state = 7 [packed=true];\n\t.POGOProtos.Data.Player.PlayerAvatar avatar = 8;\n\tint32 max_pokemon_storage = 9;\n\tint32 max_item_storage = 10;\n\t.POGOProtos.Data.Player.DailyBonus daily_bonus = 11;\n\t.POGOProtos.Data.Player.EquippedBadge equipped_badge = 12;\n\t.POGOProtos.Data.Player.ContactSettings contact_settings = 13;\n\trepeated .POGOProtos.Data.Player.Currency currencies = 14;\n}\n","subject":"Fix tutorial_state for protobufjs users.","message":"Fix tutorial_state for protobufjs users.\n","lang":"Protocol Buffer","license":"mit","repos":"AeonLucid\/POGOProtos,alucas\/POGOProtos"} {"commit":"70b23674c6be37eb44764662c2a9462f5e0a6118","old_file":"protobuf\/query.proto","new_file":"protobuf\/query.proto","old_contents":"package muduo;\n\nmessage Query {\n required int64 id = 1;\n required string questioner = 2;\n\n repeated string question = 3;\n}\n\nmessage Answer {\n required int64 id = 1;\n required string questioner = 2;\n required string answerer = 3;\n\n repeated string solution = 4;\n}\n\nmessage Empty {\n optional int32 id = 1;\n}\n","new_contents":"package muduo;\n\noption java_outer_classname = \"Proto\";\n\nmessage Query {\n required int64 id = 1;\n required string questioner = 2;\n\n repeated string question = 3;\n}\n\nmessage Answer {\n required int64 id = 1;\n required string questioner = 2;\n required string answerer = 3;\n\n repeated string solution = 4;\n}\n\nmessage Empty {\n optional int32 id = 1;\n}\n","subject":"Set java class name for proto.","message":"Set java class name for proto.\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"chenshuo\/recipes,chenshuo\/recipes,chenshuo\/recipes,chenshuo\/recipes,chenshuo\/recipes,chenshuo\/recipes"} {"commit":"465ba319f12d34c6ca33662f77cb36f1fc9d48d5","old_file":"telemetry\/telemetry.proto","new_file":"telemetry\/telemetry.proto","old_contents":"syntax = \"proto2\";\n\nmessage Telemetry {\n optional int32 timestamp_ms = 1;\n}\n","new_contents":"syntax = \"proto2\";\n\noption java_outer_classname=\"TelemetryProto\";\n\nmessage Telemetry {\n optional int32 timestamp_ms = 1;\n}\n","subject":"Add java output class name to .proto file","message":"Add java output class name to .proto file\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"CALISCO\/common-proto,CALISCO\/common-proto"} {"commit":"980cf91597d56882e4ac513bf244423decfc1eda","old_file":"clustering\/marshalling\/protostream\/src\/main\/resources\/org.wildfly.clustering.marshalling.protostream.proto","new_file":"clustering\/marshalling\/protostream\/src\/main\/resources\/org.wildfly.clustering.marshalling.protostream.proto","old_contents":"package org.wildfly.clustering.marshalling.protostream;\n\n\/**\n * @TypeId(0)\n *\/\nmessage Any {\n\toneof value {\n\t\tbool\tboolean\t= 1;\n\t\tsint32\tbyte\t= 2;\n\t\tsint32\tshort\t= 3;\n\t\tsint32\tinteger\t= 4;\n\t\tsint64\tlong\t= 5;\n\t\tfloat\tfloat\t= 6;\n\t\tdouble\tdouble\t= 7;\n\t\tuint32\tchar\t= 8;\n\t\tbytes\tstring\t= 9;\n\t\tbytes\tboolean_array\t= 10;\n\t\tbytes\tbyte_array\t= 11;\n\t\tuint32\tshort_array\t= 12;\n\t\tuint32\tinteger_array\t= 13;\n\t\tuint32\tlong_array\t= 14;\n\t\tuint32\tfloat_array\t= 15;\n\t\tuint32\tdouble_array\t= 16;\n\t\tuint32\tchar_array\t= 17;\n\t}\n}\n","new_contents":"package org.wildfly.clustering.marshalling.protostream;\n\n\/**\n * @TypeId(0)\n *\/\nmessage Any {\n\trepeated\tbytes\tany\t= 1;\n\toptional\tuint32\treference\t= 2;\n\toptional\tbool\tboolean\t= 3;\n\toptional\tsint32\tbyte\t= 4;\n\toptional\tsint32\tshort\t= 5;\n\toptional\tsint32\tinteger\t= 6;\n\toptional\tsint64\tlong\t= 7;\n\toptional\tfloat\tfloat\t= 8;\n\toptional\tdouble\tdouble\t= 9;\n\toptional\tuint32\tchar\t= 10;\n\toptional\tstring\tstring\t= 11;\n\toptional\tuint32\tidObject\t= 12;\n\toptional\tuint32\tidEnum\t= 13;\n\toptional\tuint32\tidArray\t= 14;\n\toptional\tuint32\tfieldArray\t= 15;\n\toptional\tstring\tnamedObject\t= 16;\n\toptional\tstring\tnamedEnum\t= 17;\n\toptional\tstring\tnamedArray\t= 18;\n\toptional\tbytes\tbooleanArray\t= 19;\n\toptional\tbytes\tbyteArray\t= 20;\n\trepeated\tsint32\tshortArray\t= 21\t[packed=true];\n\trepeated\tsint32\tintegerArray\t= 22\t[packed=true];\n\trepeated\tsint64\tlongArray\t= 23\t[packed=true];\n\trepeated\tfloat\tfloatArray\t= 24\t[packed=true];\n\trepeated\tdouble\tdoubleArray\t= 25\t[packed=true];\n\trepeated\tuint32\tcharArray\t= 26\t[packed=true];\n\toptional\tbytes\tanyArray\t= 27;\n\toptional\tbytes\tproxy\t= 28;\n}\n","subject":"Fix protobuf schema for Any.","message":"Fix protobuf schema for Any.\n","lang":"Protocol Buffer","license":"lgpl-2.1","repos":"iweiss\/wildfly,wildfly\/wildfly,iweiss\/wildfly,pferraro\/wildfly,jstourac\/wildfly,pferraro\/wildfly,wildfly\/wildfly,jstourac\/wildfly,wildfly\/wildfly,iweiss\/wildfly,pferraro\/wildfly,jstourac\/wildfly,rhusar\/wildfly,pferraro\/wildfly,wildfly\/wildfly,rhusar\/wildfly,rhusar\/wildfly,iweiss\/wildfly,jstourac\/wildfly,rhusar\/wildfly"} {"commit":"dc6a9e8f8cfb5a5664c0bbe73cc61f6cef54d31e","old_file":"proto\/compliance\/compliance_info.proto","new_file":"proto\/compliance\/compliance_info.proto","old_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.compliance;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/compliance\/types\";\n\nimport \"compliance\/compliance_history_item.proto\";\nimport \"cosmos_proto\/cosmos.proto\";\n\nmessage ComplianceInfo {\n int32 vid = 1; \n int32 pid = 2; \n uint32 softwareVersion = 3; \n string certificationType = 4; \n string softwareVersionString = 5; \n uint32 cDVersionNumber = 6; \n uint32 softwareVersionCertificationStatus = 7; \n string date = 8; \n string reason = 9; \n string owner = 10 [(cosmos_proto.scalar) = \"cosmos.AddressString\"];\n repeated ComplianceHistoryItem history = 11; \n string programTypeVersion = 12;\n string cDCertificationId = 13;\n string familyId = 14;\n string supportedClusters = 15;\n string compliantPlatformUsed = 16;\n string compliantPlatformVersion = 17;\n string OSVersion = 18;\n string certificationRoute = 19;\n string programType = 20;\n string transport = 21;\n string parentChild = 22;\n \n}\n\n","new_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.compliance;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/compliance\/types\";\n\nimport \"compliance\/compliance_history_item.proto\";\nimport \"cosmos_proto\/cosmos.proto\";\n\nmessage ComplianceInfo {\n int32 vid = 1; \n int32 pid = 2; \n uint32 softwareVersion = 3; \n string certificationType = 4; \n string softwareVersionString = 5; \n uint32 cDVersionNumber = 6; \n uint32 softwareVersionCertificationStatus = 7; \n string date = 8; \n string reason = 9; \n string owner = 10 [(cosmos_proto.scalar) = \"cosmos.AddressString\"];\n repeated ComplianceHistoryItem history = 11;\n string cDCertificationId = 12;\n string certificationRoute = 13;\n string programType = 14;\n string programTypeVersion = 15;\n string compliantPlatformUsed = 16;\n string compliantPlatformVersion = 17;\n string transport = 18;\n string familyId = 19;\n string supportedClusters = 20;\n string OSVersion = 21;\n string parentChild = 22;\n \n}\n\n","subject":"Update sequence of the new flags","message":"Update sequence of the new flags\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger"} {"commit":"3f9a21d2f7e52eebe94d6bc167bf3bb7750b3f18","old_file":"tools\/smoke-tests\/generated-validation-tests\/src\/test\/proto\/spine\/test\/tools\/validate\/entity.proto","new_file":"tools\/smoke-tests\/generated-validation-tests\/src\/test\/proto\/spine\/test\/tools\/validate\/entity.proto","old_contents":"syntax = \"proto3\";\n\npackage spine.test.tools.validate;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package = \"io.spine.test.tools.validate\";\noption java_outer_classname = \"EntityProto\";\noption java_multiple_files = true;\n\nmessage Project {\n option (entity).kind = ENTITY;\n\n string id = 1;\n}\n\nmessage Task {\n option (entity).kind = ENTITY;\n\n string id = 1 [(required) = false];\n}\n","new_contents":"syntax = \"proto3\";\n\npackage spine.test.tools.validate;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package = \"io.spine.test.tools.validate\";\noption java_outer_classname = \"EntityProto\";\noption java_multiple_files = true;\n\n\/\/ An entity type.\n\/\/\n\/\/ By default, `id` is required.\n\/\/\nmessage Project {\n option (entity).kind = ENTITY;\n\n string id = 1;\n}\n\n\/\/ An entity type with a non-required ID.\n\/\/\n\/\/ The `id` field is explicitly non-required.\n\/\/\nmessage Task {\n option (entity).kind = ENTITY;\n\n string id = 1 [(required) = false];\n}\n","subject":"Add docs for test types","message":"Add docs for test types\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/base,SpineEventEngine\/base,SpineEventEngine\/base"} {"commit":"f068ee8b3b4e2b829cd8bc15b78f657fc3763d17","old_file":"tests\/map-proto.proto","new_file":"tests\/map-proto.proto","old_contents":"syntax = \"proto2\";\n\npackage map_test;\n\nmessage MapAll {\n message InnerMsg {\n optional string strval = 1;\n }\n enum InnerEnum {\n ONE = 0;\n TWO = 1;\n }\n map intmap = 1;\n map stringmap = 2;\n map msgmap = 3;\n map enummap = 4;\n}\n\nmessage MapProto {\n optional string strval = 1;\n map map_field = 2;\n optional int32 intval = 3;\n}\n\nmessage MapMessage {\n message ValMessage {\n optional string strval = 1;\n }\n map map_field = 1;\n}\n\nmessage MapEnum {\n enum MyEnum {\n ONE = 0;\n TWO = 1;\n THREE = 2;\n }\n optional int32 before = 1;\n map map_field = 2;\n optional int32 after = 3;\n}\n\nmessage NestedMap {\n optional string intval = 1;\n repeated MapProto subfield = 2;\n}\n","new_contents":"syntax = \"proto2\";\n\npackage map_test;\n\nmessage MapAll {\n message InnerMsg {\n optional string strval = 1;\n }\n enum InnerEnum {\n ONE = 0;\n TWO = 1;\n }\n map intmap = 1;\n map stringmap = 2;\n map msgmap = 3;\n map enummap = 4;\n}\n\nmessage MapProto {\n optional string strval = 1;\n map map_field = 2;\n optional int32 intval = 3;\n}\n\nmessage MapMessage {\n message ValMessage {\n optional string strval = 1;\n }\n map map_field = 1;\n}\n\nmessage MapEnum {\n enum MyEnum {\n ONE = 0;\n TWO = 1;\n THREE = 2;\n }\n optional int32 before = 1;\n map map_field = 2;\n optional int32 after = 3;\n}\n\nmessage NestedMap {\n optional string strval = 1;\n optional MapProto subfield = 2;\n}\n","subject":"Update nested map testing proto","message":"Update nested map testing proto\n\nThe name of the string field makes sense now. The message field\nis now optional instead of repeated, as this is sufficient for\nthe test.\n","lang":"Protocol Buffer","license":"mit","repos":"qitab\/cl-protobufs,qitab\/cl-protobufs"} {"commit":"4afbdf150fb6597a5c3cf8ff8bddd0872b5f1924","old_file":"oak\/oak_server.proto","new_file":"oak\/oak_server.proto","old_contents":"syntax = \"proto3\";\n\npackage oak;\n\nmessage InitiateComputationRequest {}\n\nmessage InitiateComputationResponse {}\n\nservice OakServer {\n rpc InitiateComputation(InitiateComputationRequest)\n returns (InitiateComputationResponse);\n}\n","new_contents":"syntax = \"proto3\";\n\npackage oak;\n\nmessage InitiateComputationRequest {\n bytes business_logic = 1;\n string expression = 2;\n}\n\nmessage InitiateComputationResponse {}\n\nservice OakServer {\n rpc InitiateComputation(InitiateComputationRequest)\n returns (InitiateComputationResponse);\n}\n","subject":"Add input fields to proto","message":"Add input fields to proto\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"project-oak\/oak,project-oak\/oak,project-oak\/oak,project-oak\/oak,project-oak\/oak,project-oak\/oak,project-oak\/oak"} {"commit":"406c2c88822d8a4513f25258c817935d699d15bd","old_file":"tensorflow\/core\/protobuf\/coordination_config.proto","new_file":"tensorflow\/core\/protobuf\/coordination_config.proto","old_contents":"syntax = \"proto3\";\n\npackage tensorflow;\n\noption go_package = \"github.com\/tensorflow\/tensorflow\/tensorflow\/go\/core\/protobuf\/for_core_protos_go_proto\";\n\n\/\/ Coordination service configuration parameters.\n\/\/ The system picks appropriate values for fields that are not set.\nmessage CoordinationServiceConfig {\n \/\/ Type of coordination service implementation to enable.\n \/\/ For example, setting the service type as \"standalone\" starts a service\n \/\/ instance on the leader task to provide the coordination services such as\n \/\/ heartbeats and consistent key-value store.\n string service_type = 1;\n\n \/\/ Address where the coordination service instance is hosted.\n string service_leader = 2;\n\n \/\/ Whether to enable the health check mechanism.\n bool enable_health_check = 3;\n\n \/\/ Maximum wait time for all members in the cluster to be registered.\n int64 cluster_register_timeout_in_ms = 4;\n\n \/\/ Heartbeat timeout, if a worker does not record heartbeat in this time\n \/\/ window, it will be considered disconnected.\n int64 heartbeat_timeout_in_ms = 5;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage tensorflow;\n\noption go_package = \"github.com\/tensorflow\/tensorflow\/tensorflow\/go\/core\/protobuf\/for_core_protos_go_proto\";\n\n\/\/ Coordination service configuration parameters.\n\/\/ The system picks appropriate values for fields that are not set.\nmessage CoordinationServiceConfig {\n \/\/ Type of coordination service implementation to enable.\n \/\/ For example, setting the service type as \"standalone\" starts a service\n \/\/ instance on the leader task to provide the coordination services such as\n \/\/ heartbeats and consistent key-value store.\n string service_type = 1;\n\n \/\/ Address where the coordination service instance is hosted.\n string service_leader = 2;\n\n \/\/ Whether to enable the health check mechanism.\n bool enable_health_check = 3;\n\n \/\/ Maximum wait time for all members in the cluster to be registered.\n int64 cluster_register_timeout_in_ms = 4;\n\n \/\/ Heartbeat timeout, if a worker does not record heartbeat in this time\n \/\/ window, it will be considered disconnected.\n int64 heartbeat_timeout_in_ms = 5;\n\n \/\/ The list of jobs that partipate in the coordination service. If empty, all\n \/\/ jobs will be included in the coordination service by default.\n repeated string coordinated_jobs = 6;\n}\n","subject":"Support specifying a list of jobs to be included in the coordination service.","message":"Support specifying a list of jobs to be included in the coordination service.\n\nPiperOrigin-RevId: 403785209\nChange-Id: I5a20bcbb3273cf07f87a1a4dc7608e6c6ca8abdb\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"yongtang\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,Intel-tensorflow\/tensorflow,paolodedios\/tensorflow,gautam1858\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,Intel-Corporation\/tensorflow,karllessard\/tensorflow,Intel-Corporation\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,yongtang\/tensorflow,Intel-tensorflow\/tensorflow,gautam1858\/tensorflow,yongtang\/tensorflow,karllessard\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,tensorflow\/tensorflow,yongtang\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,Intel-tensorflow\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow,Intel-Corporation\/tensorflow,paolodedios\/tensorflow,Intel-tensorflow\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,gautam1858\/tensorflow,paolodedios\/tensorflow,gautam1858\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,Intel-Corporation\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,yongtang\/tensorflow,gautam1858\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-pywrap_tf_optimizer,yongtang\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,yongtang\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,yongtang\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,karllessard\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,gautam1858\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,gautam1858\/tensorflow,karllessard\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,yongtang\/tensorflow,tensorflow\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,tensorflow\/tensorflow,tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,tensorflow\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,paolodedios\/tensorflow,gautam1858\/tensorflow,yongtang\/tensorflow,yongtang\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-pywrap_saved_model,karllessard\/tensorflow,Intel-Corporation\/tensorflow,karllessard\/tensorflow,karllessard\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-pywrap_saved_model,gautam1858\/tensorflow,gautam1858\/tensorflow,Intel-tensorflow\/tensorflow,paolodedios\/tensorflow,Intel-Corporation\/tensorflow,Intel-Corporation\/tensorflow"} {"commit":"1d9417f607be5503eee95fdb109c0d906fe6b5f5","old_file":"mixer\/api\/v1\/service.proto","new_file":"mixer\/api\/v1\/service.proto","old_contents":"\/\/ Copyright 2016 Google Inc.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage istio.mixer.v1;\n\nimport \"mixer\/v1\/check.proto\";\nimport \"mixer\/v1\/report.proto\";\nimport \"mixer\/v1\/quota.proto\";\n\n\/\/ The Istio Mixer API\nservice Mixer {\n \/\/ Checks preconditions before performing an operation.\n \/\/ The preconditions enforced depend on the set of supplied attributes\n \/\/ and the active configuration.\n rpc Check(stream CheckRequest) returns (stream CheckResponse) {}\n\n \/\/ Reports telemetry, such as logs and metrics.\n \/\/ The reported information depends on the set of supplied attributes\n \/\/ and the active configuration.\n rpc Report(stream ReportRequest) returns (stream ReportResponse) {}\n\n \/\/ Quota allocates and releases quota.\n rpc Quota(stream QuotaRequest) returns (stream QuotaResponse) {}\n}\n","new_contents":"\/\/ Copyright 2016 Google Inc.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage istio.mixer.v1;\n\nimport \"mixer\/api\/v1\/check.proto\";\nimport \"mixer\/api\/v1\/report.proto\";\nimport \"mixer\/api\/v1\/quota.proto\";\n\n\/\/ The Istio Mixer API\nservice Mixer {\n \/\/ Checks preconditions before performing an operation.\n \/\/ The preconditions enforced depend on the set of supplied attributes\n \/\/ and the active configuration.\n rpc Check(stream CheckRequest) returns (stream CheckResponse) {}\n\n \/\/ Reports telemetry, such as logs and metrics.\n \/\/ The reported information depends on the set of supplied attributes\n \/\/ and the active configuration.\n rpc Report(stream ReportRequest) returns (stream ReportResponse) {}\n\n \/\/ Quota allocates and releases quota.\n rpc Quota(stream QuotaRequest) returns (stream QuotaResponse) {}\n}\n","subject":"Fix references to other protos, again...","message":"Fix references to other protos, again...\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"istio\/api,geeknoid\/api,rshriram\/api,cloudfoundry-attic\/api,geeknoid\/api,geeknoid\/api,cloudfoundry-attic\/api,cloudfoundry-attic\/api,cloudfoundry-attic\/api,istio\/api,cloudfoundry-attic\/api,rshriram\/api,rshriram\/api,istio\/api,geeknoid\/api,istio\/api"} {"commit":"ff90710c2eed819641d616a4e3f025363eab4ddf","old_file":"protobuf\/cgroup.proto","new_file":"protobuf\/cgroup.proto","old_contents":"message cgroup_dir_entry {\n\trequired string \t\tpath\t\t= 1;\n\trepeated cgroup_dir_entry\tchildren \t= 4;\n}\n\nmessage cg_controller_entry {\n\trequired uint32\t\t\tid\t\t= 1;\n\trepeated string\t\t\tcontrollers\t= 2;\n\trepeated cgroup_dir_entry\tdirs\t\t= 3;\n}\n\nmessage cg_member_entry {\n\trequired string name\t= 1;\n\trequired string path\t= 2;\n}\n\nmessage cg_set_entry {\n\trequired uint32\t\t\tid\t= 1;\n\trepeated cg_member_entry\tctls\t= 2;\n}\n\nmessage cgroup_entry {\n\trepeated cg_set_entry\t\tsets\t\t= 1;\n\trepeated cg_controller_entry\tcontrollers\t= 2;\n}\n","new_contents":"message cgroup_dir_entry {\n\trequired string \t\tpath\t\t= 1;\n\trepeated cgroup_dir_entry\tchildren \t= 4;\n}\n\nmessage cg_controller_entry {\n\trepeated string\t\t\tcontrollers\t= 1;\n\trepeated cgroup_dir_entry\tdirs\t\t= 2;\n}\n\nmessage cg_member_entry {\n\trequired string name\t= 1;\n\trequired string path\t= 2;\n}\n\nmessage cg_set_entry {\n\trequired uint32\t\t\tid\t= 1;\n\trepeated cg_member_entry\tctls\t= 2;\n}\n\nmessage cgroup_entry {\n\trepeated cg_set_entry\t\tsets\t\t= 1;\n\trepeated cg_controller_entry\tcontrollers\t= 2;\n}\n","subject":"Remove unused id field from controllers message","message":"cg: Remove unused id field from controllers message\n\nSigned-off-by: Pavel Emelyanov \nAcked-by: Tycho Andersen <10c18fcb898ee6b17d6575d444b125d10b3f4d6a@canonical.com>\n","lang":"Protocol Buffer","license":"lgpl-2.1","repos":"gonkulator\/criu,sdgdsffdsfff\/criu,LK4D4\/criu,AuthenticEshkinKot\/criu,gonkulator\/criu,svloyso\/criu,AuthenticEshkinKot\/criu,biddyweb\/criu,gablg1\/criu,wtf42\/criu,svloyso\/criu,wtf42\/criu,gonkulator\/criu,tych0\/criu,gablg1\/criu,kawamuray\/criu,ldu4\/criu,sdgdsffdsfff\/criu,gonkulator\/criu,KKoukiou\/criu-remote,kawamuray\/criu,biddyweb\/criu,marcosnils\/criu,biddyweb\/criu,eabatalov\/criu,marcosnils\/criu,efiop\/criu,wtf42\/criu,rentzsch\/criu,biddyweb\/criu,eabatalov\/criu,gablg1\/criu,KKoukiou\/criu-remote,sdgdsffdsfff\/criu,KKoukiou\/criu-remote,ldu4\/criu,KKoukiou\/criu-remote,kawamuray\/criu,svloyso\/criu,wtf42\/criu,LK4D4\/criu,tych0\/criu,kawamuray\/criu,ldu4\/criu,gonkulator\/criu,AuthenticEshkinKot\/criu,AuthenticEshkinKot\/criu,ldu4\/criu,marcosnils\/criu,LK4D4\/criu,LK4D4\/criu,rentzsch\/criu,fbocharov\/criu,rentzsch\/criu,marcosnils\/criu,tych0\/criu,kawamuray\/criu,kawamuray\/criu,ldu4\/criu,AuthenticEshkinKot\/criu,fbocharov\/criu,tych0\/criu,svloyso\/criu,sdgdsffdsfff\/criu,tych0\/criu,LK4D4\/criu,fbocharov\/criu,marcosnils\/criu,tych0\/criu,biddyweb\/criu,efiop\/criu,fbocharov\/criu,wtf42\/criu,svloyso\/criu,gablg1\/criu,ldu4\/criu,rentzsch\/criu,biddyweb\/criu,fbocharov\/criu,LK4D4\/criu,KKoukiou\/criu-remote,rentzsch\/criu,gablg1\/criu,eabatalov\/criu,eabatalov\/criu,gonkulator\/criu,efiop\/criu,gablg1\/criu,efiop\/criu,svloyso\/criu,eabatalov\/criu,sdgdsffdsfff\/criu,KKoukiou\/criu-remote,rentzsch\/criu,AuthenticEshkinKot\/criu,efiop\/criu,fbocharov\/criu,sdgdsffdsfff\/criu,efiop\/criu,wtf42\/criu,eabatalov\/criu,marcosnils\/criu"} {"commit":"203b73df8b385533a65fb4d96bb2ad0f61984464","old_file":"protobuf\/DataSource.proto","new_file":"protobuf\/DataSource.proto","old_contents":"package chevalier;\n\n\/\/ This is a dummy protobuf for testing purposes; the actual update\n\/\/ interface hasn't yet been defined.\n\nmessage DataSourceBurst {\n repeated DataSource sources = 1;\n}\n\nmessage DataSource {\n message Tag {\n required string field = 1;\n required string value = 2;\n }\n repeated Tag source = 1;\n}\n\n\/\/ vim: set expandtab tabstop=8:\n","new_contents":"package chevalier;\n\n\/\/ Returned as a response to the chevalier client.\nmessage DataSourceBurst {\n repeated DataSource sources = 1;\n optional string error = 2;\n}\n\nmessage DataSource {\n message Tag {\n required string field = 1;\n required string value = 2;\n }\n repeated Tag source = 1;\n}\n\n\/\/ vim: set expandtab tabstop=8:\n","subject":"Add error field to Burst protobuf","message":"Add error field to Burst protobuf\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"anchor\/chevalier,anchor\/chevalier"} {"commit":"448eaa5113f8024136f150a265d335443849e4b7","old_file":"common\/rpc\/TestService.proto","new_file":"common\/rpc\/TestService.proto","old_contents":"\/*\n * This library is free software; you can redistribute it and\/or\n * modify it under the terms of the GNU Lesser General Public\n * License as published by the Free Software Foundation; either\n * version 2.1 of the License, or (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n *\n * TestService.proto\n * Defines a simple service for testing the RpcChannel\n * Copyright (C) 2005 - 2008 Simon Newton\n *\/\n\npackage ola.rpc;\n\noption py_generic_services = true;\n\nmessage EchoRequest {\n required string data = 1;\n}\n\nmessage EchoReply {\n required string data = 1;\n}\n\nmessage STREAMING_NO_RESPONSE {\n\n}\n\nservice TestService {\n rpc Echo (EchoRequest) returns (EchoReply);\n rpc FailedEcho (EchoRequest) returns (EchoReply);\n rpc Stream (EchoRequest) returns (STREAMING_NO_RESPONSE);\n}\n","new_contents":"\/*\n * This library is free software; you can redistribute it and\/or\n * modify it under the terms of the GNU Lesser General Public\n * License as published by the Free Software Foundation; either\n * version 2.1 of the License, or (at your option) any later version.\n *\n * This library is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this library; if not, write to the Free Software\n * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA\n *\n * TestService.proto\n * Defines a simple service for testing the RpcChannel\n * Copyright (C) 2005 - 2008 Simon Newton\n *\/\n\npackage ola.rpc;\n\noption cc_generic_services = false;\noption py_generic_services = true;\n\nmessage EchoRequest {\n required string data = 1;\n}\n\nmessage EchoReply {\n required string data = 1;\n}\n\nmessage STREAMING_NO_RESPONSE {\n\n}\n\nservice TestService {\n rpc Echo (EchoRequest) returns (EchoReply);\n rpc FailedEcho (EchoRequest) returns (EchoReply);\n rpc Stream (EchoRequest) returns (STREAMING_NO_RESPONSE);\n}\n","subject":"Fix the RPC protobuf test","message":"Fix the RPC protobuf test\n","lang":"Protocol Buffer","license":"lgpl-2.1","repos":"nightrune\/ola,ld3300\/ola,nightrune\/ola,nightrune\/ola,nip3o\/open-lighting,nightrune\/ola,nip3o\/open-lighting,nightrune\/ola,nip3o\/open-lighting,ld3300\/ola,nip3o\/open-lighting,ld3300\/ola,ld3300\/ola,ld3300\/ola,nip3o\/open-lighting,ld3300\/ola,nightrune\/ola,nightrune\/ola,ld3300\/ola,nip3o\/open-lighting"} {"commit":"af70131ad8a48840675111199fc816228853c019","old_file":"tentacle-message.proto","new_file":"tentacle-message.proto","old_contents":"syntax = \"proto2\";\nenum TentacleMessageTopic {\n config = 0;\n action = 1;\n authentication = 2;\n}\n\nenum Action {\n digitalRead = 0;\n digitalReadPullup = 1;\n digitalWrite = 2;\n analogRead = 3;\n analogReadPullup = 4;\n analogWrite = 5;\n servoWrite = 6;\n pwmWrite = 7;\n i2cWrite = 8;\n i2cRead = 9;\n ignore = 10;\n}\n\nmessage TentacleMessage {\n optional TentacleMessageTopic topic = 1;\n optional bool response = 2;\n repeated Pin pins = 3;\n optional MeshbluAuthentication authentication = 4;\n}\n\nmessage Pin {\n optional uint32 number = 1;\n optional uint32 value = 2;\n optional Action action = 3;\n}\n\nmessage MeshbluAuthentication {\n optional string uuid = 1;\n optional string token = 2;\n}\n","new_contents":"syntax = \"proto2\";\nenum TentacleMessageTopic {\n config = 0;\n action = 1;\n authentication = 2;\n}\n\nenum Action {\n digitalRead = 0;\n digitalReadPullup = 1;\n digitalWrite = 2;\n analogRead = 3;\n analogReadPullup = 4;\n analogWrite = 5;\n servoWrite = 6;\n pwmWrite = 7;\n i2cWrite = 8;\n i2cRead = 9;\n ignore = 10;\n}\n\nmessage TentacleMessage {\n optional uint32 version = 1;\n optional TentacleMessageTopic topic = 2;\n optional bool response = 3;\n repeated Pin pins = 4;\n optional MeshbluAuthentication authentication = 5;\n}\n\nmessage Pin {\n optional uint32 number = 1;\n optional uint32 value = 2;\n optional Action action = 3;\n}\n\nmessage MeshbluAuthentication {\n optional string uuid = 1;\n optional string token = 2;\n}\n","subject":"Add version to Tentacle Message format","message":"Add version to Tentacle Message format\n","lang":"Protocol Buffer","license":"mit","repos":"octoblu\/tentacle-protocol-buffer,octoblu\/tentacle-protocol-buffer"} {"commit":"9c813476bd36de70a5738c72e784f123ecea16af","old_file":"envelope.proto","new_file":"envelope.proto","old_contents":"syntax = \"proto3\";\n\npackage io.intoto;\n\n\/\/ An authenticated message of arbitrary type.\nmessage Envelope {\n \/\/ Message to be signed. (In JSON, this is encoded as base64.)\n \/\/ REQUIRED.\n bytes payload = 1;\n\n \/\/ String unambiguously identifying how to interpret payload.\n \/\/ REQUIRED.\n string payloadType = 2;\n\n \/\/ Signature over:\n \/\/ le64(2) || le64(len(utf8(payloadType))) || utf8(payloadType) ||\n \/\/ le64(len(payload)) || payload\n \/\/ where:\n \/\/ le64(n) := 64-bit little-endian encoding of integer `n`, 0 <= n < 2^63\n \/\/ len(s) := number of octets in byte sequence `s`\n \/\/ utf8(s) := UTF-8 encoding of unicode string `s`\n \/\/ REQUIRED (length >= 1).\n repeated Signature signatures = 3;\n}\n\nmessage Signature {\n \/\/ Signature itself. (In JSON, this is encoded as base64.)\n \/\/ REQUIRED.\n bytes sig = 1;\n\n \/\/ *Unauthenticated* hint identifying which public key was used.\n \/\/ OPTIONAL.\n string keyid = 2;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage io.intoto;\n\n\/\/ An authenticated message of arbitrary type.\nmessage Envelope {\n \/\/ Message to be signed. (In JSON, this is encoded as base64.)\n \/\/ REQUIRED.\n bytes payload = 1;\n\n \/\/ String unambiguously identifying how to interpret payload.\n \/\/ REQUIRED.\n string payloadType = 2;\n\n \/\/ Signature over:\n \/\/ PAE(type, body)\n \/\/ Where PAE is defined as:\n \/\/ PAE(type, body) = \"DSSEv1\" + SP + LEN(type) + SP + type + SP + LEN(body) + SP + body\n \/\/ + = concatenation\n \/\/ SP = ASCII space [0x20]\n \/\/ \"DSSEv1\" = ASCII [0x44, 0x53, 0x53, 0x45, 0x76, 0x31]\n \/\/ LEN(s) = ASCII decimal encoding of the byte length of s, with no leading zeros\n \/\/ REQUIRED (length >= 1).\n repeated Signature signatures = 3;\n}\n\nmessage Signature {\n \/\/ Signature itself. (In JSON, this is encoded as base64.)\n \/\/ REQUIRED.\n bytes sig = 1;\n\n \/\/ *Unauthenticated* hint identifying which public key was used.\n \/\/ OPTIONAL.\n string keyid = 2;\n}\n","subject":"Update proto signature comment to use DSSEv1 ASCII PAE encoding","message":"Update proto signature comment to use DSSEv1 ASCII PAE encoding","lang":"Protocol Buffer","license":"apache-2.0","repos":"secure-systems-lab\/dsse"} {"commit":"300340c617df12293a333a323b0c8d2c1c093bce","old_file":"src\/STS.proto","new_file":"src\/STS.proto","old_contents":"message STSup {\n\tmessage Lobby {\n\t\tenum ConnectionCommand {\n\t\t\tCONNECT = 0;\n\t\t\tDISCONNECT = 1;\t\t\t\n\t\t}\n\t\n\t\tmessage Connection {\n\t\t\toptional ConnectionCommand connectionCommand = 1;\n\t\t\toptional String host = 2;\n\t\t\toptional uint32 port = 3;\n\t\t}\n\t\n\t\toptional bool readyState = 1;\n\t\toptional Connection connection = 2;\n\t}\n\t\n\tmessage RCon {\n\t\toptional string command = 1;\n\t}\n\t\n\toptional Lobby lobby = 1;\n\toptional RCon rcon = 2;\n}\n\nmessage STSdown {\n\t\/\/ The reset message would ideally just be a tag, but protocol buffers don't seem to do this.\n\tmessage Reset {\n\t\toptional uint32 reset = 1;\n\t}\n\n\toptional Reset = 1;\n}","new_contents":"message STSup {\n\tmessage Lobby {\n\t\tenum ConnectionCommand {\n\t\t\tCONNECT = 0;\n\t\t\tDISCONNECT = 1;\t\t\t\n\t\t}\n\t\n\t\tmessage Connection {\n\t\t\toptional ConnectionCommand connectionCommand = 1;\n\t\t\toptional string host = 2;\n\t\t\toptional uint32 port = 3;\n\t\t}\n\t\n\t\toptional bool readyState = 1;\n\t\toptional Connection connection = 2;\n\t}\n\t\n\tmessage RCon {\n\t\toptional string command = 1;\n\t}\n\t\n\toptional Lobby lobby = 1;\n\toptional RCon rcon = 2;\n}\n\nmessage STSdown {\n\t\/\/ The reset message would ideally just be a tag, but protocol buffers don't seem to do this.\n\tmessage Reset {\n\t\toptional uint32 reset = 1;\n\t}\n\n\toptional Reset reset = 1;\n}\n","subject":"Fix the syntax so the .proto file is actually valid.","message":"Fix the syntax so the .proto file is actually valid.\n","lang":"Protocol Buffer","license":"bsd-2-clause","repos":"LSFN\/Console-PC,LSFN\/Console-PC,LSFN\/Console-PC-Java-Old,LSFN\/Console-PC-Java-Old"} {"commit":"b61f5482d4f192dd784e9d8360938704670ce8d1","old_file":"rpc\/grpc\/types.proto","new_file":"rpc\/grpc\/types.proto","old_contents":"syntax = \"proto3\";\npackage core_grpc;\n\nimport \"github.com\/tendermint\/abci\/types\/types.proto\";\n\n\/\/----------------------------------------\n\/\/ Message types\n\n\/\/----------------------------------------\n\/\/ Request types\n\nmessage RequestBroadcastTx {\n bytes tx = 1;\n}\n\n\/\/----------------------------------------\n\/\/ Response types\n\nmessage ResponseBroadcastTx{\n types.ResponseCheckTx check_tx = 1;\n types.ResponseDeliverTx deliver_tx = 2;\n}\n\n\/\/----------------------------------------\n\/\/ Service Definition\n\nservice BroadcastAPI {\n rpc BroadcastTx(RequestBroadcastTx) returns (ResponseBroadcastTx) ;\n}\n","new_contents":"syntax = \"proto3\";\npackage core_grpc;\n\nimport \"github.com\/tendermint\/abci\/blob\/master\/types\/types.proto\";\n\n\/\/----------------------------------------\n\/\/ Message types\n\n\/\/----------------------------------------\n\/\/ Request types\n\nmessage RequestBroadcastTx {\n bytes tx = 1;\n}\n\n\/\/----------------------------------------\n\/\/ Response types\n\nmessage ResponseBroadcastTx{\n types.ResponseCheckTx check_tx = 1;\n types.ResponseDeliverTx deliver_tx = 2;\n}\n\n\/\/----------------------------------------\n\/\/ Service Definition\n\nservice BroadcastAPI {\n rpc BroadcastTx(RequestBroadcastTx) returns (ResponseBroadcastTx) ;\n}\n","subject":"Fix broken reference to ABCI","message":"Fix broken reference to ABCI","lang":"Protocol Buffer","license":"apache-2.0","repos":"tendermint\/tendermint,tendermint\/tendermint,tendermint\/tendermint,tendermint\/tendermint"} {"commit":"2a10e1784ecc7926e5f3a285d5788c9bf900d81e","old_file":"kythe\/proto\/java.proto","new_file":"kythe\/proto\/java.proto","old_contents":"\/*\n * Copyright 2015 Google Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nsyntax = \"proto3\";\n\npackage kythe.proto;\noption java_package = \"com.google.devtools.kythe.proto\";\n\n\/\/ Java-specific details used in a CompilationUnit.\n\/\/ Its type is \"kythe.io\/proto\/kythe.proto.JavaDetails\".\nmessage JavaDetails {\n \/\/ List of classpaths used in the compilation.\n repeated string classpath = 1;\n\n \/\/ List of sourcepaths used in the compilation.\n repeated string sourcepath = 2;\n}\n","new_contents":"\/*\n * Copyright 2015 Google Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nsyntax = \"proto3\";\n\npackage kythe.proto;\noption java_package = \"com.google.devtools.kythe.proto\";\n\n\/\/ Java-specific details used in a CompilationUnit.\n\/\/ Its type is \"kythe.io\/proto\/kythe.proto.JavaDetails\".\nmessage JavaDetails {\n \/\/ List of classpaths used in the compilation.\n repeated string classpath = 1;\n\n \/\/ List of sourcepaths used in the compilation.\n repeated string sourcepath = 2;\n\n \/\/ List of bootclasspaths used in the compilation.\n repeated string bootclasspath = 3;\n\n \/\/ List of additional JavaC arguments identified by the extractor as\n \/\/ necessary for analysis, but not included in the argument list.\n repeated string extra_javacopts = 10;\n}\n","subject":"Add JavaC flags and bootclasspath to JavaDetails.","message":"Add JavaC flags and bootclasspath to JavaDetails.\n\nSummary:\nAllow the extractor record boot classpath information, as well as any\nadditional JavaC options required for analysis that are not part of the\nbuild config.\n\nReviewers: salguarnieri, #core_team\n\nReviewed By: salguarnieri, #core_team\n\nDifferential Revision: https:\/\/phabricator-dot-kythe-repo.appspot.com\/D1088\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"benjyw\/kythe,bzz\/kythe,kythe\/kythe,kythe\/kythe,legrosbuffle\/kythe,benjyw\/kythe,benjyw\/kythe,bzz\/kythe,bzz\/kythe,legrosbuffle\/kythe,kythe\/kythe,benjyw\/kythe,bzz\/kythe,benjyw\/kythe,legrosbuffle\/kythe,benjyw\/kythe,kythe\/kythe,benjyw\/kythe,benjyw\/kythe,bzz\/kythe,benjyw\/kythe,bzz\/kythe,kythe\/kythe,bzz\/kythe,legrosbuffle\/kythe,bzz\/kythe,legrosbuffle\/kythe,benjyw\/kythe,legrosbuffle\/kythe,legrosbuffle\/kythe,bzz\/kythe,benjyw\/kythe,legrosbuffle\/kythe,kythe\/kythe,legrosbuffle\/kythe,kythe\/kythe,benjyw\/kythe,legrosbuffle\/kythe,kythe\/kythe,bzz\/kythe,bzz\/kythe,legrosbuffle\/kythe,bzz\/kythe,kythe\/kythe,kythe\/kythe,kythe\/kythe"} {"commit":"3f78b3ed81666378d07861979bea15327ed7af71","old_file":"proto\/validator\/rejected_node.proto","new_file":"proto\/validator\/rejected_node.proto","old_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.validator;\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/validator\/types\";\n\nmessage RejectedNode {\n string owner = 1; \n repeated string approvals = 2; \n \n}\n\n","new_contents":"syntax = \"proto3\";\npackage zigbeealliance.distributedcomplianceledger.validator;\n\nimport \"cosmos_proto\/cosmos.proto\";\nimport \"validator\/grant.proto\";\n\noption go_package = \"github.com\/zigbee-alliance\/distributed-compliance-ledger\/x\/validator\/types\";\n\nmessage RejectedNode {\n string address = 1 [(cosmos_proto.scalar) = \"cosmos.AddressString\"]; \n string creator = 2 [(cosmos_proto.scalar) = \"cosmos.AddressString\"];\n repeated Grant approvals = 3; \n repeated Grant rejectApprovals = 4; \n}\n\n","subject":"Add a new entity RejectedNode","message":"Add a new entity RejectedNode\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger,zigbee-alliance\/distributed-compliance-ledger"} {"commit":"2851389f3ea4994c87b9cd93c0c5ab5f64147b44","old_file":"protobuf-test\/src\/common\/v2\/test_well_known_types_pb.proto","new_file":"protobuf-test\/src\/common\/v2\/test_well_known_types_pb.proto","old_contents":"syntax = \"proto2\";\n\nimport \"google\/protobuf\/any.proto\";\nimport \"google\/protobuf\/api.proto\";\nimport \"google\/protobuf\/duration.proto\";\nimport \"google\/protobuf\/empty.proto\";\nimport \"google\/protobuf\/field_mask.proto\";\nimport \"google\/protobuf\/source_context.proto\";\nimport \"google\/protobuf\/struct.proto\";\nimport \"google\/protobuf\/timestamp.proto\";\nimport \"google\/protobuf\/type.proto\";\nimport \"google\/protobuf\/wrappers.proto\";\n\nmessage UsesWellKnownTypes {\n optional .google.protobuf.NullValue null_value = 3;\n \/\/ remaining types are covered by `unittest_well_known_types.proto`\n}\n","new_contents":"syntax = \"proto2\";\n\nimport \"google\/protobuf\/any.proto\";\nimport \"google\/protobuf\/api.proto\";\nimport \"google\/protobuf\/duration.proto\";\nimport \"google\/protobuf\/empty.proto\";\nimport \"google\/protobuf\/field_mask.proto\";\nimport \"google\/protobuf\/source_context.proto\";\nimport \"google\/protobuf\/struct.proto\";\nimport \"google\/protobuf\/timestamp.proto\";\nimport \"google\/protobuf\/type.proto\";\nimport \"google\/protobuf\/wrappers.proto\";\n\n\/\/ generate accessors to make sure accessors are generated correctly\nimport \"rustproto.proto\";\noption (rustproto.generate_accessors_all) = true;\n\nmessage UsesWellKnownTypes {\n optional .google.protobuf.NullValue null_value = 3;\n \/\/ remaining types are covered by `unittest_well_known_types.proto`\n}\n","subject":"Test well known types are compatible with accessors","message":"Test well known types are compatible with accessors\n","lang":"Protocol Buffer","license":"mit","repos":"stepancheg\/rust-protobuf,stepancheg\/rust-protobuf,stepancheg\/rust-protobuf"} {"commit":"65232ee28edfeb84071c7a4ffc9d2428c25bfd6a","old_file":"proto\/constant_heading_depth_controller_config.proto","new_file":"proto\/constant_heading_depth_controller_config.proto","old_contents":"syntax = \"proto2\";\n\nimport \"position_controller_config.proto\";\n\nmessage ConstantHeadingDepthControllerConfig {\n \/**\n * @brief Gain to convert radial position error to velocity\n *\/\n optional double radial_gain = 1 [ default = 0.1 ];\n \/**\n * @brief Gain to convert tangential position error to velocity\n *\/\n optional double tangential_gain = 2 [ default = 0.1 ];\n \/**\n * @brief Gain to convert yaw error to yaw rate\n *\/\n optional double yaw_gain = 3 [ default = 0.1 ];\n \/**\n * @brief Maximum velocity to be commanded in m\/s\n *\/\n optional double max_velocity = 4 [ default = 1 ];\n \/**\n * @brief Maximum yaw rate to be commanded in rad\/s\n *\/\n optional double max_yaw_rate = 5 [ default = 0.1 ];\n \/**\n * @brief Config about position tolerance, yaw tolerance\n *\/\n optional PositionControllerConfig position_controller_config = 6;\n}\n","new_contents":"syntax = \"proto2\";\n\nimport \"position_controller_config.proto\";\n\nmessage ConstantHeadingDepthControllerConfig {\n \/**\n * @brief Gain to convert radial position error to velocity\n *\/\n optional double radial_gain = 1 [ default = 0.1 ];\n \/**\n * @brief Gain to convert tangential position error to velocity\n *\/\n optional double tangential_gain = 2 [ default = 0.1 ];\n \/**\n * @brief Gain to convert yaw error to yaw rate\n *\/\n optional double yaw_gain = 3 [ default = 0.1 ];\n \/**\n * @brief Maximum velocity to be commanded in m\/s\n *\/\n optional double max_velocity = 4 [ default = 1 ];\n \/**\n * @brief Minimum velocity to be commanded in m\/s\n *\/\n optional double min_velocity = 5 [ default = 0.0 ];\n \/**\n * @brief Maximum yaw rate to be commanded in rad\/s\n *\/\n optional double max_yaw_rate = 6 [ default = 0.1 ];\n \/**\n * @brief Config about position tolerance, yaw tolerance\n *\/\n optional PositionControllerConfig position_controller_config = 7;\n}\n","subject":"Add min velocity to proto","message":"Add min velocity to proto\n","lang":"Protocol Buffer","license":"mpl-2.0","repos":"jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy,jhu-asco\/aerial_autonomy"} {"commit":"097dc60c8ba84b0f4552bf80d8135039c48204b1","old_file":"prototest\/report\/report.proto","new_file":"prototest\/report\/report.proto","old_contents":"\/\/\n\/\/ The report.proto file defines the protocol buffer messages used for reporting\n\/\/ nodes to a server.\n\/\/\nsyntax = \"proto3\";\n\npackage report;\n\nimport \"google\/protobuf\/timestamp.proto\";\n\n\/\/ Set some options necessary to generate .java classes from the .proto.\noption java_multiple_files = true;\noption java_package = \"me.hkjn.prototest.report\";\noption java_outer_classname = \"Report\";\n\n\/\/ The request message.\nmessage Request {\n string name = 1;\n\tgoogle.protobuf.Timestamp ts = 2;\n\tmap info = 3;\n}\n\n\/\/ The response message.\nmessage Response {\n string message = 1;\n}\n\n\/\/ The Report service definition.\nservice Report {\n \/\/ Send report to server.\n rpc Send (Request) returns (Response) {}\n}\n","new_contents":"\/\/\n\/\/ The report.proto file defines the protocol buffer messages used for reporting\n\/\/ nodes to a server.\n\/\/\nsyntax = \"proto3\";\n\npackage report;\n\nimport \"google\/protobuf\/timestamp.proto\";\n\n\/\/ Set some options necessary to generate .java classes from the .proto.\noption java_multiple_files = true;\noption java_package = \"me.hkjn.prototest.report\";\noption java_outer_classname = \"Report\";\n\n\/\/ ReportRequest describes the request to report in from a client.\nmessage ReportRequest {\n\tstring name = 1;\n\tgoogle.protobuf.Timestamp ts = 2;\n\tmap info = 3;\n}\n\n\/\/ ReportResponse describes the response from the server when a client reports in.\nmessage ReportResponse {\n\tstring message = 1;\n}\n\n\/\/ InfoRequest describes a request to look up info on known clients.\nmessage InfoRequest {}\n\n\/\/ InfoResponse describes a response for info on known clients.\nmessage InfoResponse {\n \/\/ The info field describes each known client and their info.\n map> = 1;\n}\n\n\/\/ The Report service definition.\nservice Report {\n\t\/\/ Send report to server.\n\trpc Send(ReportRequest) returns (ReportResponse) {}\n\t\/\/ Query for info on known clients.\n\trpc Info(InfoRequest) returns (InfoResponse) {}\n}\n\n","subject":"Add experimental Info() API (not recompiled)","message":"Add experimental Info() API (not recompiled)\n","lang":"Protocol Buffer","license":"mit","repos":"hkjn\/junk,hkjn\/junk,hkjn\/junk,hkjn\/junk,hkjn\/junk"} {"commit":"814214e9860c832fa66ff911a56332217f724d22","old_file":"2016\/grpc-stringdb\/stringdb.proto","new_file":"2016\/grpc-stringdb\/stringdb.proto","old_contents":"\/\/ gRPC service definition for a \"string database\", with string key\/value pairs\n\/\/ kept on the server.\n\/\/\n\/\/ Eli Bendersky [http:\/\/eli.thegreenplace.net]\n\/\/ This code is in the public domain.\nsyntax = \"proto3\";\n\npackage stringdb;\n\nservice StringDb {\n \/\/ Get the value stored on the server for a given key\n rpc GetValue (GetValueRequest) returns (GetValueReply) {}\n\n \/\/ Set the server's value for a given key\n rpc SetValue (SetValueRequest) returns (SetValueReply) {}\n\n \/\/ Count the size of the server's value for a given key\n rpc CountValue (CountValueRequest) returns (CountValueReply) {}\n}\n\nmessage GetValueRequest {\n string key = 1;\n}\n\nmessage GetValueReply {\n \/\/ Empty string returned when key not found on the server.\n string value = 1;\n}\n\nmessage SetValueRequest {\n string key = 1;\n string value = 2;\n}\n\nmessage SetValueReply {\n \/\/ Returns the value.\n string value = 1;\n}\n\nmessage CountValueRequest {\n string key = 1;\n}\n\nmessage CountValueReply {\n \/\/ Returns the size of the value, in bytes. If key isn't found on the server,\n \/\/ returns -1.\n int64 count = 1;\n}\n","new_contents":"\/\/ gRPC service definition for a \"string database\", with string key\/value pairs\n\/\/ kept on the server.\n\/\/\n\/\/ Eli Bendersky [http:\/\/eli.thegreenplace.net]\n\/\/ This code is in the public domain.\nsyntax = \"proto3\";\n\npackage stringdb;\n\n\/\/ Set Go package path\noption go_package = \"grpc-stringdb-sample\/stringdb\";\n\nservice StringDb {\n \/\/ Get the value stored on the server for a given key\n rpc GetValue (GetValueRequest) returns (GetValueReply) {}\n\n \/\/ Set the server's value for a given key\n rpc SetValue (SetValueRequest) returns (SetValueReply) {}\n\n \/\/ Count the size of the server's value for a given key\n rpc CountValue (CountValueRequest) returns (CountValueReply) {}\n}\n\nmessage GetValueRequest {\n string key = 1;\n}\n\nmessage GetValueReply {\n \/\/ Empty string returned when key not found on the server.\n string value = 1;\n}\n\nmessage SetValueRequest {\n string key = 1;\n string value = 2;\n}\n\nmessage SetValueReply {\n \/\/ Returns the value.\n string value = 1;\n}\n\nmessage CountValueRequest {\n string key = 1;\n}\n\nmessage CountValueReply {\n \/\/ Returns the size of the value, in bytes. If key isn't found on the server,\n \/\/ returns -1.\n int64 count = 1;\n}\n","subject":"Add option for go package path for generated code","message":"Add option for go package path for generated code\n","lang":"Protocol Buffer","license":"unlicense","repos":"eliben\/code-for-blog,eliben\/code-for-blog,eliben\/code-for-blog,eliben\/code-for-blog,eliben\/code-for-blog,eliben\/code-for-blog,eliben\/code-for-blog,eliben\/code-for-blog,eliben\/code-for-blog,eliben\/code-for-blog,eliben\/code-for-blog"} {"commit":"dcc3293ba560eb824fd1dc1652604f651a00fe24","old_file":"third_party\/bazel\/src\/main\/protobuf\/android_deploy_info.proto","new_file":"third_party\/bazel\/src\/main\/protobuf\/android_deploy_info.proto","old_contents":"\/\/ Copyright 2016 The Bazel Authors. All rights reserved.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\npackage blaze;\n\n\/\/ option java_api_version = 2;\noption java_package = \"com.google.devtools.build.lib.rules.android.deployinfo\";\n\nmessage Artifact {\n \/\/ This path is relative to \"bazel info execution_root\"\n string exec_root_path = 1;\n}\n\n\/\/ Information about how to deploy and launch the result of an android build\nmessage AndroidDeployInfo {\n \/\/ The merged manifest in the resource APK\n Artifact merged_manifest = 1;\n\n \/\/ Merged manifests of dependencies\n repeated Artifact additional_merged_manifests = 2;\n\n \/\/ If the build supports an external deploy, this will have the APKs.\n \/\/ mobile-install does its own deployment, so this list will be empty\n repeated Artifact apks_to_deploy = 3;\n\n \/\/ Unused\n repeated Artifact data_to_deploy = 4;\n}\n","new_contents":"\/\/ Copyright 2016 The Bazel Authors. All rights reserved.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage blaze;\n\n\/\/ option java_api_version = 2;\noption java_package = \"com.google.devtools.build.lib.rules.android.deployinfo\";\n\nmessage Artifact {\n \/\/ This path is relative to \"bazel info execution_root\"\n string exec_root_path = 1;\n\n \/\/ Points to a globally valid URI whenever possible.\n \/\/ See BuildEventStreamOptions.java\n string canonical_uri = 2;\n}\n\n\/\/ Information about how to deploy and launch the result of an android build\nmessage AndroidDeployInfo {\n \/\/ The merged manifest in the resource APK\n Artifact merged_manifest = 1;\n\n \/\/ Merged manifests of dependencies\n repeated Artifact additional_merged_manifests = 2;\n\n \/\/ If the build supports an external deploy, this will have the APKs.\n \/\/ mobile-install does its own deployment, so this list will be empty\n repeated Artifact apks_to_deploy = 3;\n\n \/\/ Unused\n repeated Artifact data_to_deploy = 4;\n\n \/\/ Used by mobile-install\n string manifest_package_name = 5;\n}\n","subject":"Add additional fields to android deploy info to support mobile-install usage.","message":"Add additional fields to android deploy info to support mobile-install usage.\n\nPiperOrigin-RevId: 405990157\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"bazelbuild\/intellij,bazelbuild\/intellij,bazelbuild\/intellij,bazelbuild\/intellij,bazelbuild\/intellij,bazelbuild\/intellij,bazelbuild\/intellij"} {"commit":"797e8db998dee01f98ae49848da016682a33250d","old_file":"riemann-java-client\/src\/main\/proto\/riemann\/proto.proto","new_file":"riemann-java-client\/src\/main\/proto\/riemann\/proto.proto","old_contents":"option java_package = \"io.riemann.riemann\";\noption java_outer_classname = \"Proto\";\n\n\/\/ Deprecated; state was used by early versions of the protocol, but not any\n\/\/ more.\nmessage State {\n optional int64 time = 1;\n optional string state = 2;\n optional string service = 3;\n optional string host = 4;\n optional string description = 5;\n optional bool once = 6;\n repeated string tags = 7;\n optional float ttl = 8;\n}\n\nmessage Event {\n optional int64 time = 1;\n optional string state = 2;\n optional string service = 3;\n optional string host = 4;\n optional string description = 5;\n repeated string tags = 7;\n optional float ttl = 8;\n repeated Attribute attributes = 9;\n\n optional sint64 metric_sint64 = 13;\n optional double metric_d = 14;\n optional float metric_f = 15;\n}\n\nmessage Query {\n optional string string = 1;\n}\n\nmessage Msg {\n optional bool ok = 2;\n optional string error = 3;\n repeated State states = 4;\n optional Query query = 5;\n repeated Event events = 6;\n}\n\nmessage Attribute {\n required string key = 1;\n optional string value = 2;\n}\n","new_contents":"option java_package = \"io.riemann.riemann\";\noption java_outer_classname = \"Proto\";\n\n\/\/ Deprecated; state was used by early versions of the protocol, but not any\n\/\/ more.\nmessage State {\n optional int64 time = 1;\n optional string state = 2;\n optional string service = 3;\n optional string host = 4;\n optional string description = 5;\n optional bool once = 6;\n repeated string tags = 7;\n optional float ttl = 8;\n}\n\nmessage Event {\n optional int64 time = 1;\n optional string state = 2;\n optional string service = 3;\n optional string host = 4;\n optional string description = 5;\n repeated string tags = 7;\n optional float ttl = 8;\n repeated Attribute attributes = 9;\n\n optional int64 time_micros = 10;\n optional sint64 metric_sint64 = 13;\n optional double metric_d = 14;\n optional float metric_f = 15;\n}\n\nmessage Query {\n optional string string = 1;\n}\n\nmessage Msg {\n optional bool ok = 2;\n optional string error = 3;\n repeated State states = 4;\n optional Query query = 5;\n repeated Event events = 6;\n}\n\nmessage Attribute {\n required string key = 1;\n optional string value = 2;\n}\n","subject":"Add time_micros field in Event","message":"Add time_micros field in Event\n\nThe time_micros field allows clients to send time in microseconds\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"aphyr\/riemann-java-client,riemann\/riemann-java-client,riemann\/riemann-java-client"} {"commit":"453f55eb6b61ab9708205c1d313868c776d5ce9b","old_file":"version1.proto","new_file":"version1.proto","old_contents":"package orwell.com;\n\n\/\/ Base message used for communication, it contains an header defining the type of message\n\/\/ And another message serialized in a byte array\nmessage base_message {\n\trequired string message_type = 1;\n\trequired bytes serialized_message = 2;\n\toptional string recipient = 3;\n}\n\n\/\/ This message is used to handle a new client's login\nmessage login_message {\n\trequired string client_id = 1;\n\trequired string wished_robot_type = 2;\n}\n\nmessage sample_message {\n\trequired string login = 1;\n}\n\nmessage move_tank_message {\n\trequired double left = 1;\n\trequired double right = 2;\n}\n\n","new_contents":"option optimize_for = LITE_RUNTIME;\n\npackage orwell.com;\n\n\/\/ Base message used for communication, it contains an header defining the type of message\n\/\/ And another message serialized in a byte array\nmessage base_message {\n\trequired string message_type = 1;\n\trequired bytes serialized_message = 2;\n\toptional string recipient = 3;\n}\n\n\/\/ This message is used to handle a new client's login\nmessage login_message {\n\trequired string client_id = 1;\n\trequired string wished_robot_type = 2;\n}\n\nmessage sample_message {\n\trequired string login = 1;\n}\n\nmessage move_tank_message {\n\trequired double left = 1;\n\trequired double right = 2;\n}\n\n","subject":"Optimize building for mobile devices","message":"Optimize building for mobile devices\n\nDue to a technical limitation, we're using protobuf-lite instead of the\nfull one.\nAdding this line in front of the message will optimize it for the lite\nruntime.\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"orwell-int\/messages,orwell-int\/messages,dchilot\/messages,dchilot\/messages"} {"commit":"bbdbbbd28549046154f90a85321eff85c525378e","old_file":"OrbitVulkanLayerClientGgp\/layer_config.proto","new_file":"OrbitVulkanLayerClientGgp\/layer_config.proto","old_contents":"\/\/ Copyright (c) 2020 The Orbit Authors. All rights reserved.\n\/\/ Use of this source code is governed by a BSD-style license that can be\n\/\/ found in the LICENSE file.\n\nsyntax = \"proto3\";\n\npackage orbit_vulkan_capture_protos;\n\nmessage LayerConfig {\n CaptureServiceArguments capture_service_arguments = 1;\n\n LayerOptions layer_options = 2; \n}\n\nmessage CaptureServiceArguments {\n repeated string functions = 1; \/\/ Functions to hook to the capture\n string file_directory = 2; \/\/ Path to locate .orbit file. By default it is \/var\/game\/\n string log_directory = 3; \/\/ Path to locate debug file. By default it is \/var\/game\/\n uint32 sampling_rate = 4; \/\/ Frequency of callstack sampling in samples per second. By default it is 1000\n}\n\nmessage LayerOptions {\n float frame_time_threshold_ms = 1; \/\/ 16.66ms by default\n uint32 capture_length_s = 2; \/\/ 10s by default\n}","new_contents":"\/\/ Copyright (c) 2020 The Orbit Authors. All rights reserved.\n\/\/ Use of this source code is governed by a BSD-style license that can be\n\/\/ found in the LICENSE file.\n\nsyntax = \"proto3\";\n\npackage orbit_vulkan_capture_protos;\n\nmessage LayerConfig {\n CaptureServiceArguments capture_service_arguments = 1;\n\n LayerOptions layer_options = 2;\n}\n\nmessage CaptureServiceArguments {\n repeated string functions = 1; \/\/ Functions to hook to the capture\n\n string file_directory =\n 2; \/\/ Path to locate .orbit file. By default it is \/var\/game\/\n\n string log_directory =\n 3; \/\/ Path to locate debug file. By default it is \/var\/game\/\n\n uint32 sampling_rate = 4; \/\/ Frequency of callstack sampling in samples per\n \/\/ second. By default it is 1000\n}\n\nmessage LayerOptions {\n float frame_time_threshold_ms = 1; \/\/ 16.66ms by default\n\n uint32 capture_length_s = 2; \/\/ 10s by default\n}\n","subject":"Fix clang-format issue in proto","message":"Fix clang-format issue in proto\n","lang":"Protocol Buffer","license":"bsd-2-clause","repos":"google\/orbit,google\/orbit,google\/orbit,google\/orbit"} {"commit":"adf1ef53e46921390178faf3f5eea50820f9abb6","old_file":"server\/src\/main\/proto\/spine\/server\/entity\/dispatching.proto","new_file":"server\/src\/main\/proto\/spine\/server\/entity\/dispatching.proto","old_contents":"","new_contents":"\/*\n * Copyright 2019, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.server.entity;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption (internal_all) = true;\noption java_package = \"io.spine.server.entity\";\noption java_multiple_files = true;\noption java_outer_classname = \"DispatchProto\";\n\nimport \"spine\/base\/error.proto\";\nimport \"spine\/core\/command.proto\";\nimport \"spine\/core\/diagnostics.proto\";\nimport \"spine\/core\/event.proto\";\n\nmessage Propagation {\n\n core.MessageId target_entity = 1 [(required) = true, (validate) = true];\n\n repeated PropagationOutcome outcome = 2 [(required) = true, (validate) = true];\n\n bool successful = 3;\n}\n\nmessage PropagationOutcome {\n\n core.MessageId propagated_signal = 1 [(required) = true, (validate) = true];\n\n oneof result {\n\n Success success = 2 [(validate) = true];\n\n base.Error error = 3 [(validate) = true];\n\n Interruption interrupted = 4 [(validate) = true];\n }\n}\n\nmessage Success {\n\n repeated core.Event produced_event = 1 [(required) = false, (validate) = true];\n}\n\nmessage Interruption {\n\n core.MessageId stopped_at = 1 [(required) = true, (validate) = true];\n}\n","subject":"Define signal propagation result types","message":"Define signal propagation result types\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"8ea7dc4438e49100543bbf361ebfaa4d0ba7a071","old_file":"incubator\/protobuf\/models\/src\/main\/proto\/core\/ApplicationIdProto.proto","new_file":"incubator\/protobuf\/models\/src\/main\/proto\/core\/ApplicationIdProto.proto","old_contents":"","new_contents":"syntax = \"proto3\";\noption java_package = \"org.onosproject.grpc.core.models\";\n\npackage core;\n\n\/\/ Corresponds to org.onosproject.core.ApplicationId.\nmessage ApplicationIdProto {\n uint32 id = 1;\n string name = 2;\n}\n","subject":"Add protobuf model for ApplicationId","message":"[ONOS-6685] Add protobuf model for ApplicationId\n\nChange-Id: Ied2933943bc1344302b3bcc1e6c8031c5527b5e8\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"opennetworkinglab\/onos,LorenzReinhart\/ONOSnew,osinstom\/onos,kuujo\/onos,kuujo\/onos,gkatsikas\/onos,kuujo\/onos,opennetworkinglab\/onos,LorenzReinhart\/ONOSnew,oplinkoms\/onos,kuujo\/onos,oplinkoms\/onos,kuujo\/onos,osinstom\/onos,LorenzReinhart\/ONOSnew,opennetworkinglab\/onos,osinstom\/onos,oplinkoms\/onos,gkatsikas\/onos,gkatsikas\/onos,oplinkoms\/onos,gkatsikas\/onos,osinstom\/onos,opennetworkinglab\/onos,oplinkoms\/onos,opennetworkinglab\/onos,LorenzReinhart\/ONOSnew,LorenzReinhart\/ONOSnew,oplinkoms\/onos,oplinkoms\/onos,osinstom\/onos,gkatsikas\/onos,gkatsikas\/onos,kuujo\/onos,opennetworkinglab\/onos,kuujo\/onos"} {"commit":"564ea0ef7f0df9fad3e1dfcfbd6f6401a729a083","old_file":"server\/src\/test\/proto\/spine\/test\/system\/server\/mirror_test.proto","new_file":"server\/src\/test\/proto\/spine\/test\/system\/server\/mirror_test.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage spine.test.system.server;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package = \"io.spine.test.system.server\";\noption java_outer_classname = \"MirrorTestProto\";\noption java_multiple_files = true;\n\nimport \"spine\/net\/url.proto\";\n\nmessage PhotoId {\n\n string uuid = 1;\n}\n\nmessage VideoId {\n\n string uuid = 1;\n}\n\nmessage Photo {\n option (entity).kind = AGGREGATE;\n\n PhotoId id = 1;\n\n spine.net.Url full_size_url = 2 [(valid) = true];\n\n spine.net.Url thumbnail_url = 3 [(valid) = true, (required) = false];\n\n string alt_text = 4;\n}\n\nmessage Video {\n option (entity).kind = AGGREGATE;\n\n VideoId id = 1;\n\n PhotoId title_shot = 2 [(valid) = true];\n\n spine.net.Url file_url = 3 [(valid) = true];\n\n map soundtrack_url = 4 [(valid) = true, (required) = false];\n\n map subtitles_url = 5 [(valid) = true, (required) = false];\n}\n\nmessage LocalizedVideo {\n option (entity).kind = PROJECTION;\n\n VideoId id = 1;\n\n PhotoId title_shot = 2 [(valid) = true];\n\n spine.net.Url file_url = 3 [(valid) = true];\n\n spine.net.Url sound_track_url = 4 [(valid) = true, (required) = false];\n\n spine.net.Url subtitles_url = 5 [(valid) = true, (required) = false];\n}\n\n\/\/ This aggregate type is not finished, so the `(entity)` option is absent.\nmessage UncompleteAudio {\n\n string id = 1;\n\n spine.net.Url url = 2;\n\n reserved 3 to 42;\n}\n","subject":"Define test domain for mirror projections.","message":"Define test domain for mirror projections.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"4aa64c40773936c770ddbd886cc3e0c48098267f","old_file":"tools\/smoke-tests\/entity-queries-tests\/src\/test\/proto\/spine\/tools\/query\/car_sale.proto","new_file":"tools\/smoke-tests\/entity-queries-tests\/src\/test\/proto\/spine\/tools\/query\/car_sale.proto","old_contents":"","new_contents":"\/*\n * Copyright 2020, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.tools.query;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package = \"io.spine.tools.query\";\noption java_outer_classname = \"CarSaleProto\";\noption java_multiple_files = true;\n\nimport \"google\/protobuf\/timestamp.proto\";\n\n\/\/ An identifier of the car manufacturer.\nmessage ManufacturerId {\n string uuid = 1 [(required) = true];\n}\n\n\/\/ A type of a legal entity a car manufacturer is.\nenum LegalEntityType {\n\n LET_UNKNOWN = 0;\n\n PRIVATELY_OWNED = 1;\n\n PUBLIC_JOINT_STOCK = 2;\n\n LIMITED_PARTNERSHIP = 3;\n}\n\n\/\/ An international securities identification number.\n\/\/\n\/\/ See https:\/\/en.wikipedia.org\/wiki\/International_Securities_Identification_Number\n\/\/\nmessage Isin {\n string value = 1 [(required) = true];\n}\n\n\/\/ A symbol used to identify a company on a stock market.\nmessage TradeStockSymbol {\n string value = 1 [(required) = true];\n}\n\n\/\/ Describes a car manufacturer as a company.\nmessage Manufacturer {\n\n ManufacturerId id = 1 [(required) = true, (validate) = true];\n\n \/\/ ISIN value.\n Isin isin = 2 [(required) = true, (validate) = true];\n\n \/\/ When the company was founded.\n google.protobuf.Timestamp when_founded = 3 [(required) = true];\n\n \/\/ How many employees works in the company.\n int32 number_of_employees = 4 [(min).value = \"1\"];\n\n \/\/ The type of the company as a legal entity.\n LegalEntityType type = 5;\n\n \/\/ If traded, which stock symbols the company uses.\n repeated TradeStockSymbol stock_symbol = 6;\n}\n","subject":"Define a value object for tests.","message":"Define a value object for tests.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/base,SpineEventEngine\/base,SpineEventEngine\/base"} {"commit":"7c31ecc25fd47ad1fb5739cbaf8d6224263936fb","old_file":"examples\/proto\/Booking.proto","new_file":"examples\/proto\/Booking.proto","old_contents":"\/**\n * Booking related messages.\n *\n * This file is really just an example. The data model is completely\n * fictional.\n *\n * Author: Elvis Stansvik\n *\/\npackage com.example;\n\n\/**\n * Represents the status of a vehicle booking.\n *\/\nmessage BookingStatus {\n required int32 id = 1; \/\/\/ Unique booking status ID.\n required string description = 2; \/\/\/ Booking status description. E.g. \"Active\".\n}\n\n\/**\n * Represents the booking of a vehicle.\n *\n * Vehicles are some cool shit. But drive carefully!\n *\/\nmessage Booking {\n required int32 vehicle_id = 1; \/\/\/ ID of booked vehicle.\n required int32 customer_id = 2; \/\/\/ Customer that booked the vehicle.\n required BookingStatus status = 3; \/\/\/ Status of the booking.\n\n \/** Has booking confirmation been sent? *\/\n required bool confirmation_sent = 4;\n\n \/** Has payment been received? *\/\n required bool payment_received = 5;\n}\n\n\/**\n * Service for handling vehicle bookings.\n *\/\nservice BookingService {\n\trpc BookVehicle (Booking) returns (BookingStatus); \/\/\/ Used to book a vehicle. Pass in a Booking and a Booking Status will be returned\n}\n","new_contents":"\/**\n * Booking related messages.\n *\n * This file is really just an example. The data model is completely\n * fictional.\n *\n * Author: Elvis Stansvik\n *\/\npackage com.example;\n\n\/**\n * Represents the status of a vehicle booking.\n *\/\nmessage BookingStatus {\n required int32 id = 1; \/\/\/ Unique booking status ID.\n required string description = 2; \/\/\/ Booking status description. E.g. \"Active\".\n}\n\n\/**\n * Represents the booking of a vehicle.\n *\n * Vehicles are some cool shit. But drive carefully!\n *\/\nmessage Booking {\n required int32 vehicle_id = 1; \/\/\/ ID of booked vehicle.\n required int32 customer_id = 2; \/\/\/ Customer that booked the vehicle.\n required BookingStatus status = 3; \/\/\/ Status of the booking.\n\n \/** Has booking confirmation been sent? *\/\n required bool confirmation_sent = 4;\n\n \/** Has payment been received? *\/\n required bool payment_received = 5;\n}\n\n\/**\n * Service for handling vehicle bookings.\n *\/\nservice BookingService {\n rpc BookVehicle (Booking) returns (BookingStatus); \/\/\/ Used to book a vehicle. Pass in a Booking and a Booking Status will be returned\n}\n","subject":"Use spaces instead of tabs","message":"Use spaces instead of tabs\n","lang":"Protocol Buffer","license":"mit","repos":"DengKe1994\/protoc-gen-doc,DengKe1994\/protoc-gen-doc,estan\/protoc-gen-doc,dr-joy\/protoc-gen-doc,dr-joy\/protoc-gen-doc,pseudomuto\/protoc-gen-doc,DengKe1994\/protoc-gen-doc,DengKe1994\/protoc-gen-doc,pseudomuto\/protoc-gen-doc,estan\/protoc-gen-doc,estan\/protoc-gen-doc"} {"commit":"58eb85c6e010ba56ed7095217d972251dda3f2cd","old_file":"src\/StateSetMinOpenSegmentId.proto","new_file":"src\/StateSetMinOpenSegmentId.proto","old_contents":"","new_contents":"\/* Copyright (c) 2010-2011 Stanford University\n *\n * Permission to use, copy, modify, and distribute this software for any\n * purpose with or without fee is hereby granted, provided that the above\n * copyright notice and this permission notice appear in all copies.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR(S) DISCLAIM ALL WARRANTIES\n * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\n * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL AUTHORS BE LIABLE FOR\n * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\n * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\n * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\n * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n *\/\n\npackage RAMCloud.ProtoBuf;\n\n\/\/ The information appended to LogCabin by the Coordinator\n\/\/ to store its state during various operations.\nmessage StateSetMinOpenSegmentId {\n \/\/\/ Opcode for this function.\n required string opcode = 1;\n \/\/\/ Whether the operation had completed doing the external state changes.\n required bool done = 2;\n \/\/\/ TODO(ankitak)\n required uint64 server_id = 3;\n \/\/\/ TODO(ankitak)\n required uint64 segment_id = 4;\n}\n","subject":"Add ProtoBuf definition required for saving states during setMinOpenSegmentId.","message":"Add ProtoBuf definition required for saving states during setMinOpenSegmentId.\n\nThis is needed to compile and run the changes from previous commit.\n","lang":"Protocol Buffer","license":"isc","repos":"alexandermerritt\/ramcloud,taschik\/ramcloud,utah-scs\/RAMCloud,anirajk\/RAMCloud,rstutsman\/RAMCloud,mrdiegoa\/ramcloud,alexandermerritt\/ramcloud,alexandermerritt\/ramcloud,rstutsman\/RAMCloud,taschik\/ramcloud,IMCG\/RamCloud,Frank-Wu\/RamCloud,mrdiegoa\/ramcloud,jblomer\/ramcloud,utah-scs\/RAMCloud,jblomer\/ramcloud,y-higuchi\/ramcloud,rstutsman\/RAMCloud,utah-scs\/RAMCloud,behnamm\/cs244b_project,SMatsushi\/RAMCloud,taschik\/ramcloud,mrdiegoa\/ramcloud,jblomer\/ramcloud,Frank-Wu\/RamCloud,jcarreira\/ramcloud,anirajk\/RAMCloud,DavidLi2010\/ramcloud,anirajk\/RAMCloud,IMCG\/RamCloud,alexandermerritt\/ramcloud,y-higuchi\/ramcloud,behnamm\/cs244b_project,jblomer\/ramcloud,behnamm\/cs244b_project,y-higuchi\/ramcloud,jblomer\/ramcloud,y-higuchi\/ramcloud,y-higuchi\/ramcloud,jcarreira\/ramcloud,QingkaiLu\/RAMCloud,rstutsman\/RAMCloud,IMCG\/RamCloud,Frank-Wu\/RamCloud,matrix207\/RAMCloud,alexandermerritt\/ramcloud,matrix207\/RAMCloud,matrix207\/RAMCloud,anirajk\/RAMCloud,QingkaiLu\/RAMCloud,utah-scs\/RAMCloud,SMatsushi\/RAMCloud,mrdiegoa\/ramcloud,utah-scs\/RAMCloud,mrdiegoa\/ramcloud,behnamm\/cs244b_project,Frank-Wu\/RamCloud,matrix207\/RAMCloud,jcarreira\/ramcloud,Frank-Wu\/RamCloud,rstutsman\/RAMCloud,Frank-Wu\/RamCloud,alexandermerritt\/ramcloud,taschik\/ramcloud,anirajk\/RAMCloud,anirajk\/RAMCloud,SMatsushi\/RAMCloud,DavidLi2010\/ramcloud,matrix207\/RAMCloud,QingkaiLu\/RAMCloud,taschik\/ramcloud,DavidLi2010\/ramcloud,IMCG\/RamCloud,jcarreira\/ramcloud,SMatsushi\/RAMCloud,QingkaiLu\/RAMCloud,IMCG\/RamCloud,SMatsushi\/RAMCloud,behnamm\/cs244b_project,jcarreira\/ramcloud,IMCG\/RamCloud,DavidLi2010\/ramcloud,rstutsman\/RAMCloud,jcarreira\/ramcloud,QingkaiLu\/RAMCloud,SMatsushi\/RAMCloud,DavidLi2010\/ramcloud,matrix207\/RAMCloud,jblomer\/ramcloud,mrdiegoa\/ramcloud,behnamm\/cs244b_project,utah-scs\/RAMCloud,DavidLi2010\/ramcloud,y-higuchi\/ramcloud,QingkaiLu\/RAMCloud"} {"commit":"18254110b93408d1fdc6e958a2d679d702f74777","old_file":"net\/instaweb\/rewriter\/mobilize_labeling.proto","new_file":"net\/instaweb\/rewriter\/mobilize_labeling.proto","old_contents":"","new_contents":"\/*\n * Copyright 2015 Google Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\n\/\/ Author: jmaessen@google.com (Jan-Willem Maessen)\n\nsyntax = \"proto2\";\n\npackage net_instaweb;\n\n\/\/ Labeling of the DOM. Reflects the ids injected as JavaScript constants on\n\/\/ the page.\nmessage MobilizeLabeling {\n \/\/ Next available Id: 5\n repeated string navigational_ids = 1;\n repeated string header_ids = 2;\n repeated string content_ids = 3;\n repeated string marginal_ids = 4;\n}\n","subject":"Add missed in last commit.","message":"Add missed in last commit.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"patricmutwiri\/mod_pagespeed,VersoBit\/mod_pagespeed,pagespeed\/mod_pagespeed,VersoBit\/mod_pagespeed,ajayanandgit\/mod_pagespeed,webscale-networks\/mod_pagespeed,jalonsoa\/mod_pagespeed,patricmutwiri\/mod_pagespeed,jalonsoa\/mod_pagespeed,pagespeed\/mod_pagespeed,VersoBit\/mod_pagespeed,hashashin\/src,hashashin\/src,patricmutwiri\/mod_pagespeed,VersoBit\/mod_pagespeed,hashashin\/src,webscale-networks\/mod_pagespeed,ajayanandgit\/mod_pagespeed,wanrui\/mod_pagespeed,wanrui\/mod_pagespeed,jalonsoa\/mod_pagespeed,webscale-networks\/mod_pagespeed,jalonsoa\/mod_pagespeed,ajayanandgit\/mod_pagespeed,webscale-networks\/mod_pagespeed,wanrui\/mod_pagespeed,jalonsoa\/mod_pagespeed,hashashin\/src,pagespeed\/mod_pagespeed,ajayanandgit\/mod_pagespeed,webscale-networks\/mod_pagespeed,webscale-networks\/mod_pagespeed,VersoBit\/mod_pagespeed,patricmutwiri\/mod_pagespeed,wanrui\/mod_pagespeed,webscale-networks\/mod_pagespeed,patricmutwiri\/mod_pagespeed,hashashin\/src,patricmutwiri\/mod_pagespeed,patricmutwiri\/mod_pagespeed,webscale-networks\/mod_pagespeed,hashashin\/src,ajayanandgit\/mod_pagespeed,hashashin\/src,ajayanandgit\/mod_pagespeed,jalonsoa\/mod_pagespeed,ajayanandgit\/mod_pagespeed,patricmutwiri\/mod_pagespeed,hashashin\/src,wanrui\/mod_pagespeed,VersoBit\/mod_pagespeed,jalonsoa\/mod_pagespeed,jalonsoa\/mod_pagespeed,pagespeed\/mod_pagespeed,wanrui\/mod_pagespeed,ajayanandgit\/mod_pagespeed,wanrui\/mod_pagespeed,VersoBit\/mod_pagespeed,wanrui\/mod_pagespeed,pagespeed\/mod_pagespeed,pagespeed\/mod_pagespeed,pagespeed\/mod_pagespeed"} {"commit":"f11877fc3010e20209f9f9024f3bd08de3d6a6b3","old_file":"src\/proto\/riak_yokozuna.proto","new_file":"src\/proto\/riak_yokozuna.proto","old_contents":"","new_contents":"\/* -------------------------------------------------------------------\n**\n** riak_yokozuna.proto: Protocol buffers for Yokozuna\n**\n** Copyright (c) 2013 Basho Technologies, Inc. All Rights Reserved.\n**\n** This file is provided to you under the Apache License,\n** Version 2.0 (the \"License\"); you may not use this file\n** except in compliance with the License. You may obtain\n** a copy of the License at\n**\n** http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n**\n** Unless required by applicable law or agreed to in writing,\n** software distributed under the License is distributed on an\n** \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY\n** KIND, either express or implied. See the License for the\n** specific language governing permissions and limitations\n** under the License.\n**\n** -------------------------------------------------------------------\n*\/\n\n\/*\n** Revision: 2.0\n*\/\n\n\/\/ java package specifiers\noption java_package = \"com.basho.riak.protobuf\";\noption java_outer_classname = \"RiakYokozunaPB\";\n\n\/\/ Index queries\n\nmessage RpbYokozunaIndex {\n required bytes name = 1; \/\/ Index name\n optional bytes schema = 2; \/\/ Schema name\n}\n\n\/\/ GET request - If a name is given, return matching index, else return all\nmessage RpbYokozunaIndexGetReq {\n optional bytes name = 1; \/\/ Index name\n}\n\nmessage RpbYokozunaIndexGetResp {\n repeated RpbYokozunaIndex index = 1;\n}\n\n\/\/ PUT request - Create a new index\nmessage RpbYokozunaIndexPutReq {\n required RpbYokozunaIndex index = 1;\n}\n\n\/\/ DELETE request - Remove an index\nmessage RpbYokozunaIndexDeleteReq {\n required bytes name = 1; \/\/ Index name\n}\n\n\/\/ Schema queries\n\nmessage RpbYokozunaSchema {\n required bytes name = 1; \/\/ Index name\n optional bytes content = 2; \/\/ Schema data\n}\n\n\/\/ PUT request - create or potentially update a new schema\nmessage RpbYokozunaSchemaPutReq {\n required RpbYokozunaSchema schema = 1;\n}\n\n\/\/ GET request - Return matching schema by name\nmessage RpbYokozunaSchemaGetReq {\n required bytes name = 1; \/\/ Schema name\n}\n\nmessage RpbYokozunaSchemaGetResp {\n required RpbYokozunaSchema schema = 1;\n}\n","subject":"Add Riak 2.0 PBC messages (Yokozuna, Bucket Types, CRDTs, Permissioning)","message":"Add Riak 2.0 PBC messages (Yokozuna, Bucket Types, CRDTs, Permissioning)\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"basho-labs\/debris,basho-labs\/debris,basho-labs\/debris"} {"commit":"7d6875cf7064f5cb851da7ac76f5cb57fbf9d42c","old_file":"incubator\/protobuf\/models\/src\/main\/proto\/app\/ApplicationEnumsProto.proto","new_file":"incubator\/protobuf\/models\/src\/main\/proto\/app\/ApplicationEnumsProto.proto","old_contents":"syntax = \"proto3\";\noption java_package = \"org.onosproject.grpc.app.models\";\n\npackage app;\n\nenum ApplicationStateProto {\n \/\/ Indicates that application has been installed, but is not running.\n INSTALLED = 0;\n \/\/ Indicates that application is active.\n ACTIVE = 1;\n}","new_contents":"syntax = \"proto3\";\noption java_package = \"org.onosproject.grpc.app.models\";\n\npackage app;\n\nenum ApplicationStateProto {\n \/\/ Indicates that application has been installed, but is not running.\n INSTALLED = 0;\n \/\/ Indicates that application is active.\n ACTIVE = 1;\n}\n\nenum ApplicationRoleProto {\n \/\/ Indicates that an application has an ADMIN role.\n ADMIN = 0;\n \/\/ Indicates that an application has a USER role.\n USER = 1;\n \/\/ Indicates that an application role has not been specified.\n UNSPECIFIED = 2;\n\n \/\/ More useful roles may be defined...\n}\n","subject":"Add ApplicationRole enum type in protobuf model","message":"[ONOS-6687] Add ApplicationRole enum type in protobuf model\n\nChange-Id: I10919eeffbc57f6ca75a58e4c6a3ceecff780f1f\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"kuujo\/onos,oplinkoms\/onos,opennetworkinglab\/onos,kuujo\/onos,gkatsikas\/onos,opennetworkinglab\/onos,gkatsikas\/onos,LorenzReinhart\/ONOSnew,oplinkoms\/onos,opennetworkinglab\/onos,kuujo\/onos,oplinkoms\/onos,osinstom\/onos,osinstom\/onos,kuujo\/onos,oplinkoms\/onos,LorenzReinhart\/ONOSnew,gkatsikas\/onos,kuujo\/onos,LorenzReinhart\/ONOSnew,gkatsikas\/onos,kuujo\/onos,osinstom\/onos,opennetworkinglab\/onos,oplinkoms\/onos,gkatsikas\/onos,LorenzReinhart\/ONOSnew,opennetworkinglab\/onos,gkatsikas\/onos,kuujo\/onos,oplinkoms\/onos,oplinkoms\/onos,osinstom\/onos,osinstom\/onos,LorenzReinhart\/ONOSnew,opennetworkinglab\/onos"} {"commit":"674a6d26081d94203a2fc5c96099f939d9d48a25","old_file":"tools\/smoke-tests\/generated-validation-tests\/src\/test\/proto\/spine\/test\/tools\/validate\/name_clash.proto","new_file":"tools\/smoke-tests\/generated-validation-tests\/src\/test\/proto\/spine\/test\/tools\/validate\/name_clash.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage spine.test.tools.validate;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package = \"io.spine.test.tools.validate\";\noption java_outer_classname = \"NameClashProto\";\noption java_multiple_files = true;\n\n\/\/ There are no test cases behind these definitions.\n\/\/\n\/\/ The code generated for this file must compile. This ensures that the name of the private class\n\/\/ created for message validation does not clash with names of other inner classes in a message\n\/\/ class.\n\nmessage Nesting {\n\n message Validator {\n }\n}\n","subject":"Add one more (compilation-level) test","message":"Add one more (compilation-level) test\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/base,SpineEventEngine\/base,SpineEventEngine\/base"} {"commit":"1025bdb91c1ab1d8d693654751f03696612d4c91","old_file":"incubator\/protobuf\/models\/src\/main\/proto\/app\/ApplicationEnumsProto.proto","new_file":"incubator\/protobuf\/models\/src\/main\/proto\/app\/ApplicationEnumsProto.proto","old_contents":"","new_contents":"syntax = \"proto3\";\noption java_package = \"org.onosproject.grpc.app.models\";\n\npackage app;\n\nenum ApplicationStateProto {\n \/\/ Indicates that application has been installed, but is not running.\n INSTALLED = 0;\n \/\/ Indicates that application is active.\n ACTIVE = 1;\n}","subject":"Add ApplicationState enum type in protobuf model","message":"[ONOS-6699] Add ApplicationState enum type in protobuf model\n\nChange-Id: I4315ea7b7207d42a4404ca2795a1891c4ac80b28\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"kuujo\/onos,LorenzReinhart\/ONOSnew,oplinkoms\/onos,oplinkoms\/onos,kuujo\/onos,LorenzReinhart\/ONOSnew,gkatsikas\/onos,kuujo\/onos,oplinkoms\/onos,opennetworkinglab\/onos,osinstom\/onos,opennetworkinglab\/onos,osinstom\/onos,osinstom\/onos,opennetworkinglab\/onos,oplinkoms\/onos,opennetworkinglab\/onos,gkatsikas\/onos,kuujo\/onos,gkatsikas\/onos,kuujo\/onos,kuujo\/onos,gkatsikas\/onos,gkatsikas\/onos,osinstom\/onos,oplinkoms\/onos,kuujo\/onos,oplinkoms\/onos,opennetworkinglab\/onos,oplinkoms\/onos,gkatsikas\/onos,LorenzReinhart\/ONOSnew,opennetworkinglab\/onos,osinstom\/onos,LorenzReinhart\/ONOSnew,LorenzReinhart\/ONOSnew"} {"commit":"0cf7523d6113b017565cfb87bb3efe8764e0bfbd","old_file":"incubator\/protobuf\/models\/src\/main\/proto\/security\/PermissionProto.proto","new_file":"incubator\/protobuf\/models\/src\/main\/proto\/security\/PermissionProto.proto","old_contents":"","new_contents":"syntax = \"proto3\";\noption java_package = \"org.onosproject.grpc.security.models\";\n\npackage security;\n\n\/\/ Corresponds to org.onosproject.security.Permission.\nmessage PermissionProto {\n string classname = 1;\n string name = 2;\n string actions = 3;\n}\n","subject":"Add Permission message type in protobuf model","message":"[ONOS-6688] Add Permission message type in protobuf model\n\nChange-Id: Iaad4783eba0a5d318c7b8a458c44a857f393b220\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"gkatsikas\/onos,gkatsikas\/onos,gkatsikas\/onos,oplinkoms\/onos,oplinkoms\/onos,opennetworkinglab\/onos,gkatsikas\/onos,kuujo\/onos,kuujo\/onos,oplinkoms\/onos,oplinkoms\/onos,opennetworkinglab\/onos,oplinkoms\/onos,opennetworkinglab\/onos,opennetworkinglab\/onos,kuujo\/onos,kuujo\/onos,osinstom\/onos,oplinkoms\/onos,gkatsikas\/onos,osinstom\/onos,LorenzReinhart\/ONOSnew,oplinkoms\/onos,opennetworkinglab\/onos,kuujo\/onos,osinstom\/onos,kuujo\/onos,LorenzReinhart\/ONOSnew,gkatsikas\/onos,LorenzReinhart\/ONOSnew,LorenzReinhart\/ONOSnew,opennetworkinglab\/onos,LorenzReinhart\/ONOSnew,osinstom\/onos,kuujo\/onos,osinstom\/onos"} {"commit":"4d06d728b68a9c529c6e7ddd60750429237cbd6c","old_file":"proto\/grid\/messages\/network_search_messages.proto","new_file":"proto\/grid\/messages\/network_search_messages.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage syft.grid.messages;\n\nimport \"proto\/core\/common\/common_object.proto\";\nimport \"proto\/core\/io\/address.proto\";\n\nmessage NetworkSearchMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n string content = 3;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage NetworkSearchResponse {\n syft.core.common.UID msg_id = 1;\n int32 status_code = 2;\n string content = 3;\n syft.core.io.Address address = 4;\n}\n","subject":"ADD new network_search protobuf file","message":"ADD new network_search protobuf file\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft"} {"commit":"ce33fa27bfc372c6f4b6b038b5031a1b9841510a","old_file":"server\/src\/main\/proto\/spine\/server\/sharding\/id_predicate.proto","new_file":"server\/src\/main\/proto\/spine\/server\/sharding\/id_predicate.proto","old_contents":"","new_contents":"\/\/\n\/\/ Copyright 2018, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.server.sharding;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption (SPI_all) = true;\noption java_package = \"io.spine.server.sharding\";\noption java_multiple_files = true;\noption java_outer_classname = \"ShardingProto\";\noption java_generate_equals_and_hash = true;\n\nmessage IdPredicate {\n\n oneof predicate {\n\n bool all_ids = 1;\n\n UniformByIdHash uniform_by_ids = 2;\n }\n}\n\nmessage UniformByIdHash {\n\n int32 divisor = 1 [(required) = true];\n\n int32 remainder = 2 [(required) = true];\n}\n","subject":"Add the naïve definition of `IdPredicate` for sharding.","message":"Add the naïve definition of `IdPredicate` for sharding.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"47922cc41b346d8ffdf6a304ab32d442404335d2","old_file":"proto\/hydrad.proto","new_file":"proto\/hydrad.proto","old_contents":"","new_contents":"package hydrad;\n\nmessage request_version {\n}\n\nmessage response_version {\n required string version = 1;\n}\n\nmessage request_stats {\n}\n\nmessage response_stats {\n message requests_counters {\n required string total_count = 1;\n required string failed_count = 2;\n required string error_count = 3;\n }\n required requests_counters requests = 1;\n}\n","subject":"Add proto file for methods definition","message":"Add proto file for methods definition\n","lang":"Protocol Buffer","license":"mit","repos":"Sannis\/hydrad,Sannis\/hydrad,Sannis\/hydrad"} {"commit":"6dfcf2adbcfd38f3d09367d2e8f3020383fc8161","old_file":"person3.proto","new_file":"person3.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage ProtobufBenchmarks.Message;\n\nmessage Person {\n string name = 1;\n int32 id = 2;\n string email = 3;\n\n message PhoneNumber {\n enum PhoneType {\n HOME = 0;\n MOBILE = 1;\n WORK = 2;\n }\n\n string number = 1;\n PhoneType type = 2;\n }\n\n repeated PhoneNumber phone = 4;\n\n message PidgeonPost {\n string destination = 1;\n string origination = 2;\n int32 timestamp = 3;\n }\n\n message Semaphore {\n string destination = 1;\n string origination = 2;\n int32 timestamp = 3;\n string type = 4;\n }\n\n oneof contact_preference {\n string preferred_email = 5;\n PhoneNumber preferred_phone = 6;\n string facsimile = 7;\n PidgeonPost pidgeon = 8;\n Semaphore semaphore_line = 9;\n }\n}\n\n","subject":"Add proto3 example proto file.","message":"Add proto3 example proto file.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"christophermancini\/protobuf-php-performance"} {"commit":"e70fe103b24722d6c6decb9f617a3236b1a028bc","old_file":"proto\/modules\/collision_avoidance.proto","new_file":"proto\/modules\/collision_avoidance.proto","old_contents":"","new_contents":"package amber.collision_avoidance_proto;\noption java_package = \"pl.edu.agh.amber.collisionavoidance.proto\";\noption java_outer_classname = \"CollisionAvoidanceProto\";\n\nimport \"drivermsg.proto\";\n\nextend amber.DriverMsg {\n optional bool setSpeed = 90;\n optional bool getSpeed = 91;\n optional bool getSpeedAndScan = 92;\n optional bool getScan = 93;\n optional MotorsSpeed motorsSpeed = 94;\n optional Scan scan = 95;\n}\n\nmessage MotorsSpeed {\n optional int32 frontLeftSpeed = 1;\n optional int32 frontRightSpeed = 2;\n optional int32 rearLeftSpeed = 3;\n optional int32 rearRightSpeed = 4;\n}\n\nmessage Scan {\n repeated double angles = 1 [packed = true];\n repeated int32 distances = 2 [packed = true];\n}\n","subject":"Add basic collision avoidance protobuf file","message":"Add basic collision avoidance protobuf file\n","lang":"Protocol Buffer","license":"mit","repos":"project-capo\/amber-common"} {"commit":"6d628ca45e959458b2f432f96069dc3f94bba77a","old_file":"proto\/plugin_representation.proto","new_file":"proto\/plugin_representation.proto","old_contents":"","new_contents":"\/*\n * Copyright 2020 Google LLC\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\n\/\/ Data representation of a tsunami plugin definition passed between language servers.\nsyntax = \"proto3\";\n\npackage tsunami.proto;\n\noption java_multiple_files = true;\noption java_outer_classname = \"PluginRepresentationProtos\";\noption java_package = \"com.google.tsunami.proto\";\noption go_package = \"github.com\/google\/tsunami-security-scanner\/proto\";\n\n\/\/ Represents a PluginDefinition placeholder.\nmessage PluginDefinition {\n \/\/ PluginInfo of this definition.\n PluginInfo info = 1;\n\n \/\/ The name of the target service.\n TargetServiceName target_service_name = 2;\n\n \/\/ The name of the target software.\n TargetSoftware target_software = 3;\n\n \/\/ If the definition is for a web service or not.\n bool for_web_service = 4;\n}\n\n\/\/ Represents a PluginInfo annotation placeholder used by the PluginDefinition proto above.\nmessage PluginInfo {\n enum PluginType {\n \/\/ Plugin is an unspecified type.\n PLUGIN_TYPE_UNSPECIFIED = 0;\n \/\/ Plugin is a port scanner.\n PORT_SCAN = 1;\n \/\/ Plugin is a service fingerprinter.\n SERVICE_FINGERPRINT = 2;\n \/\/ Plugin is a vulnerability detector.\n VULN_DETECTION = 3;\n }\n\n \/\/ Type of plugin.\n PluginType type = 1;\n\n \/\/ Name of the plugin.\n string name = 2;\n\n \/\/ Version of the plugin\n string version = 3;\n\n \/\/ Description of the plugin.\n string description = 4;\n\n \/\/ Author of the plugin.\n string author = 5;\n}\n\n\/\/ Represents a ForServiceName annotation placeholder used by the PluginDefinition proto above.\nmessage TargetServiceName {\n \/\/ The value of the name of the target.\n repeated string value = 1;\n}\n\n\/\/ Represents a ForSoftware annotation placeholder used by the PluginDefinition proto above.\nmessage TargetSoftware {\n \/\/ The name of the target software, case insensitive.\n string name = 1;\n\n \/\/ Array of versions and version ranges of the target software.\n repeated string value = 2;\n}\n","subject":"Add plugin representation protos used for the RPC service and data between language servers.","message":"Add plugin representation protos used for the RPC service and data between language servers.\n\nPiperOrigin-RevId: 454913844\nChange-Id: I498f98cf5bd6ff5a6dafa8a088f5d465be99707b\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"google\/tsunami-security-scanner,google\/tsunami-security-scanner,google\/tsunami-security-scanner"} {"commit":"041d484bf09b0a255df0668228d1cdfdac5bccbb","old_file":"version1.proto","new_file":"version1.proto","old_contents":"","new_contents":"package orwell.com;\n\n\/\/ Base message used for communication, it contains an header defining the type of message\n\/\/ And another message serialized in a byte array\nmessage base_message {\n\trequired string message_type = 1;\n\trequired bytes serialized_message = 2;\n}\n\n\/\/ This message is used to handle a new client's login\nmessage login_message {\n\trequired string client_id = 1;\n\trequired string wished_robot_type = 2;\n}\n\nmessage sample_message {\n\trequired string login = 1;\n}\n\n","subject":"Copy message definition from server-game (and correcting a typo).","message":"Copy message definition from server-game (and correcting a typo).\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"dchilot\/messages,orwell-int\/messages,orwell-int\/messages,dchilot\/messages"} {"commit":"768af3b816cdd2a7ca6f8e40e957550a3a4802ad","old_file":"apps\/domain\/proto\/setup_messages.proto","new_file":"apps\/domain\/proto\/setup_messages.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage syft.core.node.common.service;\n\nimport \"proto\/syft_assets\/common_object.proto\";\nimport \"proto\/syft_assets\/io\/address.proto\";\n\nmessage CreateInitialSetupMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n}\n\nmessage CreateInitialSetupResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n syft.core.io.Address reply_to = 4;\n}\n\n\nmessage GetSetupMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 3;\n}\n\nmessage GetSetupResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n syft.core.io.Address reply_to = 4;\n}\n","subject":"ADD protobuf setup messages schema","message":"ADD protobuf setup messages schema\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft"} {"commit":"aaa342c69306e8aa9b453e0715b43764704c6c33","old_file":"apps\/domain\/proto\/user_messages.proto","new_file":"apps\/domain\/proto\/user_messages.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage syft.core.node.common.service;\n\nimport \"proto\/syft_assets\/common_object.proto\";\nimport \"proto\/syft_assets\/io\/address.proto\";\n\n\n\/\/ CREATE USER\nmessage CreateUserMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage CreateUserResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n}\n\n\/\/ GET USER\nmessage GetUserMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 4;\n}\n\n\nmessage GetUserResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n}\n\n\/\/ GET ALL USERS\nmessage GetAllUserMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage GetAllUserResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n}\n\n\/\/ SEARCH USER\nmessage SearchUserMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage SearchUserResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n}\n\n\/\/ UPDATE USER\nmessage UpdateUserMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage UpdateUserResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n}\n","subject":"ADD protobuf user messages schema","message":"ADD protobuf user messages schema\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft"} {"commit":"cc9ef08b857fc71d44009d7447fde3c7221b41f0","old_file":"reporting_query_param.proto","new_file":"reporting_query_param.proto","old_contents":"","new_contents":"syntax = \"proto2\";\npackage dv360_excel_plugin;\n\n\/\/ Reporting query parameter proto.\nmessage ReportingQueryParameter {\n\n message Metadata {\n \/\/ required\n optional string title = 1;\n\n \/* required\n * Range of report data.\n *\/\n optional string dataRange = 2;\n\n \/* required\n * Format of the generated report.\n *\/\n optional string format = 3;\n }\n\n \/* required\n * Query metadata\n *\/\n optional Metadata metadata = 1;\n\n message Params {\n \/\/ Metrics to include as columns in the report.\n repeated string metrics = 1;\n\n \/\/ Data is grouped by the filters listed in this field.\n repeated string groupBys = 2;\n\n message Filters {\n \/\/ required\n optional string type = 1;\n\n \/\/ required\n optional string value = 2;\n }\n\n \/\/ Filters used to match traffic data in the report.\n repeated Filters filters = 3;\n }\n\n \/* required\n * Query parameters\n *\/\n optional Params params = 2;\n}\n","subject":"Create proto for reporting query params","message":"Create proto for reporting query params\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"googleinterns\/dv360-excel-plugin,googleinterns\/dv360-excel-plugin"} {"commit":"dab6d911ef444f0eea79544dd2dcc550c30bb345","old_file":"src\/proto\/index.proto","new_file":"src\/proto\/index.proto","old_contents":"","new_contents":"message Vector3 {\n optional float x = 1;\n optional float y = 1;\n optional float z = 3;\n}\n\nmessage Quaternion {\n optional float x = 1;\n optional float y = 2;\n optional float z = 3;\n optional float w = 4;\n}\n\nmessage Ship {\n optional Vector3 position = 1;\n optional Quaternion quaternion = 2;\n}\n\nmessage Bullet {\n optional Vector3 position = 1;\n optional Vector3 velocity = 2;\n}\n","subject":"Add initial entities protocol-buffer schema.","message":"Add initial entities protocol-buffer schema.\n","lang":"Protocol Buffer","license":"mit","repos":"razh\/flying-machines,razh\/flying-machines"} {"commit":"121ec62ffda4a20e726631be34d76ad35373ca15","old_file":"gapic\/metadata\/gapic_metadata.proto","new_file":"gapic\/metadata\/gapic_metadata.proto","old_contents":"","new_contents":"\/\/ Copyright 2020 Google LLC.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\/\/\n\nsyntax = \"proto3\";\n\npackage google.gapic.metadata;\n\n\/\/ Metadata about a GAPIC library for a specific combination of API, version, and\n\/\/ computer language.\nmessage GapicMetadata {\n \/\/ Schema version of this proto. Current value: 1.0\n string schema = 1;\n\n \/\/ Any human-readable comments to be included in this file.\n string comment = 2;\n\n \/\/ Computer language of this generated language. This must be\n \/\/ spelled out as it spoken in English, with no capitalization or\n \/\/ separators (e.g. \"csharp\", \"nodejs\").\n string language = 3;\n\n \/\/ The proto package containing the API definition for which this\n \/\/ GAPIC library was generated.\n string proto_package = 4;\n\n \/\/ The language-specific library package for this GAPIC library.\n string library_package = 5;\n\n \/\/ A map from each proto-defined service to ServiceForTransports,\n \/\/ which allows listing information about transport-specific\n \/\/ implementations of the service.\n \/\/\n \/\/ The key is the name of the service as it appears in the .proto\n \/\/ file.\n map services = 6;\n\n \/\/ A map from a transport name to ServiceAsClient, which allows\n \/\/ listing information about the client objects that implement the\n \/\/ parent RPC service for the specified transport.\n \/\/\n \/\/ The key name is the transport, lower-cased with no separators\n \/\/ (e.g. \"grpc\", \"rest\").\n message ServiceForTransport {\n map clients = 1;\n }\n\n \/\/ Information about a specific client implementing a proto-defined service.\n message ServiceAsClient {\n \/\/ The name of the library client formatted as it appears in the source code\n string library_client = 1;\n\n \/\/ A mapping from each proto-defined RPC name to the the list of\n \/\/ methods in library_client that implement it. There can be more\n \/\/ than one library_client method for each RPC. RPCs with no\n \/\/ library_client methods need not be included.\n \/\/\n \/\/ The key name is the name of the RPC as defined and formated in\n \/\/ the proto file.\n map rpcs = 2;\n }\n\n \/\/ List of GAPIC client methods implementing the proto-defined RPC\n \/\/ for the transport and service specified in the containing\n \/\/ structures.\n message MethodList {\n \/\/ List of methods for a specific proto-service client in the\n \/\/ GAPIC. These names should be formatted as they appear in the\n \/\/ source code.\n repeated string methods = 1;\n }\n\n}","subject":"Add schema for providing GAPIC metadata","message":"Add schema for providing GAPIC metadata\n\nThis allows each (API,version,language) combination to provide a\nmapping between RPCs and library methods invoking those RPCs.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"googleapis\/googleapis,googleapis\/googleapis"} {"commit":"997e4c0542afb12071c977e7879af1861b275bff","old_file":"values\/src\/main\/proto\/spine\/net\/url.proto","new_file":"values\/src\/main\/proto\/spine\/net\/url.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage spine.net;\n\noption java_generate_equals_and_hash = true;\noption java_multiple_files = true;\noption java_package = \"org.spine3.net\";\noption java_outer_classname = \"UrlProto\";\n\nmessage Url {\n oneof value {\n string raw = 1;\n Record record = 2;\n }\n\n \/\/ Structurized record\n message Record {\n\n \/\/ Application layer protocol\n Protocol protocol = 1;\n\n \/\/ User's email and password (both optional)\n Authorization auth = 2;\n\n \/\/ Domain name\n string host = 3;\n\n \/\/ Server's port (e.g. :8080)\n int32 port = 4;\n\n \/\/ Single part of the path too desired resourse (e.g. \"\/index\")\n repeated string path = 5;\n\n \/\/ Single key - value pair (?key1=value1&key2=value2)\n repeated string query = 6;\n\n \/\/ Sub-resource (e.g. \"#article\")\n string fragment = 7;\n\n \/\/ Application layer protocol\n message Protocol {\n oneof protocol {\n \/\/ Most often used schemas\n Schema schema = 1;\n\n \/\/ Some other protocol\n string name = 2;\n }\n }\n\n \/\/ Most often used application layer procotols.\n enum Schema {\n UNDEFINED = 0;\n HTTP = 1;\n HTTPS = 2;\n FTP = 3;\n SSL = 4;\n SSH = 5;\n DNS = 6;\n SOAP = 7;\n RTP = 8;\n }\n\n \/\/ Pair of the username (email commonly) and password (optional) (e.g. \"user:password@\")\n message Authorization {\n\n \/\/ User name\n string user = 1;\n\n \/\/ Corresponding password\n string password = 2;\n }\n }\n}\n\n","subject":"Add Protobuf definition for URL.","message":"Add Protobuf definition for URL.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"97e632275f84076586c6b0bccfd706ac5a1b96d6","old_file":"client\/src\/main\/proto\/spine\/base\/version.proto","new_file":"client\/src\/main\/proto\/spine\/base\/version.proto","old_contents":"","new_contents":"\/\/\n\/\/ Copyright 2017, TeamDev Ltd. All rights reserved.\n\/\/\n\/\/ Redistribution and use in source and\/or binary forms, with or without\n\/\/ modification, must retain the above copyright notice and the following\n\/\/ disclaimer.\n\/\/\n\/\/ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n\/\/ \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n\/\/ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n\/\/ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n\/\/ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n\/\/ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n\/\/ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n\/\/ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n\/\/ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n\/\/ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n\/\/ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\/\/\nsyntax = \"proto3\";\n\npackage spine.base;\n\noption (type_url_prefix) = \"type.spine3.org\";\noption java_package = \"org.spine3.base\";\noption java_outer_classname = \"VersionProto\";\noption java_multiple_files = true;\noption java_generate_equals_and_hash = true;\n\nimport \"google\/protobuf\/timestamp.proto\";\n\nimport \"spine\/annotations.proto\";\n\n\/\/ A version number with timestamp of the version creation.\nmessage Version {\n\n \/\/ A zero-based version number.\n \/\/\n \/\/ When numbering versions of entities the zero value is reserved for\n \/\/ the “pre-initialization” version of an entity.\n \/\/\n int32 number = 1;\n\n \/\/ A moment in time when the new version was created.\n google.protobuf.Timestamp timestamp = 2;\n}\n","subject":"Define proto type for `Version`.","message":"Define proto type for `Version`.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"611728e29592c9688fb6cea9bfb4b62e521c712f","old_file":"sync\/protocol\/experiments_specifics.proto","new_file":"sync\/protocol\/experiments_specifics.proto","old_contents":"\/\/ Copyright (c) 2012 The Chromium Authors. All rights reserved.\n\/\/ Use of this source code is governed by a BSD-style license that can be\n\/\/ found in the LICENSE file.\n\/\/\n\/\/ Sync protocol datatype extension for experimental feature flags.\n\nsyntax = \"proto2\";\n\noption optimize_for = LITE_RUNTIME;\noption retain_unknown_fields = true;\n\npackage sync_pb;\n\n\/\/ A flag to enable support for keystore encryption.\nmessage KeystoreEncryptionFlags {\n optional bool enabled = 1;\n}\n\n\/\/ Contains one flag or set of related flags. Each node of the experiments type\n\/\/ will have a unique_client_tag identifying which flags it contains. By\n\/\/ convention, the tag name should match the sub-message name.\nmessage ExperimentsSpecifics {\n optional KeystoreEncryptionFlags keystore_encryption = 1;\n}\n","new_contents":"\/\/ Copyright (c) 2012 The Chromium Authors. All rights reserved.\n\/\/ Use of this source code is governed by a BSD-style license that can be\n\/\/ found in the LICENSE file.\n\/\/\n\/\/ Sync protocol datatype extension for experimental feature flags.\n\nsyntax = \"proto2\";\n\noption optimize_for = LITE_RUNTIME;\noption retain_unknown_fields = true;\n\npackage sync_pb;\n\n\/\/ A flag to enable support for keystore encryption.\nmessage KeystoreEncryptionFlags {\n optional bool enabled = 1;\n}\n\n\/\/ Whether history delete directives are enabled.\nmessage HistoryDeleteDirectives {\n optional bool enabled = 1;\n}\n\n\/\/ Contains one flag or set of related flags. Each node of the experiments type\n\/\/ will have a unique_client_tag identifying which flags it contains. By\n\/\/ convention, the tag name should match the sub-message name.\nmessage ExperimentsSpecifics {\n optional KeystoreEncryptionFlags keystore_encryption = 1;\n optional HistoryDeleteDirectives history_delete_directives = 2;\n}\n","subject":"Add experiment for history delete directives.","message":"Add experiment for history delete directives.\n\nR=zea\nBUG=none\n\n\nReview URL: https:\/\/chromiumcodereview.appspot.com\/11237006\n\ngit-svn-id: de016e52bd170d2d4f2344f9bf92d50478b649e0@163425 0039d316-1c4b-4281-b951-d872f2087c98\n","lang":"Protocol Buffer","license":"bsd-3-clause","repos":"hgl888\/chromium-crosswalk,zcbenz\/cefode-chromium,markYoungH\/chromium.src,dushu1203\/chromium.src,zcbenz\/cefode-chromium,ltilve\/chromium,ChromiumWebApps\/chromium,hgl888\/chromium-crosswalk,bright-sparks\/chromium-spacewalk,Chilledheart\/chromium,Just-D\/chromium-1,PeterWangIntel\/chromium-crosswalk,M4sse\/chromium.src,jaruba\/chromium.src,krieger-od\/nwjs_chromium.src,jaruba\/chromium.src,Just-D\/chromium-1,ChromiumWebApps\/chromium,Pluto-tv\/chromium-crosswalk,markYoungH\/chromium.src,Just-D\/chromium-1,nacl-webkit\/chrome_deps,markYoungH\/chromium.src,crosswalk-project\/chromium-crosswalk-efl,krieger-od\/nwjs_chromium.src,mohamed--abdel-maksoud\/chromium.src,mogoweb\/chromium-crosswalk,PeterWangIntel\/chromium-crosswalk,crosswalk-project\/chromium-crosswalk-efl,TheTypoMaster\/chromium-crosswalk,junmin-zhu\/chromium-rivertrail,PeterWangIntel\/chromium-crosswalk,ChromiumWebApps\/chromium,jaruba\/chromium.src,TheTypoMaster\/chromium-crosswalk,pozdnyakov\/chromium-crosswalk,mohamed--abdel-maksoud\/chromium.src,axinging\/chromium-crosswalk,mohamed--abdel-maksoud\/chromium.src,patrickm\/chromium.src,bright-sparks\/chromium-spacewalk,mohamed--abdel-maksoud\/chromium.src,ondra-novak\/chromium.src,Pluto-tv\/chromium-crosswalk,hgl888\/chromium-crosswalk,ChromiumWebApps\/chromium,pozdnyakov\/chromium-crosswalk,fujunwei\/chromium-crosswalk,crosswalk-project\/chromium-crosswalk-efl,junmin-zhu\/chromium-rivertrail,M4sse\/chromium.src,hujiajie\/pa-chromium,M4sse\/chromium.src,dushu1203\/chromium.src,dushu1203\/chromium.src,jaruba\/chromium.src,PeterWangIntel\/chromium-crosswalk,dushu1203\/chromium.src,Fireblend\/chromium-crosswalk,mogoweb\/chromium-crosswalk,timopulkkinen\/BubbleFish,zcbenz\/cefode-chromium,Just-D\/chromium-1,axinging\/chromium-crosswalk,PeterWangIntel\/chromium-crosswalk,Just-D\/chromium-1,Pluto-tv\/chromium-crosswalk,Chilledheart\/chromium,crosswalk-project\/chromium-crosswalk-efl,dednal\/chromium.src,zcbenz\/cefode-chromium,anirudhSK\/chromium,hgl888\/chromium-crosswalk-efl,markYoungH\/chromium.src,timopulkkinen\/BubbleFish,nacl-webkit\/chrome_deps,crosswalk-project\/chromium-crosswalk-efl,ChromiumWebApps\/chromium,patrickm\/chromium.src,pozdnyakov\/chromium-crosswalk,PeterWangIntel\/chromium-crosswalk,dednal\/chromium.src,nacl-webkit\/chrome_deps,axinging\/chromium-crosswalk,bright-sparks\/chromium-spacewalk,hgl888\/chromium-crosswalk-efl,timopulkkinen\/BubbleFish,Just-D\/chromium-1,anirudhSK\/chromium,pozdnyakov\/chromium-crosswalk,Pluto-tv\/chromium-crosswalk,littlstar\/chromium.src,pozdnyakov\/chromium-crosswalk,PeterWangIntel\/chromium-crosswalk,dednal\/chromium.src,TheTypoMaster\/chromium-crosswalk,mogoweb\/chromium-crosswalk,hujiajie\/pa-chromium,Pluto-tv\/chromium-crosswalk,dushu1203\/chromium.src,ondra-novak\/chromium.src,Jonekee\/chromium.src,ChromiumWebApps\/chromium,crosswalk-project\/chromium-crosswalk-efl,chuan9\/chromium-crosswalk,junmin-zhu\/chromium-rivertrail,jaruba\/chromium.src,littlstar\/chromium.src,bright-sparks\/chromium-spacewalk,ltilve\/chromium,junmin-zhu\/chromium-rivertrail,Jonekee\/chromium.src,Chilledheart\/chromium,dednal\/chromium.src,krieger-od\/nwjs_chromium.src,Jonekee\/chromium.src,Just-D\/chromium-1,zcbenz\/cefode-chromium,dushu1203\/chromium.src,mohamed--abdel-maksoud\/chromium.src,ondra-novak\/chromium.src,hgl888\/chromium-crosswalk,anirudhSK\/chromium,patrickm\/chromium.src,Fireblend\/chromium-crosswalk,Jonekee\/chromium.src,jaruba\/chromium.src,krieger-od\/nwjs_chromium.src,hgl888\/chromium-crosswalk,Just-D\/chromium-1,patrickm\/chromium.src,junmin-zhu\/chromium-rivertrail,timopulkkinen\/BubbleFish,fujunwei\/chromium-crosswalk,dednal\/chromium.src,ltilve\/chromium,ondra-novak\/chromium.src,pozdnyakov\/chromium-crosswalk,fujunwei\/chromium-crosswalk,ChromiumWebApps\/chromium,TheTypoMaster\/chromium-crosswalk,ltilve\/chromium,M4sse\/chromium.src,junmin-zhu\/chromium-rivertrail,TheTypoMaster\/chromium-crosswalk,timopulkkinen\/BubbleFish,axinging\/chromium-crosswalk,M4sse\/chromium.src,timopulkkinen\/BubbleFish,Fireblend\/chromium-crosswalk,dednal\/chromium.src,Jonekee\/chromium.src,junmin-zhu\/chromium-rivertrail,dushu1203\/chromium.src,PeterWangIntel\/chromium-crosswalk,hgl888\/chromium-crosswalk,dushu1203\/chromium.src,crosswalk-project\/chromium-crosswalk-efl,Pluto-tv\/chromium-crosswalk,krieger-od\/nwjs_chromium.src,markYoungH\/chromium.src,ondra-novak\/chromium.src,chuan9\/chromium-crosswalk,dushu1203\/chromium.src,chuan9\/chromium-crosswalk,hgl888\/chromium-crosswalk-efl,chuan9\/chromium-crosswalk,nacl-webkit\/chrome_deps,hujiajie\/pa-chromium,M4sse\/chromium.src,axinging\/chromium-crosswalk,jaruba\/chromium.src,mogoweb\/chromium-crosswalk,hujiajie\/pa-chromium,Pluto-tv\/chromium-crosswalk,zcbenz\/cefode-chromium,krieger-od\/nwjs_chromium.src,zcbenz\/cefode-chromium,M4sse\/chromium.src,Fireblend\/chromium-crosswalk,crosswalk-project\/chromium-crosswalk-efl,markYoungH\/chromium.src,fujunwei\/chromium-crosswalk,TheTypoMaster\/chromium-crosswalk,anirudhSK\/chromium,Chilledheart\/chromium,jaruba\/chromium.src,patrickm\/chromium.src,Fireblend\/chromium-crosswalk,krieger-od\/nwjs_chromium.src,TheTypoMaster\/chromium-crosswalk,junmin-zhu\/chromium-rivertrail,dushu1203\/chromium.src,axinging\/chromium-crosswalk,axinging\/chromium-crosswalk,mohamed--abdel-maksoud\/chromium.src,ChromiumWebApps\/chromium,timopulkkinen\/BubbleFish,mogoweb\/chromium-crosswalk,hujiajie\/pa-chromium,mogoweb\/chromium-crosswalk,markYoungH\/chromium.src,axinging\/chromium-crosswalk,hgl888\/chromium-crosswalk-efl,hgl888\/chromium-crosswalk-efl,PeterWangIntel\/chromium-crosswalk,ChromiumWebApps\/chromium,patrickm\/chromium.src,ondra-novak\/chromium.src,nacl-webkit\/chrome_deps,bright-sparks\/chromium-spacewalk,fujunwei\/chromium-crosswalk,markYoungH\/chromium.src,fujunwei\/chromium-crosswalk,nacl-webkit\/chrome_deps,chuan9\/chromium-crosswalk,littlstar\/chromium.src,bright-sparks\/chromium-spacewalk,Fireblend\/chromium-crosswalk,nacl-webkit\/chrome_deps,dednal\/chromium.src,hgl888\/chromium-crosswalk,Chilledheart\/chromium,ChromiumWebApps\/chromium,krieger-od\/nwjs_chromium.src,pozdnyakov\/chromium-crosswalk,junmin-zhu\/chromium-rivertrail,Chilledheart\/chromium,ltilve\/chromium,hujiajie\/pa-chromium,zcbenz\/cefode-chromium,littlstar\/chromium.src,littlstar\/chromium.src,patrickm\/chromium.src,ltilve\/chromium,markYoungH\/chromium.src,anirudhSK\/chromium,jaruba\/chromium.src,mohamed--abdel-maksoud\/chromium.src,M4sse\/chromium.src,anirudhSK\/chromium,mogoweb\/chromium-crosswalk,ltilve\/chromium,Pluto-tv\/chromium-crosswalk,dushu1203\/chromium.src,hgl888\/chromium-crosswalk-efl,hgl888\/chromium-crosswalk,mogoweb\/chromium-crosswalk,hujiajie\/pa-chromium,timopulkkinen\/BubbleFish,hgl888\/chromium-crosswalk,littlstar\/chromium.src,timopulkkinen\/BubbleFish,ondra-novak\/chromium.src,Jonekee\/chromium.src,M4sse\/chromium.src,timopulkkinen\/BubbleFish,Jonekee\/chromium.src,bright-sparks\/chromium-spacewalk,Jonekee\/chromium.src,dednal\/chromium.src,hgl888\/chromium-crosswalk-efl,krieger-od\/nwjs_chromium.src,Just-D\/chromium-1,Jonekee\/chromium.src,Chilledheart\/chromium,axinging\/chromium-crosswalk,dednal\/chromium.src,timopulkkinen\/BubbleFish,anirudhSK\/chromium,Fireblend\/chromium-crosswalk,littlstar\/chromium.src,junmin-zhu\/chromium-rivertrail,zcbenz\/cefode-chromium,TheTypoMaster\/chromium-crosswalk,anirudhSK\/chromium,mogoweb\/chromium-crosswalk,axinging\/chromium-crosswalk,M4sse\/chromium.src,Chilledheart\/chromium,hujiajie\/pa-chromium,patrickm\/chromium.src,patrickm\/chromium.src,mohamed--abdel-maksoud\/chromium.src,zcbenz\/cefode-chromium,hgl888\/chromium-crosswalk-efl,fujunwei\/chromium-crosswalk,Jonekee\/chromium.src,littlstar\/chromium.src,krieger-od\/nwjs_chromium.src,anirudhSK\/chromium,Jonekee\/chromium.src,axinging\/chromium-crosswalk,ondra-novak\/chromium.src,chuan9\/chromium-crosswalk,nacl-webkit\/chrome_deps,bright-sparks\/chromium-spacewalk,TheTypoMaster\/chromium-crosswalk,dednal\/chromium.src,markYoungH\/chromium.src,ChromiumWebApps\/chromium,fujunwei\/chromium-crosswalk,hujiajie\/pa-chromium,hgl888\/chromium-crosswalk-efl,chuan9\/chromium-crosswalk,mohamed--abdel-maksoud\/chromium.src,M4sse\/chromium.src,zcbenz\/cefode-chromium,ltilve\/chromium,ltilve\/chromium,markYoungH\/chromium.src,pozdnyakov\/chromium-crosswalk,krieger-od\/nwjs_chromium.src,bright-sparks\/chromium-spacewalk,jaruba\/chromium.src,hujiajie\/pa-chromium,chuan9\/chromium-crosswalk,Fireblend\/chromium-crosswalk,ondra-novak\/chromium.src,hujiajie\/pa-chromium,chuan9\/chromium-crosswalk,Fireblend\/chromium-crosswalk,nacl-webkit\/chrome_deps,crosswalk-project\/chromium-crosswalk-efl,hgl888\/chromium-crosswalk-efl,nacl-webkit\/chrome_deps,fujunwei\/chromium-crosswalk,Pluto-tv\/chromium-crosswalk,pozdnyakov\/chromium-crosswalk,anirudhSK\/chromium,anirudhSK\/chromium,anirudhSK\/chromium,mogoweb\/chromium-crosswalk,nacl-webkit\/chrome_deps,pozdnyakov\/chromium-crosswalk,pozdnyakov\/chromium-crosswalk,mohamed--abdel-maksoud\/chromium.src,Chilledheart\/chromium,jaruba\/chromium.src,ChromiumWebApps\/chromium,dednal\/chromium.src,mohamed--abdel-maksoud\/chromium.src,junmin-zhu\/chromium-rivertrail"} {"commit":"ea99e488a0eb1a986fb45c233950845163feb87e","old_file":"pubsub\/src\/main\/proto\/spine\/messaging\/pubsub\/pubsub_push.proto","new_file":"pubsub\/src\/main\/proto\/spine\/messaging\/pubsub\/pubsub_push.proto","old_contents":"","new_contents":"\/*\n * Copyright 2020, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\n\nsyntax = \"proto3\";\n\npackage spine.messaging.pubsub;\n\nimport \"spine\/options.proto\";\n\noption java_outer_classname = \"PubsubPushProto\";\noption java_package = \"io.spine.pubsub\";\noption java_multiple_files = true;\noption java_generate_equals_and_hash = true;\n\nimport \"google\/pubsub\/v1\/pubsub.proto\";\n\n\/\/ The definition of the Pub\/Sub<\/a> push request message\n\/\/ that is sent by the Pub\/Sub service when used with push subscriptions.\n\/\/\n\/\/ The push request looks like the example below in its canonical form.\n\/\/\n\/\/ ```\n\/\/ {\n\/\/ \"message\": {\n\/\/ \"attributes\": {\n\/\/ \"key\": \"value\"\n\/\/ },\n\/\/ \"data\": \"U3BpbmUgbG92ZXMgUHViL1N1YiE=\",\n\/\/ \"messageId\": \"136969346945\",\n\/\/ \"publishTime\": \"2020-06-24T13:05:36.021Z\"\n\/\/ },\n\/\/ \"subscription\": \"projects\/myproject\/subscriptions\/mysubscription\"\n\/\/ }\n\/\/ ```\n\/\/\n\/\/ See \n\/\/ receiving messages using Push<\/a> for more information.\n\/\/\nmessage PubsubPushRequest {\n\n \/\/ The Pub\/Sub message payload of the push request.\n google.pubsub.v1.PubsubMessage message = 1 [(required) = true];\n\n \/\/ The name of the Pub\/Sub subscription that pushed the current request.\n \/\/\n \/\/ Format is `projects\/{project}\/subscriptions\/{subscription}`.\n \/\/\n string subscription = 2 [(required) = true, (pattern).regex = \"projects\/.+\/subscriptions\/.+\"];\n}\n","subject":"Define Pubsub push request proto","message":"Define Pubsub push request proto\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/gae-java,SpineEventEngine\/gae-java"} {"commit":"eeaccbdbb67ec057a3acc2ee53c45bdea996a7ce","old_file":"opencog\/embodiment\/Control\/PerceptionActionInterface\/PAI.MapInfo.proto","new_file":"opencog\/embodiment\/Control\/PerceptionActionInterface\/PAI.MapInfo.proto","old_contents":"","new_contents":"package opencog.pai;\r\n\/\/ Specify the package name to generate correct namespace in cpp.\r\n\/\/ In this example, a namespace like:\r\n\/\/ namespace opencog { namespace pai {} }\r\n\/\/ will be generated.\r\n\r\nmessage MapInfo {\r\n message Vector3 {\r\n required float x = 1 [default = 0];\r\n required float y = 2 [default = 0];\r\n required float z = 3 [default = 0];\r\n }\r\n \r\n message Rotation {\r\n required float pitch = 1 [default = 0];\r\n required float roll = 2 [default = 0];\r\n required float yaw = 3 [default = 0];\r\n }\r\n\r\n \/\/ unique id\r\n required string id = 1;\r\n \/\/ object name\r\n required string name = 2;\r\n \/\/ object type\r\n required string type = 3;\r\n\r\n \/\/ position\r\n required Vector3 position = 4;\r\n\r\n \/\/ velocity\r\n optional Vector3 velocity = 5;\r\n\r\n \/\/ rotation\r\n required Rotation rotation = 6;\r\n\r\n \/\/ size\r\n required float length = 7;\r\n required float width = 8;\r\n required float height = 9;\r\n\r\n \/\/enum VisibilityStatus {\r\n \/\/ VISIBLE = 0;\r\n \/\/ INVISIBLE = 1;\r\n \/\/ UNKNOWN = 2;\r\n \/\/}\r\n\r\n message OCProperty {\r\n required string key = 1;\r\n optional string value = 2;\r\n }\r\n\r\n \/\/ A list\r\n repeated OCProperty properties = 10;\r\n}\r\n\r\n\/\/ Map info sequence containing the entity data from virtual world.\r\nmessage MapInfoSeq {\r\n repeated MapInfo mapinfos = 1;\r\n}\r\n\r\n\/\/ Map info sequence containing the block data of minecraft-like world.\r\nmessage Chunk {\r\n repeated MapInfo blocks = 1;\r\n}\r\n","subject":"Add proto description of PAI map info.","message":"Add proto description of PAI map info.","lang":"Protocol Buffer","license":"agpl-3.0","repos":"AmeBel\/opencog,cosmoharrigan\/opencog,anitzkin\/opencog,ceefour\/opencog,kinoc\/opencog,Tiggels\/opencog,Selameab\/opencog,kinoc\/opencog,andre-senna\/opencog,gavrieltal\/opencog,rodsol\/opencog,shujingke\/opencog,printedheart\/atomspace,kim135797531\/opencog,AmeBel\/atomspace,virneo\/atomspace,andre-senna\/opencog,kim135797531\/opencog,roselleebarle04\/opencog,AmeBel\/atomspace,virneo\/opencog,rTreutlein\/atomspace,AmeBel\/opencog,gaapt\/opencog,misgeatgit\/atomspace,ArvinPan\/opencog,roselleebarle04\/opencog,kim135797531\/opencog,rohit12\/opencog,MarcosPividori\/atomspace,eddiemonroe\/opencog,gaapt\/opencog,inflector\/atomspace,kinoc\/opencog,ruiting\/opencog,kim135797531\/opencog,UIKit0\/atomspace,eddiemonroe\/opencog,misgeatgit\/opencog,jlegendary\/opencog,sanuj\/opencog,yantrabuddhi\/opencog,sumitsourabh\/opencog,inflector\/opencog,anitzkin\/opencog,jswiergo\/atomspace,tim777z\/opencog,yantrabuddhi\/atomspace,prateeksaxena2809\/opencog,iAMr00t\/opencog,printedheart\/opencog,anitzkin\/opencog,gavrieltal\/opencog,inflector\/opencog,williampma\/atomspace,iAMr00t\/opencog,williampma\/atomspace,yantrabuddhi\/atomspace,kinoc\/opencog,inflector\/atomspace,prateeksaxena2809\/opencog,Allend575\/opencog,jlegendary\/opencog,misgeatgit\/opencog,shujingke\/opencog,tim777z\/opencog,kim135797531\/opencog,TheNameIsNigel\/opencog,jlegendary\/opencog,ruiting\/opencog,misgeatgit\/opencog,yantrabuddhi\/opencog,misgeatgit\/atomspace,MarcosPividori\/atomspace,virneo\/atomspace,cosmoharrigan\/atomspace,Allend575\/opencog,gaapt\/opencog,sanuj\/opencog,UIKit0\/atomspace,ruiting\/opencog,yantrabuddhi\/opencog,Selameab\/atomspace,eddiemonroe\/opencog,rohit12\/atomspace,eddiemonroe\/atomspace,sumitsourabh\/opencog,misgeatgit\/atomspace,iAMr00t\/opencog,williampma\/opencog,rodsol\/atomspace,rTreutlein\/atomspace,AmeBel\/atomspace,cosmoharrigan\/opencog,rodsol\/atomspace,AmeBel\/atomspace,gaapt\/opencog,printedheart\/opencog,eddiemonroe\/atomspace,rodsol\/opencog,roselleebarle04\/opencog,sumitsourabh\/opencog,rodsol\/opencog,virneo\/opencog,Tiggels\/opencog,sumitsourabh\/opencog,shujingke\/opencog,Tiggels\/opencog,Tiggels\/opencog,gavrieltal\/opencog,ceefour\/opencog,zhaozengguang\/opencog,williampma\/opencog,ruiting\/opencog,gaapt\/opencog,inflector\/opencog,misgeatgit\/opencog,jlegendary\/opencog,gavrieltal\/opencog,TheNameIsNigel\/opencog,ceefour\/atomspace,inflector\/opencog,williampma\/atomspace,Allend575\/opencog,inflector\/opencog,roselleebarle04\/opencog,williampma\/opencog,AmeBel\/opencog,rohit12\/opencog,misgeatgit\/opencog,gaapt\/opencog,cosmoharrigan\/opencog,zhaozengguang\/opencog,zhaozengguang\/opencog,cosmoharrigan\/atomspace,inflector\/opencog,anitzkin\/opencog,ArvinPan\/opencog,Tiggels\/opencog,Allend575\/opencog,rodsol\/opencog,jswiergo\/atomspace,sumitsourabh\/opencog,jlegendary\/opencog,ArvinPan\/atomspace,ceefour\/opencog,ruiting\/opencog,ceefour\/opencog,shujingke\/opencog,printedheart\/opencog,Selameab\/opencog,ArvinPan\/opencog,inflector\/opencog,ArvinPan\/atomspace,inflector\/atomspace,sanuj\/opencog,cosmoharrigan\/opencog,zhaozengguang\/opencog,williampma\/atomspace,sanuj\/opencog,virneo\/atomspace,virneo\/opencog,williampma\/opencog,rohit12\/opencog,rohit12\/atomspace,rTreutlein\/atomspace,rTreutlein\/atomspace,shujingke\/opencog,virneo\/opencog,ceefour\/atomspace,kim135797531\/opencog,prateeksaxena2809\/opencog,Selameab\/opencog,TheNameIsNigel\/opencog,yantrabuddhi\/atomspace,Selameab\/opencog,tim777z\/opencog,eddiemonroe\/opencog,printedheart\/opencog,gavrieltal\/opencog,rohit12\/opencog,ruiting\/opencog,gaapt\/opencog,kinoc\/opencog,zhaozengguang\/opencog,williampma\/opencog,printedheart\/atomspace,tim777z\/opencog,rodsol\/atomspace,inflector\/opencog,cosmoharrigan\/opencog,prateeksaxena2809\/opencog,iAMr00t\/opencog,andre-senna\/opencog,virneo\/opencog,roselleebarle04\/opencog,Tiggels\/opencog,shujingke\/opencog,misgeatgit\/opencog,gavrieltal\/opencog,MarcosPividori\/atomspace,cosmoharrigan\/opencog,Selameab\/atomspace,roselleebarle04\/opencog,virneo\/atomspace,jlegendary\/opencog,UIKit0\/atomspace,AmeBel\/opencog,yantrabuddhi\/atomspace,TheNameIsNigel\/opencog,ArvinPan\/atomspace,cosmoharrigan\/atomspace,inflector\/atomspace,inflector\/atomspace,printedheart\/opencog,ArvinPan\/atomspace,sumitsourabh\/opencog,andre-senna\/opencog,williampma\/opencog,ceefour\/opencog,rTreutlein\/atomspace,sanuj\/opencog,virneo\/opencog,sanuj\/opencog,kinoc\/opencog,Allend575\/opencog,sumitsourabh\/opencog,misgeatgit\/opencog,gavrieltal\/opencog,AmeBel\/opencog,Allend575\/opencog,eddiemonroe\/atomspace,roselleebarle04\/opencog,rohit12\/opencog,misgeatgit\/opencog,ruiting\/opencog,andre-senna\/opencog,virneo\/opencog,rodsol\/opencog,misgeatgit\/opencog,andre-senna\/opencog,ceefour\/opencog,AmeBel\/opencog,anitzkin\/opencog,eddiemonroe\/atomspace,ceefour\/atomspace,shujingke\/opencog,Selameab\/opencog,iAMr00t\/opencog,iAMr00t\/opencog,rodsol\/atomspace,rohit12\/atomspace,eddiemonroe\/opencog,ceefour\/opencog,eddiemonroe\/opencog,kinoc\/opencog,jswiergo\/atomspace,TheNameIsNigel\/opencog,yantrabuddhi\/opencog,kim135797531\/opencog,tim777z\/opencog,eddiemonroe\/atomspace,cosmoharrigan\/atomspace,yantrabuddhi\/atomspace,yantrabuddhi\/opencog,Selameab\/opencog,UIKit0\/atomspace,prateeksaxena2809\/opencog,Selameab\/atomspace,Selameab\/atomspace,jlegendary\/opencog,TheNameIsNigel\/opencog,misgeatgit\/atomspace,rohit12\/opencog,printedheart\/atomspace,prateeksaxena2809\/opencog,printedheart\/atomspace,yantrabuddhi\/opencog,ArvinPan\/opencog,jswiergo\/atomspace,eddiemonroe\/opencog,rohit12\/atomspace,AmeBel\/atomspace,ArvinPan\/opencog,ceefour\/atomspace,yantrabuddhi\/opencog,anitzkin\/opencog,tim777z\/opencog,anitzkin\/opencog,AmeBel\/opencog,rodsol\/opencog,prateeksaxena2809\/opencog,andre-senna\/opencog,printedheart\/opencog,zhaozengguang\/opencog,ArvinPan\/opencog,misgeatgit\/atomspace,Allend575\/opencog,MarcosPividori\/atomspace"} {"commit":"3bd0213c13b3e37fc10a7440bd4ca3c9d42d484e","old_file":"values\/src\/main\/proto\/spine\/work\/work.proto","new_file":"values\/src\/main\/proto\/spine\/work\/work.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage spine.work;\n\noption java_generate_equals_and_hash = true;\noption java_multiple_files = true;\noption java_package = \"org.spine3.work\";\noption java_outer_classname = \"WorkProto\";\n\n\/\/ Represents the amount of work done in minutes.\nmessage Work {\n int32 minutes = 1;\n}\n\n","subject":"Add Protobuf definition for Work.","message":"Add Protobuf definition for Work.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"} {"commit":"28d74ee09e7ad3caf877c713f5cd838633ab0a39","old_file":"proto\/google\/events\/cloud\/scheduler\/v1\/events.proto","new_file":"proto\/google\/events\/cloud\/scheduler\/v1\/events.proto","old_contents":"","new_contents":"\/\/ Copyright 2020 Google LLC\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage google.events.cloud.scheduler.v1;\n\noption csharp_namespace = \"Google.Events.Protobuf.Cloud.Scheduler.V1\";\n\nimport \"google\/events\/cloudevent.proto\";\nimport \"google\/protobuf\/timestamp.proto\";\n\n\/\/ The CloudEvent raised when a Scheduler job is executed.\nmessage JobExecuted {\n option (google.events.cloud_event_type) =\n \"google.cloud.scheduler.job.v1.executed\";\n\n \/\/ The data associated with the event.\n SchedulerData data = 1;\n}\n\n\/\/ Scheduler event data.\nmessage SchedulerData {\n \/\/ The custom data the user specified when creating the scheduler source.\n bytes custom_data = 1;\n\n \/\/ The time at which the job was executed, populated by the server.\n google.protobuf.Timestamp execution_time = 2;\n}","subject":"Add cloud scheduler event initial data schema","message":"Add cloud scheduler event initial data schema\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"googleapis\/google-cloudevents,googleapis\/google-cloudevents,googleapis\/google-cloudevents"} {"commit":"f8e9fb6d43cfc7511762ebc6feeb50c454758320","old_file":"incubator\/protobuf\/models\/src\/main\/proto\/core\/ApplicationProto.proto","new_file":"incubator\/protobuf\/models\/src\/main\/proto\/core\/ApplicationProto.proto","old_contents":"","new_contents":"syntax = \"proto3\";\noption java_package = \"org.onosproject.grpc.core.models\";\n\npackage core;\n\nimport \"core\/ApplicationIdProto.proto\";\nimport \"app\/ApplicationEnumsProto.proto\";\nimport \"security\/PermissionProto.proto\";\n\n\/\/ Corresponds to org.onosproject.core.Application.\nmessage ApplicationProto {\n core.ApplicationIdProto app_id = 1;\n string version = 2;\n string title = 3;\n string description = 4;\n string category = 5;\n string url = 6;\n string readme = 7;\n\n \/\/ tag id 8 is reserved for app icon\n reserved 8;\n\n string origin = 9;\n app.ApplicationRoleProto role = 10;\n repeated security.PermissionProto permissions = 11;\n\n \/\/ tag id 12 is reserved for features repo\n \/\/ optional type will be added later\n reserved 12;\n repeated string features = 13;\n repeated string required_apps = 14;\n}","subject":"Add Application message type in protobuf model","message":"[ONOS-6684] Add Application message type in protobuf model\n\nChange-Id: I2bcb4f4f6b41e648072d5c0f6b363c7431fc7ce7\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"osinstom\/onos,oplinkoms\/onos,opennetworkinglab\/onos,opennetworkinglab\/onos,oplinkoms\/onos,oplinkoms\/onos,oplinkoms\/onos,kuujo\/onos,kuujo\/onos,opennetworkinglab\/onos,gkatsikas\/onos,kuujo\/onos,osinstom\/onos,gkatsikas\/onos,osinstom\/onos,oplinkoms\/onos,opennetworkinglab\/onos,gkatsikas\/onos,kuujo\/onos,opennetworkinglab\/onos,gkatsikas\/onos,kuujo\/onos,oplinkoms\/onos,kuujo\/onos,opennetworkinglab\/onos,osinstom\/onos,gkatsikas\/onos,kuujo\/onos,gkatsikas\/onos,osinstom\/onos,oplinkoms\/onos"} {"commit":"ef60aaf13fe817c691d210c035cd558da9359c95","old_file":"google\/protobuf\/proto2-descriptor-extensions.proto","new_file":"google\/protobuf\/proto2-descriptor-extensions.proto","old_contents":"","new_contents":"\/\/ Copyright 2012-2020 Google LLC\n\/\/\n\/\/ Use of this source code is governed by an MIT-style\n\/\/ license that can be found in the LICENSE file or at\n\/\/ https:\/\/opensource.org\/licenses\/MIT.\n\n\/\/ extensions to descriptor.proto to support lisp-specific extensions\n\/\/ in proto definitions\n\nsyntax = \"proto2\";\n\nimport \"google\/protobuf\/descriptor.proto\";\n\nenum LispContainer {\n LIST = 0;\n VECTOR = 1;\n}\n\nextend google.protobuf.FileOptions {\n optional string lisp_package = 195801;\n}\n\nextend google.protobuf.MessageOptions {\n \/\/ Note those are only for Messages.\n \/\/ Cannot specify for other declarations like enums.\n optional string lisp_name = 195802;\n optional string lisp_alias = 195803;\n optional string lisp_class = 195805;\n}\n\nextend google.protobuf.FieldOptions {\n optional string lisp_type = 195804;\n optional string lisp_slot = 195806;\n \/\/ Only meaningful for repeated fields.\n \/\/ Allow use vector-of instead of list-of.\n optional LispContainer lisp_container = 195807;\n}\n","subject":"Add copy of proto2 extensions to google\/protobuf\/","message":"Add copy of proto2 extensions to google\/protobuf\/\n\nThis is a quick fix to the currently broken makefile. Since\ncl-protobufs now supplies descriptor.proto, the import statement\nof proto2-descriptor-extensions must reference that local version.\nHowever, this is inconsistent with how we build the protoc plugin,\nand thus the makefile breaks. Adding this copy with the original\nimport statement allows the makefile to work.\n","lang":"Protocol Buffer","license":"mit","repos":"qitab\/cl-protobufs,qitab\/cl-protobufs"} {"commit":"8e27c440046653588342200c5e39be017d6aab3b","old_file":"coprocess\/proto\/coprocess_object.proto","new_file":"coprocess\/proto\/coprocess_object.proto","old_contents":"syntax = \"proto3\";\n\nimport \"coprocess_mini_request_object.proto\";\nimport \"coprocess_session_state.proto\";\nimport \"coprocess_common.proto\";\n\npackage coprocess;\n\nmessage Object {\n HookType hook_type = 1;\n string hook_name = 2;\n MiniRequestObject request = 3;\n SessionState session = 4;\n map metadata = 5;\n map spec = 6;\n}\n\nservice Dispatcher {\n rpc Dispatch (Object) returns (Object) {}\n}\n","new_contents":"syntax = \"proto3\";\n\nimport \"coprocess_mini_request_object.proto\";\nimport \"coprocess_session_state.proto\";\nimport \"coprocess_common.proto\";\n\npackage coprocess;\n\nmessage Object {\n HookType hook_type = 1;\n string hook_name = 2;\n MiniRequestObject request = 3;\n SessionState session = 4;\n map metadata = 5;\n map spec = 6;\n}\n\nmessage Event {\n string payload = 1;\n}\n\nmessage EventReply {}\n\nservice Dispatcher {\n rpc Dispatch (Object) returns (Object) {}\n rpc DispatchEvent (Event) returns (EventReply) {}\n}\n","subject":"Update gRPC service definition to include DispatchEvent.","message":"Update gRPC service definition to include DispatchEvent.\n","lang":"Protocol Buffer","license":"mpl-2.0","repos":"nebolsin\/tyk,mvdan\/tyk,mvdan\/tyk,mvdan\/tyk,nebolsin\/tyk,mvdan\/tyk,lonelycode\/tyk,nebolsin\/tyk,nebolsin\/tyk,nebolsin\/tyk,mvdan\/tyk,mvdan\/tyk,nebolsin\/tyk,nebolsin\/tyk,nebolsin\/tyk,mvdan\/tyk,mvdan\/tyk,lonelycode\/tyk,lonelycode\/tyk"} {"commit":"70932d6fc946f0b4982fb00cde2ebdab9f566898","old_file":"pb.proto","new_file":"pb.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\nservice LEDServer {\n rpc Set(stream LED) returns (None);\n}\n\nmessage LED {\n uint32 index = 1;\n fixed32 rgb = 2;\n}\n\nmessage None {\n}\n","subject":"Add protobuf file for sending RGB values.","message":"Add protobuf file for sending RGB values.\n","lang":"Protocol Buffer","license":"mit","repos":"ambientsound\/wirelight,ambientsound\/wirelight,ambientsound\/wirelight,ambientsound\/wirelight,ambientsound\/wirelight"} {"commit":"0bf913181595c08d8f436c9adc1949114c97b79c","old_file":"OpenScienceJournal\/whistlepunk_library\/src\/main\/proto\/experiment_library.proto","new_file":"OpenScienceJournal\/whistlepunk_library\/src\/main\/proto\/experiment_library.proto","old_contents":"","new_contents":"\/*\n * Copyright 2018 Google Inc. All Rights Reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nsyntax = \"proto2\";\n\npackage goosci;\noption java_package = \"com.google.android.apps.forscience.whistlepunk.data\";\noption java_outer_classname = \"GoosciExperimentLibrary\";\noption objc_class_prefix = \"GSJ\";\noption optimize_for = LITE_RUNTIME;\n\n\/\/ The overall collection of Experiments known to the user.\n\/\/ Next Tag: 2\nmessage ExperimentLibrary {\n repeated SyncExperiment syncExperiment = 1;\n}\n\n\/\/ A single experiment to be synced to Drive.\n\/\/ Next Tag: 7\nmessage SyncExperiment {\n \/\/ The Drive fileId.\n optional string fileId = 1;\n\n \/\/ The experimentId from the experiment.\n optional string experimentId = 2;\n\n \/\/ The timestamp of the last time the experiment was opened.\n optional int64 lastOpened = 3;\n\n \/\/ The timestamp of the last time the experiment was modified.\n optional int64 lastModified = 4;\n\n \/\/ Whether the experiment has been deleted.\n optional bool deleted = 5;\n\n \/\/ Whether the experiment has been archived.\n optional bool archived = 6;\n}\n","subject":"Add the Experiment Library proto","message":"Add the Experiment Library proto\n\nPiperOrigin-RevId: 194104613\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"googlearchive\/science-journal,googlearchive\/science-journal,googlearchive\/science-journal"} {"commit":"5af14ad9c4481cd7058327c816fe6caf6f19970d","old_file":"Misc\/cast_channel.proto","new_file":"Misc\/cast_channel.proto","old_contents":"","new_contents":"\/\/ Copyright 2013 The Chromium Authors. All rights reserved.\n\/\/ Use of this source code is governed by a BSD-style license that can be\n\/\/ found in the LICENSE file.\n\nsyntax = \"proto2\";\n\noption optimize_for = LITE_RUNTIME;\n\npackage extensions.api.cast_channel;\n\nmessage CastMessage {\n \/\/ Always pass a version of the protocol for future compatibility\n \/\/ requirements.\n enum ProtocolVersion {\n CASTV2_1_0 = 0;\n }\n required ProtocolVersion protocol_version = 1;\n\n \/\/ source and destination ids identify the origin and destination of the\n \/\/ message. They are used to route messages between endpoints that share a\n \/\/ device-to-device channel.\n \/\/\n \/\/ For messages between applications:\n \/\/ - The sender application id is a unique identifier generated on behalf of\n \/\/ the sender application.\n \/\/ - The receiver id is always the the session id for the application.\n \/\/\n \/\/ For messages to or from the sender or receiver platform, the special ids\n \/\/ 'sender-0' and 'receiver-0' can be used.\n \/\/ \n \/\/ For messages intended for all endpoints using a given channel, the\n \/\/ wildcard destination_id '*' can be used.\n required string source_id = 2;\n required string destination_id = 3;\n\n \/\/ This is the core multiplexing key. All messages are sent on a namespace\n \/\/ and endpoints sharing a channel listen on one or more namespaces. The\n \/\/ namespace defines the protocol and semantics of the message.\n required string namespace = 4;\n\n \/\/ Encoding and payload info follows.\n\n \/\/ What type of data do we have in this message.\n enum PayloadType {\n STRING = 0;\n BINARY = 1;\n }\n required PayloadType payload_type = 5;\n\n \/\/ Depending on payload_type, exactly one of the following optional fields\n \/\/ will always be set.\n optional string payload_utf8 = 6;\n optional bytes payload_binary = 7;\n}\n\n\/\/ Messages for authentication protocol between a sender and a receiver.\nmessage AuthChallenge {\n}\n\nmessage AuthResponse {\n required bytes signature = 1;\n required bytes client_auth_certificate = 2;\n}\n\nmessage AuthError {\n enum ErrorType {\n INTERNAL_ERROR = 0;\n NO_TLS = 1; \/\/ The underlying connection is not TLS\n }\n required ErrorType error_type = 1;\n}\n\nmessage DeviceAuthMessage {\n \/\/ Request fields\n optional AuthChallenge challenge = 1;\n \/\/ Response fields\n optional AuthResponse response = 2;\n optional AuthError error = 3;\n}\n","subject":"Add protobuf source file for Cast Channels","message":"Add protobuf source file for Cast Channels\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"acj\/OpenCast,acj\/OpenCast"} {"commit":"c56188ce95ae7d7675ce73eb6a4755cdb7eb77fc","old_file":"base\/src\/test\/proto\/spine\/test\/validate\/test_goes_option.proto","new_file":"base\/src\/test\/proto\/spine\/test\/validate\/test_goes_option.proto","old_contents":"","new_contents":"\/*\n * Copyright 2019, TeamDev. All rights reserved.\n *\n * Redistribution and use in source and\/or binary forms, with or without\n * modification, must retain the above copyright notice and the following\n * disclaimer.\n *\n * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n * \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT\n * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,\n * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT\n * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,\n * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY\n * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT\n * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE\n * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n *\/\nsyntax = \"proto3\";\n\npackage spine.test.validation;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_multiple_files = true;\noption java_outer_classname = \"TestGoesOptionProto\";\noption java_package = \"io.spine.test.validate\";\n\nimport \"google\/protobuf\/timestamp.proto\";\n\n\/\/ Messages for \"goes\" option tests.\n\n\/\/ A scheduled payment which `id` and `timestamp` fields are filled as soon as the payment is\n\/\/ processed.\nmessage Payment {\n\n PaymentId id = 1 [(goes).with = \"timestamp\"];\n\n string description = 2;\n\n google.protobuf.Timestamp timestamp = 3 [(goes).with = \"id\"];\n}\n\nmessage PaymentId {\n\n string uuid = 1;\n}\n","subject":"Create a test message with (goes) usage","message":"Create a test message with (goes) usage\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/base,SpineEventEngine\/base,SpineEventEngine\/base"} {"commit":"f297ad2f71a0305bd946f2ec70ab0b35b1c4f9e5","old_file":"protos\/rtpp_response.proto","new_file":"protos\/rtpp_response.proto","old_contents":"","new_contents":"enum rtpc_result {\n RTPC_SUCCESS = 1;\n RTPC_FAILURE = 2;\n}\n\nenum address_families {\n AF_INET = 1;\n AF_INET6 = 2;\n}\n\nmessage ip_address {\n required int32 port = 1;\n required string ip = 2;\n required address_families af = 3;\n}\n\nmessage rtpp_response {\n required rtpc_result result = 1;\n optional ip_address local_addr = 2;\n}\n","subject":"Add draft proto for the rtpproxy's responses.","message":"Add draft proto for the rtpproxy's responses.\n","lang":"Protocol Buffer","license":"bsd-2-clause","repos":"jevonearth\/rtpproxy,sippy\/rtpproxy,dsanders11\/rtpproxy,jevonearth\/rtpproxy,synety-jdebp\/rtpproxy,synety-jdebp\/rtpproxy,synety-jdebp\/rtpproxy,synety-jdebp\/rtpproxy,sippy\/rtpproxy,jevonearth\/rtpproxy,dsanders11\/rtpproxy,jevonearth\/rtpproxy,dsanders11\/rtpproxy,sippy\/rtpproxy"} {"commit":"be0c9ff51ac4567aaa9b78abef6372c7ba301c01","old_file":"java\/dagger\/internal\/codegen\/dagger_statistics.proto","new_file":"java\/dagger\/internal\/codegen\/dagger_statistics.proto","old_contents":"","new_contents":"syntax = \"proto2\";\n\npackage dagger.internal.codegen.proto;\noption java_package = \"dagger.internal.codegen.proto\";\n\nimport \"google\/protobuf\/duration.proto\";\n\nmessage DaggerBuildStatistics {\n optional google.protobuf.Duration total_processing_time = 1;\n}\n","subject":"Move DaggerBuildStatistics from JavaBuilder's codebase into Dagger's codebase.","message":"Move DaggerBuildStatistics from JavaBuilder's codebase into Dagger's codebase.\n\nRELNOTES=n\/a\nRELNOTES: none\n\n-------------\nCreated by MOE: https:\/\/github.com\/google\/moe\nMOE_MIGRATED_REVID=233431285\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"ze-pequeno\/dagger,dushmis\/dagger,cgruber\/dagger,cgruber\/dagger,google\/dagger,google\/dagger,ze-pequeno\/dagger,cgruber\/dagger,ze-pequeno\/dagger,ze-pequeno\/dagger,google\/dagger,dushmis\/dagger,google\/dagger"} {"commit":"fdba38b4215403f8e41135799e625f6562cf523e","old_file":"mixer\/v1\/config\/descriptor\/monitored_resource_descriptor.proto","new_file":"mixer\/v1\/config\/descriptor\/monitored_resource_descriptor.proto","old_contents":"\/\/ Copyright 2016 Google Inc.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage istio.mixer.v1.config.descriptor;\n\n\/\/ An object that describes the schema of a 'MonitoredResource'\n\/\/ using a name and a set of attributes.\nmessage MonitoredResourceDescriptor {\n \/\/ The name of this descriptor\n string name = 1;\n\n \/\/ An optional detailed description of the monitored resource descriptor that might\n \/\/ be used in documentation.\n string description = 2;\n\n \/\/ The set of attributes that are necessary to describe a specific instance of a monitored resource.\n repeated string attributes = 3;\n}\n","new_contents":"\/\/ Copyright 2016 Google Inc.\n\/\/\n\/\/ Licensed under the Apache License, Version 2.0 (the \"License\");\n\/\/ you may not use this file except in compliance with the License.\n\/\/ You may obtain a copy of the License at\n\/\/\n\/\/ http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n\/\/\n\/\/ Unless required by applicable law or agreed to in writing, software\n\/\/ distributed under the License is distributed on an \"AS IS\" BASIS,\n\/\/ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n\/\/ See the License for the specific language governing permissions and\n\/\/ limitations under the License.\n\nsyntax = \"proto3\";\n\npackage istio.mixer.v1.config.descriptor;\n\n\/\/ An object that describes the schema of a `MonitoredResource`. A\n\/\/ `MonitoredResource` is used to define a type of resources for\n\/\/ monitoring purpose. For example, the monitored resource \"VM refers\n\/\/ to virtual machines, which requires 3 attributes \"owner\", \"zone\",\n\/\/ \"name\" to uniquely identify a specific instance. When reporting\n\/\/ a metric against a monitored resource, the metric attributes will\n\/\/ be used to associate the right value with the right instance,\n\/\/ such as memory usage of a VM.\nmessage MonitoredResourceDescriptor {\n \/\/ The name of this descriptor\n string name = 1;\n\n \/\/ An optional detailed description of the monitored resource descriptor that might\n \/\/ be used in documentation.\n string description = 2;\n\n \/\/ The set of attributes that are necessary to describe a specific instance of a monitored resource.\n repeated string attributes = 3;\n}\n","subject":"Add detailed documentation for monitored resource.","message":"Add detailed documentation for monitored resource.","lang":"Protocol Buffer","license":"apache-2.0","repos":"cloudfoundry-attic\/api,cloudfoundry-attic\/api,cloudfoundry-attic\/api,rshriram\/api,geeknoid\/api,geeknoid\/api,cloudfoundry-attic\/api,istio\/api,istio\/api,istio\/api,rshriram\/api,istio\/api,geeknoid\/api,rshriram\/api,geeknoid\/api,cloudfoundry-attic\/api"} {"commit":"e0769aaedc23c010e756f3633e41f77ae6fae5bf","old_file":"proto\/grid\/messages\/transfer_messages.proto","new_file":"proto\/grid\/messages\/transfer_messages.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage syft.grid.messages;\n\nimport \"proto\/core\/common\/common_object.proto\";\nimport \"proto\/core\/io\/address.proto\";\n\nmessage LoadObjectMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n string content = 3;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage LoadObjectResponse {\n syft.core.common.UID msg_id = 1;\n int32 status_code = 2;\n string content = 3;\n syft.core.io.Address address = 4;\n}\n\n\nmessage SaveObjectMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n string content = 3;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage SaveObjectResponse {\n syft.core.common.UID msg_id = 1;\n int32 status_code = 2;\n string content = 3;\n syft.core.io.Address address = 4;\n}\n","subject":"ADD transfer messages protobuf schema","message":"ADD transfer messages protobuf schema\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft"} {"commit":"ca7d82abf1b37025be526d0b0e58db72778d2272","old_file":"caffe2\/proto\/metanet.proto","new_file":"caffe2\/proto\/metanet.proto","old_contents":"","new_contents":"syntax = \"proto2\";\n\nimport \"caffe2\/proto\/caffe2.proto\";\n\npackage caffe2;\n\nmessage ModelInfo {\n optional string project = 1;\n optional string modelClass = 2;\n optional string version = 3;\n optional string predictorType = 4 [ default = \"SINGLE_PREDICTOR\" ];\n optional string modelId = 5;\n}\n\nmessage BlobsMap {\n required string key = 1;\n repeated string value = 2;\n}\n\nmessage NetsMap {\n required string key = 1;\n required NetDef value = 2;\n}\n\nmessage PlansMap {\n required string key = 1;\n required PlanDef value = 2;\n}\n\nmessage StringMap {\n required string key = 1;\n required string value = 2;\n}\n\nmessage MetaNetDef {\n repeated BlobsMap blobs = 1;\n \/\/ Text-format serialized NetDefs.\n repeated NetsMap nets = 2;\n \/\/ Info about where the model comes from. Possible use cases:\n \/\/ 1) sanity check or diagnose\n \/\/ 2) provide info for evaluation.\n optional ModelInfo modelInfo = 3;\n repeated PlansMap plans = 4;\n repeated StringMap applicationSpecificInfo = 5;\n}\n","subject":"Change the predictor to use Protobuf","message":"Change the predictor to use Protobuf\n\nReviewed By: salexspb\n\nDifferential Revision: D4644798\n\nfbshipit-source-id: 0cf96dfc9061f87978a57d2fedcfe4a0bb012405\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"pietern\/caffe2,Yangqing\/caffe2,Yangqing\/caffe2,bwasti\/caffe2,davinwang\/caffe2,bwasti\/caffe2,davinwang\/caffe2,xzturn\/caffe2,sf-wind\/caffe2,Yangqing\/caffe2,davinwang\/caffe2,davinwang\/caffe2,xzturn\/caffe2,pietern\/caffe2,sf-wind\/caffe2,Yangqing\/caffe2,sf-wind\/caffe2,bwasti\/caffe2,pietern\/caffe2,bwasti\/caffe2,xzturn\/caffe2,davinwang\/caffe2,xzturn\/caffe2,bwasti\/caffe2,sf-wind\/caffe2,Yangqing\/caffe2,pietern\/caffe2,xzturn\/caffe2,caffe2\/caffe2,pietern\/caffe2,sf-wind\/caffe2"} {"commit":"5cf9a5de8d0f3ba047aa42b6c7073bad476a2b7b","old_file":"tensorflow\/core\/data\/service\/common.proto","new_file":"tensorflow\/core\/data\/service\/common.proto","old_contents":"syntax = \"proto3\";\n\npackage tensorflow.data;\n\nimport \"tensorflow\/core\/framework\/graph.proto\";\nimport \"tensorflow\/core\/framework\/types.proto\";\n\nmessage DatasetDef {\n \/\/ We represent datasets as tensorflow GraphDefs which define the operations\n \/\/ needed to create a tf.data dataset.\n GraphDef graph = 1;\n}\n\nmessage TaskDef {\n \/\/ The dataset to iterate over.\n \/\/ TODO(aaudibert): load the dataset from disk instead of passing it here.\n DatasetDef dataset = 1;\n int64 dataset_id = 2;\n int64 task_id = 3;\n int64 job_id = 4;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage tensorflow.data;\n\nimport \"tensorflow\/core\/framework\/graph.proto\";\n\nmessage DatasetDef {\n \/\/ We represent datasets as tensorflow GraphDefs which define the operations\n \/\/ needed to create a tf.data dataset.\n GraphDef graph = 1;\n}\n\nmessage TaskDef {\n \/\/ The dataset to iterate over.\n \/\/ TODO(aaudibert): load the dataset from disk instead of passing it here.\n DatasetDef dataset = 1;\n int64 dataset_id = 2;\n int64 task_id = 3;\n int64 job_id = 4;\n}\n","subject":"Remove an unused proto include","message":"Remove an unused proto include\n\nPiperOrigin-RevId: 322812216\nChange-Id: Ic6ac2a5df5cb63627801c623533cd779504cba16\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"yongtang\/tensorflow,freedomtan\/tensorflow,yongtang\/tensorflow,tensorflow\/tensorflow,yongtang\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,davidzchen\/tensorflow,frreiss\/tensorflow-fred,freedomtan\/tensorflow,gautam1858\/tensorflow,davidzchen\/tensorflow,gautam1858\/tensorflow,Intel-Corporation\/tensorflow,sarvex\/tensorflow,paolodedios\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,gautam1858\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,gautam1858\/tensorflow,aam-at\/tensorflow,frreiss\/tensorflow-fred,paolodedios\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,davidzchen\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,paolodedios\/tensorflow,cxxgtxy\/tensorflow,annarev\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow,karllessard\/tensorflow,cxxgtxy\/tensorflow,aldian\/tensorflow,davidzchen\/tensorflow,sarvex\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow,yongtang\/tensorflow,cxxgtxy\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow,aldian\/tensorflow,paolodedios\/tensorflow,frreiss\/tensorflow-fred,davidzchen\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-experimental_link_static_libraries_once,yongtang\/tensorflow,paolodedios\/tensorflow,petewarden\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-experimental_link_static_libraries_once,aam-at\/tensorflow,karllessard\/tensorflow,annarev\/tensorflow,Intel-tensorflow\/tensorflow,freedomtan\/tensorflow,Intel-tensorflow\/tensorflow,annarev\/tensorflow,davidzchen\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-pywrap_saved_model,frreiss\/tensorflow-fred,petewarden\/tensorflow,frreiss\/tensorflow-fred,paolodedios\/tensorflow,davidzchen\/tensorflow,petewarden\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,yongtang\/tensorflow,freedomtan\/tensorflow,petewarden\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,frreiss\/tensorflow-fred,sarvex\/tensorflow,Intel-tensorflow\/tensorflow,cxxgtxy\/tensorflow,gautam1858\/tensorflow,cxxgtxy\/tensorflow,aam-at\/tensorflow,aam-at\/tensorflow,petewarden\/tensorflow,Intel-tensorflow\/tensorflow,annarev\/tensorflow,petewarden\/tensorflow,petewarden\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow,annarev\/tensorflow,annarev\/tensorflow,aam-at\/tensorflow,gautam1858\/tensorflow,aam-at\/tensorflow,gautam1858\/tensorflow,gautam1858\/tensorflow,yongtang\/tensorflow,cxxgtxy\/tensorflow,petewarden\/tensorflow,freedomtan\/tensorflow,aam-at\/tensorflow,karllessard\/tensorflow,karllessard\/tensorflow,sarvex\/tensorflow,davidzchen\/tensorflow,frreiss\/tensorflow-fred,tensorflow\/tensorflow-pywrap_tf_optimizer,frreiss\/tensorflow-fred,petewarden\/tensorflow,aldian\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,annarev\/tensorflow,Intel-tensorflow\/tensorflow,yongtang\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,sarvex\/tensorflow,paolodedios\/tensorflow,annarev\/tensorflow,paolodedios\/tensorflow,karllessard\/tensorflow,frreiss\/tensorflow-fred,aldian\/tensorflow,aldian\/tensorflow,aldian\/tensorflow,aam-at\/tensorflow,Intel-tensorflow\/tensorflow,aldian\/tensorflow,davidzchen\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,aam-at\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-pywrap_saved_model,frreiss\/tensorflow-fred,tensorflow\/tensorflow-pywrap_saved_model,tensorflow\/tensorflow-pywrap_saved_model,frreiss\/tensorflow-fred,tensorflow\/tensorflow-pywrap_tf_optimizer,Intel-Corporation\/tensorflow,aam-at\/tensorflow,sarvex\/tensorflow,gautam1858\/tensorflow,aam-at\/tensorflow,freedomtan\/tensorflow,davidzchen\/tensorflow,Intel-Corporation\/tensorflow,gautam1858\/tensorflow,frreiss\/tensorflow-fred,tensorflow\/tensorflow-pywrap_saved_model,tensorflow\/tensorflow-pywrap_saved_model,yongtang\/tensorflow,freedomtan\/tensorflow,cxxgtxy\/tensorflow,tensorflow\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow,freedomtan\/tensorflow,paolodedios\/tensorflow,gautam1858\/tensorflow,sarvex\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow,aam-at\/tensorflow,freedomtan\/tensorflow,petewarden\/tensorflow,petewarden\/tensorflow,tensorflow\/tensorflow,tensorflow\/tensorflow,yongtang\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,annarev\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,karllessard\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,paolodedios\/tensorflow,karllessard\/tensorflow,davidzchen\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,annarev\/tensorflow,annarev\/tensorflow,yongtang\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,freedomtan\/tensorflow,davidzchen\/tensorflow,petewarden\/tensorflow,karllessard\/tensorflow,freedomtan\/tensorflow,Intel-Corporation\/tensorflow,cxxgtxy\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,Intel-tensorflow\/tensorflow,Intel-Corporation\/tensorflow,sarvex\/tensorflow,aldian\/tensorflow,freedomtan\/tensorflow,Intel-tensorflow\/tensorflow"} {"commit":"84b5d865868bcdd9eb56e52dfc1b6435324feec9","old_file":"kythe\/proto\/any.proto","new_file":"kythe\/proto\/any.proto","old_contents":"\/*\n * Copyright 2015 Google Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nsyntax = \"proto3\";\n\npackage kythe.proto;\noption java_package = \"com.google.devtools.kythe.proto\";\n\n\/\/ A binary blob with a type tag.\nmessage Any {\n \/\/ The URI for this message type (eg, kythe.io\/proto\/kythe.proto.CxxDetails)\n string type_uri = 1;\n \/\/ The message payload.\n bytes value = 2;\n}\n","new_contents":"\/*\n * Copyright 2015 Google Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http:\/\/www.apache.org\/licenses\/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n *\/\n\nsyntax = \"proto3\";\n\npackage kythe.proto;\noption java_package = \"com.google.devtools.kythe.proto\";\n\n\/\/ A binary blob with a type tag.\n\/\/ TOOD(zarko): Swap this out with the official version once it appears in\n\/\/ proto3.\nmessage Any {\n \/\/ The URI for this message type (eg, kythe.io\/proto\/kythe.proto.CxxDetails)\n string type_uri = 1;\n \/\/ The message payload.\n bytes value = 2;\n}\n","subject":"Add a TODO about Any.","message":"Add a TODO about Any.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"kidaa\/kythe,benjyw\/kythe,kidaa\/kythe,kythe\/kythe,bzz\/kythe,benjyw\/kythe,kidaa\/kythe,benjyw\/kythe,bzz\/kythe,benjyw\/kythe,bzz\/kythe,benjyw\/kythe,benjyw\/kythe,legrosbuffle\/kythe,bowlofstew\/kythe,Acidburn0zzz\/kythe,kidaa\/kythe,benjyw\/kythe,bowlofstew\/kythe,Acidburn0zzz\/kythe,bowlofstew\/kythe,legrosbuffle\/kythe,bzz\/kythe,bowlofstew\/kythe,kythe\/kythe,bzz\/kythe,kidaa\/kythe,bzz\/kythe,bzz\/kythe,bowlofstew\/kythe,Acidburn0zzz\/kythe,kythe\/kythe,kythe\/kythe,Acidburn0zzz\/kythe,kythe\/kythe,legrosbuffle\/kythe,bowlofstew\/kythe,legrosbuffle\/kythe,Acidburn0zzz\/kythe,benjyw\/kythe,Acidburn0zzz\/kythe,legrosbuffle\/kythe,bzz\/kythe,kythe\/kythe,legrosbuffle\/kythe,kythe\/kythe,bzz\/kythe,bowlofstew\/kythe,benjyw\/kythe,kidaa\/kythe,Acidburn0zzz\/kythe,legrosbuffle\/kythe,legrosbuffle\/kythe,kythe\/kythe,bowlofstew\/kythe,kythe\/kythe,bzz\/kythe,kidaa\/kythe,legrosbuffle\/kythe,legrosbuffle\/kythe,kidaa\/kythe,bowlofstew\/kythe,legrosbuffle\/kythe,benjyw\/kythe,kidaa\/kythe,bowlofstew\/kythe,bzz\/kythe,benjyw\/kythe,bowlofstew\/kythe,bzz\/kythe,Acidburn0zzz\/kythe,Acidburn0zzz\/kythe,kythe\/kythe,benjyw\/kythe,kythe\/kythe"} {"commit":"771e63a5b00d118876f642bda1b2d66b4c940976","old_file":"apps\/domain\/proto\/group_message.proto","new_file":"apps\/domain\/proto\/group_message.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage syft.core.node.common.service;\n\nimport \"proto\/syft_assets\/common_object.proto\";\nimport \"proto\/syft_assets\/io\/address.proto\";\n\n\n\/\/ CREATE GROUP\nmessage CreateGroupMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage CreateGroupResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n}\n\n\/\/ GET Group\nmessage GetGroupMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 4;\n}\n\n\nmessage GetGroupResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n}\n\n\/\/ GET ALL Groups\nmessage GetAllGroupMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage GetAllGroupResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n}\n\n\/\/ SEARCH Group\nmessage SearchGroupMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage SearchGroupResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n}\n\n\/\/ UPDATE Group\nmessage UpdateGroupMessage {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n syft.core.io.Address reply_to = 4;\n}\n\nmessage UpdateGroupResponse {\n syft.core.common.UID msg_id = 1;\n syft.core.io.Address address = 2;\n bool success = 3;\n}\n","subject":"ADD protobuf group messages schema","message":"ADD protobuf group messages schema\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft,OpenMined\/PySyft"} {"commit":"bc9100b7fd151648bd04f1f93e5e84260efb944d","old_file":"tensorflow\/core\/profiler\/protobuf\/op_stats.proto","new_file":"tensorflow\/core\/profiler\/protobuf\/op_stats.proto","old_contents":"syntax = \"proto3\";\n\npackage tensorflow.profiler;\n\nimport \"tensorflow\/core\/profiler\/protobuf\/op_metrics.proto\";\n\n\/\/ Operator Statistics.\nmessage OpStats {\n \/\/ The database for the op metrics collected from the host over the entire\n \/\/ profiling session including incomplete steps.\n OpMetricsDb host_op_metrics_db = 1;\n \/\/ The database for the op metrics collected from the device over the entire\n \/\/ profiling session including incomplete steps.\n OpMetricsDb device_op_metrics_db = 2;\n}\n","new_contents":"syntax = \"proto3\";\n\npackage tensorflow.profiler;\n\nimport \"tensorflow\/core\/profiler\/protobuf\/op_metrics.proto\";\n\n\/\/ Performance environment, e.g the peak performance capabilities of the device.\nmessage PerfEnv {\n \/\/ Peak performance of a TPU core or a GPU in TFLOP\/s.\n double peak_tera_flops_per_second = 1;\n \/\/ Peak memory bandwidth of a TPU core or a GPU in GiBs\/s.\n double peak_hbm_bw_giga_bytes_per_second = 2;\n \/\/ The ridge point of roofline model in FLOP\/Byte. (i.e., minimum operational\n \/\/ intensity required to achieve maximum performance).\n double ridge_point = 3;\n}\n\n\/\/ Operator Statistics.\nmessage OpStats {\n \/\/ The database for the op metrics collected from the host over the entire\n \/\/ profiling session including incomplete steps.\n OpMetricsDb host_op_metrics_db = 1;\n \/\/ The database for the op metrics collected from the device over the entire\n \/\/ profiling session including incomplete steps.\n OpMetricsDb device_op_metrics_db = 2;\n \/\/ Performance environment of the op metrics collected.\n PerfEnv perf_env = 3;\n}\n","subject":"Add performance environment to OpStats.","message":"Add performance environment to OpStats.\n\nPiperOrigin-RevId: 279361196\nChange-Id: I809b208399262e9f627e522d68e81b5fbf5f6de9\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"tensorflow\/tensorflow-pywrap_tf_optimizer,jhseu\/tensorflow,renyi533\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,karllessard\/tensorflow,Intel-Corporation\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,sarvex\/tensorflow,tensorflow\/tensorflow,ppwwyyxx\/tensorflow,Intel-tensorflow\/tensorflow,ppwwyyxx\/tensorflow,freedomtan\/tensorflow,sarvex\/tensorflow,freedomtan\/tensorflow,petewarden\/tensorflow,frreiss\/tensorflow-fred,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,karllessard\/tensorflow,xzturn\/tensorflow,xzturn\/tensorflow,gunan\/tensorflow,tensorflow\/tensorflow,adit-chandra\/tensorflow,Intel-tensorflow\/tensorflow,cxxgtxy\/tensorflow,tensorflow\/tensorflow,aldian\/tensorflow,frreiss\/tensorflow-fred,aldian\/tensorflow,aam-at\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,Intel-tensorflow\/tensorflow,gautam1858\/tensorflow,annarev\/tensorflow,gautam1858\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,cxxgtxy\/tensorflow,aldian\/tensorflow,frreiss\/tensorflow-fred,yongtang\/tensorflow,renyi533\/tensorflow,ppwwyyxx\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,arborh\/tensorflow,renyi533\/tensorflow,gunan\/tensorflow,Intel-tensorflow\/tensorflow,arborh\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,paolodedios\/tensorflow,yongtang\/tensorflow,yongtang\/tensorflow,freedomtan\/tensorflow,gunan\/tensorflow,ppwwyyxx\/tensorflow,ppwwyyxx\/tensorflow,frreiss\/tensorflow-fred,sarvex\/tensorflow,xzturn\/tensorflow,xzturn\/tensorflow,davidzchen\/tensorflow,adit-chandra\/tensorflow,paolodedios\/tensorflow,petewarden\/tensorflow,petewarden\/tensorflow,aam-at\/tensorflow,sarvex\/tensorflow,petewarden\/tensorflow,adit-chandra\/tensorflow,cxxgtxy\/tensorflow,davidzchen\/tensorflow,Intel-tensorflow\/tensorflow,davidzchen\/tensorflow,tensorflow\/tensorflow,davidzchen\/tensorflow,jhseu\/tensorflow,gautam1858\/tensorflow,aam-at\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,paolodedios\/tensorflow,arborh\/tensorflow,yongtang\/tensorflow,jhseu\/tensorflow,sarvex\/tensorflow,freedomtan\/tensorflow,freedomtan\/tensorflow,tensorflow\/tensorflow,ppwwyyxx\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,davidzchen\/tensorflow,Intel-tensorflow\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,gunan\/tensorflow,jhseu\/tensorflow,annarev\/tensorflow,gautam1858\/tensorflow,petewarden\/tensorflow,yongtang\/tensorflow,karllessard\/tensorflow,petewarden\/tensorflow,adit-chandra\/tensorflow,arborh\/tensorflow,ppwwyyxx\/tensorflow,renyi533\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_tf_optimizer,aldian\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,annarev\/tensorflow,karllessard\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,freedomtan\/tensorflow,jhseu\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,gautam1858\/tensorflow,paolodedios\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,gautam1858\/tensorflow,frreiss\/tensorflow-fred,xzturn\/tensorflow,aldian\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,yongtang\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,gunan\/tensorflow,tensorflow\/tensorflow,xzturn\/tensorflow,jhseu\/tensorflow,adit-chandra\/tensorflow,aam-at\/tensorflow,Intel-Corporation\/tensorflow,petewarden\/tensorflow,karllessard\/tensorflow,cxxgtxy\/tensorflow,aam-at\/tensorflow,arborh\/tensorflow,yongtang\/tensorflow,gunan\/tensorflow,frreiss\/tensorflow-fred,aldian\/tensorflow,renyi533\/tensorflow,gautam1858\/tensorflow,paolodedios\/tensorflow,annarev\/tensorflow,adit-chandra\/tensorflow,cxxgtxy\/tensorflow,xzturn\/tensorflow,frreiss\/tensorflow-fred,renyi533\/tensorflow,yongtang\/tensorflow,gunan\/tensorflow,freedomtan\/tensorflow,aam-at\/tensorflow,renyi533\/tensorflow,renyi533\/tensorflow,Intel-tensorflow\/tensorflow,paolodedios\/tensorflow,petewarden\/tensorflow,aam-at\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,sarvex\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,davidzchen\/tensorflow,jhseu\/tensorflow,annarev\/tensorflow,Intel-tensorflow\/tensorflow,davidzchen\/tensorflow,tensorflow\/tensorflow,ppwwyyxx\/tensorflow,ppwwyyxx\/tensorflow,adit-chandra\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,davidzchen\/tensorflow,tensorflow\/tensorflow,adit-chandra\/tensorflow,yongtang\/tensorflow,frreiss\/tensorflow-fred,petewarden\/tensorflow,freedomtan\/tensorflow,aam-at\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,paolodedios\/tensorflow,gunan\/tensorflow,renyi533\/tensorflow,ppwwyyxx\/tensorflow,adit-chandra\/tensorflow,jhseu\/tensorflow,arborh\/tensorflow,ppwwyyxx\/tensorflow,frreiss\/tensorflow-fred,arborh\/tensorflow,yongtang\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,aam-at\/tensorflow,arborh\/tensorflow,jhseu\/tensorflow,karllessard\/tensorflow,annarev\/tensorflow,renyi533\/tensorflow,gunan\/tensorflow,ppwwyyxx\/tensorflow,arborh\/tensorflow,arborh\/tensorflow,petewarden\/tensorflow,yongtang\/tensorflow,aam-at\/tensorflow,arborh\/tensorflow,aam-at\/tensorflow,gautam1858\/tensorflow,xzturn\/tensorflow,davidzchen\/tensorflow,freedomtan\/tensorflow,tensorflow\/tensorflow,xzturn\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,tensorflow\/tensorflow-pywrap_saved_model,gautam1858\/tensorflow,tensorflow\/tensorflow,Intel-Corporation\/tensorflow,karllessard\/tensorflow,petewarden\/tensorflow,annarev\/tensorflow,tensorflow\/tensorflow-pywrap_saved_model,gautam1858\/tensorflow,Intel-Corporation\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,tensorflow\/tensorflow,davidzchen\/tensorflow,sarvex\/tensorflow,cxxgtxy\/tensorflow,gunan\/tensorflow,davidzchen\/tensorflow,gunan\/tensorflow,renyi533\/tensorflow,freedomtan\/tensorflow,adit-chandra\/tensorflow,davidzchen\/tensorflow,aam-at\/tensorflow,gunan\/tensorflow,jhseu\/tensorflow,paolodedios\/tensorflow,annarev\/tensorflow,karllessard\/tensorflow,cxxgtxy\/tensorflow,paolodedios\/tensorflow,aldian\/tensorflow,Intel-Corporation\/tensorflow,jhseu\/tensorflow,xzturn\/tensorflow,freedomtan\/tensorflow,adit-chandra\/tensorflow,cxxgtxy\/tensorflow,Intel-Corporation\/tensorflow,frreiss\/tensorflow-fred,paolodedios\/tensorflow,sarvex\/tensorflow,annarev\/tensorflow,petewarden\/tensorflow,tensorflow\/tensorflow-pywrap_tf_optimizer,karllessard\/tensorflow,paolodedios\/tensorflow,gautam1858\/tensorflow,xzturn\/tensorflow,jhseu\/tensorflow,annarev\/tensorflow,arborh\/tensorflow,frreiss\/tensorflow-fred,freedomtan\/tensorflow,renyi533\/tensorflow,tensorflow\/tensorflow-experimental_link_static_libraries_once,tensorflow\/tensorflow-pywrap_saved_model,frreiss\/tensorflow-fred,gautam1858\/tensorflow,karllessard\/tensorflow,aldian\/tensorflow,annarev\/tensorflow,Intel-Corporation\/tensorflow,Intel-Corporation\/tensorflow,adit-chandra\/tensorflow,xzturn\/tensorflow"} {"commit":"8f8aba4cc36980a914331e4657cf04ab3e513ae2","old_file":"server\/src\/main\/proto\/spine\/server\/model\/message_handler.proto","new_file":"server\/src\/main\/proto\/spine\/server\/model\/message_handler.proto","old_contents":"","new_contents":"syntax = \"proto3\";\n\npackage spine.server.model;\n\nimport \"spine\/options.proto\";\n\noption (type_url_prefix) = \"type.spine.io\";\noption java_package = \"io.spine.server.model\";\noption java_outer_classname = \"MessageHandlerProto\";\noption java_multiple_files = true;\n\noption (internal_all) = true;\n\nimport \"google\/protobuf\/any.proto\";\n\nimport \"spine\/base\/field_path.proto\";\n\n\/\/ A message handler token.\n\/\/\n\/\/ All the message handlers of an entity must have distinct tokens.\n\/\/\nmessage HandlerToken {\n\n string message_type = 1 [(required) = true];\n\n string origin_type = 2;\n\n MessageFilter filter = 3 [(required) = false, (valid) = true];\n}\n\n\/\/ A filter to apply to a handled message.\n\/\/\nmessage MessageFilter {\n\n \/\/ The path to the field.\n base.FieldPath field = 1 [(valid) = true];\n\n \/\/ The expected value of the field.\n google.protobuf.Any value = 2 [(valid) = true];\n}\n","subject":"Introduce proto definitions of message handlers.","message":"Introduce proto definitions of message handlers.\n","lang":"Protocol Buffer","license":"apache-2.0","repos":"SpineEventEngine\/core-java,SpineEventEngine\/core-java,SpineEventEngine\/core-java"}