Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
lib /
python3.11 /
dist-packages /
grpc /
aio /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-08 17:01
__init__.py
3.09
KB
-rw-r--r--
2025-04-08 17:01
_base_call.py
7.38
KB
-rw-r--r--
2025-04-08 17:01
_base_channel.py
13.57
KB
-rw-r--r--
2025-04-08 17:01
_base_server.py
12.27
KB
-rw-r--r--
2025-04-08 17:01
_call.py
24.76
KB
-rw-r--r--
2025-04-08 17:01
_channel.py
21.58
KB
-rw-r--r--
2025-04-08 17:01
_interceptor.py
40.38
KB
-rw-r--r--
2025-04-08 17:01
_metadata.py
4.89
KB
-rw-r--r--
2025-04-08 17:01
_server.py
8.72
KB
-rw-r--r--
2025-04-08 17:01
_typing.py
1.35
KB
-rw-r--r--
2025-04-08 17:01
_utils.py
821
B
-rw-r--r--
2025-04-08 17:01
Save
Rename
# Copyright 2019 The gRPC Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. """Common types for gRPC Async API""" from typing import ( Any, AsyncIterable, Callable, Iterable, Sequence, Tuple, TypeVar, Union, ) from grpc._cython.cygrpc import EOF from ._metadata import Metadata from ._metadata import MetadataKey from ._metadata import MetadataValue RequestType = TypeVar("RequestType") ResponseType = TypeVar("ResponseType") SerializingFunction = Callable[[Any], bytes] DeserializingFunction = Callable[[bytes], Any] MetadatumType = Tuple[MetadataKey, MetadataValue] MetadataType = Union[Metadata, Sequence[MetadatumType]] ChannelArgumentType = Sequence[Tuple[str, Any]] EOFType = type(EOF) DoneCallbackType = Callable[[Any], None] RequestIterableType = Union[Iterable[Any], AsyncIterable[Any]] ResponseIterableType = AsyncIterable[Any]