1153万例文収録!

「false return」に関連した英語例文の一覧と使い方(2ページ目) - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > false returnの意味・解説 > false returnに関連した英語例文

セーフサーチ:オン

不適切な検索結果を除外する

不適切な検索結果を除外しない

セーフサーチについて

false returnの部分一致の例文一覧と使い方

該当件数 : 98



例文

Return false if cookies should not be returned, given cookie domain.This method is an optimization. 例文帳に追加

与えられたクッキーのドメインに対して、そこにクッキーを返すべきでない場合にはfalse を返します。 このメソッドは高速化のためのものです。 - Python

test the validity of a cache file and return it if it's available (FALSEelse) 例文帳に追加

キャッシュファイルが有効かどうかをテストし、有効であればそれを返します (さもなければ FALSE) 。 - PEAR

Return true if str is data and false if it might be a section boundary.例文帳に追加

str がデータの場合に真を返し、セクション分割子の可能性がある場合には偽を返します。 - Python

Return true if the object argument appears callable, false if not.例文帳に追加

object 引数が呼び出し可能なオブジェクトの場合、真を返します。 そうでなければ偽を返します。 - Python

例文

Should return true if item is in self, false otherwise.例文帳に追加

item が self 内に存在する場合には真を、そうでない場合には偽を返さなければなりません。 - Python


例文

There is no return value in this case.When invoked with the blocking argument set to true, do the same thing as when called without arguments, and return true.When invoked with the blocking argument set to false, do not block.例文帳に追加

引数なしで呼び出した場合にブロックするような状況であった場合には直ちに偽を返します。 - Python

Otherwise (block is false), return an item if one is immediately available, else raise the Empty exception(timeout is ignored in that case).例文帳に追加

他方(blockがFalse)、直ちにアイテムが利用できるならば、それを返します。 できないならば、例外Emptyを送出します(この場合timeoutは無視されます)。 - Python

Operations and built-in functions that have a Boolean result always return 0 or False for false and 1 or True for true, unless otherwise stated. (Important exception: the Boolean operations "or"例文帳に追加

ブール値の結果を返す演算および組み込み関数は、特に注釈のない限り常に偽値として 0 またはFalse を返し、真値として 1 または True を返します (重要な例外: ブール演算"or" - Python

To suppress the insertion/return of money with no selling, with which the return of true coins is swindled by operating the return of money by inserting a false coin similar to a 500-yen coin, for example, into an automatic vending machine and making the machine erroneously recognize the false coin as a true coin, while reducing an influence upon a general customer.例文帳に追加

例えば500円硬貨に似た偽貨を自販機に投入し正貨と誤認させて返金操作し正貨の返金を詐取する無販売投入返金を一般顧客への影響を少なくして抑止する。 - 特許庁

例文

The return value is true if the directory was successfully changed; false otherwise. 例文帳に追加

ディレクトリの変更が成功した場合には返り値は真になります。 そうでない場合には偽になります。 - JM

例文

Return true if there is such a section, false if an end-marker is seen.例文帳に追加

次のセクションがあった場合には真を、終了マーカが発見された場合には偽を返します。 - Python

Return true (nonzero) when the Python interpreter has been initialized, false (zero) if not.例文帳に追加

Python インタプリタがすでに初期化済みの場合に真 (非ゼロ) を返し、そうでない場合には偽 (ゼロ) を返します。 - Python

When FALSE, the normal behaviour will be used, which will result in DB attempting to automatically detect whether the query will return a result set or not. 例文帳に追加

FALSEの場合は通常どおりの挙動となります。 つまり、そのクエリが結果セットを返すのか返さないのかは DB が自動的に検出します。 - PEAR

If the given section exists, and contains the given option,return True; otherwise return False.New in version 1.6. 例文帳に追加

与えられたセクションが存在してかつオプションが与えられていれば True を返し、そうでなければ False を返します。 バージョン 1.6 で 新たに追加 された仕様です。 - Python

For example, if you are trying to delete three files and the first one can't be deleted, the next two files will be deleted but the function will return FALSE. 例文帳に追加

例えば、3 つのファイルを削除する処理で最初のファイルの削除に失敗したとしても、残りの 2 つは削除されます。 しかし、関数の返り値はFALSEとなります。 - PEAR

If a new bug fix release is available but the user has asked not to be notified until the next major release of the package, this method will return FALSE. 例文帳に追加

もしバグフィックスリリースがあったとしても、たとえば利用者側の設定が「次のメジャーリリースまでは通知しないでほしい」となっていれば、このメソッドは FALSEを返します。 - PEAR

The return status is false if any sigspec is invalid; otherwise trap returns true. 例文帳に追加

sigspecのいずれかが不正であれば、返却ステータスは偽になります。 それ以外の場合には、trapは真を返します。 - JM

For example, any two disjoint sets are not equal andare not subsets of each other, so all of the following return False:例文帳に追加

たとえば、互いに素な 2 つの集合は等しくありませんし、互いの部分集合でもないので、 - Python

effects and return a true or false value), all separated by operators. 例文帳に追加

アクションは付加的な作用を持ち、真または偽を返す。 評価式のそれぞれの要素は演算子によって区切られている。 - JM

Make an iterator that filters elements from iterable returning only those for which the predicate is False.If predicate is None, return the items that are false.Equivalent to:例文帳に追加

predicateがFalseとなる要素だけを返すイテレータを作成します。 predicateがNoneの場合、値が偽であるアイテムだけを返します。 - Python

Return True if the given line should be ignored entirely, just skipped.By default this is a stub that always returns False, but you can override it in a subclass.例文帳に追加

与えられた行全体を無視し、単に読み飛ばすときに真を返します。 標準では、これは控えメソッド (stub) であり、常に False を返しますが、サブクラスで上書きすることもできます。 - Python

A false token of a diameter smaller than those of regular tokens is turned over to the inclined wall 20 side by the pressing members 5 and 7 when rolling on the guide rail 19, dropping into a false token return port 10.例文帳に追加

そして、正規のメダルより小径の偽メダルは、案内レール19を転動する際に、押圧部材5,7によって傾斜壁20側に倒され、偽メダル返却口10に落下する。 - 特許庁

The return value of this method will be used as the new value for the internal flag which corresponds to stop; returning false will cause interpretation to continue.例文帳に追加

このメソッドの戻り値は、stopに対応する内部フラグの新しい値として使われます。 偽を返すと、実行を続けます。 - Python

Shell builtin commands return a status of 0 (true) if successful, and non-zero (false) if an error occurs while they execute. 例文帳に追加

シェルの組み込みコマンドは、成功した場合にはステータス 0 (真) を返し、実行中にエラーが起こった場合には 0 でない値 (偽) を返します。 - JM

Return true if all characters in the string are digits and there is at least one character, false otherwise.For 8-bit strings, this method is locale-dependent.例文帳に追加

文字列中に数字しかない場合には真を返し、その他の場合は偽を返します。 8ビット文字列では、メソッドはロケール依存になります。 - Python

A false token having a smaller diameter is surely turned over to the inclined wall 20 side by the two press members 5 and 7 while rolling on the guide rail 19, coming off from the guide rail 19, and drops into a false token return port 10.例文帳に追加

小径の偽メダルは、案内レール19を転動していきながら、二つの押圧部材5,7によって確実に傾斜壁20側に倒され、案内レール19から外れて偽メダル返却口10に落下する。 - 特許庁

In this way, the false floor 2 acts as a non-return mechanism for noise, thermal or chemical pollution coming from the vacuum generation means 4.例文帳に追加

このようにして、疑似床2は、真空発生手段4に起因する騒音、熱汚染または化学汚染に対する逆流防止機構として働く。 - 特許庁

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

The return status is 0 if the mode was successfully changed or if no mode argument was supplied, and false otherwise. 例文帳に追加

モードが正常に変更できた場合や、mode 引き数が全く与えられなかった場合には、返却ステータスは 0 となります。 それ以外の場合には偽となります。 - JM

This function should return an array of this format for all packages that match the constraints defined above: array( array( 'name' = 'packagename', 'category' = 'category name', 'license' = 'release license', 'summary' = 'package summary', 'description' = 'package description', 'stable' = 'latest release version that matches constraints', 'unstable' = 'latest unstable release version or false if stable_only', 'state' = 'release state of latest release that matches constraints', 'deps' = array( // same format as for package.info ) ), // etc.); 例文帳に追加

この関数は、上で示した条件を満たすすべてのパッケージをこのような形式の配列で返します。 - PEAR

While the probability variation condition is continuing, the machine puts on a false fall presentation to pretend that a fall lottery is won though the fall lottery is not really won and puts on a false return presentation to pretend that the machine has returned to the probability variation condition after putting on the false drop performance.例文帳に追加

そして、確率変動状態が継続している期間中に、転落抽選に当選していないにも関わらず転落抽選に当選した旨の偽転落演出を実行するとともに、偽転落演出を実行した後に、確率変動状態に復帰したかのような偽復帰演出を実行する。 - 特許庁

Furthermore, it is said that in the following year Usa Hachiman-gu Shrine reported the second oracle, which revealed that the oracle of the preceding year was false and therefore Usa Hachiman-gu Shrine offered return of fuko (salary) to the government. 例文帳に追加

更に翌年には宇佐八幡宮からの再度の神託があり、先年の神託が偽神託であったとして封戸の返却を申し出たとされている。 - Wikipedia日英京都関連文書対訳コーパス

Because not has to invent a value anyway, it does not bother to return a value of the same type as its argument, so e.g., not 'foo' yields False,not ''.)例文帳に追加

not は、式の値でなく独自に値を作成して返すので、引数と同じ型の値を返すような処理に煩わされることはありません。 例えば、 not 'foo' は、 '' ではなく 0 になります) - Python

Return true if all characters in the string are alphanumeric and there is at least one character, false otherwise.For 8-bit strings, this method is locale-dependent.例文帳に追加

文字列中の全ての文字が英数文字で、かつ 1 文字以上ある場合には真を返し、そうでない場合は偽を返します。 8ビット文字列では、メソッドはロケール依存になります。 - Python

Return true if all characters in the string are alphabetic and there is at least one character, false otherwise.For 8-bit strings, this method is locale-dependent.例文帳に追加

文字列中の全ての文字が英文字で、かつ 1 文字以上ある場合には真を返し、そうでない場合はを返します。 8ビット文字列では、メソッドはロケール依存になります。 - Python

Return true if there are only whitespace characters in the string and there is at least one character, false otherwise.For 8-bit strings, this method is locale-dependent.例文帳に追加

文字列が空白文字だけからなり、かつ 1 文字以上ある場合には真を返し、そうでない場合は偽を返します。 8ビット文字列では、メソッドはロケール依存になります。 - Python

Checks whether the current process has access to the window manager.The method will return False if the window manager is not available,for instance when running on Mac OS X Server or when logged in via ssh,or when the current interpreter is not running from a fullblown application bundle.例文帳に追加

現在のプロセスが動作しているウィンドウマネージャにアクセスします。 例えば、Mac OS X サーバー上、あるいは SSH でログインしている、もしくは現在のインタープリタがフルブローンアプリケーションバンドル(fullblownapplication bundle)から起動されていない場合などのような、ウィンドウマネージャが存在しない場合は False を返します。 - Python

To provide a parallel computer system allowing prevention of false detection of a failure even when reply return is delayed or when data transmission breaks off because a computer comes into a high load state.例文帳に追加

コンピュータが高負荷状態となってリプライ返却が遅れたり、データ送信がとぎれるような場合にも、障害の誤検出を防ぐことが可能な並列コンピュータシステムを提供する。 - 特許庁

The return status is the status of the last command exited within the script (0 if no commands are executed), and false if filename is not found or cannot be read. 例文帳に追加

返却ステータスはスクリプト内で最後に実行したコマンドのステータスです(コマンドが全く実行されなければ 0 です)。 またfilenameが見つからない場合や読み込めない場合には偽となります。 - JM

Return true if all cased characters in the string are lowercase and there is at least one cased character, false otherwise.For 8-bit strings, this method is locale-dependent.例文帳に追加

文字列中の大小文字の区別のある文字全てが小文字で、かつ 1 文字以上ある場合には真を返し、そうでない場合は偽を返します。 8ビット文字列では、メソッドはロケール依存になります。 - Python

Return true if all cased characters in the string are uppercase and there is at least one cased character, false otherwise.For 8-bit strings, this method is locale-dependent.例文帳に追加

文字列中の大小文字の区別のある文字全てが大文字で、かつ 1 文字以上ある場合には真を返し、そうでない場合は偽を返します。 8ビット文字列では、メソッドはロケール依存になります。 - Python

(Note that neither and nor or restrict the value and type they return to False and True, but rather return the last evaluated argument.This is sometimes useful, e.g., if s is a string that should be replaced by a default value if it is empty, the expressions or 'foo' yields the desired value.例文帳に追加

(and も not も、返す値を 0 や 1 に制限するのではなく、最後に評価した引数の値を返すので注意してください。 この仕様は、例えば s を文字列として、s が空文字列の場合にデフォルトの値に置き換えるような場合に、s or 'foo' と書くと期待通りの値になるために便利なことがあります。 - Python

Return true if source exists and is more recently modified than target, or if source exists and target doesn't.Return false if both exist and target is the same age or newer than source.Raise DistutilsFileError if source does not exist.例文帳に追加

sourceが存在して、targetより最近変更されている、またはsourceが存在して、targetが存在していない場合は真を返します。 両方が存在していて、targetのほうがsourceより新しいか同じ場合には偽を返します。 - Python

It is thus possible to prevent the harmonic element included in the return current of the power converter 100 from leaking to the side of the DC power supply, and positively prevent a signal apparatus for vehicle from causing some malfunction or false detection.例文帳に追加

これにより、電力変換装置7の帰線電流に含まれる高調波成分が直流電源側へ漏れるのを防ぎ、車両用信号機器が誤動作、誤検出するのを確実に防止する。 - 特許庁

A first path condition and a second path condition for one or a plurality of corresponding paths are determined so that one or a plurality of corresponding basic blocks return a constant true Boolean value for the first path condition and a constant false Boolean value for the second path condition (106, 114).例文帳に追加

1つ又は複数の対応する基本ブロックが第1のパス条件に対して真の一定のブール値を返送し、第2のパス条件に対して偽の一定のブール値を返送するように、1つ又は複数の対応するパスに対する第1のパス条件及び第2のパス条件を決定する(106、114)。 - 特許庁

To return thrown-in coins themselves when coins are returned, the thrown-in coins are temporarily held in an exclosure path 4 and the number of held coins is optionally set; and coins which are thrown in exceeding the set number are returned through the operation of a genuine/false coin distribution lever 21.例文帳に追加

硬貨を返金する際に、投入された硬貨そのものを返却するために、投入された硬貨をエスクロ通路4内に一時保留するとともに、その一時保留枚数を任意に設定できるようにし、設定枚数以上に投入された硬貨を正偽振分レバー21の動作により返却する。 - 特許庁

If direct is True, then a direct rendering context is createdif the implementation supports direct rendering, if the connection is toan X server that is local, and if a direct rendering context is available.(An implementation may return an indirect context when direct is True).If direct is False, then a rendering context that renders through the Xserver is always created. 例文帳に追加

.P\\f2direct\\fP が \\f3True\\fP の場合、実装が直接レンダリングをサポートしており、X サーバへの接続がローカルであり、直接レンダリングコンテクストが利用可能であれば、直接レンダリングコンテクストが生成される(\\f2direct\\fP が \\f3True\\fP の時も、実装は間接コンテクストを返すかもしれない)。 \\f2direct\\fP が \\f3False\\fP ならば必ず、X サーバ経由でレンダリングを行うコンテクストが生成される。 - XFree86

例文

To provide an electronic control unit and an idling stop control method thereof capable of inhibiting complication of controllability and keeping a supply electric current to a starter main body and a relay element within a predetermined range even when power supply operation is made in false timing in run-return of idling stop control.例文帳に追加

制御性の複雑化を低く抑えつつ、アイドリングストップ制御のラン復帰に際して誤ったタイミングで給電操作がなされた場合であれ、スタータ本体やリレー素子への供給電流量を規定範囲に収めることのできる電子制御装置およびそのアイドリングストップ制御方法を提供する。 - 特許庁




  
本サービスで使用している「Wikipedia日英京都関連文書対訳コーパス」はWikipediaの日本語文を独立行政法人情報通信研究機構が英訳したものを、Creative Comons Attribution-Share-Alike License 3.0による利用許諾のもと使用しております。詳細はhttp://creativecommons.org/licenses/by-sa/3.0/ および http://alaginrc.nict.go.jp/WikiCorpus/ をご覧下さい。
  
Copyright © Japan Patent office. All Rights Reserved.
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
Copyright (C) 1994-2004 The XFree86®Project, Inc. All rights reserved. licence
Copyright (C) 1995-1998 The X Japanese Documentation Project. lisence
  
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.
  
Copyright © 2001 - 2008 by the PEAR Documentation Group.
This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/ ).
  
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.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2026 GRAS Group, Inc.RSS