1153万例文収録!

「argument range」に関連した英語例文の一覧と使い方 - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > argument rangeに関連した英語例文

セーフサーチ:オン

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

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

セーフサーチについて

argument rangeの部分一致の例文一覧と使い方

該当件数 : 23



例文

BadValue Some numeric value falls outside the range of values accepted by the request.Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted.例文帳に追加

BadValue指定された数値の中にリクエストの許容範囲を越えているものがある。 - XFree86

The argument must be in the range [0.. 例文帳に追加

引数は両端を含めて [0..65535] の範囲でなければなりません。 - Python

Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted.Any argument defined as a set of alternatives can generate this error. BadWindow例文帳に追加

引き数に対して特定の範囲が指定されていなければ、引き数の型で定義されている全ての範囲が許される。 - XFree86

If the value forthe percent argument is not in the range -100 to 100 inclusive, a BadValueerror results. 例文帳に追加

引き数 percent の値が \\-100 から 100 の範囲でない場合には、エラーBadValueとなる。 - XFree86

例文

The mode argument determines the operation to be performed on the given range. 例文帳に追加

mode引き数は、指定された領域に対して実行する操作を指定する。 - JM


例文

This option sets the sender checksum coverage and takes an int as argument, with a checksum coverage value in the range 0.. 例文帳に追加

このオプションは送信側のチェックサムの対象範囲を設定する。 - JM

If the argument is outside the integer range a long object will be returned instead.例文帳に追加

引数の値が整数の範囲外の場合、長整数を代わりに返します。 - Python

Some numeric value falls outside the range of values accepted by the request.Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted.例文帳に追加

引き数に対して特定の範囲が指定されていなければ、引き数の型で定義されている全ての範囲が許される。 - XFree86

The argument must be in the range [0..255], inclusive; ValueError will be raised if i is outside that range.例文帳に追加

引数は [0..255] の両端を含む範囲内に収まらなければなりません; i が範囲外の値のときにはValueError が送出されます。 - Python

例文

Unless a specific range is specified for an argument, the full range defined by the argument's type is accepted.例文帳に追加

引き数に対して特定の範囲が指定されていない限り、引き数の型で定義されている全ての範囲が許される。 - XFree86

例文

Some functions deliver a range error if the supplied argument value, or the correct function result, would be subnormal . 例文帳に追加

いくつかの関数では、渡された引き数の値や、正しい関数の結果がsubnormal (非正規化数)になる場合に範囲エラーを上げる。 - JM

Unless a specificrange is specified for an argument, the full range defined by the argument'stype is accepted.例文帳に追加

引き数に対して特定の範囲が指定されていなければ、引き数の型で定義されている全ての範囲が許される。 - XFree86

With two arguments,list the given range; if the second argument is less than the first,it is interpreted as a count. 例文帳に追加

引数が二つの場合は、与えられた範囲をリスト表示します。 第二引数が第一引数より小さいときは、カウントと解釈されます。 - Python

BadMatch Some argument or pair of arguments has the correct type and range but fails to match in some other way required by the request.例文帳に追加

返り値BadMatch引き数や引き数の組は正しい型・範囲を持っているが、そのリクエストが要求する他の条件に適合できなかった。 - XFree86

Some argument or pair of arguments has the correct type and range but fails to match in some other way required by the request.例文帳に追加

返り値BadMatch引き数や引き数の組は正しい型・範囲を持っているが、そのリクエストが要求する他の条件に適合できなかった。 - XFree86

If the argument x is not zero, the normalized fraction is x times a power of two, and its absolute value is always in the range 1/2 (inclusive) to 1 (exclusive), that is, [0.5,1). 例文帳に追加

引数 x がゼロでない場合、この正規化小数はx に 2 の累乗を乗じたものであり、その絶対値は常に 1/2 以上 1 未満、つまり [0.5,1) となる。 - JM

Conversion of floating point numbers to integers truncates (towards zero).If the argument is outside the integer range a long object will be returned instead.例文帳に追加

浮動小数点数から整数へ変換では (ゼロ方向に)値を丸めます。 引数が通常整数の範囲を超えている場合、長整数が代わりに返されます。 - Python

If there is a single argument, the result is a single string; if there are multiple arguments, the result is a tuple with one item per argument.Without arguments, group1 defaults to zero (the whole match is returned).If a groupN argument is zero, the corresponding return value is the entire matching string; if it is in the inclusive range [1..例文帳に追加

もし引数で一つであれば、その結果は一つの文字列です;複数の引数があれば、その結果は、引数ごとに一項目を持つタプルです。 引数がなければ、group1 はデフォールトでゼロです(マッチしたものすべてが返されます)。 - Python

If you have an argument whose value must be in a particular range or must satisfy other conditions,PyExc_ValueError is appropriate.You can also define a new exception that is unique to your module.For this, you usually declare a static object variable at the beginning of your file:例文帳に追加

モジュール固有の新たな例外も定義できます。 定義するには、通常はファイルの先頭部分に静的なオブジェクト変数の宣言を行います: - Python

If the population contains repeats, then each occurrence is a possibleselection in the sample.To choose a sample from a range of integers, use xrange as an argument.例文帳に追加

母集団が繰り返しを含む場合、返されたリストの各要素はサンプルから選択可能な要素になります。 整数の並びからサンプルを選ぶには、引数に xrange を使いましょう。 - Python

One frequently encounters the argument that the current yen movement has been within the range of long-term trend in terms of the real effective exchange rate (REER), an indicator measured by yen’s trade-weighted exchange rates against other major currencies that also adjusts for inflation rate differences. 例文帳に追加

貿易ウェイトで各国通貨との関係を計り、各国との物価上昇の違いも調整した実質実効為替レートを見るかぎり、円は長期的な趨勢の範囲にあるという議論がよくなされる。 - 財務省

The reference orbit of the satellite of the first orbit, the orbit of the second satellite, and the orbit of the third satellite is set from the time series of the argument and the eccentricity, a holding range is set around the satellite mass of the reference orbit so that the satellite passes while overlapping the holding range of each satellite on each intersection of the orbital plane.例文帳に追加

この近地点引数、離心率の時系列から第1軌道の衛星、第2衛星の軌道および第3の衛星の軌道の基準軌道を設定し、それら基準軌道の衛星質点回りに保持範囲を設定して、おのおのの軌道面交線上でそれぞれの衛星の保持範囲を重複させて通過できるようにする。 - 特許庁

例文

This device (1) includes a level changing device (6) amplifying or attenuating the input signal xLOG(k) to generate a first intermediate signal A that falls within a compressed argument range of the mathematical function, and a correction signal shiftLOG dependent on the amplification or attenuation of the input signal xLOG(k).例文帳に追加

本発明の装置(1)は、入力信号(xLOG(k))を増幅、減衰することで数学的関数の絞られた引数の範囲内にある第1の中間信号(A)と入力信号(xLOG(k))の増幅、減衰による訂正信号(shift_LOG)を生成するレベル変更装置(6)を含む。 - 特許庁




  
Copyright © Japan Patent office. All Rights Reserved.
  
Copyright(C) 財務省
※この記事は財務省ホームページの情報を転載しております。内容には仮訳のものも含まれており、今後内容に変更がある可能性がございます。
財務省は利用者が当ホームページの情報を用いて行う一切の行為について、何ら責任を負うものではありません。
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、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
  
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会員(無料)になると

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

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

無料会員に登録する

©2026 GRAS Group, Inc.RSS