TRUEを返し Meaning in English - translations and usage examples

returns true
true を 返す
真 を 返し ます
return true
true を 返す
真 を 返し ます

Examples of using Trueを返し in Japanese and their translations into English

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
成功すればtrueを返し、失敗した場合にはfalseを返します。
Returns true if it succeeds, false if it fails.
Actionが有効状態ならTrueを返し、そうでないならFalseを返します。
Returns true if action indicates it is sensitive, or False otherwise.
これはフォームのモデルオブジェクトが新しい場合はtrueを返し、そうでなければfalseを返します。
It returns true if the model object of the form is new, and false otherwise.
コンポーネントがアンマウントされた場合はtrueを返し、アンマウントすべきコンポーネントが存在しなかった場合はfalseを返します。
Returns true if a component was unmounted and false if there was no component to unmount.
一つでも一致すればtrueを返し、一つも一致しなければfalseを返す。
Return true if even one of the values match and return false if it does not match with any of the values.
この関数のデフォルトの実装はtrueを返し、Reactに更新処理をそのまま実行させます:。
The default implementation of this function returns true, leaving React to perform the update:.
一つでも一致すればtrueを返し、一つも一致しなければfalseを返す。
Return true even if one of the domains show a match and return false of it does not match any of the domains.
Filenameがセーブスロットに存在するときにTrueを返し、それ以外の時にFalseを返します。
Returns true if filename exists as a save slot, and False otherwise.
(1)で作成したPatternとファイル名がマッチする場合はtrueを返し、マッチしない場合はfalseを返す。
Return true when Pattern created in(1) and file name match otherwise return false.
上記以外正常終了した場合にはtrueを返し、エラー時にはfalseを返します。
Returns true if it is normally completed, and false on error.
Addtochartが実際に何かをchart[index]に追加した時にはTrueを返しもしすでにある場合は。
If it wasn't, you want to add it. addtochart should return true if something was actually added to chart[index], and return False otherwise.
この演算子はqueryがcolumnの値のサブセットならtrueを返し、それ以外の時はfalseを返します。
The operator returns true when query is a subset of column value, false otherwise.
IsNew()メソッドはオブジェクトがまだデータベースにシリアライズされていないときはtrueを返し、それ以外はfalseを返します。
The isNew() method returns true when the object has not been serialized yet.
Image_exists()は画像が定義されていればTrueを返しま。
Image_exists() function returns true if an image has been defined.
IsLoggedInメソッドは、セキュリティー検査の状態がSUCCESSと等しい場合にはtrueを返し、それ以外の場合にはfalseを返します。
The isLoggedIn method returns true if the security check state equals SUCCESS and false otherwise.
Has(value)-setの中に値が存在すればtrueを返し、それ以外はfalseです。
Has(value)- returns true if the value exists in the set, otherwise false.
C6ではshouldComponentUpdateがtrueを返し、そしてレンダーされたReact要素も等しくなかったので、ReactはDOMを更新する必要がありました。
For C6 shouldComponentUpdate returned true, and since the rendered elements weren't equivalent React had to update the DOM.
Trueを返し、superメソッドを呼び出すことで、敵が実際にレンダリングされることが保証されます。
Returning true, and calling the super method will ensure the enemies do indeed render.
これは、サーバーで実行されるとtrueを返し、すべてのクライアントピアでfalseを返します。
This will return true when executed on the server and false on all client peers.
Actionが選択状態ならTrueを返し、そうでないならFalseを返します。
Returns true if action indicates it is selected, or false otherwise.
Ren'Pyがスキップ中ならTrueを返し、高速スキップ中なら"fast"、そうでないならFalseを返します。
Returns True if Ren'Py is currently skipping(in fast or slow skip mode), or False otherwise.
成功した場合はtrueを返し、そうでない場合は例外をスローします。
Returns the true if it is successful otherwise it throws an exception.
列挙オブジェクトにはhasMoreElements()メソッドがあり、これは最後のクッキーが得られるまでtrueを返し続けます。
An enumerator has a hasMoreElements() method which will return true until we get to the last cookie.
アクションに期待されるように求人期間が延長される場合JobeetJobのextend()メソッドはtrueを返し、そうでなければfalseを返します:。
As expected by the action, the extend() method of JobeetJob returns true if the job has been extended or false otherwise:.
Is_match-マッチング用のカスタムコールバックまたはクロージャーを指定します。シグニチャーはfunction(array$server,\ArrayObject$matches)で、マッチした場合にtrueを返し、マッチしない場合はfalseを返すようにします。
Is_match- A custom callback or closure with the signature function(array$server,\ArrayObject$matches)that returns true on a match, or false if not.
IsCommandEnabled(command)このメソッドは、コマンドが有効な場合にtrueを返し、無効な場合にfalseを返す必要があります。
A single controller may support multiple commands. isCommandEnabled(command)this method should return true if the command is enabled, or false if it is disabled.
例えば、顧客が3月1日にキャンセルしたが、その購読が3月5日に終了するようにスケジュールされていれば、subscribedメソッドは3月5日になるまで、trueを返し続けます。
For example, if a customer cancels a subscription on March 1st, but the subscription was not scheduled to end until March 5th,the subscribed method will continue to return true until March 5th.
クラスコンポーネントのshouldComponentUpdate()とは異なり、このareEqual関数はpropsが等しいときにtrueを返し、propsが等しくないときにfalseを返します。
Unlike the shouldComponentUpdate() method on class components, the areEqual function returns true if the props are equal and false if the props are not equal.
たとえば、顧客が3月1日にキャンセルしたが、そのサブスクリプションが3月5日に終了するようにスケジュールされていれば、subscribedメソッドは3月5日になるまでtrueを返し続けます。
For example, if a customer cancels a subscription on March 1st, but the subscription was not scheduled to end until March 5th,the subscribed method will continue to return true until March 5th.
例えば、顧客が3月1日にキャンセルしたが、そのサブスクリプションが3月5日に終了するようにスケジュールされていれば、subscribedメソッドは3月5日になるまでtrueを返し続けます。
For example, if a customer cancels a subscription on March 1st, but the subscription was not scheduled to end until March 5th,the subscribed method will continue to return true until March 5th.
Results: 30, Time: 0.0232

Word-for-word translation

Top dictionary queries

Japanese - English