/third_party/python/Lib/test/test_asyncio/ |
D | test_sock_lowlevel.py | 72 def _basetest_sock_client_ops(self, httpd, sock): argument 80 self.loop.sock_connect(sock, httpd.address)) 97 self.loop.sock_connect(sock, httpd.address)) 108 def _basetest_sock_recv_into(self, httpd, sock): argument 112 self.loop.sock_connect(sock, httpd.address)) 126 with test_utils.run_test_server() as httpd: 128 self._basetest_sock_client_ops(httpd, sock) 130 self._basetest_sock_recv_into(httpd, sock) 132 async def _basetest_sock_recv_racing(self, httpd, sock): argument 134 await self.loop.sock_connect(sock, httpd.address) [all …]
|
D | test_streams.py | 58 with test_utils.run_test_server() as httpd: 59 conn_fut = asyncio.open_connection(*httpd.address) 64 with test_utils.run_test_unix_server() as httpd: 65 conn_fut = asyncio.open_unix_connection(httpd.address) 85 with test_utils.run_test_server(use_ssl=True) as httpd: 87 *httpd.address, 95 with test_utils.run_test_unix_server(use_ssl=True) as httpd: 97 httpd.address, 117 with test_utils.run_test_server() as httpd: 118 conn_fut = asyncio.open_connection(*httpd.address) [all …]
|
D | utils.py | 198 httpd = server_class(address, SilentWSGIRequestHandler) 199 httpd.set_app(app) 200 httpd.address = httpd.server_address 202 target=lambda: httpd.serve_forever(poll_interval=0.05)) 205 yield httpd 207 httpd.shutdown() 208 httpd.server_close()
|
D | test_events.py | 538 with test_utils.run_test_server() as httpd: 540 lambda: MyProto(loop=self.loop), *httpd.address) 549 with test_utils.run_test_unix_server() as httpd: 551 lambda: MyProto(loop=self.loop), httpd.address) 598 def _test_create_ssl_connection(self, httpd, create_connection, argument 637 with test_utils.run_test_server(use_ssl=True) as httpd: 641 *httpd.address) 642 self._test_create_ssl_connection(httpd, create_connection, 643 peername=httpd.address) 652 with test_utils.run_test_unix_server(use_ssl=True) as httpd: [all …]
|
/third_party/libabigail/doc/manuals/ |
D | fedabipkgdiff.rst | 196 Suppose you have built just built the ``httpd`` package and you 201 $ fedabipkgdiff --from fc23 ./httpd-2.4.18-2.fc24.x86_64.rpm 205 Suppose you have built two versions of package httpd, and you want to see 209 …$ fedabipkgdiff path/to/httpd-2.4.23-3.fc23.x86_64.rpm another/path/to/httpd-2.4.23-4.fc24.x86_64.… 214 3. Compare the ABI of binaries in the latest build of the ``httpd`` 224 $ fedabipkgdiff --from fc23 --to fc24 httpd 226 4. Compare the ABI of binaries of two builds of the ``httpd`` 233 $ fedabipkgdiff httpd-2.8.14.fc23 httpd-2.8.14.fc24 239 $ fedabipkgdiff httpd-2.8.14.fc23.x86_64 httpd-2.8.14.fc24.x86_64 245 $ fedabipkgdiff --all-subpackages httpd-2.8.14.fc23 httpd-2.8.14.fc24
|
/third_party/python/Tools/scripts/ |
D | serve.py | 30 httpd = simple_server.make_server('', port, app) variable 33 httpd.serve_forever() 36 httpd.server_close()
|
/third_party/skia/tools/ |
D | serve_wasm.py | 21 httpd = socketserver.TCPServer(("", PORT), Handler) variable 23 httpd.serve_forever()
|
/third_party/skia/specs/web-img-decode/proposed/ |
D | serve.py | 19 httpd = socketserver.TCPServer(("", PORT), Handler) variable 21 httpd.serve_forever()
|
/third_party/python/Lib/wsgiref/ |
D | simple_server.py | 160 with make_server('', 8000, demo_app) as httpd: 161 sa = httpd.socket.getsockname() 165 httpd.handle_request() # serve one request, then exit
|
/third_party/curl/tests/http/ |
D | config.ini.in | 28 [httpd] section 30 httpd = @HTTPD@ argument
|
/third_party/json/tools/serve_header/ |
D | serve_header.py | 385 with DualStackServer(infos[0][4], worktrees) as httpd: 395 httpd.socket = ssl_ctx.wrap_socket(httpd.socket, server_side=True) 397 host, port = httpd.socket.getsockname()[:2] 400 httpd.serve_forever()
|
/third_party/curl/docs/libcurl/opts/ |
D | CURLOPT_UNIX_SOCKET_PATH.md | 62 curl_easy_setopt(curl, CURLOPT_UNIX_SOCKET_PATH, "/tmp/httpd.sock"); 76 snprintf(path, sizeof(path), "/proc/self/fd/%d/httpd.sock", dirfd);
|
/third_party/ninja/src/ |
D | browse.py | 220 httpd = HTTPServer((hostname,port), RequestHandler) variable 228 httpd.serve_forever()
|
/third_party/python/Lib/test/ |
D | test_urllib2_localnet.py | 63 self.httpd = LoopbackHttpServer(("127.0.0.1", 0), 65 self.port = self.httpd.server_port 73 self.httpd.server_close() 78 self.httpd.handle_request()
|
/third_party/lwip/src/apps/http/makefsdata/ |
D | readme.txt | 2 httpd for given html pages (or other files) in a directory.
|
/third_party/python/Doc/library/ |
D | wsgiref.rst | 136 with make_server('', 8000, simple_app) as httpd: 138 httpd.serve_forever() 290 with make_server('', 8000, demo_app) as httpd: 294 httpd.serve_forever() 297 httpd.handle_request() 437 with make_server('', 8000, validator_app) as httpd: 439 httpd.serve_forever() 779 with make_server('', 8000, hello_world_app) as httpd: 783 httpd.serve_forever()
|
D | http.server.rst | 13 single: httpd 31 httpd = server_class(server_address, handler_class) 32 httpd.serve_forever() 408 with socketserver.TCPServer(("", PORT), Handler) as httpd: 410 httpd.serve_forever()
|
/third_party/python/Lib/http/ |
D | server.py | 1251 with ServerClass(addr, HandlerClass) as httpd: 1252 host, port = httpd.socket.getsockname()[:2] 1259 httpd.serve_forever()
|
/third_party/selinux/secilc/docs/ |
D | cil_type_statements.md | 331 In this example the `httpd.child.process` cannot have `file (write)` due to lack of permissions on … 336 (block httpd 349 (allow process httpd.object (file (read write)))
|
/third_party/libwebsockets/contrib/ |
D | cross-linkit.cmake | 72 …ware/third_party/lwip/src/include -I${CROSS_BASE}/project/mt7687_hdk/apps/httpd/inc/ -I${CROSS_BAS…
|
/third_party/lwip/src/ |
D | Filelists.mk | 166 $(LWIPDIR)/apps/http/httpd.c
|
D | Filelists.cmake | 173 ${LWIP_DIR}/src/apps/http/httpd.c
|
/third_party/lwip/ |
D | UPGRADING | 28 * httpd LWIP_HTTPD_CGI_SSI: httpd_cgi_handler() has an additional parameter "struct fs_file *" 101 options for netbiosns, httpd, dns, etc. ...
|
D | lwip.gni | 179 "$LWIPDIR/apps/http/httpd.c",
|
/third_party/curl/ |
D | configure.ac | 321 dnl we'd like a httpd+apachectl as test server 324 AC_ARG_WITH(test-httpd, [AS_HELP_STRING([--with-test-httpd=PATH], 325 [where to find httpd/apache2 for testing])], 334 AC_MSG_NOTICE([apache2-dev not installed, httpd tests disabled]) 338 AC_PATH_PROG([HTTPD], [httpd]) 345 AC_MSG_NOTICE([httpd/apache2 not in PATH, http tests disabled]) 354 HTTPD="${request_httpd}/bin/httpd" 358 AC_MSG_NOTICE([httpd not found as ${HTTPD}, http tests disabled]) 379 dnl the nghttpx we might use in httpd testing
|