1016万例文収録!

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


小窓モード

プレミアム

ログイン
設定

設定

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

セーフサーチ:オン

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

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

セーフサーチについて

定義名の部分一致の例文一覧と使い方

該当件数 : 531



例文

公開鍵基盤を提供する通信システムにおいて、定義されたパーティ(I、V)により匿支払を検証するための方法を提供する。例文帳に追加

To provide a method for verifying anonymous payment by defined parties (I, V) in a communication system to provide a public key base. - 特許庁

sendコマンド内に定義されているターゲットオブジェクトの識別を解析する(ステップS405)。例文帳に追加

An identifier for a target object defined in the send command is analyzed (step S405). - 特許庁

方法は、第1のデータソース内の第1の基準値を参照するために第1のユーザ定義パラメータを受信することを伴う。例文帳に追加

This method involves receiving a first user-defined parameter name to reference a first datum value in a first data source. - 特許庁

イニシエータノードを選択し、前を入力することによって、イニシエータノードによって定義されるタイプのオブジェクトが作成される。例文帳に追加

By selecting the initiator node and inputting a name, the object of a type defined by the initiator node is created. - 特許庁

例文

これはプログラマに対して、例外処理を指定する際に、文字列ではなく例外を使わせるための変更です。 組み込み例外の文字列値は全てその前となりますが、ユーザ定義の例外やライブラリモジュールで定義される例外についてもそうするように要求しているわけではありません。例文帳に追加

This is done to force programmers to use exception namesrather than their string value when specifying exception handlers.The string value of all built-in exceptions is their name, but this is not a requirement for user-defined exceptions or exceptions defined by library modules. - Python


例文

UnboundLocalError は、NameError のサブクラスです。 前への束縛は、以下の文構成 (construct): 関数の仮引数 (formal parameter)指定、import 文、クラスや関数の定義 (定義を行ったブロック中で、クラスや関数の束縛が行われます)、代入時に、代入対象が識別子である場合、for ループのヘッダ、または第二形式のexcept 文ヘッダ、で行われます。例文帳に追加

UnboundLocalError is a subclass ofNameError.The following constructs bind names: formal parameters to functions,import statements, class and function definitions (thesebind the class or function name in the defining block), and targets that are identifiers if occurring in an assignment, for loopheader, or in the second position of an except clause header. - Python

管理システム200は、情報入力部100により入力されたソフトウェアに基づき環境定義設定処理310または320のいずれかを選択し、選択された設定処理手段に対して情報入力部100により入力された環境定義情報を指定する。例文帳に追加

The system 200 selects either environment definition setting processing 310 or 320 on the basis of a software name inputted by the part 100 and designates the environment definition information name inputted by the part 100 to a selected setting processing means. - 特許庁

利用者の端末機から入力されたURLのドメインを参照し、該当する参照先Webサーバーに接続を要求すると共に、前記ドメインに、多重定義と、単一定義との混在使用を許容する機能を備えるドメイン登録管理システムを提供する。例文帳に追加

To provide a domain registration managing system provided with a function for allowing the mixed use of multiple definitions and a single definition to the domain name of a URL inputted from the terminal equipment of a user while referring to the domain name and requesting a connection to a relevant reference destination Web server. - 特許庁

クライアント11は項目を表す一意の項目IDでサーバ12にアクセス要求を行い、サーバ12は前記項目IDをもとに、前記データ定義テーブル3のデータ定義情報から前記スクリプト2により定義された前記データベース表のデータベース表、カラムを取得し、属性、最大長等を取得し、データベースアクセスを行う。例文帳に追加

A client 11 sends an access request to a server 12 with a unitary item ID indicating an item, the server 12 acquires the database table name and the column name of the database table and the attribute and maximum length or the like defined by the script 2 from the data definition information of the data definition table 3 based on the item ID to gain access to the database. - 特許庁

例文

たとえば、LIMITSというの内部サブルーチンに加えて、limitsというのサブルーチン・ポインタもLIMITSというの利用者定義サブルーチンもすべて同時に持つことができる。例文帳に追加

For instance, in addition to the internal subroutine called LIMITS, one can also have a subroutine pointer named limits and a user-defined subroutine named LIMITS, all at the same time.  - コンピューター用語辞典

例文

この問題が発生した場合は、前を変更するクラスのクラス定義または変数宣言から直接「前を変更」コマンドを起動することによって、クラスを変更してください。例文帳に追加

If you experience this problem, rename the class by invoking the Renamecommand directly from class definition or variable declaration for the class you wish to rename. - NetBeans

規約グローバル変数および関数 パッケージでグローバル変数を定義する場合は、変数の先頭はアンダースコアで始め、その後にパッケージを続けてさらにもうひとつアンダースコアをつけます。例文帳に追加

Naming ConventionsGlobal Variables and Functions If your package needs to define global variables, their names should start with a single underscore followed by the package name and another underscore.  - PEAR

このカテゴリに属する前は、クラス定義のコンテキスト上で用いられた場合、基底クラスと導出クラスの ``プライベートな'' 属性間で前衝突が起こるのを防ぐために書き直されます。 5.2.1 節、``識別子 (前)'' を参照してください。例文帳に追加

Names in this category, when used within the context of a class definition, are re-written to use a mangled form to help avoid name clashes between ``private'' attributes of base and derived classes.See section5.2.1, ``Identifiers (Names).'' - Python

旗本が加増され大となった場合や、陪臣出身の堀田氏・稲葉氏・柳沢氏・有馬氏倫のように、幕府によって新たに取り立てられ大になった場合は1の定義にあてはまり、譜代大となる。例文帳に追加

For hatamoto who were granted a larger stipend to become daimyo or those who were newly promoted by the Shogunate to become daimyosuch as the leaders of the HOTTA, INABA and YANAGISAWA clans and Ujinori ARIMA, all of whom were born baishin (indirect vassals)—the first definition above applies, so they were classified as fudai daimyo.  - Wikipedia日英京都関連文書対訳コーパス

用紙称データベースは、サーバおよび各々のプリンタ上に維持され、それぞれ一つの用紙称を用紙サイズや重量など複数の用紙属性に対して関係付ける用紙定義を含む。例文帳に追加

A paper name database is maintained on the server and each printer, and contains the plurality of paper name definitions each associating one paper name to a plurality of paper attributes such as paper size, weight, etc. - 特許庁

また、ユーザ・エージェント手段によって乱数化された電子署は、署の検証式により定義される曲面上を一様に分布することから、署であるという事実以外の情報を含み得ない。例文帳に追加

Also, since electronic signatures turned into the random numbers by the user agent means are uniformly distributed on a curved surface defined by a signature verification expression, information other than the fact that they are the signatures cannot be included. - 特許庁

候補薬品の一覧表示から、1つの薬品が選択されると、その選択を受け付け(S15)、選択された薬品定義されている、関連データを薬剤データベースから読み出す(S16)。例文帳に追加

When one drug name is selected from the list form of the candidates, the CPU receives the selection (S15) and reads out related data, defined in association with the selected drug name, from a drug database (S16). - 特許庁

多次元データベースの次元、及び次元を構成するメンバの称を、多次元データベースの構造定義情報から自動的に抽出し、次元とメンバをキーにして文書データベースを検索する。例文帳に追加

Dimensions of the multi-dimensional data base and names of members to constitute the dimensions are automatically extracted from structural definition information of the multi-dimensional data base and the document data base is retrieved by using the dimension names and the member names as a key. - 特許庁

タグ統合化アプリケーション120が、端子割付表読出手段121によって、アプリケーション103のタグ管理手段115において定義されたタグを読み出す。例文帳に追加

A tag mane-intergated application 120 reads out a tag name defined in a tag control means 115 of an application 103 by a terminal name allocation table reading means 121. - 特許庁

ドメインが少なくとも一つのコード部とエンティティ定義部とから構成され、コンピュータシステムを使用して第1言語からなる仮想ドメインを対応する第2言語の実ドメインに変換する方法である。例文帳に追加

The domain name is constituted of at least one code part and an entity defining part and a virtual domain name consisting of a first language is converted into a corresponding second actual domain name by using a computer system. - 特許庁

前付き範囲に対して1つまたは複数のオープン方向を指定することによってオープン前付き範囲を定義するステップと、オープンとして指定されたすべての方向でオープン前付き範囲を1アドレスだけ拡張したセル・アドレス範囲を有する隠し前付き範囲を定義するステップとを含む。例文帳に追加

This method is provided with a step for defining an open named range by designating one or plural open directions to the named range and a step for defining a hidden range with name having a cell address range expanding the open named range just for one address in all the designated open directions. - 特許庁

可変情報に実行属性が設定されていれば(S32)、実行属性を任意の識別子で記述したジョブ定義が保存されるジョブ定義ファイルから該当するジョブを読み込み(S33)、可変情報に基づいてジョブ定義中の識別子を具体的な実行属性に置き換えた新たなジョブを作成する(S34)。例文帳に追加

If an execution attribute name is set in the variable information (S32), a corresponding job is read from a job definition file in which job definition with the execution attribute described with an arbitrary identifier is stored (S33), and a new job obtained by replacing an identifier in the job definition with a concrete execution attribute is created on the basis of the variable information (S34). - 特許庁

データ処理部2は、さらにしおり称とインデックス情報とが対応づけられ文書の整列順が定義されたしおり定義ファイルにしたがって、前記しおりフォルダが整列順に沿った順番に並べ替えられ各しおりフォルダとフォルダ内の画像ファイルの保存場所とが登録されたしおり定義ファイルテーブルを生成する。例文帳に追加

Further, the data processing section 2 rearranges the bookmark folders in orders along the arrangement sequence according to a bookmark definition file wherein a bookmark name and the index information are cross-referenced and for defining the arrangement sequence of the documents, and creates a bookmark definition file table wherein each bookmark holder and a storage location of the image files in each folder are registered. - 特許庁

特定のクレームにおいてクレームされた発明の主題を定義する称で始まり,かつ,クレームされた発明の主題の定義に必要な技術的特徴(全体として技術水準と理解される)を表示する陳述書(非特徴部分)例文帳に追加

A statement(anon-characterizing portion) beginning with the title defining the subject matter of the invention claimed in a given claim and indicating the technical features necessary for the definition of the claimed subject matter of the invention, the technical features being as a whole taken as the state of the art; - 特許庁

画面定義ファイル4、ソースコードテンプレート5およびソースコード生成ロジック23はそれぞれカスタマイズでき、カスタマイズがなされた後は、画面定義ファイル4のファイルを改めて選択することで、ソースコードの再生成がなされる。例文帳に追加

The screen definition file 4, the source code template 5, and the source code generation logic 23 can be each customized, and regeneration of the source code is performed by newly selecting the file name of the screen definition file 4 after the customization is performed. - 特許庁

更新データに意味的な関連があるか否かの判定は、異なる更新データが、称に関する同一のテキスト情報を共通して含むか、予め関連が定義された道路リンクを共通して含むか、予め関連が定義された施設カテゴリを共通して含むかを確認することにより判定する。例文帳に追加

Whether the update data are semantically related or not is determined by confirming whether the different update data commonly include the same text information concerning the names, the route link with which the relationship is predefined, or the facility category with which the relationship is predefined. - 特許庁

データベース部43は、路線内の所定の基準点における緯度経度情報と基準駅からの距離程とを予め対応付けた線形基本データ並びに前記路線内の駅、駅順及び距離程の関係を定義した駅定義データを記憶する。例文帳に追加

A database section 43 stores the linear basic data in which latitude and longitude information at the predetermined reference point in a route and the distance from the reference station are associated with each other in advance, and the station definition data in which the name of the station, the station order, and the distance in the route are defined. - 特許庁

ユーザがディスプレイ上の表で編集したパラメータの値を、パラメータとそれが持つ値との組み合わせで定義される順序の規定されない組データに変換し、パラメータの定義情報とそれらの組データとを使ってその正当性を判断してパラメータの値を設定する。例文帳に追加

A value of a parameter edited on a table on a display by a user is converted into group data which is defined by a parameter name in combination with its value but its order is not defined, and the value of the parameter is set after determining its validity using definition information of the parameter and these pieces of group data. - 特許庁

重要度が高いカテゴリ0,1に属するパラメータを示すGPID及びそのパラメータ定義ファイルを外部記憶メディア117のカテゴリ変更定義ファイルに記録してその値を変更したいパラメータを指定することにより、指定されたパラメータのカテゴリがカテゴリ2に変更される。例文帳に追加

A GPID indicative of a highly important parameter belonging to categories 0 and 1 and its parameter definition file name are recorded in a category alteration definition file of an external storage medium 117, and a parameter whose value is to be changed is specified to change the category of the specified parameter to a category 2. - 特許庁

音声認識文法作成装置においては、GUI(グラフィカルユーザインタフェース)を用いて、ルール定義の左辺であるルールと、ルール定義の右辺における単語およびルール参照とがノードとして表示され、左辺のノードと右辺のノードとの間をリンクで接続される。例文帳に追加

The speech recognition grammar generating device uses a GUI (graphical user interface) to display a rule name as the left side of a rule definition and a word and a rule reference of the right side of the rule definition as nodes, and the node of the left side and the nodes of the right side are connected by a link. - 特許庁

帳票処理装置は、ユーザが指定した領域に対して、レイアウト情報の抽出(ステップ200)および指定した領域と関連がある項目を抽出し、これらの情報を定義データに変換する(ステップ500、ステップ600)ことにより、帳票定義データの自動作成を実施する。例文帳に追加

A form processing device extracts layout information about an area specified by a user (Step 200), extracts an item name related to the specified area, and converts the information into definition data (Step 500, Step 600) to automatically create form definition data. - 特許庁

見本となる帳票を帳票画像表示部14によってディスプレイ画面上に表示させ、オペレータの指示を受けたフィールド情報定義部15によって、帳票の個々の部分に矩形状のフィールド領域を定義し、フィールドとともにフィールド情報格納部16に格納する。例文帳に追加

A business form as a sample is displayed on a display screen by a business form image display part 14, and a rectangular field region is defined in each section of the business form by a field information definition part 15 which has received the instruction of an operator, and stored with a field name in a field information storage part 16. - 特許庁

画面ファイルに必要となるフォームの入力データ定義を行い、またバックエンドの業務プログラムの関数、開発言語を定義させることで、型変換、パラメータの設定を隠蔽する装置を生成させ、それを実装する業務プログラムの雛型を生成する。例文帳に追加

Input data definition for a form to be needed for an image file is performed, the function name of a business program of the backend and a development language are defined, a device for concealing type conversion and parameter setting is thereby generated, and a prototype of the business program which mounts the device is generated. - 特許庁

生活動作判定部8は、平滑化された信号を元に、家庭内における各生活動作をあらかじめ定義した生活動作定義式を参照し、生活動作を判定、その判定結果(生活動作、生活動作開始時刻、生活動作終了時刻)をログ保存部7へ渡す。例文帳に追加

The living motion determination part 8 determines, based on the smoothed signal, a living motion in reference to a living motion definition expression in which each living motion in home is preliminarily defined, and transmits the determination result (living motion name, living motion start time, and living motion end time) to the log storage part 7. - 特許庁

これにより新規帳票の追加や帳票フォーマットの変更に対し、新規帳票の帳票フォーマット定義データの作成や、帳票フォーマット定義データにおける項目の変更、追加を行うだけで、帳票データ処理用の画面の表示、制御を可能にする。例文帳に追加

Thus, for the addition of new business forms and the change of the business form format, an image for processing business form data can be displayed and controlled only by creating business form format definition data of the new business form and changing and adding item names in the business form format definition data. - 特許庁

記憶部102には定義情報テーブル102Aが設けられており、ジョブログの出力時には指定したジョブログのIDからジョブログデータ項目セットIDをキーにして定義情報テーブル102Aから各称を逆引きして解読されたジョブログをユーザに提供する。例文帳に追加

A storage part 102 is provided with a definition information table 102A, and the job log decoded by reversely looking up each the name from the definition information table 102A with a job log data item set ID as a key from the designated ID of the job log is provided to the user when outputting the job log. - 特許庁

予め帳票の論理構造を定義し、入力された入力帳票の値を取得可能としたシステムであり、帳票上の項目に関連する用語をグルーピングした概念辞書DB、帳票の種類別に帳票の論理構造を定義したスキーマ情報DBを備える。例文帳に追加

A system capable of acquiring values on the business form input by predefining logical structures of business forms comprises a concept dictionary DB grouping terms related to item names on the business forms and a schema information DB defining the logical structure of every type of business form. - 特許庁

本発明に係るデータベースのデータ構造は、元となるRDBにおいて定義されている1又は複数の項目について値を含む、第1種類の各レコードについて、定義されている上記項目の項目及びその値と当該レコードの識別データとを含む、第2種類のレコードを、上記項目の数だけ含む。例文帳に追加

This data structure for a database includes a second type of records containing, for each record of a first type containing values for one or more items defined in an original RDB, item names of the defined items, values thereof, and identification data of the record concerned by the number of the items. - 特許庁

本契約書末尾の署欄に記載された者は、事業者(以下に定義される。)に対する投資事業を行うため、有限責任組合法(以下に定義される。)の規定に従い、平成年月日(以下「本締結日」という。)をもって、以下のとおり、投資事業有限責任組合契約(以下「本契約」という。)を締結する。例文帳に追加

This Investment Limited Partnership Agreement (this “Agreement”) is made and entered into as of [date] (the “Execution Date”) among the persons named on the signature pages at the end of this Agreement in order to conduct investments in Business Entities (as defined below)  - 経済産業省

構文要素変換部15は、構文要素におけるタグ、属性により、タグメモリ11,属性メモリ12を検索し、タグ、属性を短縮タグ、短縮属性に変換し、出力部16は変換した構文要素を結合し短縮文書型定義整合文書3として出力する。例文帳に追加

A syntax element conversion part 15 retrieves a tag name memory 11 and an attribute name memory 12 based on a tag name and an attribute name and converts the tag name and the attribute name into an abbreviated tag name and an abbreviated attribute name and an output part 16 combines converted syntax elements and outputs the combined result as an abbreviated document type definition matching document 3. - 特許庁

原産地称は,ペルー国内の或る地域若しくは場所のを使用した称であって,その地域若しくは場所で発しかつ固有の品質若しくは特徴が当該地域又は場所に特有な自然的及び人的要因に帰せられるような商品を指定するのに使用される称として定義される。例文帳に追加

Appellation of origin shall be understood to mean an appellation that uses the name of a region or geographical location within the country that serves to designate a product originating therein the quality or characteristics are exclusively or essentially attributable to the natural and human factors specific to the said region or location. - 特許庁

サーバが、XBRL(eXtensible Business Reporting Language)で記述された企業財務データが有し得る勘定項目である複数の第1の勘定項目と集約後の企業財務データに記載される勘定項目である2以上の第2の勘定項目との対応関係を表す対応定義情報を取得する。例文帳に追加

A server obtains corresponding definition information that indicates corresponding relationship between a plurality of first account item names that are names of the account items that enterprise financial data written in XBRL (eXtensible Business Reporting Language) can include, and two or more second account item names that are names of the account items to be included in the summarized enterprise financial data. - 特許庁

namedevは、デバイスの命規則を、udevプログラムとは分離して定義することを可能にします。 これは、柔軟な命規則方針や体系を独立した団体が開発することを可能にします。例文帳に追加

Namedev allows you to define the device naming separately from the udev program. This allows for flexible naming policies and naming schemes developed by separate entities. - Gentoo Linux

shという前の対話的シェルとして起動されると、bashは環境変数ENVを調べ、この変数が定義されていればその値を展開し、展開で得た値をコマンドの読み込みと実行を行うためのファイルとして使います。例文帳に追加

When invoked as an interactive shell with the name sh , bash looks for the variable ENV , expands its value if it is defined, and uses the expanded value as the name of a file to read and execute.  - JM

一方、nodename フィールドには意味がない:このフィールドは現在のマシンの (定義されていない)どこかのネットワークにおける前を与えるが、通常マシンは複数のネットワークに属し、複数の前を持つ。例文帳に追加

On the other hand, the field nodename is meaningless: it gives the name of the present machine in some undefined network, but typically machines are in more than one network and have several names.  - JM

同様に、SuccessView を設定することによって、送信の成功時に表示されるべきビューを設定できます。 CommandName の設定時、モデル内でコマンド定義します。例文帳に追加

Setting the SuccessView likewiselets you set the name of the view that should display upon a successful submit.When you set the CommandName you define the name of the command in the model. - NetBeans

datetime オブジェクト dt に対応するタイムゾーンを文字列で返します。 datetime モジュールでは文字列について何も定義しておらず、特に何かを意味するといった要求仕様もまったくありません。例文帳に追加

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. - Python

関数定義を実行すると、現在のローカルな前空間内で関数を関数オブジェクト (関数の実行可能コードをくるむラッパ) に束縛します。例文帳に追加

Its execution binds the function name in the current local namespace to a function object(a wrapper around the executable code for the function). - Python

例えば、ifキーワードはタプル(1, 'if')と表されます。 ここで、1は、ユーザが定義した変数と関数を含むすべてのNAMEトークンに対応する数値です。例文帳に追加

For example, the if keyword is represented by the tuple (1, 'if'), where 1 is the numeric value associated with all NAME tokens, includingvariable and function names defined by the user. - Python

例文

関数ブロック内で前の定義を行った場合、その前に対して別の束縛を行っているブロックを除いた、関数内の全てのブロックを含むようにスコープが拡張されます。例文帳に追加

If the definition occurs in a function block, the scopeextends to any blocks contained within the defining one, unless a contained block introduces a different binding for the name. - Python

索引トップ用語の索引



  
コンピューター用語辞典
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
  
Copyright © Japan Patent office. All Rights Reserved.
  
Copyright © Japan Patent office. All Rights Reserved.
  
Copyright Ministry of Economy, Trade and Industry. All Rights Reserved.
  
本サービスで使用している「Wikipedia日英京都関連文書対訳コーパス」はWikipediaの日本語文を独立行政法人情報通信研究機構が英訳したものを、Creative Comons Attribution-Share-Alike License 3.0による利用許諾のもと使用しております。詳細はhttp://creativecommons.org/licenses/by-sa/3.0/ および http://alaginrc.nict.go.jp/WikiCorpus/ をご覧下さい。
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
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.
  
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) 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 2001-2010 Gentoo Foundation, Inc.
The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

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

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

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

ログイン

Weblio会員(無料)になると

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

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

無料会員に登録する

©2024 GRAS Group, Inc.RSS