RemoteServicesAgentInformation["agent"]
agent に関する情報を返す.
RemoteServicesAgentInformation[]
ローカルネットワーク上のエージェントの情報を返す.
詳細とオプション
例題
例
スコープ
関連項目
テクニカルノート
関連するガイド
LightweightGridClient`
LightweightGridClient`
RemoteServicesAgentInformation
RemoteServicesAgentInformation["agent"]
agent に関する情報を返す.
RemoteServicesAgentInformation[]
ローカルネットワーク上のエージェントの情報を返す.
例題
すべて開く すべて閉じる例 (1)
スコープ (1)
コンピュータのオペレーティングシステムとインストールされている物理メモリの量を確認する:
Select[First[RemoteServicesAgentInformation["octet"]], MatchQ[#, ("OperatingSystem" | "PhysicalMemory") -> _]&]コンピュータがアイドル状態で新たなカーネルが軌道可能かどうかを調べる:
Select[First[RemoteServicesAgentInformation["octet"]], MatchQ[#, ("LaunchEnabled" | "DefaultServiceEnabled" | "KernelsRunning") -> _]&]agents = RemoteServicesAgentInformation[]readyagents = Cases[agents, RemoteServicesAgent[{___, "KernelsRunning" -> {}, ___}]]RemoteKernelOpen[readyagents]