| 意味 | 例文 |
errnoを含む例文一覧と使い方
該当件数 : 205件
If the size of the value buffer is too small to hold the result, errno is set to ERANGE . 例文帳に追加
valueバッファの大きさsizeが結果を保持するのに十分な大きさでない場合、errnoにERANGE がセットされる。 - JM
The hash access method routines may fail and set errno for any of the errors specified for the library routine dbopen (3). 例文帳に追加
hashアクセスメソッドルーチンは、失敗するとライブラリルーチンdbopen (3) で指定されているエラーに応じたerrnoをセットする。 - JM
If the size of the list buffer is too small to hold the result, errno is set to ERANGE . 例文帳に追加
listバッファの大きさsizeが結果を保持するのに十分な大きさでない場合、errnoにERANGE がセットされる。 - JM
then certain library routines may fail without having a reason in errno . 例文帳に追加
個人的に別の malloc の実装を使っていて、その malloc がerrnoを設定しない場合には、失敗した際にerrnoにエラーの理由を設定しないライブラリルーチンがあるかもしれない。 - JM
Otherwise, the value returned is the value of the system resource and errno is not changed. 例文帳に追加
が設定される。 それ以外の場合、システムリソースの値が返り値として返され、errnoは変更されない。 - JM
The following errors can occur: Domain error: x is a negative integer, or negative infinity errno is set to EDOM . 例文帳に追加
以下のエラーが発生する可能性がある。 領域エラー: x が負の整数か負の無限大errnoにEDOM - JM
will block until all children have terminated, and then fail with errno set to ECHILD . 例文帳に追加
の呼び出しは全ての子プロセスが終了するまで停止し、子プロセスが全部終了した後errnoにECHILD - JM
The errno and strerror attributes are also None when the instance was created with other than 2 or 3 arguments.例文帳に追加
この例外が 2 または 3 つ以外の引数で生成された場合、errno および strerror 属性もNone になります。 - Python
The close routines may fail and set errno for any of the errors specified for the library routines close (2), 例文帳に追加
closeルーチンは失敗するとライブラリルーチンclose (2), - JM
The btree access method routines may fail and set errno for any of the errors specified for the library routine dbopen (3). 例文帳に追加
btreeアクセスメソッドルーチンは失敗すると、ライブラリルーチンdbopen (3) で定義されているエラーのいずれかをerrnoとして返す。 - JM
If one wants to check errno after the call, it should be set to zero before the call. 例文帳に追加
呼び出しの後でerrnoをチェックしたい場合は、呼び出しの前に (この値を) 0 に設定しておくべきである。 - JM
Since 0 can legitimately be returned on both success and failure, the calling program should set errno to 0 before the call, and then determine if an error occurred by checking whether errno has a non-zero value after the call. 例文帳に追加
成功、失敗どちらの場合でも 0 を返す可能性があるので、プログラムは呼び出す前にerrnoを 0 に設定し、呼び出し後にerrnoが 0 以外の値かどうかを確認しエラーが発生したかどうかを判断する必要がある。 - JM
put and seq routines may fail and set errno for any of the errors specified for the library routines read (2), 例文帳に追加
putとseqルーチンは失敗するとライブラリルーチンread (2), - JM
functions may also fail and set errno for any of the errors specified for the routine malloc (3). 例文帳に追加
関数はmalloc (3) ルーチンで規定されているエラーでも失敗することがあり、その時は対応する値にerrnoをセットする。 - JM
function may also fail and set errno for any of the errors specified for the routine open (2). 例文帳に追加
関数はopen (2) ルーチンで規定されているエラーでも失敗することがあり、その時は対応する値にerrnoをセットする。 - JM
function may also fail and set errno for any of the errors specified for the routine fcntl (2). 例文帳に追加
関数はfcntl (2) ルーチンで規定されているエラーでも失敗することがあり、その時は対応する値にerrnoをセットする。 - JM
If extended attributes are not supported by the file system, or are disabled, errno is set to ENOTSUP . 例文帳に追加
拡張属性がそのファイルシステムでサポートされていない場合、もしくは無効になっている場合、errnoにENOTSUP がセットされる。 - JM
function returns a pointer to the modified template string on success, and NULL on failure, in which case errno is set appropriately. 例文帳に追加
関数は変更された template 文字列へのポインタを返す。 失敗した場合は、NULL を返して、errnoを適切に設定する。 - JM
In such cases, a successful return can be distinguished from an error return by setting errno to zero before the call, and then, if the call returns a status that indicates that an error may have occurred, checking to see if errno has a non-zero value. 例文帳に追加
このような場合、成功なのかエラーなのかを区別するためには、呼び出しの前にerrnoを 0 に設定しておけばよい。 呼び出しの返り値がエラー発生の可能性を示すものだった場合には、errnoが 0 以外の値かを見て確認すればよい。 - JM
One might argue that according to POSIX errno should be left unchanged if an entry is not found. 例文帳に追加
POSIX に準拠して、エントリが見つからない場合はerrnoを変更しないようにすべきである、と主張する人もいるかもしれない。 - JM
When a domain error occurs, math functions commonly return a NaN (though some functions return a different value in this case); errno is set to EDOM , 例文帳に追加
領域エラーが発生すると、数学関数は普通は NaN を返し(同じ状況で違う値を返す関数もある)、errnoにEDOM - JM
The implementation may also set errno to EINVAL in case no conversion was performed (no digits seen, and 0 returned). 例文帳に追加
実装によっては、変換が行われなかった場合 (数字がなく、0 を返した場合)、errno に EINVAL が設定される場合がある。 - JM
This is a convenience function to raise an exception when a Clibrary function has returned an error and set the C variable errno.例文帳に追加
Cライブラリ関数がエラーを返してC変数errnoを設定したときに、これは例外を発生させるために便利な関数です。 - Python
(Since 1.3.1.) 例文帳に追加
そうでない時には、バッファは変更されず、 errno に ENOMEM がセットされる(カーネル 1.3.1 以降)。 - JM
Valid error numbers are all non-zero; errno is never set to zero by any system call or library function. 例文帳に追加
有効なエラー番号はいずれも 0 以外の値を持つ。 - JM
, the negated value of one of the constants described in errno (3)).例文帳に追加
で説明されている定数のいずれかを負にした値を返す)。 - JM
errno macro specifies the error return value for section two library routines. 例文帳に追加
はセクション 2 のライブラリルーチンにおけるエラーの戻り値を指定します。 - JM
It does not call "not found" an error, hence does not specify what value errno might have in this situation. 例文帳に追加
この標準は「(エントリが) 見つからないこと」をエラーとしていないので、そのような場合にerrnoがどのような値になるかを定めていない。 - JM
It does not call "not found" an error, and hence does not specify what value errno might have in this situation. 例文帳に追加
この標準は「(エントリが) 見つからないこと」をエラーとしていないので、そのような場合にerrnoがどのような値になるかを定めていない。 - JM
If the named attribute does not exist, or the process has no access to this attribute, errno is set to ENOATTR . 例文帳に追加
指定された名前の属性が存在しない場合、またはプロセスがその属性にアクセスする権限がない場合、errnoにENOATTR がセットされる。 - JM
It works somewhat like the Unix errno variable: there is a global indicator (per thread) of the last error that occurred.例文帳に追加
例外はUnix errno変数にやや似た機能を果たします: 発生した中で最も新しいエラーの(スレッド毎の)グローバルなインジケータがあります。 - Python
For the C programming language, this error code is stored in the global variable errno , and the function that executed the system call returns the value -1. 例文帳に追加
Cプログラミング言語においては、このエラーコードが大域変数 errnoに格納されます。 また、システムコールを 実行した関数は -1の値を返します。 - FreeBSD
Otherwise an error value is returned, the same value that would have been stored in the errno variable in case of a synchronous read , 例文帳に追加
それ以外の場合はエラー値が返される。 このエラー値は、同期read , - JM
On error, most system calls return a negative error number (i. e. 例文帳に追加
エラーの場合、ほとんどのシステムコールは負のエラー番号を返す(具体的にはerrno (3) - JM
If the length of the absolute pathname of the current working directory, including the terminating null byte, exceeds size bytes, NULL is returned, and errno is set to ERANGE ; 例文帳に追加
終端の NULL バイトも含めた、カレントワーキングディレクトリの絶対パス名の長さがsizeバイトを超えている場合は、返り値として NULL が返りerrnoにERANGE がセットされる。 - JM
to set errno if the call encounters an error, but does not specify what value should be returned as the function result in the event of an error. 例文帳に追加
がエラーに遭遇した場合にerrnoをセットすることを認めているが、エラー発生時に関数の結果としてどんな値を返すべきかを規定してない。 - JM
can fail; the cause of the error is not available from errno or anywhere else, but indicates a failure of the regex engine (but this case is indistinguishable from that of an unrecognized value of response). 例文帳に追加
が失敗する理由のどれかで失敗することがある。 エラーの原因をerrnoや他の何かで知ることはできないが、errnoは正規表現エンジンの失敗の原因を示している(但し、このケースとresponseの値を認識できずに失敗した場合を区別することはできない)。 - JM
A portable program that needs to check for an error from a mathematical function should set errno to zero, and make the following call +4n 例文帳に追加
)移植性が必要なプログラムで、数学関数からのエラーを確認する必要がある場合には、数学関数を呼び出す前にerrnoを 0 に設定し、以下を呼び出すべきである。 - JM
This exception is raised for socket-related errors. The accompanying value is either a string telling what went wrong or a pair (errno, string)representing an error returned by a system call, similar to the value accompanying os.例文帳に追加
この例外は、ソケット関連のエラーが発生した場合に送出されます。 例外の値は障害の内容を示す文字列か、またはos.errorと同様な(errno, string)のペアとなります。 - Python
returns zero on success, and -1 on failure. 例文帳に追加
は成功すると 0 を返し、失敗するとエラー番号を返す。 errnoはセットされない点に注意すること。 - JM
which is set when errors occur but not cleared when non-erroneous calls are made. 例文帳に追加
errnoはエラーが発生した時に設定され、エラーが発生しない呼び出しではクリアされない。 - JM
For Section 2 and 3 manual pages, this is a list of the values that may be placed in errno in the event of an error, along with information about the cause of the errors. 例文帳に追加
セクション 2 と 3 のマニュアルページでは、エラーが発生した場合にerrnoに設定される可能性がある値のリストを記載する。 リストには、エラーの値とエラーの原因についての情報を書く。 - JM
| 意味 | 例文 |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、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 1994-2010 The FreeBSD Project. All rights reserved. license |
| 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会員(無料)になると
|