timeout
「timeout」の意味・「timeout」とは
「timeout」は、コンピュータ科学の領域において、特定の操作が一定時間内に完了しない場合に発生する事象を指す。一般的には、ネットワーク通信やプログラムの実行において、応答が得られない状態を指し、この状態が続くと、システムは「timeout」を宣言し、その操作を中断する。例えば、ウェブブラウザでウェブページを開こうとしたとき、サーバからの応答がない場合、一定時間が経過すると「timeout」が発生し、ページの読み込みが中断される。「timeout」の発音・読み方
「timeout」の発音は、国際音声記号(IPA)で /ˈtaɪmaʊt/ と表記される。カタカナ表記では「タイマウト」と読む。日本人が発音する際のカタカナ英語の読み方も「タイマウト」である。この単語は発音によって意味や品詞が変わるものではない。「timeout」の定義を英語で解説
「timeout」は、"A specified period of time that will be allowed to elapse in a system before a specified event is to take place, unless another specified event occurs first; in either case, the period is terminated when either event takes place."と定義される。つまり、特定のイベントが発生するまでの許容される時間を指し、その時間が経過するか他のイベントが発生した場合にその期間は終了する、という意味である。「timeout」の類語
「timeout」の類語としては、「time limit」、「deadline」、「due date」などがある。これらの単語も同様に、時間に関連した制約や期限を表すために使用される。「timeout」に関連する用語・表現
「timeout」に関連する用語や表現としては、「time out error」、「session timeout」、「connection timeout」などがある。これらはすべて、特定の操作が一定時間内に完了しない場合に発生するエラーや状態を指す。「timeout」の例文
以下に、「timeout」を使用した例文を10個挙げる。 1. The operation was cancelled due to a timeout.(操作はタイムアウトのためキャンセルされた。)2. The server did not respond within the timeout period.(サーバーはタイムアウト期間内に応答しなかった。)
3. The system will automatically log you out after a timeout of 30 minutes.(システムは30分のタイムアウト後に自動的にログアウトします。)
4. The connection was lost due to a timeout.(接続はタイムアウトのために失われた。)
5. The timeout value is set to 60 seconds.(タイムアウト値は60秒に設定されている。)
6. The request failed due to a server timeout.(リクエストはサーバータイムアウトのために失敗した。)
7. The timeout error occurred while accessing the database.(データベースへのアクセス中にタイムアウトエラーが発生した。)
8. The system will trigger a timeout if the process does not complete within the specified time.(プロセスが指定時間内に完了しない場合、システムはタイムアウトを引き起こす。)
9. The timeout setting can be adjusted in the system preferences.(タイムアウト設定はシステムの設定で調整できる。)
10. The application experienced a timeout while waiting for a response from the server.(アプリケーションはサーバーからの応答を待っている間にタイムアウトを経験した。)
タイム‐アウト【time-out】
Timeout クラス
アセンブリ: mscorlib (mscorlib.dll 内)


このクラスの唯一のメンバである Infinite は、Thread.Sleep(Int32)、Thread.Join(Int32)、および ReaderWriterLock.AcquireReaderLock(Int32) などの整数の timeout パラメータを受け入れるメソッドによって使用される定数です。

無制限の時間のアイドル状態に入り、その後呼び出されるスレッドの例を次に示します。
Option Explicit Option Strict Imports System Imports System.Security.Permissions Imports System.Threading <Assembly: SecurityPermissionAttribute(SecurityAction.RequestMinimum, _ ControlThread := True)> Public Class ThreadInterrupt <MTAThread> _ Shared Sub Main() Dim stayAwake As New StayAwake() Dim newThread As New Thread(AddressOf stayAwake.ThreadMethod) newThread.Start() ' The following line causes an exception to be thrown ' in ThreadMethod if newThread is currently blocked ' or becomes blocked in the future. newThread.Interrupt() Console.WriteLine("Main thread calls Interrupt on newThread.") ' Tell newThread to go to sleep. stayAwake.SleepSwitch = True ' Wait for newThread to end. newThread.Join() End Sub End Class Public Class StayAwake Dim sleepSwitchValue As Boolean = False WriteOnly Property SleepSwitch As Boolean Set sleepSwitchValue = Value End Set End Property Sub New() End Sub Sub ThreadMethod() Console.WriteLine("newThread is executing ThreadMethod.") While Not sleepSwitchValue ' Use SpinWait instead of Sleep to demonstrate the ' effect of calling Interrupt on a running thread. Thread.SpinWait(10000000) End While Try Console.WriteLine("newThread going to sleep.") ' When newThread goes to sleep, it is immediately ' woken up by a ThreadInterruptedException. Thread.Sleep(Timeout.Infinite) Catch ex As ThreadInterruptedException Console.WriteLine("newThread cannot go to " & _ "sleep - interrupted by main thread.") End Try End Sub End Class
using System; using System.Security.Permissions; using System.Threading; [assembly: SecurityPermissionAttribute(SecurityAction.RequestMinimum, ControlThread = true)] class ThreadInterrupt { static void Main() { StayAwake stayAwake = new StayAwake(); Thread newThread = new Thread(new ThreadStart(stayAwake.ThreadMethod)); newThread.Start(); // The following line causes an exception to be thrown // in ThreadMethod if newThread is currently blocked // or becomes blocked in the future. newThread.Interrupt(); Console.WriteLine("Main thread calls Interrupt on newThread."); // Tell newThread to go to sleep. stayAwake.SleepSwitch = true; // Wait for newThread to end. newThread.Join(); } } class StayAwake { bool sleepSwitch = false; public bool SleepSwitch { set{ sleepSwitch = value; } } public StayAwake(){} public void ThreadMethod() { Console.WriteLine("newThread is executing ThreadMethod."); while(!sleepSwitch) { // Use SpinWait instead of Sleep to demonstrate the // effect of calling Interrupt on a running thread. Thread.SpinWait(10000000); } try { Console.WriteLine("newThread going to sleep."); // When newThread goes to sleep, it is immediately // woken up by a ThreadInterruptedException. Thread.Sleep(Timeout.Infinite); } catch(ThreadInterruptedException e) { Console.WriteLine("newThread cannot go to sleep - " + "interrupted by main thread."); } } }
using namespace System; using namespace System::Security::Permissions; using namespace System::Threading; [assembly:SecurityPermissionAttribute(SecurityAction::RequestMinimum, ControlThread=true)]; ref class StayAwake { private: bool sleepSwitch; public: property bool SleepSwitch { void set( bool value ) { sleepSwitch = value; } } StayAwake() { sleepSwitch = false; } void ThreadMethod() { Console::WriteLine( "newThread is executing ThreadMethod." ); while ( !sleepSwitch ) { // Use SpinWait instead of Sleep to demonstrate the // effect of calling Interrupt on a running thread. Thread::SpinWait( 10000000 ); } try { Console::WriteLine( "newThread going to sleep." ); // When newThread goes to sleep, it is immediately // woken up by a ThreadInterruptedException. Thread::Sleep( Timeout::Infinite ); } catch ( ThreadInterruptedException^ /*e*/ ) { Console::WriteLine( "newThread cannot go to sleep - " "interrupted by main thread." ); } } }; int main() { StayAwake^ stayAwake = gcnew StayAwake; Thread^ newThread = gcnew Thread( gcnew ThreadStart( stayAwake, &StayAwake::ThreadMethod ) ); newThread->Start(); // The following line causes an exception to be thrown // in ThreadMethod if newThread is currently blocked // or becomes blocked in the future. newThread->Interrupt(); Console::WriteLine( "Main thread calls Interrupt on newThread." ); // Then tell newThread to go to sleep. stayAwake->SleepSwitch = true; // Wait for newThread to end. newThread->Join(); }
import System.*; import System.Security.Permissions.*; import System.Threading.*; import System.Threading.Thread; /** @assembly SecurityPermissionAttribute(SecurityAction.RequestMinimum, ControlThread = true) */ class ThreadInterrupt { public static void main(String[] args) { StayAwake stayAwake = new StayAwake(); Thread newThread = new Thread(new ThreadStart(stayAwake.ThreadMethod)); newThread.Start(); // The following line causes an exception to be thrown // in ThreadMethod if newThread is currently blocked // or becomes blocked in the future. newThread.Interrupt(); Console.WriteLine("Main thread calls Interrupt on newThread."); // Tell newThread to go to sleep. stayAwake.set_SleepSwitch(true); // Wait for newThread to end. newThread.Join(); } //main } //ThredInterrupt class StayAwake { private boolean sleepSwitch = false; /** @property */ public void set_SleepSwitch(boolean value) { sleepSwitch = value; } //set_SleepSwitch public StayAwake() { } //StayAwake public void ThreadMethod() { Console.WriteLine("newThread is executing ThreadMethod."); while (!(sleepSwitch)) { // Use SpinWait instead of Sleep to demonstrate the // effect of calling Interrupt on a running thread. Thread.SpinWait(10000000); } try { Console.WriteLine("newThread going to sleep."); // When newThread goes to sleep, it is immediately // woken up by a ThreadInterruptedException. Thread.Sleep(Timeout.Infinite); } catch (ThreadInterruptedException e) { Console.WriteLine(("newThread cannot go to sleep - " + "nterrupted by main thread.")); } } //ThreadMethod } //StayAwake

System.Threading.Timeout


Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Timeout フィールド
Timeout メソッド

名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 ( Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 ( Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 ( Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 ( Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 ( Object から継承されます。) |

Timeout メンバ
無期限の時間を指定するために使用される定数を含みます。このクラスは継承できません。
Timeout データ型で公開されるメンバを以下の表に示します。


名前 | 説明 | |
---|---|---|
![]() | Equals | オーバーロードされます。 2 つの Object インスタンスが等しいかどうかを判断します。 (Object から継承されます。) |
![]() | GetHashCode | 特定の型のハッシュ関数として機能します。GetHashCode は、ハッシュ アルゴリズムや、ハッシュ テーブルのようなデータ構造での使用に適しています。 (Object から継承されます。) |
![]() | GetType | 現在のインスタンスの Type を取得します。 (Object から継承されます。) |
![]() | ReferenceEquals | 指定した複数の Object インスタンスが同一かどうかを判断します。 (Object から継承されます。) |
![]() | ToString | 現在の Object を表す String を返します。 (Object から継承されます。) |

Time Out!
出典: フリー百科事典『ウィキペディア(Wikipedia)』 (2021/08/31 14:23 UTC 版)
ナビゲーションに移動 検索に移動『Time Out!』 | ||||
---|---|---|---|---|
佐野元春 の スタジオ・アルバム | ||||
リリース | ||||
録音 |
サウンドシティ 音響ハウス | |||
ジャンル | ロック | |||
レーベル |
EPIC/SONY RECORDS M's Factory | |||
プロデュース |
MOTO‘Lion’SANO, COLIN FAIRLEY 吉野金次(#3) | |||
チャート最高順位 | ||||
| ||||
佐野元春 アルバム 年表 | ||||
| ||||
『Time Out!』収録のシングル | ||||
『Time Out!』(タイム・アウト!)は、1990年11月9日にEPIC/SONY RECORDS / M's Factoryから発売された佐野元春の7枚目のアルバム。
概要
前作『ナポレオンフィッシュと泳ぐ日』から1年半振りのアルバム。前作は全ての工程をイギリスで行ったが、今作はミックスダウンとマスタリングのみイギリス、レコーディングを東京で行った。
コリン・フェアリーがプロデューサーとして引き続き参加し、今作は全曲「THE HEARTLAND」による演奏でのレコーディングが行われた。
アートワークはデジパック仕様、ブックレットは歌詞のみが記載されたシンプルな装丁である。
2016年3月23日に、Blu-specCD2でリリースされた[1]。
収録曲
全作詞・作曲・編曲:佐野元春
- ぼくは大人になった[注 1] -A Big Boy Now-[注 2] [3:42]
- 1991年4月10日にシングルカットされた。
- クエスチョンズ -Questions- [2:45]
- 君を待っている -Waiting For You- [3:12]
- ジャスミンガール -Jasmine Girl- [3:44]
- 先行シングル。
- サニーデイ -One Sunny Day- [3:21]
- 夏の地球 -Love Planets- [3:33]
- ビッグタイム -Big Time- [4:40]
- 彼女が自由に踊るとき -When She Danced- [3:59]
- 恋する男 -A Man In Love- [3:32]
- 1991年8月28日リリースのベスト・アルバム『Slow Songs』にも収録。
- ガンボ -Happy Gumbo- [3:31]
- 空よりも高く -Home- [6:56]
- 『ジャスミンガール』カップリング曲。
脚注
注釈
出典
- ^ “Time Out!【Blu-specCD2】” (日本語). 佐野元春 | ソニーミュージックオフィシャルサイト. 2021年4月19日閲覧。
- ^ タイム・アウト!
外部リンク
- Time Out! - 佐野元春公式サイト
タイムアウト (曖昧さ回避)
タイムアウト(time out)
- タイムアウト - スポーツにおける競技休止時間。
- タイムアウト (コンピュータ) - コンピュータ用語で時間切れ。データ処理などに長時間要する場合、途中で打ち切り終了すること。
- タイムアウト (医学) - 医療用語。執刀前に手を止めて執刀医が患者、手術部位、術式を声に出して確認すること。
- タイムアウト (雑誌) - イギリスのフリーペーパー。
- タイムアウト (育児) - 欧米で行われる躾の方法。一定年齢以上の子どもを落ち着かせたり自己の行動を反省させるため、または親や教師が怒りを収めたり対処方法を考える時間を持つために、子どもを所定の場所で一定時間じっとさせておくこと。
「Time Out!」の例文・使い方・用例・文例
- The Malay Times に掲載されていた、非常勤の下級アナリストの職に関する広告についてご連絡を差し上げています。
- 彼女の15 冊の出版物のうち10 冊が、Brooklyn Timesのベストセラーリストの首位を占めたという事実は、多くの人々が彼女のことを、肥満に苦しむ国の救済者だと考えている証拠である。
- 最近着の London Times に曰く
- オックスフォード運動の創設者の原則で、『Tracts for the Times』と呼ばれるパンフレットで提唱された
「Timeout」に関係したコラム
-
FX(外国為替証拠金取引)のチャート分析ソフトMT4(Meta Trader 4)では、テクニカル指標でサインが発生した時や売買が約定した時などにアラームが鳴ります。アラームは、ユーザーが自由に設定で...
- Timeoutのページへのリンク