MCPcopy Create free account

hub / github.com/EasyIME/PIME / types & classes

Types & classes1,312 in github.com/EasyIME/PIME

↓ 79 callersClassExpectLog
Context manager to capture and suppress expected log output. Useful to make tests of error conditions less noisy, while still leaving unexpec
python/python3/tornado/testing.py:700
↓ 44 callersClassApplication
r"""A collection of request handlers that make up a web application. Instances of this class are callable and can be passed directly to HTTPS
python/python3/tornado/web.py:1961
↓ 32 callersEnumtype
spdlog-1.2.1/include/spdlog/fmt/bundled/core.h:498
↓ 30 callersClassDictLoader
A template loader that loads from a dictionary.
python/python3/tornado/template.py:481
↓ 30 callersClassHTTPError
An exception that will turn into an HTTP error response. Raising an `HTTPError` is a convenient alternative to calling `RequestHandler.send_e
python/python3/tornado/web.py:2368
↓ 27 callersClassIOStream
r"""Socket-based `IOStream` implementation. This class supports the read and write methods from `BaseIOStream` plus a `connect` method.
python/python3/tornado/iostream.py:1076
↓ 25 callersClassTemplate
A compiled template. We compile into Python from the given template_string. You can generate the template from variables with generate().
python/python3/tornado/template.py:252
↓ 24 callersClassHTTPRequest
HTTP client request object.
python/python3/tornado/httpclient.py:339
↓ 23 callersClassOptionParser
A collection of options, a dictionary with object-like access. Normally accessed via static functions in the `tornado.options` module, which
python/python3/tornado/options.py:133
↓ 21 callersClassSimpleAsyncHTTPClient
Non-blocking HTTP client with no external dependencies. This class implements an HTTP 1.1 client on top of Tornado's IOStreams. Some features
python/python3/tornado/simple_httpclient.py:79
↓ 20 callersClassEvent
An event blocks coroutines until its internal flag is set to True. Similar to `threading.Event`. A coroutine can wait for an event to be set
python/python3/tornado/locks.py:158
↓ 17 callersClassspdlog_ex
Log exception
spdlog-1.2.1/include/spdlog/common.h:129
↓ 16 callersClassIOLoop
An I/O event loop. As of Tornado 6.0, `IOLoop` is a wrapper around the `asyncio` event loop. Example usage for a simple TCP server: ..
python/python3/tornado/ioloop.py:72
↓ 15 callersClassHTTPHeaders
A dictionary that maintains ``Http-Header-Case`` for all keys. Supports multiple values per key via a pair of new methods, `add()` and `get_l
python/python3/tornado/httputil.py:76
↓ 14 callersClassTestConfigurable
python/python3/tornado/test/util_test.py:48
↓ 13 callersClasspluralise
spdlog-1.2.1/tests/catch.hpp:237
↓ 11 callersClassformat_error
A formatting error such as invalid format string. */
spdlog-1.2.1/include/spdlog/fmt/bundled/format.h:396
↓ 10 callersClassColour
spdlog-1.2.1/tests/catch.hpp:4470
↓ 10 callersClassCookieTestRequestHandler
python/python3/tornado/test/web_test.py:99
↓ 10 callersClassTextAttributes
spdlog-1.2.1/tests/catch.hpp:3319
↓ 10 callersEnumcolor
spdlog-1.2.1/include/spdlog/fmt/bundled/colors.h:110
↓ 9 callersClassLoadCinTable
python/cinbase/__init__.py:3295
↓ 9 callersClassPeriodicCallback
Schedules the given callback to be called periodically. The callback is called every ``callback_time`` milliseconds when ``callback_time`` is
python/python3/tornado/ioloop.py:838
↓ 8 callersClassError
Exception raised by errors in the options module.
python/python3/tornado/options.py:127
↓ 8 callersClassPathMatches
Matches requests with paths specified by ``path_pattern`` regex.
python/python3/tornado/routing.py:552
↓ 8 callersClassSSLIOStream
A utility class to write to and read from a non-blocking SSL socket. If the socket passed to the constructor is already connected, it should
python/python3/tornado/iostream.py:1341
↓ 8 callersClassSubprocess
Wraps ``subprocess.Popen`` with IOStream support. The constructor is the same as ``subprocess.Popen`` with the following additions: * ``
python/python3/tornado/process.py:187
↓ 7 callersClassAsyncHTTPClient
An non-blocking HTTP client. Example usage:: async def f(): http_client = AsyncHTTPClient() try:
python/python3/tornado/httpclient.py:140
↓ 7 callersClassHTTPResponse
HTTP Response object. Attributes: * ``request``: HTTPRequest object * ``code``: numeric HTTP status code, e.g. 200 or 404 * ``reas
python/python3/tornado/httpclient.py:574
↓ 7 callersClassHTTPServer
r"""A non-blocking, single-threaded HTTP server. A server is defined by a subclass of `.HTTPServerConnectionDelegate`, or, for backwards comp
python/python3/tornado/httpserver.py:46
↓ 7 callersClassObject
python/python3/tornado/test/concurrent_test.py:151
↓ 7 callersClassRule
A routing rule.
python/python3/tornado/routing.py:441
↓ 7 callersClass_RequestProxy
Combines an object with a dictionary of defaults. Used internally by AsyncHTTPClient implementations.
python/python3/tornado/httpclient.py:735
↓ 7 callersClasshandle
spdlog-1.2.1/include/spdlog/fmt/bundled/core.h:749
↓ 6 callersClassText
spdlog-1.2.1/tests/catch.hpp:3338
↓ 6 callersClassWebSocketClosedError
Raised by operations on a closed connection. .. versionadded:: 3.2
python/python3/tornado/websocket.py:109
↓ 6 callersClass_ExceptionLoggingContext
Used with the ``with`` statement when calling delegate methods to log any exceptions with the given logger. Any exceptions caught are convert
python/python3/tornado/http1connection.py:47
↓ 6 callersClassdummy_int
spdlog-1.2.1/include/spdlog/fmt/bundled/format.h:275
↓ 6 callersClassfp
A handmade floating-point number f * pow(2, e).
spdlog-1.2.1/include/spdlog/fmt/bundled/format-inl.h:344
↓ 6 callersClasslogger
spdlog-1.2.1/include/spdlog/logger.h:32
↓ 5 callersClassHTTPInputError
Exception class for malformed HTTP requests or responses from remote sources. .. versionadded:: 4.0
python/python3/tornado/httputil.py:469
↓ 5 callersClassObjectDict
Makes a dictionary behave like an object, with attribute-style access.
python/python3/tornado/util.py:72
↓ 5 callersClassPipeIOStream
Pipe-based `IOStream` implementation. The constructor takes an integer file descriptor (such as one returned by `os.pipe`) rather than an ope
python/python3/tornado/iostream.py:1620
↓ 5 callersClassTest
python/python3/tornado/test/testing_test.py:123
↓ 5 callersClassTestSpecParser
spdlog-1.2.1/tests/catch.hpp:2945
↓ 4 callersClassAuthError
python/python3/tornado/auth.py:76
↓ 4 callersClassBlockingResolver
Default `Resolver` implementation, using `socket.getaddrinfo`. The `.IOLoop` will be blocked during the resolution, although the callback wil
python/python3/tornado/netutil.py:481
↓ 4 callersClassBraille_Bopomofo_Dict
python/input_methods/braille_chewing/brl_tables.py:143
↓ 4 callersClassHTTP1Connection
Implements the HTTP/1.x protocol. This class can be on its own for clients, or via `HTTP1ServerConnection` for servers.
python/python3/tornado/http1connection.py:104
↓ 4 callersClassHTTP1ConnectionParameters
Parameters for `.HTTP1Connection` and `.HTTP1ServerConnection`.
python/python3/tornado/http1connection.py:71
↓ 4 callersClassKeyEvent
python/textService.py:36
↓ 4 callersClassStreamClosedError
Exception raised by `IOStream` methods when the stream is closed. Note that the close callback is scheduled to run *after* other callbacks on
python/python3/tornado/iostream.py:84
↓ 4 callersClassSummaryColumn
spdlog-1.2.1/tests/catch.hpp:8771
↓ 4 callersClassTCPClient
A non-blocking TCP connection factory. .. versionchanged:: 5.0 The ``io_loop`` argument (deprecated since version 4.1) has been removed.
python/python3/tornado/tcpclient.py:198
↓ 4 callersClass_ApplicationRouter
Routing implementation used internally by `Application`. Provides a binding between `Application` and `RequestHandler`. This implementation e
python/python3/tornado/web.py:1922
↓ 4 callersClassfunction
spdlog-1.2.1/include/spdlog/fmt/bundled/format.h:270
↓ 4 callersClasswindows_error
A Windows error. */
spdlog-1.2.1/include/spdlog/fmt/bundled/format.h:2979
↓ 3 callersClassAsyncIOLoop
``AsyncIOLoop`` is an `.IOLoop` that runs on an ``asyncio`` event loop. This class follows the usual Tornado semantics for creating new ``IOLo
python/python3/tornado/platform/asyncio.py:307
↓ 3 callersClassErrorHandler
Generates an error response with ``status_code`` for all requests.
python/python3/tornado/web.py:2458
↓ 3 callersClassHTTPClient
A blocking HTTP client. This interface is provided to make it easier to share code between synchronous and asynchronous applications. Applica
python/python3/tornado/httpclient.py:59
↓ 3 callersClassHTTPServerRequest
A single HTTP request. All attributes are type `str` unless otherwise noted. .. attribute:: method HTTP request method, e.g. "GET" o
python/python3/tornado/httputil.py:247
↓ 3 callersClassLogFormatter
Log formatter used in Tornado. Key features of this formatter are: * Color support when logging to a terminal that supports it. * Timest
python/python3/tornado/log.py:81
↓ 3 callersClassParseError
Raised for template syntax errors. ``ParseError`` instances have ``filename`` and ``lineno`` attributes indicating the position of the error.
python/python3/tornado/template.py:700
↓ 3 callersClassResolver
Configurable asynchronous DNS resolver interface. By default, a blocking implementation is used (which simply calls `socket.getaddrinfo`). A
python/python3/tornado/netutil.py:314
↓ 3 callersClassRimeStyle
python/input_methods/rime/librime.py:317
↓ 3 callersClassStream
spdlog-1.2.1/tests/catch.hpp:433
↓ 3 callersClassTestConfig1
python/python3/tornado/test/util_test.py:58
↓ 3 callersClassTestConfig2
python/python3/tornado/test/util_test.py:64
↓ 3 callersClassTestConfig3
python/python3/tornado/test/util_test.py:70
↓ 3 callersClassTestServer
python/python3/tornado/test/tcpserver_test.py:22
↓ 3 callersClass_Statement
python/python3/tornado/template.py:645
↓ 3 callersClass_Text
python/python3/tornado/template.py:682
↓ 3 callersClasscustom_ex
spdlog-1.2.1/tests/errors.cpp:41
↓ 3 callersClassextendtable
python/cinbase/extendtable.py:4
↓ 3 callersClassinit
spdlog-1.2.1/include/spdlog/fmt/bundled/core.h:599
↓ 3 callersClasslocale
spdlog-1.2.1/include/spdlog/fmt/bundled/format-inl.h:196
↓ 3 callersClassmd5
installer/md5dll/MD5.h:48
↓ 2 callersClassArg
spdlog-1.2.1/tests/catch.hpp:3733
↓ 2 callersClassAssertionInfo
spdlog-1.2.1/tests/catch.hpp:664
↓ 2 callersClassCSVLocale
Locale implementation using tornado's CSV translation format.
python/python3/tornado/locale.py:479
↓ 2 callersClassChewingContext
python/libchewing/libchewing.py:45
↓ 2 callersClassCurlAsyncHTTPClient
python/python3/tornado/curl_httpclient.py:48
↓ 2 callersClassCustomApplication
python/python3/tornado/test/routing_test.py:138
↓ 2 callersClassCustomRouter
python/python3/tornado/test/routing_test.py:116
↓ 2 callersClassFinish
An exception that ends the request without producing an error response. When `Finish` is raised in a `RequestHandler`, the request will end (
python/python3/tornado/web.py:2416
↓ 2 callersClassGroupInfo
spdlog-1.2.1/tests/catch.hpp:4574
↓ 2 callersClassHTTPStreamClosedError
Error raised by SimpleAsyncHTTPClient when the underlying stream is closed. When a more specific exception is available (such as `ConnectionReset
python/python3/tornado/simple_httpclient.py:60
↓ 2 callersClassHTTPTimeoutError
Error raised by SimpleAsyncHTTPClient on timeout. For historical reasons, this is a subclass of `.HTTPClientError` which simulates a response
python/python3/tornado/simple_httpclient.py:44
↓ 2 callersClassHandler
python/python3/tornado/test/routing_test.py:102
↓ 2 callersClassHostMatches
Matches requests from hosts specified by ``host_pattern`` regex.
python/python3/tornado/routing.py:517
↓ 2 callersClassMessageDelegate
python/python3/tornado/test/routing_test.py:36
↓ 2 callersClassOverrideResolver
Wraps a resolver with a mapping of overrides. This can be used to make local DNS changes (e.g. for testing) without modifying system-wide set
python/python3/tornado/netutil.py:539
↓ 2 callersClassQueue
Coordinate producer and consumer coroutines. If maxsize is 0 (the default) the queue size is unbounded. .. testcode:: import asynci
python/python3/tornado/queues.py:81
↓ 2 callersClassRimeCommit
python/input_methods/rime/librime.py:97
↓ 2 callersClassRimeConfig
python/input_methods/rime/librime.py:131
↓ 2 callersClassRimeContext
python/input_methods/rime/librime.py:102
↓ 2 callersClassSession
spdlog-1.2.1/tests/catch.hpp:5596
↓ 2 callersClassStreamBufferFullError
Exception raised by `IOStream` methods when the buffer is full.
python/python3/tornado/iostream.py:113
↓ 2 callersClassTestCaseStats
spdlog-1.2.1/tests/catch.hpp:4644
↓ 2 callersClassTestRunStats
spdlog-1.2.1/tests/catch.hpp:4698
next →1–100 of 1,312, ranked by callers