Linux yavrix.internet-webhosting.com 3.10.0-962.3.2.lve1.5.88.el7.x86_64 #1 SMP Fri Sep 26 14:06:42 UTC 2025 x86_64
LiteSpeed
Server IP : 103.8.25.136 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : klinikpe
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python2.7 /
site-packages /
google /
protobuf /
Delete
Unzip
Name
Size
Permission
Date
Action
compiler
[ DIR ]
drwxr-xr-x
2020-06-13 04:02
internal
[ DIR ]
drwxr-xr-x
2020-06-13 04:02
__init__.py
0
B
-rw-r--r--
2013-02-26 17:56
__init__.pyc
147
B
-rw-r--r--
2015-11-27 20:32
__init__.pyo
147
B
-rw-r--r--
2015-11-27 20:32
descriptor.py
26
KB
-rw-r--r--
2013-02-26 17:56
descriptor.pyc
25.94
KB
-rw-r--r--
2015-11-27 20:32
descriptor.pyo
25.94
KB
-rw-r--r--
2015-11-27 20:32
descriptor_database.py
4.31
KB
-rw-r--r--
2013-02-26 17:56
descriptor_database.pyc
3.7
KB
-rw-r--r--
2015-11-27 20:32
descriptor_database.pyo
3.7
KB
-rw-r--r--
2015-11-27 20:32
descriptor_pb2.py
56.08
KB
-rw-r--r--
2015-11-27 20:32
descriptor_pb2.pyc
31.35
KB
-rw-r--r--
2015-11-27 20:32
descriptor_pb2.pyo
31.35
KB
-rw-r--r--
2015-11-27 20:32
descriptor_pool.py
18.23
KB
-rw-r--r--
2013-02-26 17:56
descriptor_pool.pyc
15.48
KB
-rw-r--r--
2015-11-27 20:32
descriptor_pool.pyo
15.48
KB
-rw-r--r--
2015-11-27 20:32
message.py
9.9
KB
-rw-r--r--
2013-02-26 17:56
message.pyc
10.61
KB
-rw-r--r--
2015-11-27 20:32
message.pyo
10.61
KB
-rw-r--r--
2015-11-27 20:32
message_factory.py
4.08
KB
-rw-r--r--
2013-02-26 17:56
message_factory.pyc
3.3
KB
-rw-r--r--
2015-11-27 20:32
message_factory.pyo
3.3
KB
-rw-r--r--
2015-11-27 20:32
reflection.py
6.44
KB
-rw-r--r--
2013-02-26 17:56
reflection.pyc
5.26
KB
-rw-r--r--
2015-11-27 20:32
reflection.pyo
5.26
KB
-rw-r--r--
2015-11-27 20:32
service.py
8.92
KB
-rw-r--r--
2013-02-26 17:56
service.pyc
9.4
KB
-rw-r--r--
2015-11-27 20:32
service.pyo
9.4
KB
-rw-r--r--
2015-11-27 20:32
service_reflection.py
10.75
KB
-rw-r--r--
2013-02-26 17:56
service_reflection.pyc
11.05
KB
-rw-r--r--
2015-11-27 20:32
service_reflection.pyo
11.05
KB
-rw-r--r--
2015-11-27 20:32
text_format.py
21.66
KB
-rw-r--r--
2013-02-26 17:56
text_format.pyc
21.14
KB
-rw-r--r--
2015-11-27 20:32
text_format.pyo
21.14
KB
-rw-r--r--
2015-11-27 20:32
Save
Rename
� Q�,Qc @ sV d Z d Z d d l m Z d d l m Z d d l m Z d e f d � � YZ d S( s� Provides DescriptorPool to use as a container for proto2 descriptors. The DescriptorPool is used in conjection with a DescriptorDatabase to maintain a collection of protocol buffer descriptors for use when dynamically creating message types at runtime. For most applications protocol buffers should be used via modules generated by the protocol buffer compiler tool. This should only be used when the type of protocol buffers used in an application or library cannot be predetermined. Below is a straightforward example on how to use this class: pool = DescriptorPool() file_descriptor_protos = [ ... ] for file_descriptor_proto in file_descriptor_protos: pool.Add(file_descriptor_proto) my_message_descriptor = pool.FindMessageTypeByName('some.package.MessageType') The message descriptor can be used in conjunction with the message_factory module in order to create a protocol buffer class that can be encoded and decoded. s"