Searched refs:Bytecode (Results 1 – 19 of 19) sorted by relevance
/third_party/rust/crates/rustix/ |
D | SECURITY.md | 3 Building secure foundations for software development is at the core of what we do in the Bytecode A… 7 …ity issue in any website, service, or software owned or operated by the Bytecode Alliance, we enco… 11 To submit a vulnerability report to the Bytecode Alliance, please contact us at [security@bytecodea… 15 The Bytecode Alliance supports safe harbor for security researchers who:
|
D | CONTRIBUTING.md | 3 Rustix is a [Bytecode Alliance] project. It follows the Bytecode Alliance's
|
D | ORG_CODE_OF_CONDUCT.md | 1 # Bytecode Alliance Organizational Code of Conduct (OCoC) 7 The Bytecode Alliance (BA) welcomes involvement from organizations, 27 *Bytecode Alliance members should observe the distinction between 124 be reported by contacting the Bytecode Alliance CoC team at
|
D | CODE_OF_CONDUCT.md | 39 …g, or otherwise unacceptable behavior may be reported by contacting the Bytecode Alliance CoC team… 41 …porary or permanent repercussions as determined by other members of the Bytecode Alliance's leader…
|
D | README.md | 8 <strong>A <a href="https://bytecodealliance.org/">Bytecode Alliance</a> project</strong>
|
/third_party/python/Lib/test/ |
D | test_dis.py | 1200 b = dis.Bytecode(obj) 1203 self.assertRaises(TypeError, dis.Bytecode, object()) 1208 via_object = list(dis.Bytecode(obj)) 1213 actual = dis.Bytecode(outer, first_line=expected_outer_line) 1218 actual = dis.Bytecode(simple).dis() 1223 actual = dis.Bytecode(simple, first_line=350).dis() 1230 b = dis.Bytecode(x) 1234 actual = dis.Bytecode(_f).dis() 1239 b = dis.Bytecode.from_traceback(tb) 1246 b = dis.Bytecode.from_traceback(tb)
|
D | test_compile.py | 981 for line, instr in enumerate(dis.Bytecode(if_else_break)):
|
/third_party/rust/crates/linux-raw-sys/ |
D | ORG_CODE_OF_CONDUCT.md | 1 # Bytecode Alliance Organizational Code of Conduct (OCoC) 7 The Bytecode Alliance (BA) welcomes involvement from organizations, 27 *Bytecode Alliance members should observe the distinction between 124 be reported by contacting the Bytecode Alliance CoC team at
|
D | CODE_OF_CONDUCT.md | 39 …g, or otherwise unacceptable behavior may be reported by contacting the Bytecode Alliance CoC team… 41 …porary or permanent repercussions as determined by other members of the Bytecode Alliance's leader…
|
/third_party/rust/crates/io-lifetimes/ |
D | ORG_CODE_OF_CONDUCT.md | 1 # Bytecode Alliance Organizational Code of Conduct (OCoC) 7 The Bytecode Alliance (BA) welcomes involvement from organizations, 27 *Bytecode Alliance members should observe the distinction between 124 be reported by contacting the Bytecode Alliance CoC team at
|
D | CODE_OF_CONDUCT.md | 39 …g, or otherwise unacceptable behavior may be reported by contacting the Bytecode Alliance CoC team… 41 …porary or permanent repercussions as determined by other members of the Bytecode Alliance's leader…
|
/third_party/python/Mac/PythonLauncher/ |
D | FileSettings.m | 22 } else if ([filetype isEqualToString: @"Python Bytecode Document"]) { 44 } else if ([filetype isEqualToString: @"Python Bytecode Document"]) {
|
/third_party/python/Doc/library/ |
D | dis.rst | 18 Bytecode is an implementation detail of the CPython interpreter. No 44 Bytecode analysis 50 :class:`Bytecode` object that provides easy access to details of the compiled 53 .. class:: Bytecode(x, *, first_line=None, current_offset=None) 61 notably :func:`get_instructions`, as iterating over a :class:`Bytecode` 75 Construct a :class:`Bytecode` instance from the given traceback, setting 101 >>> bytecode = dis.Bytecode(myfunc) 268 Python Bytecode Instructions 271 The :func:`get_instructions` function and :class:`Bytecode` class provide
|
D | importlib.rst | 734 loading where only bytecode is provided. Bytecode files are an
|
/third_party/python/Lib/ |
D | dis.py | 466 class Bytecode: class
|
/third_party/python/Doc/whatsnew/ |
D | 3.4.rst | 740 In addition, a new application-friendly class :class:`~dis.Bytecode` provides 742 and for iterating over instructions. The :class:`~dis.Bytecode` constructor 745 :class:`~dis.Instruction` objects. But it also has a :mod:`~dis.Bytecode.dis` 749 >>> bytecode = dis.Bytecode(lambda x: x + 1, current_offset=3) 762 :class:`~dis.Bytecode` also has a class method, 763 :meth:`~dis.Bytecode.from_traceback`, that provides the ability to manipulate a 764 traceback (that is, ``print(Bytecode.from_traceback(tb).dis())`` is equivalent
|
/third_party/jerryscript/docs/ |
D | 04.INTERNALS.md | 4 …ipt application into the byte-code with the specified format (refer to [Bytecode](#byte-code) and …
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0a1.rst | 420 Bytecode optimizations are performed directly on the control flow graph.
|
/third_party/python/Misc/ |
D | HISTORY | 3325 - Issue #17916: Added dis.Bytecode.from_traceback() and 3326 dis.Bytecode.current_offset to easily display "current instruction" 3437 - Issue #19378: Removed the "dis.Bytecode.show_info" method 3439 - Issue #19378: Renamed the "dis.Bytecode.display_code" method to 3440 "dis.Bytecode.dis" and converted it to returning a string rather than 5000 generator, ability to redirect output to a file, Bytecode and Instruction
|