About: Runtime (program lifecycle phase)     Goto   Sponge   Distinct   Permalink

An Entity of Type : owl:Thing, within Data Space : dbpedia.org associated with source document(s)
QRcode icon
http://dbpedia.org/describe/?url=http%3A%2F%2Fdbpedia.org%2Fresource%2FRuntime_%28program_lifecycle_phase%29

In computer science, runtime, run time, or execution time is the final phase of a computer program's life cycle, in which the code is being executed on the computer's central processing unit (CPU) as machine code. In other words, "runtime" is the running phase of a program.

AttributesValues
rdfs:label
  • وقت التنفيذ (ar)
  • Laufzeit (Informatik) (de)
  • Rultempo (eo)
  • Tiempo de ejecución (es)
  • Exécution (phase de cycle de vie d'un programme informatique) (fr)
  • Run-time (it)
  • 런타임 (ko)
  • ランタイム (プログラムライフサイクルフェーズ) (ja)
  • Runtime (program lifecycle phase) (en)
  • Tempo de execução (pt)
  • 執行期 (zh)
rdfs:comment
  • وقت التنفيذ (بالإنجليزية: runtime)‏ هو مصطلح يستخدم في علم الحاسوب للتعبير عن الفترة التي يكون فيها البرنامج في مرحلة التنفيذ، وهي إحدى مراحل حياة البرنامج مثل وقت التصريف ووقت الربط ووقت التحميل، إلخ. يكتشف خطأ وقت التنفيذ بعد أو أثناء تنفيذ البرنامج، بينما يكتشف خطأ وقت التصريف من قبل المترجم قبل أن يُنفذ البرنامج. تقليدياً، يجري تدقيق الأنواع وتوليد الشيفرة وتحسين البرنامج في وقت التصريف، ولكن يمكن أيضاً إجراؤهم في وقت التنفيذ اعتماداً على اللغة والمترجم المستخدمين. (ar)
  • En komputado rultempo estas periodo dum kiu komputila programo estas plenumata (rulata), kontraste al la aliaj fazoj de la programa vivociklo, kiaj traduktempo, bindotempo, ŝargotempo. (eo)
  • Der Begriff Laufzeit (englisch runtime) beschreibt in der Informatik einerseits die Zeitdauer, die ein Programm, ausgeführt durch einen Rechner, zur Bewältigung einer Aufgabe benötigt. Andererseits wird mit Laufzeit auch allgemein die Programmlebensphase der Ausführung bezeichnet, die der Kompilierung (Übersetzungszeit) folgt. (de)
  • Runtime o run-time (tempo di esecuzione) indica il momento in cui un programma per computer viene eseguito, in contrapposizione ad altre fasi del ciclo di vita del software. Tradizionalmente, questa contrapposizione era soprattutto intesa rispetto al tempo di compilazione o compile-time, relativa alla stesura e traduzione del programma sorgente; in questa accezione, spesso si usano anche gli aggettivi dinamico e statico per riferirsi rispettivamente al run-time e al compile-time. Nello scenario della programmazione moderna, che comprende una catena di produzione del software più varia e articolata, run-time può essere contrapposto anche ad altri stadi della vita di un programma, come il deployment time, il linking time e il loading time. (it)
  • ランタイム (英: runtime) または実行時は、計算機科学では、コンピュータ・プログラムのライフサイクルの最終フェーズであり、コードがコンピュータの中央処理ユニット(CPU)でマシンコードとして実行されている状態である。言い換えると、「ランタイム」はプログラムの実行フェーズである。 ランタイムエラーは、プログラムの実行後または実行中(実行状態)に検出されるが、コンパイル時エラーは、プログラムが実行される前にコンパイラによって検出される。型チェック、レジスタ割り付け、コード生成、およびコード最適化は通常、コンパイル時に実行されるが、言語やコンパイラによっては実行時に実行される場合がある。他にも多くのランタイムエラーが存在し、ゼロ除算エラー、ドメインエラー、エラー、エラー、いくつかのタイプのアンダーフローおよびオーバーフローエラー、および一般的に考慮される他の多くのランタイムエラーなど、さまざまなプログラミング言語によって異なる方法で処理される。 (ja)
  • 런타임(영어: runtime→실행시간)은 컴퓨터 과학에서 컴퓨터 프로그램이 실행되고 있는 동안의 동작을 말한다. "런타임"이라는 용어는 컴퓨터 언어 안에 쓰인 프로그램을 관리하기 위해, 특정한 컴파일러나 가상 머신이 사용하는 기본 코드의 라이브러리나 프로그램을 통틀어 런타임 라이브러리라고도 일컫는다. 런타임 환경(영어: runtime environment)은 컴퓨터가 실행되는 동안 프로세스나 프로그램을 위한 소프트웨어 서비스를 제공하는 가상 머신의 상태이다. 운영 체제 자체에 속하는 경우도 있고 운영 체제에서 작동하는 소프트웨어를 뜻할 수도 있다. (ko)
  • 執行時期(Run time)在電腦科學中代表一個電腦程式從開始執行到終止執行的運作、執行的時期。與執行時期相對的其他時期包括:(design time)、編譯時期(compile time)、鏈結時期(link time)、與(load time)。 而執行環境是一種為正在執行的程序或程式提供軟體服務的虛擬機械環境。它有可能是由作業系統自行提供,或由執行此程式的母程式提供。 通常由作業系統負責處理程式的載入:利用載入器(loader)讀入程式碼,接著進行基本的記憶體配置,並視需要聯結此程式指定的所有動態链接庫。有些程式語言會由此語言提供的運行環境處理上述工作。 程式碼的某些問題,只能在运行期间進行偵錯動作(或較有效率),例如邏輯錯誤或陣列邊際檢查等便屬此類。因此不管撰寫與測試得多麼精細,有些錯誤必須在實際上線並處理真實資料的情況下才能找出。因此,程式使用者也許會遇到諸如執行時期錯誤之類的訊息。 (zh)
  • Se denomina tiempo de ejecución (runtime en inglés) al intervalo de tiempo en el que un programa de computadora se ejecuta en un sistema operativo. Este tiempo se inicia con la puesta en memoria principal del programa, por lo que el sistema operativo comienza a ejecutar sus instrucciones. El intervalo finaliza en el momento en que este envía al sistema operativo la señal de terminación, sea esta una terminación normal, en que el programa tuvo la posibilidad de concluir sus instrucciones satisfactoriamente, o una terminación anormal, en el que el programa produjo algún error y el sistema debió forzar su finalización. (es)
  • En informatique , l'exécution (runtime ou run time), ou le temps d'exécution est la phase finale du cycle de vie d'un programme informatique, dans lequel le code est exécuté par l'unité centrale de traitement (CPU) de l'ordinateur comme code machine. En d'autres termes, le runtime est la phase d'exécution d'un programme. (fr)
  • In computer science, runtime, run time, or execution time is the final phase of a computer program's life cycle, in which the code is being executed on the computer's central processing unit (CPU) as machine code. In other words, "runtime" is the running phase of a program. (en)
  • Em informática, tempo de execução ou runtime (termo em inglês), é o período em que um programa de computador permanece em execução. O termo runtime também pode se referir a uma máquina virtual que gerencia um programa escrito em uma linguagem de computador enquanto está sendo executado. O termo tempo de execução é um contraponto ao termo tempo de compilação, que é uma referência ao período em que o código é compilado para gerar um programa executável. (pt)
dcterms:subject
Wikipage page ID
Wikipage revision ID
Link from a Wikipage to another Wikipage
sameAs
dbp:wikiPageUsesTemplate
has abstract
  • وقت التنفيذ (بالإنجليزية: runtime)‏ هو مصطلح يستخدم في علم الحاسوب للتعبير عن الفترة التي يكون فيها البرنامج في مرحلة التنفيذ، وهي إحدى مراحل حياة البرنامج مثل وقت التصريف ووقت الربط ووقت التحميل، إلخ. يكتشف خطأ وقت التنفيذ بعد أو أثناء تنفيذ البرنامج، بينما يكتشف خطأ وقت التصريف من قبل المترجم قبل أن يُنفذ البرنامج. تقليدياً، يجري تدقيق الأنواع وتوليد الشيفرة وتحسين البرنامج في وقت التصريف، ولكن يمكن أيضاً إجراؤهم في وقت التنفيذ اعتماداً على اللغة والمترجم المستخدمين. (ar)
  • En komputado rultempo estas periodo dum kiu komputila programo estas plenumata (rulata), kontraste al la aliaj fazoj de la programa vivociklo, kiaj traduktempo, bindotempo, ŝargotempo. (eo)
  • Der Begriff Laufzeit (englisch runtime) beschreibt in der Informatik einerseits die Zeitdauer, die ein Programm, ausgeführt durch einen Rechner, zur Bewältigung einer Aufgabe benötigt. Andererseits wird mit Laufzeit auch allgemein die Programmlebensphase der Ausführung bezeichnet, die der Kompilierung (Übersetzungszeit) folgt. (de)
  • Se denomina tiempo de ejecución (runtime en inglés) al intervalo de tiempo en el que un programa de computadora se ejecuta en un sistema operativo. Este tiempo se inicia con la puesta en memoria principal del programa, por lo que el sistema operativo comienza a ejecutar sus instrucciones. El intervalo finaliza en el momento en que este envía al sistema operativo la señal de terminación, sea esta una terminación normal, en que el programa tuvo la posibilidad de concluir sus instrucciones satisfactoriamente, o una terminación anormal, en el que el programa produjo algún error y el sistema debió forzar su finalización. Este término suele emplearse, en oposición a tiempo de compilación, para indicar si una acción o hecho sucede en uno u otro tiempo. También es usado en su forma original en inglés para nombrar otros conceptos en informática. (es)
  • En informatique , l'exécution (runtime ou run time), ou le temps d'exécution est la phase finale du cycle de vie d'un programme informatique, dans lequel le code est exécuté par l'unité centrale de traitement (CPU) de l'ordinateur comme code machine. En d'autres termes, le runtime est la phase d'exécution d'un programme. Une erreur d'exécution est détectée pendant ou après l'exécution (état de marche) d'un programme, alors que les erreurs de compilation sont toujours détectées par le compilateur avant l'exécution du programme. La vérification de type, l'allocation de registres, la génération de code et l'optimisation de code sont généralement effectués au moment de la compilation, mais peuvent être effectués au moment de l'exécution en fonction du langage indiqué et du compilateur. De nombreuses autres erreurs d'exécution existent et sont gérées différemment par différents langages de programmation, telles que les erreurs de division par zéro, les erreurs de domaine, les erreurs d'indice de tableau hors limites, les erreurs de dépassement arithmétique, plusieurs types d'erreurs de dépassement, et de nombreuses autres erreurs d'exécution généralement considérées comme des bogues logiciels qui peuvent ou non être détectés et traités par un langage informatique particulier. (fr)
  • In computer science, runtime, run time, or execution time is the final phase of a computer program's life cycle, in which the code is being executed on the computer's central processing unit (CPU) as machine code. In other words, "runtime" is the running phase of a program. A runtime error is detected after or during the execution (running state) of a program, whereas a compile-time error is detected by the compiler before the program is ever executed. Type checking, register allocation, code generation, and code optimization are typically done at compile time, but may be done at runtime depending on the particular language and compiler. Many other runtime errors exist and are handled differently by different programming languages, such as division by zero errors, domain errors, array subscript out of bounds errors, arithmetic underflow errors, several types of underflow and overflow errors, and many other runtime errors generally considered as software bugs which may or may not be caught and handled by any particular computer language. (en)
  • Runtime o run-time (tempo di esecuzione) indica il momento in cui un programma per computer viene eseguito, in contrapposizione ad altre fasi del ciclo di vita del software. Tradizionalmente, questa contrapposizione era soprattutto intesa rispetto al tempo di compilazione o compile-time, relativa alla stesura e traduzione del programma sorgente; in questa accezione, spesso si usano anche gli aggettivi dinamico e statico per riferirsi rispettivamente al run-time e al compile-time. Nello scenario della programmazione moderna, che comprende una catena di produzione del software più varia e articolata, run-time può essere contrapposto anche ad altri stadi della vita di un programma, come il deployment time, il linking time e il loading time. (it)
  • ランタイム (英: runtime) または実行時は、計算機科学では、コンピュータ・プログラムのライフサイクルの最終フェーズであり、コードがコンピュータの中央処理ユニット(CPU)でマシンコードとして実行されている状態である。言い換えると、「ランタイム」はプログラムの実行フェーズである。 ランタイムエラーは、プログラムの実行後または実行中(実行状態)に検出されるが、コンパイル時エラーは、プログラムが実行される前にコンパイラによって検出される。型チェック、レジスタ割り付け、コード生成、およびコード最適化は通常、コンパイル時に実行されるが、言語やコンパイラによっては実行時に実行される場合がある。他にも多くのランタイムエラーが存在し、ゼロ除算エラー、ドメインエラー、エラー、エラー、いくつかのタイプのアンダーフローおよびオーバーフローエラー、および一般的に考慮される他の多くのランタイムエラーなど、さまざまなプログラミング言語によって異なる方法で処理される。 (ja)
  • 런타임(영어: runtime→실행시간)은 컴퓨터 과학에서 컴퓨터 프로그램이 실행되고 있는 동안의 동작을 말한다. "런타임"이라는 용어는 컴퓨터 언어 안에 쓰인 프로그램을 관리하기 위해, 특정한 컴파일러나 가상 머신이 사용하는 기본 코드의 라이브러리나 프로그램을 통틀어 런타임 라이브러리라고도 일컫는다. 런타임 환경(영어: runtime environment)은 컴퓨터가 실행되는 동안 프로세스나 프로그램을 위한 소프트웨어 서비스를 제공하는 가상 머신의 상태이다. 운영 체제 자체에 속하는 경우도 있고 운영 체제에서 작동하는 소프트웨어를 뜻할 수도 있다. (ko)
Faceted Search & Find service v1.17_git139 as of Feb 29 2024


Alternative Linked Data Documents: ODE     Content Formats:   [cxml] [csv]     RDF   [text] [turtle] [ld+json] [rdf+json] [rdf+xml]     ODATA   [atom+xml] [odata+json]     Microdata   [microdata+json] [html]    About   
This material is Open Knowledge   W3C Semantic Web Technology [RDF Data] Valid XHTML + RDFa
OpenLink Virtuoso version 08.03.3330 as of Mar 19 2024, on Linux (x86_64-generic-linux-glibc212), Single-Server Edition (62 GB total memory, 54 GB memory in use)
Data on this page belongs to its respective rights holders.
Virtuoso Faceted Browser Copyright © 2009-2024 OpenLink Software