bytecode - CI/CD用語集の定義
bytecode は、コンパイラによって生成され、ハードウェアによって直接ではなく仮想マシンによって実行される、コンパクトでプラットフォーム非依存の命令セットです。例えば JVM の .class ファイルや Python の .pyc ファイルです。
CI のキャッシュでは
コンパイル済みの bytecode(__pycache__、JVM のクラス出力)は run 間でキャッシュされることが多く、ソースが変更されていなければコンパイルステップがスキップされます。
関連ガイド
Intermediate Representation - CI/CD Glossary DefinitionIntermediate Representation: An intermediate representation (IR) is the data structure a compiler uses intern…
Just-in-Time Compilation - CI/CD Glossary DefinitionJust-in-Time Compilation: Just-in-time (JIT) compilation compiles code to native machine code during executio…
Compilation - CI/CD Glossary DefinitionCompilation: Compilation is the process of translating source code into a lower-level form (machine code, byt…