- ROSETTA_DEBUGSERVER_PORT
- ROSETTA_MEMORY_ACCESS_INSTRUMENTATION
- ROSETTA_DISABLE_AOT
- ROSETTA_PRINT_SEGMENTS
- ROSETTA_PRINT_IR
- ROSETTA_ALLOW_GUARD_PAGES
- ROSETTA_AOT_ERRORS_ARE_FATAL
- ROSETTA_DISABLE_EXCEPTIONS
- ROSETTA_DISABLE_SIGACTION
- ROSETTA_HARDWARE_TRACING_PATH
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 -u | |
import json | |
import fileinput | |
class Terminal(object): | |
FG_RED = "\033[31m" | |
FG_YELLOW = "\033[33m" | |
BOLD = "\033[1m" | |
DIM = "\033[2m" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: "3.0.0" | |
info: | |
version: 1.0.0 | |
title: OneOf example | |
paths: | |
/search: | |
post: | |
requestBody: | |
content: | |
application/json: |
OlderNewer