| 例文 |
exit commandの部分一致の例文一覧と使い方
該当件数 : 53件
Otherwise, the exit status of the command builtin is the exit status of command . 例文帳に追加
それ以外の場合には、組み込みコマンドcommandの終了ステータスは、commandの終了ステータスです。 - JM
If a sigspec is EXIT (0) the command arg is executed on exit from the shell. 例文帳に追加
sigspecがEXIT(0) であれば、シェルの終了時にコマンドargが実行されます。 - JM
An end of file is treated as an implicit exit command. 例文帳に追加
ファイルの終りは暗黙の exit コマンドとして扱われる。 - XFree86
If one of the expansions contained a command substitution, the exit status of the command is the exit status of the last command substitution performed. 例文帳に追加
展開のいずれかがコマンド置換である場合には、コマンドの終了ステータスは最後に実行されたコマンド置換の終了ステータスになります。 - JM
Thus, the exit code of the command will be WEXITSTATUS(status) . 例文帳に追加
従って、コマンドの終了コードはWEXITSTATUS(status)で得ることが出来る。 - JM
The until command is identical to the while command, except that the test is negated; the do list is executed as long as the last command in list returns a non-zero exit status. 例文帳に追加
dolistは、list中の最後のコマンドが0 以外の終了ステータスを返す限りずっと実行されます。 - JM
Bash's exit status is the exit status of the last command executed in the script. 例文帳に追加
bash の終了ステータスは、このスクリプト中で実行された最後のコマンドの終了ステータスになります。 - JM
Choose Exit Command from the Commands section of the Component Palette.例文帳に追加
コンポーネントパレットの「コマンド」セクションで終了コマンドを選択します。 - NetBeans
The return status is the exit status of the last command executed. 例文帳に追加
返却ステータスは、最後に実行したコマンドの終了ステータスになります。 - JM
A redirection error causes the command to exit with a non-zero status. 例文帳に追加
リダイレクションのエラーが起きると、コマンドは 0 でないステータスで終了します。 - JM
The return status is the exit status of the last command that executes. 例文帳に追加
返却ステータスは実行された最後のコマンドの終了ステータスになります。 - JM
The exit status of a function is the exit status of the last command executed in the body. (See FUNCTIONS below. 例文帳に追加
関数の終了ステータスは、関数本体で最後に実行されたコマンドの終了ステータスです (後述の関数を参照)。 - JM
Bash itself returns the exit status of the last command executed, unless a syntax error occurs, in which case it exits with a non-zero value. 例文帳に追加
文法エラーの場合には 0 でない値が終了ステータスとなります。 - JM
When the prompt --More--(Next file: file ) is printed, this command causes zmore to exit. 例文帳に追加
"e または q"プロンプト --More--(Next file: file )が表示されているとき、このコマンドは zmore を終了させる。 - JM
If you use the quit command noted below you can make the application exit. 例文帳に追加
下記のquitコマンドを使うとアプリケーションを終了させることが出来ます。 - Tanaka Corpus
If you use the quit command noted below, you can make the application exit.例文帳に追加
下記のquitコマンドを使うとアプリケーションを終了させることが出来ます。 - Tatoeba例文
If neither option is supplied and an error occurred or command cannot be found, the exit status is 127. 例文帳に追加
どちらのオプションも与えなかった場合に、エラーが起きたりcommandを見つけられなかったりすると、終了ステータスは 127 になります。 - JM
Otherwise, the status of the pipeline is the exit status of the last command. 例文帳に追加
それ以外の場合には、パイプラインのステータスは最後のコマンドの終了ステータスになります。 - JM
If n is omitted, the exit status is that of the last command executed. 例文帳に追加
nを省略すると、終了ステータスは最後に実行したコマンドの終了ステータスとなります。 - JM
The exit status is the exit status of the last command executed, or zero if no condition tested true. 例文帳に追加
終了ステータスは最後に実行されたコマンドの終了ステータスですが、真と評価された条件が全く無い場合には 0 となります。 - JM
Failure to execute the shell is indistinguishable from the shell's failure to execute command, or an immediate exit of the command. 例文帳に追加
シェルの実行の失敗は、シェルがコマンドの実行に失敗したことや、コマンドがすぐに終了してしまったことと、区別がつかない。 - JM
The exit status of select is the exit status of the last command executed in list , or zero if no commands were executed. 例文帳に追加
selectの終了ステータスは、list中で最後に実行したコマンドの終了ステータスですが、コマンドが全く実行されなかった場合には 0 となります。 - JM
The return status of AND and OR lists is the exit status of the last command executed in the list. 例文帳に追加
AND リストと OR リストの返却ステータスは、リスト中で最後に実行されたコマンドの終了ステータスです。 - JM
This command is then read and executed by the shell, and its exit status is returned as the value of eval . 例文帳に追加
次にシェルはこのコマンドを読み込んで実行し、その終了ステータスがevalの値として返されます。 - JM
(source) command, it causes the shell to stop executing that script and return either n or the exit status of the last command executed within the script as the exit status of the script. 例文帳に追加
(source) コマンドによるスクリプトの実行中である場合、シェルはそのスクリプトの実行を止め、nまたはスクリプト内で最後に実行されたコマンドの終了ステータスをスクリプトの終了ステータスとして返します。 - JM
If the reserved word ! precedes a pipeline, the exit status of that pipeline is the logical NOT of the exit status of the last command. 例文帳に追加
パイプラインの前に、予約語である!がある場合、そのパイプラインの終了ステータスは最後のコマンドの終了ステータスの論理値のNOT を取ったものになります。 - JM
The exit status of the while and until commands is the exit status of the last do list command executed, or zero if none was executed. 例文帳に追加
while コマンドと until コマンドの終了ステータスは、do list で実行された最後のコマンドの終了ステータスになりますが、コマンドが全く実行されなかった場合には 0 になります。 - JM
Otherwise, if a command-line argument is supplied, then the child exits immediately, using the integer supplied on the command line as the exit status. 例文帳に追加
コマンドライン引き数が指定された場合は、子プロセスは直ちに終了し、コマンドラインで指定された整数を終了ステータスとして使用する。 - JM
Otherwise, it is the exit status of the last command executed in list. 例文帳に追加
マッチするものがあったら、終了ステータスはlist 中で最後に実行されたコマンドの終了ステータスになります。 - JM
When a command terminates on a fatal signal N, bash uses the value of 128+N as the exit status. 例文帳に追加
あるコマンドが致命的なシグナル N で終了したときには、bash は「128+N」の値を終了ステータスに使います。 - JM
Exit code that means the command was used incorrectly, such as when the wrong number of arguments are given.Availability: Unix.New in version 2.3.例文帳に追加
誤った個数の引数が渡されたときなど、コマンドが間違って使われたことを表す終了コード。 - Python
If a command fails because of an error during expansion or redirection, the exit status is greater than zero. 例文帳に追加
展開やリダイレクションの際のエラーのためにコマンドが失敗した場合には、0 より大きい終了ステータスが返されます。 - JM
function waits for the associated process to terminate and returns the exit status of the command as returned by wait4 (2). 例文帳に追加
関数は、(パイプに) 関連づけられたプロセスが終了するのを待ち、wait4 (2) によって返されたコマンドの終了状態を返す。 - JM
while list; do list; done 0 until list; do list; done The while command continuously executes the do list as long as the last command in list returns an exit status of zero. 例文帳に追加
0while list; do list; doneuntil list; do list; donewhile コマンドは、list 中の最後のコマンドが終了ステータス0 を返すまで、繰り返して do list を実行します。 untilコマンドは while コマンドとほぼ同じですが、評価の条件が否定となる点が異なります。 - JM
Otherwise, each elif list is executed in turn, and if its exit status is zero, the corresponding then list is executed and the command completes. 例文帳に追加
そうでなければ elif list がそれぞれ順番に実行され、この終了ステータスが 0 ならば、対応する then listが実行され、コマンドが終了します。 - JM
If a second attempt to exit is made without an intervening command, the shell does not print another warning, and the stopped jobs are terminated. 例文帳に追加
間にコマンドを挟まずにbashを再び終了させようとすると、シェルは警告を繰り返さないで、停止されているジョブを終了させます。 - JM
execfail If set, a non-interactive shell will not exit if it cannot execute the file specified as an argument to the exec builtin command. 例文帳に追加
execfail設定されている場合、組み込みコマンドexecへの引き数として指定されたファイルが実行できなくても、対話的でないシェルが終了しません。 - JM
As with the commands in described section 1, the commands described in this section terminate with an exit status that indicates whether the command succeeded or failed. 例文帳に追加
1 章で説明されているコマンドと同様、この章で説明されるコマンドはコマンドの成功・失敗を示す終了ステータスで終了する。 - JM
The return value is the exit status of the last command in list that is executed, or false if any of the expressions is invalid. 例文帳に追加
返却ステータスは list 中で実行された最後のコマンドの終了ステータスとなりますが、算術式のいずれかが無効である場合には不正な値となります。 - JM
To provide a synchronous type storage device in which exit operation can be performed without exerting an influence on the internal operation of preceding and succeeding cycles by taking in the exit command of burst write operation while being synchronized with a synchronizing signal, and its control method.例文帳に追加
バースト書き込み動作のイグジット指令を同期信号に同期して取り込むことにより、前後サイクルの内部動作に影響を与えることなくイグジット動作を行うことが可能な同期型記憶装置及びその制御方法を提供すること。 - 特許庁
A non-zero exit status can be in the range 1 to 255, and some commands use different non-zero status values to indicate the reason why the command failed. 例文帳に追加
非 0 の終了ステータスは 1 から 255 の範囲の値をとることができ、いくつかのコマンドではコマンドが失敗した理由を示すために複数の非 0 のステータス値が使用されている。 - JM
The semiconductor device having a test mode for conducting a test is equipped with a first circuit that generates a first signal based upon a first dummy command signal inputted a plurality of times, and a second dummy command signal and a third dummy command signal different from the first dummy command signal and generates a second signal designating an entry into a corresponding test mode or an exit from the corresponding test mode based upon the first signal.例文帳に追加
試験を行うためのテストモードを有する半導体装置において、複数回入力される第1のダミーコマンド信号と、前記第1のダミーコマンド信号とは異なる第2のダミーコマンド信号及び第3のダミーコマンド信号とに基づいて第1の信号を生成し、前記第1の信号に基づいて、対応するテストモードへのエントリ又は対応するテストモードからのエクジットを指示する第2の信号を生成する第1の回路を備えるように構成する。 - 特許庁
Some systems have a convention for assigning specific meanings to specific exit codes, but these are generally underdeveloped; Unix programs generally use 2 for command line syntax errors and 1 for all other kind of errors.例文帳に追加
システムによっては特定の終了コードに個別の意味を持たせている場合がありますが、このような定義は僅かしかありません。 Unixプログラムでは文法エラーの場合には2を、それ以外のエラーならば1を返します。 - Python
When bash is waiting for an asynchronous command via the wait builtin, the reception of a signal for which a trap has been set will cause the wait builtin to return immediately with an exit status greater than 128, immediately after which the trap is executed. 例文帳に追加
bash が組み込みコマンドのwait を使って非同期コマンドを待っている時に、トラップが設定されているシグナルを受け取ると、組み込みコマンド wait は即座に復帰させられます。 この際の終了ステータスは 128 より大きい値になります。 - JM
This memory device includes a command decoder for generating a power-down signal responding to a power-down command, a mode register for storing power-down exit information, a clock synchronization circuit such as a DLL (delayed locked loop) or PLL (phase locked loop) circuit for generating an internal clock signal synchronized with an external clock signal, and a control part for controlling the DLL or PLL circuit.例文帳に追加
メモリ装置はパワーダウン命令に応答してパワーダウン信号を発生する命令デコーダと、パワーダウン脱出情報を貯蔵するモードレジスタと、外部クロック信号に同期される内部クロック信号を発生するDLLまたはPLL回路のようなクロック同期化回路と、DLLまたはPLL回路を制御する制御部とを含む。 - 特許庁
Upon the input of the command from the counting part 9 and control circuit 4, after the lapse of a time for the passers to ride on the passenger conveyor and reach a head exit, a timer provided in the control circuit 4 automatically returns the operation speed to a low speed.例文帳に追加
次に計数部9および制御回路4からの指令が入ってから、通行者が乗客コンベアに乗り込み、上部降り口に達するまでの所要時間が経過した後、制御回路4に備えたタイマにより、自動的に運転速度を低速に戻す。 - 特許庁
A controller 4 reads in results of machining after the machining is completed to command machining of the lens 12, and writes the results of machining to the IC tag 9 after the machining is completed, and an exit terminal computer 7 reads in the results of machining out of the IC tag 9 and stores it as history information on a management server 5.例文帳に追加
コントローラ4は、ICタグ9から加工指令を読み込んでレンズ12の加工を指令し、加工の完了後に加工の結果をICタグ9に書き込み、出口端末コンピュータ7はICタグ9から加工の結果を読み込んで管理サーバ5に履歴情報として蓄積する。 - 特許庁
| 例文 |
Tanaka Corpusのコンテンツは、特に明示されている場合を除いて、次のライセンスに従います: Creative Commons Attribution (CC-BY) 2.0 France. |
Tatoebaのコンテンツは、特に明示されている場合を除いて、次のライセンスに従います: Creative Commons Attribution (CC-BY) 2.0 France |
| Copyright © Japan Patent office. All Rights Reserved. |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| Copyright (c) 2001 Robert Kiesling. Copyright (c) 2002, 2003 David Merrill. The contents of this document are licensed under the GNU Free Documentation License. Copyright (C) 1999 JM Project All rights reserved. |
| Copyright (C) 1994-2004 The XFree86®Project, Inc. All rights reserved. licence Copyright (C) 1995-1998 The X Japanese Documentation Project. lisence |
| © 2010, Oracle Corporation and/or its affiliates. Oracle and Java are registered trademarks of Oracle and/or its affiliates.Other names may be trademarks of their respective owners. |
| Copyright 2001-2004 Python Software Foundation.All rights reserved. Copyright 2000 BeOpen.com.All rights reserved. Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved. Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|