Lines Matching refs:server
4 # # Query the python server for artifacts
5 # RUN: env DEBUGINFOD_CACHE_PATH=%t %python %s --server-path %S/Inputs \
8 # RUN: env DEBUGINFOD_CACHE_PATH=%t %python %s --server-path %S/Inputs \
11 # RUN: env DEBUGINFOD_CACHE_PATH=%t %python %s --server-path %S/Inputs \
20 # # the server.
31 # It first stands up a Python HTTP static file server and then executes the tool.
32 # This way the tool can make debuginfod HTTP requests to the static file server.
35 import http.server
44 # Sets the DEBUGINFOD_URLS env var to point at the local server.
46 httpd = http.server.ThreadingHTTPServer(
48 http.server.SimpleHTTPRequestHandler,
69 parser.add_argument('--server-path', default='./')