Skip to content

Commit b7100c2

Browse files
committed
chore: bump sha256sums for 0.0.31
1 parent cba54c1 commit b7100c2

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

Casks/codeflare.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
cask "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

plugins/plugin-codeflare/src/controller/events/Events.tsx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,19 @@ interface EventState {
3232
}
3333

3434
type 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+
*/
5367
class Events extends React.PureComponent<Props, State> {
5468
public constructor(props: Props) {
5569
super(props)

0 commit comments

Comments
 (0)