File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed
plugins/plugin-codeflare/src/controller/events Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change 11cask "codeflare" do
2- version "0.0.30 "
2+ version "0.0.31 "
33
44 name "CodeFlare"
55 desc "CLI for Project CodeFlare"
66 homepage "https://github.com/project-codeflare/codeflare-cli"
77
88 if Hardware ::CPU . intel?
99 url "https://github.com/project-codeflare/codeflare-cli/releases/download/v#{ version } /CodeFlare-darwin-x64.tar.bz2"
10- sha256 "6e797c650af086a0f05499230df6c9574940ccc1af66a5d600b4a866764faa0b "
10+ sha256 "f638e7994f12ed050a8c03da16549ec2f3e15280f1a63f3733630d6608b0bb56 "
1111 app "CodeFlare-darwin-x64/CodeFlare.app"
1212 else
1313 url "https://github.com/project-codeflare/codeflare-cli/releases/download/v#{ version } /CodeFlare-darwin-arm64.tar.bz2"
14- sha256 "d325f31396cfc89396b1549428b79d13f02bc478a41c6037437fdabf61e65a4b "
14+ sha256 "bd8b3207a1d14f1e0c9444615d403f36dd44515a9d8e0d223e872e62f1f96bf7 "
1515 app "CodeFlare-darwin-arm64/CodeFlare.app"
1616 end
1717
Original file line number Diff line number Diff line change @@ -32,10 +32,19 @@ interface EventState {
3232}
3333
3434type State = EventState & {
35+ /** Total number of Kubernetes events */
3536 nKubeEvents : number
37+
38+ /** Subset of Kubernetes events with `state != Pending`, i.e. `InProgress | Done | Error` */
3639 nNotPendingKubeEvents : number
40+
41+ /** Total number of Torch events */
3742 nTorchEvents : number
43+
44+ /** Subset of Torch events with `state != Pending`, i.e. `InProgress | Done | Error` */
3845 nNotPendingTorchEvents : number
46+
47+ /** Oops, something went wrong */
3948 catastrophicError ?: Error
4049}
4150
@@ -50,6 +59,11 @@ type Props = EventState & {
5059 unwatch ?( ) : void
5160}
5261
62+ /**
63+ * This component manages the `Event` state for the events UI. It uses
64+ * the `Grid` component to render the UI.
65+ *
66+ */
5367class Events extends React . PureComponent < Props , State > {
5468 public constructor ( props : Props ) {
5569 super ( props )
You can’t perform that action at this time.
0 commit comments