Home
last modified time | relevance | path

Searched refs:Bytecode (Results 1 – 19 of 19) sorted by relevance

/third_party/rust/crates/rustix/
DSECURITY.md3 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:
DCONTRIBUTING.md3 Rustix is a [Bytecode Alliance] project. It follows the Bytecode Alliance's
DORG_CODE_OF_CONDUCT.md1 # 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
DCODE_OF_CONDUCT.md39 …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…
DREADME.md8 <strong>A <a href="https://bytecodealliance.org/">Bytecode Alliance</a> project</strong>
/third_party/python/Lib/test/
Dtest_dis.py1200 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)
Dtest_compile.py981 for line, instr in enumerate(dis.Bytecode(if_else_break)):
/third_party/rust/crates/linux-raw-sys/
DORG_CODE_OF_CONDUCT.md1 # 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
DCODE_OF_CONDUCT.md39 …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/
DORG_CODE_OF_CONDUCT.md1 # 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
DCODE_OF_CONDUCT.md39 …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/
DFileSettings.m22 } else if ([filetype isEqualToString: @"Python Bytecode Document"]) {
44 } else if ([filetype isEqualToString: @"Python Bytecode Document"]) {
/third_party/python/Doc/library/
Ddis.rst18 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
Dimportlib.rst734 loading where only bytecode is provided. Bytecode files are an
/third_party/python/Lib/
Ddis.py466 class Bytecode: class
/third_party/python/Doc/whatsnew/
D3.4.rst740 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/
D04.INTERNALS.md4 …ipt application into the byte-code with the specified format (refer to [Bytecode](#byte-code) and …
/third_party/python/Misc/NEWS.d/
D3.10.0a1.rst420 Bytecode optimizations are performed directly on the control flow graph.
/third_party/python/Misc/
DHISTORY3325 - 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