defaultを含む例文一覧と使い方
該当件数 : 4612件
Click Finish to create the new project in the default location.The IDE creates the project directory under your home directory and gives it the same name as your project. 例文帳に追加
「完了」をクリックすると、デフォルトの場所に新しいプロジェクトが作成されます。 IDE によって、ホームディレクトリの下に、プロジェクト名と同じ名前のプロジェクトディレクトリが作成されます。 - NetBeans
By default, PEAR comes with 4 tasks, but customized tasks can be added simply by adding a file into the PEAR/Tasks directory that follows the conventions of existing tasks. 例文帳に追加
デフォルトでは、PEAR には 4 つのタスクがあります。 しかし、PEAR/Tasks ディレクトリに既存のタスクと同様の規約に従ったファイルを追加することで、簡単にタスクを追加することが可能です。 - PEAR
The 'basedn' for the default 'Users' folder on an ActiveDirectory server for the ActiveDirectory Domain (which is not related to its DNS name) "win2000.example.org" would be: "CN=Users, DC=win2000, DC=example, DC=org" where every component of the domain name becomes a DC attribute of its own. 例文帳に追加
ActiveDirectory ドメイン (DNS 名とは関係ありません) "win2000.example.org"の ActiveDirectory サーバ上にあるデフォルトの 'Users' フォルダの'basedn' は、"CN=Users, DC=win2000, DC=example, DC=org"となります。 ドメイン名は、すべて DC 属性となります。 - PEAR
By default, the insert method will automatically validate that the data you are inserting is of the expected type, and that values have been provided for all required columns other thanauto-increment columns. 例文帳に追加
デフォルトでは、insert メソッドは自動的にデータ型の検証を行います。 また、自動インクリメントカラム以外の必須カラムについてのデータが存在するかどうかも調べます。 - PEAR
A condition variable is always associated with some kind of lock;this can be passed in or one will be created by default. 例文帳に追加
条件変数(condition variable) は常にある種のロックに関連付けられています;条件変数に関連付けるロックは明示的に引き渡したり、デフォルトで生成させたりできます。 - Python
Under Python 1.6 and later, Python'sdefault ``installation prefix'' is C:Python, so the system configuration file is normallyC:PythonLibdistutilsdistutils.cfg.Under Python 1.5.2, the default prefix wasC:ProgramFilesPython, and the Distutils were not part of the standard library--so the system configuration file would beC:ProgramFilesPythondistutilsdistutils.cfgin a standard Python 1.5.2 installation under Windows.例文帳に追加
Python 1.5.2 ではデフォルトのプレフィクスは C:ProgramFilesPythonであり、Distutils は標準ライブラリの一部ではありません -- 従って、システム設定ファイルは、 Windows 用の標準の Python 1.5.2 ではC:ProgramFilesPythondistutilsdistutils.cfg になります。 - Python
Changing a field (such a precision) has the effect of changing the default for new contexts creating by the Contextconstructor.This context is most useful in multi-threaded environments.例文帳に追加
このコンテキストのフィールド (精度の設定など)を変更すると、Context コンストラクタが生成する新たなコンテキストに影響を及ぼします。 このコンテキストは、主に多重スレッド環境で便利です。 - Python
By default, output is generated only in case of an example failure.Optional argument compileflags gives the set of flags that should be used by the Python compiler when running the examples.例文帳に追加
デフォルトでは、例題のテストに失敗したときのみ出力を生成します。 オプション引数compileflags には、例題を実行するときに Python バイトコードコンパイラが使うフラグを指定します。 - Python
In reality, browsers do allow automatic redirection of these responses, changing the POST to a GET, and the default implementation reproduces this behavior.例文帳に追加
現実には、ブラウザは POST を GET に変更することで、これらの応答に対して自動的にリダイレクトを行えるようにしています。 デフォルトの実装でも、この挙動を再現しています。 - Python
The default correspondence is the most obvious one, i.e. package distutils is found in the directorydistutils relative to the distribution root.例文帳に追加
デフォルトで使われる対応関係はきわめてはっきりしたものです。 すなわち、パッケージdistutils が配布物ルートディレクトリからの相対パスdistutils で表されるディレクトリ中にあるというものです。 - 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
It may be"r" (read only), "w" (read-write) ,"c" (read-write - create if necessary; the default) or"n" (read-write - truncate to zero length). 例文帳に追加
このモードは"r" (読み出し専用), "w" (読み書き可能)、"c" (読み書き可能 - 必要ならファイルを生成 … これがデフォルトです) または"n" (読み書き可能 - ファイル長を 0 に切り詰め)、にすることができます。 - Python
fromdesc and todesc are optional keyword arguments to specifyfrom/to file column header strings (both default to an empty string). 例文帳に追加
fromdesc および todesc はオプションのキーワード引数で、差分表示テーブルにおけるそれぞれ差分元、差分先ファイルのカラムのヘッダになる文字列を指定します (いずれもデフォルト値は空文字列です)。 - Python
key is the name of the field desired, which represents the typeof activity to be performed; the default value is 'view', since in the most common case you simply want to view the body of the MIME-typeddata. 例文帳に追加
key は desired フィールドの値で、実行すべき動作のタイプを表現します; ほとんどの場合、単にMIME 形式のデータ本体を見たいと思うので、標準の値は 'view' になっています。 - Python
In other words, using an XMLGenerator as the content handler will reproduce the original document being parsed. out should be a file-likeobject which will default to sys.stdout. encoding is the encoding of the output stream which defaults to 'iso-8859-1'.例文帳に追加
つまり、XMLGenerator をコンテント・ハンドラとして用いると、パースしたオリジナル・ドキュメントの複製が作れるのです。 out に指定するのはファイル風のオブジェクトで、デフォルトは sys.stdout です。 - Python
This sequence is Alt-SysRq followed by a function key (Fn).This prevents the X server trapping the keys used for the default VT switch sequence, which means that clients can access them.例文帳に追加
このオプションは、仮想端末のデフォルトの切り替えシーケンスとして使われるキーのトラップを抑止する。 これにより、クライアントはこれらのキーにアクセスできるようになる。 - XFree86
Useful if you want to run a depth 24 configuration with a 24 bpp framebuffer rather than the (possibly default) 32 bpp framebuffer(or vice versa).例文帳に追加
このオプションが役立つのは、(おそらくデフォルト値である) 32 bpp のフレームバッファでなく 24 bpp のフレームバッファを使って、深さ 24 の設定で動作させたい場合(または、その逆の場合)である。 - XFree86
When the XFontSet has missing charsets, metrics for each unavailable character are taken from the default string returned by XCreateFontSet so that the metrics represent the text as it will actually be drawn.例文帳に追加
.LPXFontSetに存在しない文字集合がある場合、実際に描画される寸法を表すようにするため、該当する各文字に対する寸法はXCreateFontSetが返すデフォルト文字列から得る。 - XFree86
The server will listen for connections as server number0, will have the default screen configuration (one screen, 1280x1024x8),will also support pixmap depths of 3 and 27, and will use memory mapped files in /usr/tmp for the framebuffer.例文帳に追加
このサーバはデフォルトのスクリーン設定(1280x1024x8 のスクリーン1つ)を持つ。 また、このサーバは深さ3と27のピックスマップをサポートし、/usr/tmp ディレクトリに、フレームバッファ用のメモリをマップしたファイルを置く。 - XFree86
This command is the inverse of the SelectWidget in Client command, it will show the user each widget that is currently selected in the widget tree, by flashing the corresponding widget in the application numFlashes (three by default) times in the flashColor.例文帳に追加
つまり、アプリケーションの対応するウィジェットを numFlashes回 flashColor 色にフラッシュさせることによって、ウィジェットツリー内で現在選択されているウィジェットをユーザに示す。 - XFree86
Otherwise, an outline of thewindow's default size, its titlebar, and lines dividing the window into a 3x3 grid that track the pointer are displayed.例文帳に追加
これが指定されていない場合には、ウィンドウのデフォルトの大きさの外形、タイトルバー、ウィンドウを 3x3 の格子に区切る線が表示される。 これはポインタの動きに従って移動する。 - XFree86
Xfwp client listeners are set up by a call to xfindproxy and continue to listen for X client connection requests for a default duration of 86,400 seconds (24 hours)from the point of last activity.例文帳に追加
xfwp クライアントリスナは、xfindproxy を呼び出して設定することができる。 最後のデータが流れた時点から86,400秒(24時間) の有効期間の間は、X クライアントの接続リクエストを待ち続ける。 - XFree86
A photomap cache of up to n entries is controlled by xieperf to avoid having to constantly reload these images during test initialization.The default cache size is 4.例文帳に追加
テストの初期化の途中にこれらのイメージを常に再読み込みするのを避けるため、xieperfは n エントリまでのフォトマップのキャッシュを制御する。 デフォルトのキャッシュのサイズは4である。 - XFree86
Tie the VTxxx backarrowKey and ptyInitialErase resources together by setting the DECBKM state according to whether the initial value of stty erase is a backspace (8)or delete (127) character.The default is ``false'', which disables this feature.例文帳に追加
これは、stty の erase 値の初期値がバックスペース文字かデリート文字に基づいて DECBKM 状態を設定することによって行う。 デフォルト値は ``false'' であり、この機能は無効になっている。 - XFree86
so xterm emulates a DEC VT220 more accurately.Otherwise (the default, with sunKeyboard set to ``false''), xterm uses PC-stylebindings for the function keys and keypad. 例文帳に追加
これにより xterm は DEC VT220 をさらに正確にエミュレートできる。 設定されていない場合には(デフォルトでは、sunKeyboard は ``false'' に設定されている)、xterm はファンクションキーとテンキーに PC 形式の割り当てを適用する。 - XFree86
When a user operates an operation input section 80 to select an image setup, a default pattern number is read from the memory 86 and is displayed on a display 85.例文帳に追加
ユーザが操作入力部80を操作してイージーセットアップを選択すると、メモリ86からデフォルト設定のパターン番号が読み出され、表示器85に表示される。 - 特許庁
Even when which external light is obtained, a distance can be measured with high precision and, even if the external light varies in lightness, a proper default distance can be set following up the variation.例文帳に追加
外光が明るい場合にも高精度の測距が実現でき、外光の明るさが変化した場合にもこれに追従して適切なデフォルト距離の設定が可能となる。 - 特許庁
When a display of an object tree is generated, a user selects an object appearing in a default tree display first so as to provide the flexibility of a computer system for the user.例文帳に追加
オブジェクト・ツリーの表示を生成する際に、ユーザにコンピュータ・システムの柔軟性を提供するために、最初にユーザはデフォルト・ツリー表示内に現れるオブジェクトを選択する。 - 特許庁
Any detected discrepancies are used to initiate appropriate notification to the user and/or retrieve updated information, or to default to existing message delivery systems.例文帳に追加
検出された食違いは、ユーザーへ適切な通知を開始したり、更新された情報を再生したり、現存するメッセージ伝送システムを不使用とするのに使われる。 - 特許庁
The distal end is configured to be inserted into the body of the patient, and includes a deformable part having a width larger than a diameter of a tubular part in a default shape.例文帳に追加
遠端部は患者の身体に挿入されるように構成されて、デフォルト形状において管状部の直径より大きな幅を有する変形可能部を備える。 - 特許庁
At a rise time, the printer starts operating with the ROM operation mode set to a default and changes to the RAM operation mode according to a user's indication based on a predetermined condition.例文帳に追加
立ち上がりの際にROM動作モードをデフォルトとして動作を開始し、所定の条件に基づくユーザからの指示によりRAM動作モードに変更する。 - 特許庁
In starting the reproduction of a recorder, the information of a default program extracted from the reproduced stream TS is stored in the first storage part 115A as the program selection information.例文帳に追加
記録機器の再生開始時に、再生されたストリームTSより抽出されたデフォルト番組の情報を番組選択情報として第1の記憶部115Aに格納する。 - 特許庁
To aim at the parts intensification and rationalization of a default opening mechanism of this two-bore type electronic control throttle device, and a reduction of load in motor drive as well as the stabilization of throttle control action.例文帳に追加
2ボアタイプの電子制御スロットル装置のデフォルト開度機構の部品集約化,合理化,モータ駆動の負担軽減,スロットル制御動作の安定化を図る。 - 特許庁
To provide a housing type nonrecourse loan guaranteeing system in which that burden on a debtor is reduced and no disadvantage is given to a creditor when the debtor goes into default on an obligation.例文帳に追加
借り手が債務不履行となった場合に、借り手の負担を軽減し、かつ、貸し手にも不利益にならない住宅型ノンリコースローン保証システムを提供する。 - 特許庁
In addition, when Eurozone member countries faced excess debt and their default risk rose, neither the EU nor the ECB had any policies to cope with the situation.例文帳に追加
この他、ユーロ圏域内の国が過剰債務を抱え、デフォルトリスクが高まった際にEUやECBとしてどのように対応するか、方針が定まっていない状況であった。 - 経済産業省
As things actually worked out, a compromise was reached and default was avoided; however, the political confusion that prevailed in the meantime served to deepen uncertainty over the future of the U.S. fiscal conditions.例文帳に追加
結果的に、妥協の成立によってデフォルトは回避されたものの、その間の政治的混乱は米国の財政の先行きに対する不透明感を深めた。 - 経済産業省
In an embodiment, a device 106 includes several control registers 108 that are configured to set default values in a register initialization period starting in response to a reset signal.例文帳に追加
一実施態様で、装置106は、リセット信号に応答して始まるレジスタの初期化期間にデフォルト値を設定するいくつもの制御レジスタ108を備えている。 - 特許庁
When a USB cable 300 is disconnected in the midst of transmitting video streaming to a host PC 100, a digital video camera 200 set to a camera mode being a default mode detects the disconnection, and when the digital video camera 200 is set to a VTR mode different from the default mode, the digital video camera 200 stores therein a VTR mode state.例文帳に追加
デフォルトで設定されているモードをカメラモードとするデジタルビデオカメラ200は、ビデオストリーミングをホストPC100に対して送信している最中にUSBケーブル300が抜かれたとすると、そのことを検出し、現在のモードがデフォルト設定とは異なるVTRモードである場合は、VTRモード状態であったことを保持しておく。 - 特許庁
When the user requests utilizing of information on an article displayed by him/herself in the past when newly displaying an article, a display screen having information on the article embedded as a default value is displayed to the user and the result of inputting operation by the user through the use of the default value is registered as information on the newly displayed article.例文帳に追加
ユーザが新たな出品を行う際に、過去に自分が出品した品物の情報を利用したい旨の要求をした時は、当該ユーザへ当該品物の情報をデフォルト値として埋め込んだ出品画面を表示し、当該デフォルト値を利用した当該ユーザの入力操作の結果を、新たな出品物の情報として登録する。 - 特許庁
An engine is raced and an angular velocity ΩT and an angular velocity ΩT* of a crank shaft for each specific measurement period Tf are calculated (S15 and S18), and a default value Md of a preset inertia moment and a default value Pdmax of the maximum horse power are used to calculate tentative maximum horse power Pvmax and tentative inertia moment Mv (S20 and S1).例文帳に追加
エンジンを空吹かしして所定の測定周期Tf毎のクランクシャフトの角速度ω_T および角加速度ω_T ^* を算出し(S15,S18)、予め設定した慣性モーメントのデフォルト値Mdおよび最大馬力のデフォルト値Pd_max を用いて、仮の最大馬力Pv_max および仮の慣性モーメントMvを算出する(S20,S1)。 - 特許庁
The default information of the communication equipment 12 is stored in the default information table 21 of a memory part 18, caller information including a password is stored in a caller information table 22, the caller information stored in the table 22 is collated by an inputted password, caller information whose password coincides is selected, and the caller information is added to transmission data.例文帳に追加
メモリ部18のデフォルト情報テーブル21に通信装置12のデフォルト情報、発信者情報テーブル22にパスワードを含む発信者情報を記憶させ、入力されたパスワードで発信者情報テーブル22に蓄積された発信者情報を照合してパスワードの一致した発信者情報を選択し、送信データに発信者情報を付加する。 - 特許庁
A route search part 38 refers to button associated information so as to collate the information of the number of component movement which indicates a relation between each button on a data broadcast screen 100 and a default button "A" with the information of an adjacent button which indicates a movement probability between the respective buttons, and also to converge a branch in searching the route going through the default button "A".例文帳に追加
経路探索部38は、ボタン付随情報を参照して、データ放送画面100上の各ボタンにおけるデフォルトボタン「A」との関係性を示す部品移動数の情報と、各ボタン間の移動可能性を示す隣接ボタンの情報とを照合してデフォルトボタン「A」を経由した経路探索における分岐を収束させることができる。 - 特許庁
(b) A party declared in default may, at any time after notice thereof and before judgment, file a motion under oath to set aside the order of default upon proper showing that his failure to answer was due to fraud, accident, mistake or excusable negligence and that he has a meritorious defense.例文帳に追加
(b) 不履行を宣言された当事者は,その通知の後で判決前はいつでも,自己の答弁不履行は不正を受けたこと,事故,錯誤又は免責される過失によるものであり,自己は実体上の抗弁を有する旨を適正に示して,不履行に係る命令を無効にすることを求める宣誓付き申立を提出することができる。 - 特許庁
The design method is provided which includes an input step of inputting the design data of the default configuration of a reconfigurable circuit including a plurality of processor elements performing processes, and a first generation step (801, 811-813) for generating design data such that at least one of the processor elements in the reconfigurable circuit of the default configuration is corrected.例文帳に追加
処理を行う複数のプロセッサエレメントを含むリコンフィギュラブル回路のデフォルト構成の設計データを入力する入力ステップと、前記デフォルト構成のリコンフィギュラブル回路内の少なくとも1つのプロセッサエレメントを修正した設計データを生成する第1の生成ステップ(801,811〜813)とを有することを特徴とする設計方法が提供される。 - 特許庁
The client PC(personal computer) has virtual print server service (client) 712 which retrieves a server on the network and sends a print request to the retrieved server by specifying its default printer and the server has virtual print service (server) 712 which retrieves the default printer on the network at the print request from the client and registers the print job for the retrieved printer.例文帳に追加
クライアントPCは、ネットワーク上のサーバを検索し、検索したサーバに対しデフォルトのプリンタを指定して印刷要求を行う仮想プリントサーバサービス(クライアント)712を有し、サーバは、クライアントからの印刷要求に基づきネットワーク上のデフォルトのプリンタを検索し、検索したプリンタに対し印刷ジョブを登録する仮想プリントサーバサービス(サーバ)712を有する。 - 特許庁
Under engine operation condition in which a knock determination period of default setting is overlapped on a fuel injection period from the injector, the knocking determination period is made shorter than the default setting, and a fuel injection time and the knocking determination period are set by relating them mutually to eliminate overlapping of the fuel injection period and the knocking determination period.例文帳に追加
ディフォルト設定のノック判定期間が、インジェクタからの燃料噴射期間に重なってしまう機関運転条件では、ノック判定期間をそのディフォルト設定よりも短縮して、燃料噴射期間とノック判定期間との重なりを解消するように、燃料噴射時期、ノック判定期間を互いに関連付けて設定する。 - 特許庁
In order to know the characteristic of this device, a reference toner adhering pattern is produced by an image writing and developing means 4 under the same condition where a default value is obtained according to the LD light quantity table having the default value, the image density is detected by a condition amount detecting means 5 or the image reading means 3 of a copying machine, and measured as the toner adhering amount.例文帳に追加
本装置の特性を知るために、デフォルト値を持つLD光量テーブルに従い、デフォルト値を得たと同条件で画像書き込み・現像手段4で基準のトナー付着パターンを生成し、その画像濃度を状態量検出手段5又は複写機の画像読み込み手段3により検出、トナー付着量として測定する。 - 特許庁
By a test request generation means 7, editing operation following operation content concerning change target data shown by differential operation data 4a, 4b, and 4c stored in a differential operation data storage means 4 is carried out on the default request 6a outputted from the default request generation means 6, and test requests 7a, 7b, and 7c are generated.例文帳に追加
さらに、テスト用リクエスト生成手段7により、デフォルトリクエスト生成手段6から出力されたデフォルトリクエスト6aに対し、差分操作データ記憶手段4に記憶された差分操作データ4a,4b,4cで示される変更対象データに関する操作内容に従った編集操作が行われ、テスト用リクエスト7a,7b,7cが生成される。 - 特許庁
| Copyright © Japan Patent office. All Rights Reserved. |
| Copyright Ministry of Economy, Trade and Industry. All Rights Reserved. |
| Copyright © Japan Patent office. All Rights Reserved. |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| 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 (C) 1994-2004 The XFree86®Project, Inc. All rights reserved. licence Copyright (C) 1995-1998 The X Japanese Documentation Project. lisence |
| 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/ ). |
| © 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. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|