Home
last modified time | relevance | path

Searched refs:httpd (Results 1 – 25 of 41) sorted by relevance

12

/third_party/python/Lib/test/test_asyncio/
Dtest_sock_lowlevel.py72 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 …]
Dtest_streams.py58 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 …]
Dutils.py198 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()
Dtest_events.py538 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/
Dfedabipkgdiff.rst196 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/
Dserve.py30 httpd = simple_server.make_server('', port, app) variable
33 httpd.serve_forever()
36 httpd.server_close()
/third_party/skia/tools/
Dserve_wasm.py21 httpd = socketserver.TCPServer(("", PORT), Handler) variable
23 httpd.serve_forever()
/third_party/skia/specs/web-img-decode/proposed/
Dserve.py19 httpd = socketserver.TCPServer(("", PORT), Handler) variable
21 httpd.serve_forever()
/third_party/python/Lib/wsgiref/
Dsimple_server.py160 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/
Dconfig.ini.in28 [httpd] section
30 httpd = @HTTPD@ argument
/third_party/json/tools/serve_header/
Dserve_header.py385 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/
DCURLOPT_UNIX_SOCKET_PATH.md62 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/
Dbrowse.py220 httpd = HTTPServer((hostname,port), RequestHandler) variable
228 httpd.serve_forever()
/third_party/python/Lib/test/
Dtest_urllib2_localnet.py63 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/
Dreadme.txt2 httpd for given html pages (or other files) in a directory.
/third_party/python/Doc/library/
Dwsgiref.rst136 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()
Dhttp.server.rst13 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/
Dserver.py1251 with ServerClass(addr, HandlerClass) as httpd:
1252 host, port = httpd.socket.getsockname()[:2]
1259 httpd.serve_forever()
/third_party/selinux/secilc/docs/
Dcil_type_statements.md331 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/
Dcross-linkit.cmake72 …ware/third_party/lwip/src/include -I${CROSS_BASE}/project/mt7687_hdk/apps/httpd/inc/ -I${CROSS_BAS…
/third_party/lwip/src/
DFilelists.mk166 $(LWIPDIR)/apps/http/httpd.c
DFilelists.cmake173 ${LWIP_DIR}/src/apps/http/httpd.c
/third_party/lwip/
DUPGRADING28 * httpd LWIP_HTTPD_CGI_SSI: httpd_cgi_handler() has an additional parameter "struct fs_file *"
101 options for netbiosns, httpd, dns, etc. ...
Dlwip.gni179 "$LWIPDIR/apps/http/httpd.c",
/third_party/curl/
Dconfigure.ac321 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

12