1153万例文収録!

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


小窓モード

プレミアム

ログイン
設定

設定

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

セーフサーチ:オン

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

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

セーフサーチについて

Predicateを含む例文一覧と使い方

該当件数 : 206



例文

def ifilter(predicate, iterable):if predicate is None:predicate = boolfor x in iterable:if predicate(x):yield x 例文帳に追加

この関数は以下のスクリプトと同等です: def ifilter(predicate, iterable):if predicate is None:predicate = boolfor x in iterable:if predicate(x):yield x - Python

def ifilterfalse(predicate, iterable):if predicate is None:predicate = boolfor x in iterable:if not predicate(x):yield x 例文帳に追加

この関数は以下のスクリプトと同等です: def ifilterfalse(predicate, iterable):if predicate is None:predicate = boolfor x in iterable:if not predicate(x):yield x - Python

Predicate Scenario 例文帳に追加

述語シナリオ - NetBeans

predicate nominative 例文帳に追加

述語主格 - 日本語WordNet

例文

a predicate adjective 例文帳に追加

叙述形容詞 - 斎藤和英大辞典


例文

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

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

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

A sentence consists of subject and predicate. 例文帳に追加

文は主格と賓辞よりなる - 斎藤和英大辞典

Make an iterator that returns elements from the iterable as long as the predicate is true.例文帳に追加

predicateが真である限りiterableから要素を返すイテレータを作成します。 - Python

例文

A sentence consists of a subject and a predicate. 例文帳に追加

文は主格と賓辞よりなる - 斎藤和英大辞典

例文

occurring within the predicate phrase 例文帳に追加

述語句の範囲内で起こること - 日本語WordNet

Once you create a predicate, you can use the predicate in an assignment.例文帳に追加

述語を作成すると、その述語を割り当ての中で指定できます。 - NetBeans

the word class that serves as the predicate of a sentence 例文帳に追加

文の述語として機能する品詞 - 日本語WordNet

make the (grammatical) predicate in a proposition 例文帳に追加

命題において(文法的な)述部を作る - 日本語WordNet

XIfEvent, XCheckIfEvent,XPeekIfEvent - check the event queue with a predicate procedure 例文帳に追加

XIfEvent, XCheckIfEvent, XPeekIfEvent \\- 述語手続きでイベントキューをチェック - XFree86

interchange of subject and predicate of a proposition 例文帳に追加

対象の置き換えと提案に関する述部 - 日本語WordNet

To create a predicate: 例文帳に追加

述語を作成するには、次の手順に従います。 - NetBeans

To delete a predicate: 例文帳に追加

述語を削除するには、次の手順に従います。 - NetBeans

Make an iterator that drops elements from the iterable as long as the predicate is true; afterwards, returns every element.例文帳に追加

predicateが真である限りは要素を無視し、その後は全ての要素を返すイテレータを作成します。 - Python

predicate Specifies the procedure that is to be called to determine if the next event in the queue matches what you want.例文帳に追加

predicate 1iキューの中の次のイベントが必要なものか決定するために呼ばれる手続きを指定。 - XFree86

the term in a syllogism that is the predicate of the conclusion 例文帳に追加

結論の述語である三段論法の名辞 - 日本語WordNet

You can edit or delete an existing predicate. 例文帳に追加

既存の述語を編集または削除できます。 - NetBeans

To edit a predicate: 例文帳に追加

述語を編集するには、次の手順に従います。 - NetBeans

The mx series is based on first order predicate calculus.例文帳に追加

MXシリーズは微積分に 基づいた予測で動くんです - 映画・海外ドラマ英語字幕翻訳辞書

The mx series is based on first order predicate calculus.例文帳に追加

mxシリーズは微積分に 基づいた予測で動くんです - 映画・海外ドラマ英語字幕翻訳辞書

This function requires you to give a predicate. 例文帳に追加

この関数には、述語を指定する必要があります。 - PEAR

use of a series of subjects with a single predicate 例文帳に追加

1つの述語を持った多数の主語の連続の使用 - 日本語WordNet

Use XPath functions to create the condition for the predicate. 例文帳に追加

XPath 関数を使用して、述語の条件を作成します。 - NetBeans

the grammatical relation of a word or phrase to a predicate 例文帳に追加

単語または句の述語に対する文法的関係 - 日本語WordNet

Map the result to the predicate node in the destination tree pane.例文帳に追加

結果を宛先ツリー区画内の述語ノードへマッピングします。 - NetBeans

an expression including a subject and predicate but not constituting a complete sentence 例文帳に追加

主語と述語を含むが完全文を形成しない表現 - 日本語WordNet

Note,the iterator does not produce any output until the predicate is true, so it may have a lengthy start-up time.例文帳に追加

このイテレータは、predicateが真の間は全く要素を返さないため、最初の要素を返すまでに長い時間がかかる場合があります。 - Python

If the predicate procedure finds no match, XCheckIfEvent returns False, and the output buffer will have been flushed.例文帳に追加

)述語手続きがマッチしなかった場合は、XCheckIfEventはFalseを返す。 - XFree86

The BPEL Mapper enables you to create a predicate that consists of XPath functions.例文帳に追加

BPEL マッパーを使用すると、XPath 関数からなる述語を作成できます。 - NetBeans

The predicate `dog' is predicated of the subject `Fido' in the sentence `Fido is a dog' 例文帳に追加

述語『犬』は文の述語『ファイドーは、犬である』の『ファイドー』である - 日本語WordNet

Removes all the files that follow a given predicate from file $URL. 例文帳に追加

指定した条件を満たすすべてのファイルを$URL から削除します。 - PEAR

the premise of a syllogism that contains the major term (which is the predicate of the conclusion) 例文帳に追加

(結論の述語である)大名辞を含む三段論法の前提 - 日本語WordNet

The pop-upmenu of these nodes contains the New Predicate option. 例文帳に追加

それらのノードのポップアップメニューには、「新規述語」オプションが含まれています。 - NetBeans

A predicate applies a condition to a node that can have multiple values.例文帳に追加

述語は、複数の値を持つことができるノードに条件を適用します。 - NetBeans

The following example shows how the mapping appears in the Predicate window.Once you click OK, you can use the predicate node in a copy assignment.例文帳に追加

次の例は、「述語」ウィンドウにマッピングが表示される方法を示しています。 「了解」をクリックすると、コピー代入の中で述語ノードを使用できます。 - NetBeans

The predicating values that were selected by the predicate circuit, are transmitted to the second stages.例文帳に追加

述語回路によって選択された述語値は、第2のステージに送信される。 - 特許庁

a constituent of a sentence at the first step in an analysis: e.g., subject and predicate 例文帳に追加

分析の最初の段階における文の構成要素:例えば、主部と述部 - 日本語WordNet

In the source tree pane, right-click the predicate node and choose EditPredicate. 例文帳に追加

ソースツリー区画内で、述語ノードを右クリックし、「述語を編集」を選択します。 - NetBeans

In the source tree pane, right-click the predicate node and choose DeletePredicate. 例文帳に追加

ソースツリー区画内で、述語ノードを右クリックし、「述語を削除」を選択します。 - NetBeans

If the BPEL process received the following XML, then the predicate would select the first Air tag.例文帳に追加

BPEL プロセスが次の XML を受信した場合、述語は最初の Air タグを選択します。 - NetBeans

The system 110 uses a register 73, a pipe line 21 and the predicate circuits 94, 162.例文帳に追加

本発明のシステム(110)は、レジスタ(73)と、パイプライン(21)と、述語回路(94、162)と、を利用する。 - 特許庁

PREDICATE LOGIC FORMULA CREATION DEVICE, SUMMARY JOURNALIZING RULE CREATION DEVICE, SUMMARY JOURNALIZING DEVICE, PREDICATE LOGIC FORMULA CREATION PROGRAM, SUMMARY JOURNALIZING RULE CREATION PROGRAM AND SUMMARY JOURNALIZING PROGRAM例文帳に追加

述語論理式作成装置、会計仕訳ルール作成装置、会計仕訳装置、述語論理式作成プログラム、会計仕訳ルール作成プログラム、及び、会計仕訳プログラム - 特許庁

Click OK.The editor adds the predicate node immediately below the original node. 例文帳に追加

「閉じる」をクリックします。 エディタは、述語ノードを直ちに元のノードの下に追加します。 - NetBeans

The unit (131) holds control information items that respectively correspond to the predicate registers and the respective operating units also separately correspond to one predicate register.例文帳に追加

制御情報保持ユニット(131)は、述語レジスタに個々に対応する制御情報の項目を保持し、各オペレーティングユニットもまた述語レジスタの1つに個々に対応する。 - 特許庁

例文

To provide a technology of setting each dimensionality of an attribute vector and a predicate vector on predicate logic for the logical sum of t logical products of n attributes to t+1.例文帳に追加

n個の属性の論理積t個の論理和についての述語論理に関する属性ベクトル及び述語ベクトルのそれぞれの次元数をt+1にする技術を提供する。 - 特許庁




  
Copyright © Japan Patent office. All Rights Reserved.
  
斎藤和英大辞典
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
「斎藤和英大辞典」斎藤秀三郎著、日外アソシエーツ辞書編集部編
  
日本語WordNet
日本語ワードネット1.1版 (C) 情報通信研究機構, 2009-2026 License. All rights reserved.
WordNet 3.0 Copyright 2006 by Princeton University. All rights reserved.License
  
JESC: Japanese-English Subtitle Corpus映画・海外ドラマ英語字幕翻訳辞書のコンテンツは、特に明示されている場合を除いて、次のライセンスに従います:
Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
© 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 - 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 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
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

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

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

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

ログイン

Weblio会員(無料)になると

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

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

無料会員に登録する

©2026 GRAS Group, Inc.RSS