Moduleを含む例文一覧と使い方
該当件数 : 50000件
This depends on implementation choices.For example, if you plan to deploy to the Tomcat Web Server, which only has a web container, you should choose to create a web application,and not an EJB module. 例文帳に追加
どちらにするかは、実装の選択に依存します。 たとえば、Web コンテナだけを持つ Tomcat Web サーバーへの配備を予定している場合は、EJB モジュールではなく、Web アプリケーションの作成を選択するようにします。 - NetBeans
I have written a PHP module in C. What are the rules of including this in PEAR? The PECL project (a spin-off from PEAR) is the place where C extensions for PHP are published. 例文帳に追加
拡張モジュールを C 言語で書いたのですが、それを PEAR に採用してもらうにはどうすれば良いですか? PECL プロジェクト (PEAR から分離しました)が PHP 用の C 拡張モジュールを公表する場所になります。 - PEAR
By far the richest source of this information is through their REST-based API, to which this module provides an OO PHP interface. 例文帳に追加
REST ベースの API を使用することにより、この手の情報の中ではもっとも豊富な情報を得ることが可能となります。 このモジュールでは、PHP から使用するためのオブジェクト指向のインターフェイスを提供します。 - PEAR
This chapter briefly explains how to create a Windows extension module for Python using Microsoft Visual C++, and follows with more detailed background information on how it works.例文帳に追加
この章では Windows 向けの Python 拡張モジュールを Microsoft Visual C++を使って作成する方法について簡単に述べ、その後に拡張モジュールのビルドがどのように動作するのかについて詳しい背景を述べます。 - Python
Building custom interpreters was rarely used, and extension modules can be built using distutils.Building an extension module using distutils requires that distutils is installed on the build machine, which is included in Python 2.x and available separately for Python 1.5.例文帳に追加
distutils を使った拡張モジュールのビルドには、ビルドを行う計算機上にdistutils をインストールしていることが必要です。 Python 2.x には distutils が入っており、 Python 1.5 用には個別のパッケージがあります。 - Python
then the Distutils builds my module distribution (the Distutils itself in this case), does a ``fake'' installation (also in the builddirectory), and creates the default type of built distribution for myplatform.例文帳に追加
すると、Distutils はモジュール配布物 (ここでは Distutils 自体) をビルドし、``偽の (fake)'' インストールを (build ディレクトリで)行います。 そして現在のプラットフォームにおける標準の形式でビルド済み配布物を生成します。 - Python
Return the time zone name corresponding to the datetime object dt, as a string.Nothing about string names is defined by the datetime module, and there's no requirement that it mean anything in particular.例文帳に追加
datetime オブジェクト dt に対応するタイムゾーン名を文字列で返します。 datetime モジュールでは文字列名について何も定義しておらず、特に何かを意味するといった要求仕様もまったくありません。 - Python
(This would be called a package, except that term is already taken in the Python context: a single module distribution may contain zero, one, or many Python packages.)例文帳に追加
(パッケージ (package) と呼ばれることもありますが、 Python 用語としてのパッケージとは意味が違います: 一つのモジュール配布物の中には、場合によりゼロ個、一つ、それ以上の Python パッケージが入っています。 ) - Python
In this way one can add new behaviors to dictionaries.The module also defines a mixin defining all dictionary methods for classes that already have a minimum mapping interface.例文帳に追加
このような方法で、辞書に新しい振る舞いを追加できます。 最小限のマッピングインターフェイスをすでに持っているクラスのために、モジュールはすべての辞書メソッドを定義しているmixinも定義しています。 - Python
For module specific errors, copy.error is raised. The difference between shallow and deep copying is only relevant for compound objects (objects that contain other objects, like lists or class instances):例文帳に追加
このモジュール固有のエラーに対しては、copy.error が送出されます。 浅い (shallow) コピーと深い (deep) コピーの違いが関係するのは、複合オブジェクト (リストやクラスインスタンスのような他のオブジェクトを含むオブジェクト) だけです: - Python
The mnemonics derive from teleprinter conventions that predatedigital computers. The module supplies the following functions, patterned on those in the standard C library:例文帳に追加
これらのニーモニック符号はデジタル計算機より前のテレプリンタにおける慣習から付けられたものです。 このモジュールでは、標準 C ライブラリの関数を雛型とする以下の関数をサポートしています: - Python
The curses. textpad module provides a Textbox class that handles elementary text editing in a curses window, supporting a set of keybindings resembling those of Emacs (thus, also of NetscapeNavigator, BBedit 6.x, FrameMaker, and many other programs).例文帳に追加
curses.textpad モジュールでは、curses ウィンドウ内での基本的なテキスト編集を処理し、Emacs に似た (すなわち Netscape Navigator, BBedit 6.x, FrameMaker, その他諸々のプログラムとも似た) キーバインドをサポートしている Textbox クラスを提供します。 - Python
Unlike hardware based binary floating point, the decimal module has a user settable precision (defaulting to 28 places) which can be as large as needed for a given problem:例文帳に追加
ハードウェアによる 2 進浮動小数点表現と違い、decimal モジュールでは計算精度をユーザが指定できます(デフォルトでは 28 桁です)。 この桁数はほとんどの問題解決に十分な大きさです: - Python
This module provides functions for performing simple, timestamp-based dependency of files and groups of files; also, functions based entirely on such timestamp dependency analysis. 例文帳に追加
このモジュールはシンプルなタイムスタンプを元にしたファイルやファイル群の依存関係を処理する関数を提供します。 さらに、それらの依存関係解析を元にした関数を提供します。 - Python
The linecache module allows one to get any line from any file,while attempting to optimize internally, using a cache, the common case where many lines are read from a single file.例文帳に追加
linecache モジュールは、キャッシュ(一つのファイルから何行も読んでおくのが一般的です)を使って、内部で最適化を図りつつ、任意のファイルの任意の行を取得するのを可能にします。 - Python
It does not require (or imply)threading or multi-tasking, though it could be useful for those purposes.The mutex module defines the following class:例文帳に追加
排他制御はスレッドやマルチタスクを使う上で便利かもしれませんが、このクラスがそうした機能を必要として (いたり、想定して) いるわけではありません。 mutexモジュールでは以下のクラスを定義しています: - Python
Initialize the basic random number generator.Optional argument x can be any hashable object.If x is omitted or None, current system time is used;current system time is also used to initialize the generator when the module is first imported.例文帳に追加
x が省略されるか None の場合、現在のシステム時間が使われます; 現在のシステム時間はモジュールが最初にインポートされた時に乱数生成器を初期化するためにも使われます。 - Python
(Note that the sign of the timezone offset is the opposite of the sign of the time. timezonevariable for the same timezone; the latter variable follows the POSIX standard while this module follows RFC 2822.)例文帳に追加
(タイムゾーンオフセットの符号は、同じタイムゾーンにおける time.timezone 変数の符号と反転しています; 後者の変数が POSIX 標準に従っている一方、このモジュールは RFC 2822 に従っているからです。 - Python
It cannot be used on regular files to determine whether a file has grown since it was last read.The module defines the following:例文帳に追加
通常のファイルに対して適用し、最後にファイルを読み出した時から内容が増えているかを決定するために使うことはできません。 このモジュールでは以下の内容を定義しています: - Python
signal(7)).Note that not all systems define the same set of signal names; only those names defined by the system are defined by this module.例文帳に追加
signal(7) に列挙されています)。 全てのシステムで同じシグナル名のセットを定義しているわけではないので注意してください; このモジュールでは、システムで定義されているシグナル名だけを定義しています。 - Python
This form may only be used at the module level.A target occurring in a del statement is also considered bound for this purpose (though the actual semantics are to unbind the name).例文帳に追加
この形式は、モジュールレベルでしか使うことができません。 del 文で指定された対象は、(del の意味付けは、実際は名前の解放 (unbind) ですが) 文の目的上、束縛済みのものとみなされます。 - Python
You can put module source files into another directory, but if you have enough modules to do that, it's probably easier to specify modules by package rather than listing them individually.例文帳に追加
モジュールのソースファイルは他のディレクトリに置けますが、そうしなければならないようなモジュールを沢山持っているのなら、モジュールを個別に列挙するよりもパッケージを指定した方が簡単でしょう。 - Python
There are only two differences between this and the trivial one-filedistribution presented in section1.2: more metadata, and the specification of pure Python modules by package,rather than by module.例文帳に追加
上の例と、2 で示したファイル一つからなる小さな配布物とは、違うところは二つしかありません: メタデータの追加と、モジュールではなくパッケージとして pure Python モジュール群を指定しているという点です。 - Python
If applicable the module will define a number of Python objects for the various structures declared by the toolbox, and operations will be implemented as methods of the object.例文帳に追加
対応するモジュールがあるなら、そのモジュールではツールボックスで宣言された各種の構造体のPythonオブジェクトが定義され、操作は定義されたオブジェクトのメソッドとして実装されています。 - Python
The unit test module starts, upon detection of the completion of the application, the suspended unit test tool and reports the test result of the application to the unit test tool.例文帳に追加
そして、単体テストモジュールは、アプリケーションの動作完了を検知したら、待機状態になっていた単体テストツールを動作させ単体テストツールにアプリケーションの動作結果の合否判定を通知する。 - 特許庁
To provide a plasma display module such that heat radiation performance of gap pads is improved to improve heat radiation performance of driving boards by use of a chassis base made of a plastic material.例文帳に追加
プラスチック材質のシャーシベースの使用による駆動ボードの放熱性能を向上させるためにギャップパッドの放熱性能を向上させるようにしたプラズマディスプレイモジュールを提供する。 - 特許庁
The projector projection mode is considered to be in an on-state, when the direction of a projected beam of light by the projector module is set to a side opposite to the direction of the photographing of the electronic camera 50 fitted with the projector.例文帳に追加
プロジェクタ投影モードは、プロジェクタモジュールによる投射光束の向きがプロジェクタ付き電子カメラ50が撮影する向きと反対側にセットされた場合にオンとみなす。 - 特許庁
A capacitor module 24 connecting a plurality of capacitor elements 12 and having an end connected with a terminal member, i.e. a bus bar 20, is contained in an enclosure case 14 made of a metal material.例文帳に追加
複数のコンデンサ素子12を連結するとともに、その端部に端子部材であるバスバー20を接続したコンデンサモジュール24は、金属材料からなる外装ケース14に収納される。 - 特許庁
To provide a thermoelectric conversion module that has a shape such as a columnar shape, for efficiently cooling an object to be cooled for generating heat from a side periphery and can be miniaturized.例文帳に追加
例えば円柱形状等の形状を有して側周がわから発熱する冷却対象部を効率的に冷却することができ、小型化可能な熱電変換モジュールを提供する。 - 特許庁
A loop antenna 32 is arranged so as to project through a through-hole of an annular body of the transponder module 34 and kept in a non-contact and mechanically inconnected state to the annular body.例文帳に追加
ループアンテナ32を、トランスポンダモジュール34の環状体の貫通穴を貫通して突出するように配置し、環状体に対して非接触で機械結合されていない関係に保つ。 - 特許庁
In a multilayer substrate 2 of the high-frequency module, there is formed a bottomed recess 3 having its opening on the front-surface side of the multilayer substrate 2, and a radio-wave absorbing substance 4 is attached to the bottom surface 3A of the recess 3.例文帳に追加
多層基板2には表面側が開口した有底の凹陥部3を形成すると共に、凹陥部3の底面3A上には電波吸収体4を取り付ける。 - 特許庁
A main material attaching channel 10 mounted so as to overlap on an end of an L-shaped steel-like main material 1 for supporting a module P for the solar cell is formed of a channel material having a long hole 11.例文帳に追加
太陽電池用のモジュールPを支持するL形鋼状の主材1の端部に重ねて装着される主材取付けチャンネル10を、長孔11付きのチャンネル材で形成する。 - 特許庁
To reduce costs, to preserve appearance and to prevent the deterioration of power efficiency even when a solar battery module to be mounted on a roof or the like is loaded on the surface of a roof material.例文帳に追加
屋根などに取り付けられる太陽電池モジュールにおいて、屋根材の表面に搭載した場合でも、低コストで、美観を守り、電力効率の低下を防止できるようにする。 - 特許庁
The respective solar batteries of the solar battery module 10 are parallel- connected, and are a lead accumulation battery 30 serving as an electric power storing means via a charge/discharge controller 20.例文帳に追加
太陽電池モジュール10の各太陽電池は並列に接続されており、充放電コントローラ20を介して、電力貯蔵手段である鉛蓄電池30に接続されている。 - 特許庁
The elastomer cylinder part is elastically pinched with an inside face of the housing part 4 to retain the battery module 1, and a cooling gap 6 is provided between each battery part 5 and reach inside face of the housing part.例文帳に追加
収納部4の内面でエラストマ筒部を弾性的に挟着して電池モジュール1を保持し、電池部5と収納部内面との間に冷却隙間6を設けている。 - 特許庁
In response to the descent of the reference voltage Vref, a peak value (Idp) of a load current I1 flowing in the light source module 3 descends along the envelope indicative of the inclination according to the duty ratio of the PWM signal.例文帳に追加
この基準電圧Vrefの下降に応じて、光源モジュール3に流れる負荷電流I1のピーク値(Idp)はPWM信号のデューティ比に応じた傾きを示す包絡線に沿って下降する。 - 特許庁
A pair of right and left work feeding tools 5 hold a dash module by inserting a feeding tool engagement pin 31 in a first work engagement hole 21a by the advancement of a moving body 27.例文帳に追加
左右一対のワーク供給治具5は、移動体27の前進により供給治具係合ピン31が、第1のワーク係合孔21aに挿入されてダッシュモジュールを保持する。 - 特許庁
To provide an optical waveguide module which is enabled to utilize a planar type light-emitting/receiving element with a simple configuration, and also which is enabled to easily perform high precision alignment of each optical component.例文帳に追加
簡単な構成で面型の受発光素子を利用できるようにすると共に、各光学部品の高精度な位置合わせを容易に行えるようにした光導波路モジュールを提供する。 - 特許庁
To provide a computer system and a program execution method which improve security of a load module to be executed, by making it difficult for a malicious third person to perform illegal execution by reverse analysis.例文帳に追加
悪意ある第三者による逆解析による不正実行を困難にし、実行するロードモジュールの安全性を高めることができるコンピュータシステム及びプログラム実行方法を提供する。 - 特許庁
To provide a frame structure of a sewing machine, enabling the machine to be equipped with a functional module on an appropriate place of a machine frame, not requiring highly machining precision, rendering machine sizes easily changeable and manufactured lightly, rigidly with less costs.例文帳に追加
ミシンフレームの適所にミシンの機能モジュールが装着可能で、高い機械加工精度が不要で、ミシンの寸法を容易に改変可能で軽量化、堅牢化し、廉価に製造する。 - 特許庁
A switching position is set according to a test pattern which is formed by recording by using one recording element selected in the overlapped area of the adjacent head modules and a recording element of the other head module.例文帳に追加
隣接するヘッドモジュールの重複領域において選択された1つの記録素子と他のヘッドモジュールの記録素子で記録した記録したテストパターンから切換位置を設定する。 - 特許庁
When any one of image data recorded in the recording medium is selected by operating a cross button by a user, a reproducing module 402 displays the selected image data on a display device.例文帳に追加
再生モジュール402は、ユーザの十字ボタンなどの操作により、記録媒体に記録された画像データの一つが選択されると、選択された画像データを表示器に表示する。 - 特許庁
An exothermic module 10 incorporates exothermic bodies 12 and 14, and is cooled by being immersed in a cooler 52 in which the cooling fluid flows toward a predetermined direction.例文帳に追加
発熱体モジュール10は、発熱体12,14を内蔵しており、冷却流体が所定方向に向けて流通する冷却器52に浸漬することにより冷却されるものである。 - 特許庁
Further, a both-sided adhesive tape 22 for bonding the LCD 22 and an LCD back light module 14 together is stuck on an exposed part of a back glass 5 outside the back polarizing plate 6 and a frame 15.例文帳に追加
また、LCD2とLCDバックライトモジュール14の接着を行う両面テープ22を裏偏光板6の外側の裏ガラス5の露出部分とフレーム15とに貼り付けた。 - 特許庁
The light source module is provided with a light guide plate 120 having a plurality of irradiating faces 122, a light source for irradiating light on the light guide plate 120, a diffusion plate 130, and a diffusion sheet 140.例文帳に追加
光源モジュールは、複数の出射面122を有する導光板120と、導光板120に光を照射する光源と、拡散板130と、拡散シート140とを備える。 - 特許庁
To provide an information processing unit that revises an operating frequency of a device in a way of preventing interference with a radio communication frequency band of a radio module used for radio communication so as to reduce noise in the radio communication.例文帳に追加
無線通信に使用する無線モジュールの無線通信周波数帯と干渉しないように機器側の動作周波数を変更して、無線通信でのノイズを低減させる。 - 特許庁
In this case, since the oil in the solution W4 passing through the inner pressure circulation type hollow-fiber membrane module 70 is emulsified and finely granulated, no oil adhesion takes place and no clogging is caused.例文帳に追加
このとき、内圧循環式中空糸膜モジュール70を通過する液W4中の油はエマルジョン化して微粒子化しているため、中空糸膜に付着することはなく目詰まりは生じない。 - 特許庁
To provide an optical fiber module which can properly maintain the shape of an optical fiber coil even when applied with a shock by completely setting a filler and a method for manufacturing the same.例文帳に追加
充填材を完全に硬化させて、衝撃が加えられても光ファイバコイルの形状を適切に保持することが可能な光ファイバモジュール及びその製造方法を提供すること。 - 特許庁
To provide a light-emitting module array display device the weight of which will not make the device as a whole heavy and facilitates installation and mounting of the display device in a display device of a large screen.例文帳に追加
大画面の表示装置において、装置全体の重量が重くならず、表示装置の設置や据え付けを容易に行える発光モジュール配列表示装置を提供する。 - 特許庁
| 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 © 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会員(無料)になると
|