✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ server303.web-hosting.com ​🇻​♯➤ 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2025

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 199.188.205.31 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.41
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /lib/python3.6/site-packages/google/protobuf/__pycache__//message.cpython-36.pyc
3

���h�,�@sLdZdZGdd�de�ZGdd�de�ZGdd�de�ZGdd	�d	e�Zd
S)z6Contains an abstract base class for protocol messages.z#robinson@google.com (Will Robinson)c@seZdZdS)�ErrorN)�__name__�
__module__�__qualname__�rr�/usr/lib/python3.6/message.pyr'src@seZdZdS)�DecodeErrorN)rrrrrrrr(src@seZdZdS)�EncodeErrorN)rrrrrrrr)src@s�eZdZdZgZdZd7dd�Zdd�Zdd�Zd	d
�Z	dd�Z
d
d�Zdd�Zdd�Z
dd�Zdd�Zdd�Zdd�Zdd�Zdd�Zdd �Zd!d"�Zd#d$�Zd%d&�Zd'd(�Zd)d*�Zd+d,�Zd-d.�Zd/d0�Zd1d2�Zd3d4�Zd5d6�ZdS)8�MessageaUAbstract base class for protocol messages.

  Protocol message classes are almost always generated by the protocol
  compiler.  These generated types subclass Message and implement the methods
  shown below.

  TODO(robinson): Link to an HTML document here.

  TODO(robinson): Document that instances of this class will also
  have an Extensions attribute with __getitem__ and __setitem__.
  Again, not sure how to best convey this.

  TODO(robinson): Document that the class must also have a static
    RegisterExtension(extension_field) method.
    Not sure how to best express at this point.
  NcCst|��}|j|�|S)N)�type�	MergeFrom)�self�memoZclonerrr�__deepcopy__Es

zMessage.__deepcopy__cCst�dS)z9Recursively compares two messages by value and structure.N)�NotImplementedError)r�	other_msgrrr�__eq__JszMessage.__eq__cCs
||kS)Nr)rrrrr�__ne__NszMessage.__ne__cCstd��dS)Nzunhashable object)�	TypeError)rrrr�__hash__RszMessage.__hash__cCst�dS)z7Outputs a human-readable representation of the message.N)r)rrrr�__str__UszMessage.__str__cCst�dS)z7Outputs a human-readable representation of the message.N)r)rrrr�__unicode__YszMessage.__unicode__cCst�dS)a�Merges the contents of the specified message into current message.

    This method merges the contents of the specified message into the current
    message. Singular fields that are set in the specified message overwrite
    the corresponding fields in the current message. Repeated fields are
    appended. Singular sub-messages and groups are recursively merged.

    Args:
      other_msg: Message to merge into the current message.
    N)r)rrrrrr]szMessage.MergeFromcCs"||krdS|j�|j|�dS)z�Copies the content of the specified message into the current message.

    The method clears the current message and then merges the specified
    message using MergeFrom.

    Args:
      other_msg: Message to copy into the current one.
    N)�Clearr)rrrrr�CopyFromjs	zMessage.CopyFromcCst�dS)z,Clears all data that was set in the message.N)r)rrrrrxsz
Message.ClearcCst�dS)aMark this as present in the parent.

    This normally happens automatically when you assign a field of a
    sub-message, but sometimes you want to make the sub-message
    present while keeping it empty.  If you find yourself using this,
    you may want to reconsider your design.N)r)rrrr�SetInParent|szMessage.SetInParentcCst�dS)z�Checks if the message is initialized.

    Returns:
      The method returns True if the message is initialized (i.e. all of its
      required fields are set).
    N)r)rrrr�
IsInitialized�szMessage.IsInitializedcCst�dS)aZMerges serialized protocol buffer data into this message.

    When we find a field in |serialized| that is already present
    in this message:
      - If it's a "repeated" field, we append to the end of our list.
      - Else, if it's a scalar, we overwrite our field.
      - Else, (it's a nonrepeated composite), we recursively merge
        into the existing composite.

    TODO(robinson): Document handling of unknown fields.

    Args:
      serialized: Any object that allows us to call buffer(serialized)
        to access a string of bytes using the buffer interface.

    TODO(robinson): When we switch to a helper, this will return None.

    Returns:
      The number of bytes read from |serialized|.
      For non-group messages, this will always be len(serialized),
      but for messages which are actually groups, this will
      generally be less than len(serialized), since we must
      stop when we reach an END_GROUP tag.  Note that if
      we *do* stop because of an END_GROUP tag, the number
      of bytes returned does not include the bytes
      for the END_GROUP tag information.
    N)r)r�
serializedrrr�MergeFromString�szMessage.MergeFromStringcCs|j�|j|�dS)z�Parse serialized protocol buffer data into this message.

    Like MergeFromString(), except we clear the object first and
    do not return the value that MergeFromString returns.
    N)rr)rrrrr�ParseFromString�szMessage.ParseFromStringcKst�dS)aSerializes the protocol message to a binary string.

    Arguments:
      **kwargs: Keyword arguments to the serialize method, accepts
        the following keyword args:
        deterministic: If true, requests deterministic serialization of the
          protobuf, with predictable ordering of map keys.

    Returns:
      A binary string representation of the message if all of the required
      fields in the message are set (i.e. the message is initialized).

    Raises:
      message.EncodeError if the message isn't initialized.
    N)r)r�kwargsrrr�SerializeToString�szMessage.SerializeToStringcKst�dS)a�Serializes the protocol message to a binary string.

    This method is similar to SerializeToString but doesn't check if the
    message is initialized.

    Arguments:
      **kwargs: Keyword arguments to the serialize method, accepts
        the following keyword args:
        deterministic: If true, requests deterministic serialization of the
          protobuf, with predictable ordering of map keys.

    Returns:
      A string representation of the partial message.
    N)r)rrrrr�SerializePartialToString�sz Message.SerializePartialToStringcCst�dS)a�Returns a list of (FieldDescriptor, value) tuples for all
    fields in the message which are not empty.  A message field is
    non-empty if HasField() would return true. A singular primitive field
    is non-empty if HasField() would return true in proto2 or it is non zero
    in proto3. A repeated field is non-empty if it contains at least one
    element.  The fields are ordered by field numberN)r)rrrr�
ListFields�szMessage.ListFieldscCst�dS)z�Checks if a certain field is set for the message, or if any field inside
    a oneof group is set.  Note that if the field_name is not defined in the
    message descriptor, ValueError will be raised.N)r)r�
field_namerrr�HasField�szMessage.HasFieldcCst�dS)z�Clears the contents of a given field, or the field set inside a oneof
    group.  If the name neither refers to a defined field or oneof group,
    ValueError is raised.N)r)rr"rrr�
ClearField�szMessage.ClearFieldcCst�dS)z�Returns the name of the field that is set inside a oneof group, or
    None if no field is set.  If no group with the given name exists, ValueError
    will be raised.N)r)rZoneof_grouprrr�
WhichOneofszMessage.WhichOneofcCst�dS)N)r)r�extension_handlerrr�HasExtension	szMessage.HasExtensioncCst�dS)N)r)rr&rrr�ClearExtensionszMessage.ClearExtensioncCst�dS)N)r)rrrr�DiscardUnknownFieldsszMessage.DiscardUnknownFieldscCst�dS)zmReturns the serialized size of this message.
    Recursively calls ByteSize() on all contained messages.
    N)r)rrrr�ByteSizeszMessage.ByteSizecCst�dS)a6Internal method used by the protocol message implementation.
    Clients should not call this directly.

    Sets a listener that this message will call on certain state transitions.

    The purpose of this method is to register back-edges from children to
    parents at runtime, for the purpose of setting "has" bits and
    byte-size-dirty bits in the parent and ancestor objects whenever a child or
    descendant object is modified.

    If the client wants to disconnect this Message from the object tree, she
    explicitly sets callback to None.

    If message_listener is None, unregisters any existing listener.  Otherwise,
    message_listener must implement the MessageListener interface in
    internal/message_listener.py, and we discard any listener registered
    via a previous _SetListener() call.
    N)r)rZmessage_listenerrrr�_SetListenerszMessage._SetListenercCst|j�d�S)zSupport the pickle protocol.)r)�dictr )rrrr�__getstate__-szMessage.__getstate__cCs|j�|j|d�dS)zSupport the pickle protocol.rN)�__init__r)r�staterrr�__setstate__1szMessage.__setstate__)N) rrr�__doc__�	__slots__Z
DESCRIPTORrrrrrrrrrrrrrrr r!r#r$r%r'r(r)r*r+r-r0rrrrr	,s:

		!	r	N)r1�
__author__�	Exceptionrrr�objectr	rrrr�<module>#s



Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
3 Jun 2026 8.32 AM
root / root
0755
__init__.cpython-36.opt-1.pyc
0.312 KB
7 Oct 2025 9.25 AM
root / root
0644
__init__.cpython-36.pyc
0.312 KB
7 Oct 2025 9.25 AM
root / root
0644
any_pb2.cpython-36.opt-1.pyc
2.089 KB
7 Oct 2025 9.25 AM
root / root
0644
any_pb2.cpython-36.pyc
2.089 KB
7 Oct 2025 9.25 AM
root / root
0644
any_test_pb2.cpython-36.opt-1.pyc
2.18 KB
7 Oct 2025 9.25 AM
root / root
0644
any_test_pb2.cpython-36.pyc
2.18 KB
7 Oct 2025 9.25 AM
root / root
0644
api_pb2.cpython-36.opt-1.pyc
4.728 KB
7 Oct 2025 9.25 AM
root / root
0644
api_pb2.cpython-36.pyc
4.728 KB
7 Oct 2025 9.25 AM
root / root
0644
descriptor.cpython-36.opt-1.pyc
31.273 KB
7 Oct 2025 9.25 AM
root / root
0644
descriptor.cpython-36.pyc
31.273 KB
7 Oct 2025 9.25 AM
root / root
0644
descriptor_database.cpython-36.opt-1.pyc
4.108 KB
7 Oct 2025 9.25 AM
root / root
0644
descriptor_database.cpython-36.pyc
4.108 KB
7 Oct 2025 9.25 AM
root / root
0644
descriptor_pb2.cpython-36.opt-1.pyc
30.364 KB
7 Oct 2025 9.25 AM
root / root
0644
descriptor_pb2.cpython-36.pyc
30.364 KB
7 Oct 2025 9.25 AM
root / root
0644
descriptor_pool.cpython-36.opt-1.pyc
26.774 KB
7 Oct 2025 9.25 AM
root / root
0644
descriptor_pool.cpython-36.pyc
26.8 KB
7 Oct 2025 9.25 AM
root / root
0644
duration_pb2.cpython-36.opt-1.pyc
2.127 KB
7 Oct 2025 9.25 AM
root / root
0644
duration_pb2.cpython-36.pyc
2.127 KB
7 Oct 2025 9.25 AM
root / root
0644
empty_pb2.cpython-36.opt-1.pyc
1.694 KB
7 Oct 2025 9.25 AM
root / root
0644
empty_pb2.cpython-36.pyc
1.694 KB
7 Oct 2025 9.25 AM
root / root
0644
field_mask_pb2.cpython-36.opt-1.pyc
2.049 KB
7 Oct 2025 9.25 AM
root / root
0644
field_mask_pb2.cpython-36.pyc
2.049 KB
7 Oct 2025 9.25 AM
root / root
0644
json_format.cpython-36.opt-1.pyc
20.323 KB
7 Oct 2025 9.25 AM
root / root
0644
json_format.cpython-36.pyc
20.323 KB
7 Oct 2025 9.25 AM
root / root
0644
map_proto2_unittest_pb2.cpython-36.opt-1.pyc
18.308 KB
7 Oct 2025 9.25 AM
root / root
0644
map_proto2_unittest_pb2.cpython-36.pyc
18.308 KB
7 Oct 2025 9.25 AM
root / root
0644
map_unittest_pb2.cpython-36.opt-1.pyc
39.564 KB
7 Oct 2025 9.25 AM
root / root
0644
map_unittest_pb2.cpython-36.pyc
39.564 KB
7 Oct 2025 9.25 AM
root / root
0644
message.cpython-36.opt-1.pyc
10.477 KB
7 Oct 2025 9.25 AM
root / root
0644
message.cpython-36.pyc
10.477 KB
7 Oct 2025 9.25 AM
root / root
0644
message_factory.cpython-36.opt-1.pyc
3.934 KB
7 Oct 2025 9.25 AM
root / root
0644
message_factory.cpython-36.pyc
3.934 KB
7 Oct 2025 9.25 AM
root / root
0644
proto_builder.cpython-36.opt-1.pyc
2.679 KB
7 Oct 2025 9.25 AM
root / root
0644
proto_builder.cpython-36.pyc
2.679 KB
7 Oct 2025 9.25 AM
root / root
0644
reflection.cpython-36.opt-1.pyc
2.653 KB
7 Oct 2025 9.25 AM
root / root
0644
reflection.cpython-36.pyc
2.653 KB
7 Oct 2025 9.25 AM
root / root
0644
service.cpython-36.opt-1.pyc
8.556 KB
7 Oct 2025 9.25 AM
root / root
0644
service.cpython-36.pyc
8.556 KB
7 Oct 2025 9.25 AM
root / root
0644
service_reflection.cpython-36.opt-1.pyc
9.756 KB
7 Oct 2025 9.25 AM
root / root
0644
service_reflection.cpython-36.pyc
9.756 KB
7 Oct 2025 9.25 AM
root / root
0644
source_context_pb2.cpython-36.opt-1.pyc
2.146 KB
7 Oct 2025 9.25 AM
root / root
0644
source_context_pb2.cpython-36.pyc
2.146 KB
7 Oct 2025 9.25 AM
root / root
0644
struct_pb2.cpython-36.opt-1.pyc
5.021 KB
7 Oct 2025 9.25 AM
root / root
0644
struct_pb2.cpython-36.pyc
5.021 KB
7 Oct 2025 9.25 AM
root / root
0644
symbol_database.cpython-36.opt-1.pyc
5.316 KB
7 Oct 2025 9.25 AM
root / root
0644
symbol_database.cpython-36.pyc
5.316 KB
7 Oct 2025 9.25 AM
root / root
0644
test_messages_proto2_pb2.cpython-36.opt-1.pyc
38.694 KB
7 Oct 2025 9.25 AM
root / root
0644
test_messages_proto2_pb2.cpython-36.pyc
38.694 KB
7 Oct 2025 9.25 AM
root / root
0644
test_messages_proto3_pb2.cpython-36.opt-1.pyc
43.271 KB
7 Oct 2025 9.25 AM
root / root
0644
test_messages_proto3_pb2.cpython-36.pyc
43.271 KB
7 Oct 2025 9.25 AM
root / root
0644
text_encoding.cpython-36.opt-1.pyc
3.058 KB
7 Oct 2025 9.25 AM
root / root
0644
text_encoding.cpython-36.pyc
3.058 KB
7 Oct 2025 9.25 AM
root / root
0644
text_format.cpython-36.opt-1.pyc
38.553 KB
7 Oct 2025 9.25 AM
root / root
0644
text_format.cpython-36.pyc
38.582 KB
7 Oct 2025 9.25 AM
root / root
0644
timestamp_pb2.cpython-36.opt-1.pyc
2.141 KB
7 Oct 2025 9.25 AM
root / root
0644
timestamp_pb2.cpython-36.pyc
2.141 KB
7 Oct 2025 9.25 AM
root / root
0644
type_pb2.cpython-36.opt-1.pyc
8.492 KB
7 Oct 2025 9.25 AM
root / root
0644
type_pb2.cpython-36.pyc
8.492 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_arena_pb2.cpython-36.opt-1.pyc
2.762 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_arena_pb2.cpython-36.pyc
2.762 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_custom_options_pb2.cpython-36.opt-1.pyc
32.239 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_custom_options_pb2.cpython-36.pyc
32.239 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_import_pb2.cpython-36.opt-1.pyc
3.112 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_import_pb2.cpython-36.pyc
3.112 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_import_public_pb2.cpython-36.opt-1.pyc
1.932 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_import_public_pb2.cpython-36.pyc
1.932 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_mset_pb2.cpython-36.opt-1.pyc
4.459 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_mset_pb2.cpython-36.pyc
4.459 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_mset_wire_format_pb2.cpython-36.opt-1.pyc
2.513 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_mset_wire_format_pb2.cpython-36.pyc
2.513 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_no_arena_import_pb2.cpython-36.opt-1.pyc
1.825 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_no_arena_import_pb2.cpython-36.pyc
1.825 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_no_arena_pb2.cpython-36.opt-1.pyc
20.235 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_no_arena_pb2.cpython-36.pyc
20.235 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_no_generic_services_pb2.cpython-36.opt-1.pyc
3.226 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_no_generic_services_pb2.cpython-36.pyc
3.226 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_pb2.cpython-36.opt-1.pyc
124.95 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_pb2.cpython-36.pyc
124.95 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_proto3_arena_pb2.cpython-36.opt-1.pyc
21.424 KB
7 Oct 2025 9.25 AM
root / root
0644
unittest_proto3_arena_pb2.cpython-36.pyc
21.424 KB
7 Oct 2025 9.25 AM
root / root
0644
wrappers_pb2.cpython-36.opt-1.pyc
4.58 KB
7 Oct 2025 9.25 AM
root / root
0644
wrappers_pb2.cpython-36.pyc
4.58 KB
7 Oct 2025 9.25 AM
root / root
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF