Unnamed: 0 int64 0 832k | id float64 2.49B 32.1B | type stringclasses 1 value | created_at stringlengths 19 19 | repo stringlengths 4 112 | repo_url stringlengths 33 141 | action stringclasses 3 values | title stringlengths 1 1.02k | labels stringlengths 4 1.54k | body stringlengths 1 262k | index stringclasses 17 values | text_combine stringlengths 95 262k | label stringclasses 2 values | text stringlengths 96 252k | binary_label int64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
187,543 | 14,428,231,995 | IssuesEvent | 2020-12-06 08:45:40 | kalexmills/github-vet-tests-dec2020 | https://api.github.com/repos/kalexmills/github-vet-tests-dec2020 | closed | PaulForgey/go-old: src/encoding/base32/base32_test.go; 18 LoC | fresh small test |
Found a possible issue in [PaulForgey/go-old](https://www.github.com/PaulForgey/go-old) at [src/encoding/base32/base32_test.go](https://github.com/PaulForgey/go-old/blob/24343cb88640ae1e7dbfc4ec2f3ae81fc0aa07c7/src/encoding/base32/base32_test.go#L610-L627)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> range-loop variable chunks used in defer or goroutine at line 615
[Click here to see the code in its original context.](https://github.com/PaulForgey/go-old/blob/24343cb88640ae1e7dbfc4ec2f3ae81fc0aa07c7/src/encoding/base32/base32_test.go#L610-L627)
<details>
<summary>Click here to show the 18 line(s) of Go which triggered the analyzer.</summary>
```go
for _, chunks := range testcase.chunkCombinations {
pr, pw := io.Pipe()
// Write the encoded chunks into the pipe
go func() {
for _, chunk := range chunks {
pw.Write([]byte(chunk))
}
pw.Close()
}()
decoder := NewDecoder(StdEncoding, pr)
_, err := ioutil.ReadAll(decoder)
if err != testcase.expected {
t.Errorf("Expected %v, got %v; case %s %+v", testcase.expected, err, testcase.prefix, chunks)
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 24343cb88640ae1e7dbfc4ec2f3ae81fc0aa07c7
| 1.0 | PaulForgey/go-old: src/encoding/base32/base32_test.go; 18 LoC -
Found a possible issue in [PaulForgey/go-old](https://www.github.com/PaulForgey/go-old) at [src/encoding/base32/base32_test.go](https://github.com/PaulForgey/go-old/blob/24343cb88640ae1e7dbfc4ec2f3ae81fc0aa07c7/src/encoding/base32/base32_test.go#L610-L627)
Below is the message reported by the analyzer for this snippet of code. Beware that the analyzer only reports the first
issue it finds, so please do not limit your consideration to the contents of the below message.
> range-loop variable chunks used in defer or goroutine at line 615
[Click here to see the code in its original context.](https://github.com/PaulForgey/go-old/blob/24343cb88640ae1e7dbfc4ec2f3ae81fc0aa07c7/src/encoding/base32/base32_test.go#L610-L627)
<details>
<summary>Click here to show the 18 line(s) of Go which triggered the analyzer.</summary>
```go
for _, chunks := range testcase.chunkCombinations {
pr, pw := io.Pipe()
// Write the encoded chunks into the pipe
go func() {
for _, chunk := range chunks {
pw.Write([]byte(chunk))
}
pw.Close()
}()
decoder := NewDecoder(StdEncoding, pr)
_, err := ioutil.ReadAll(decoder)
if err != testcase.expected {
t.Errorf("Expected %v, got %v; case %s %+v", testcase.expected, err, testcase.prefix, chunks)
}
}
```
</details>
Leave a reaction on this issue to contribute to the project by classifying this instance as a **Bug** :-1:, **Mitigated** :+1:, or **Desirable Behavior** :rocket:
See the descriptions of the classifications [here](https://github.com/github-vet/rangeclosure-findings#how-can-i-help) for more information.
commit ID: 24343cb88640ae1e7dbfc4ec2f3ae81fc0aa07c7
| test | paulforgey go old src encoding test go loc found a possible issue in at below is the message reported by the analyzer for this snippet of code beware that the analyzer only reports the first issue it finds so please do not limit your consideration to the contents of the below message range loop variable chunks used in defer or goroutine at line click here to show the line s of go which triggered the analyzer go for chunks range testcase chunkcombinations pr pw io pipe write the encoded chunks into the pipe go func for chunk range chunks pw write byte chunk pw close decoder newdecoder stdencoding pr err ioutil readall decoder if err testcase expected t errorf expected v got v case s v testcase expected err testcase prefix chunks leave a reaction on this issue to contribute to the project by classifying this instance as a bug mitigated or desirable behavior rocket see the descriptions of the classifications for more information commit id | 1 |
120,428 | 10,115,891,245 | IssuesEvent | 2019-07-30 23:26:20 | jalena-penaligon/koroibos | https://api.github.com/repos/jalena-penaligon/koroibos | opened | Feature Test for api/v1/events/:id/medalists | medalists testing | User visits GET api/v1/events/:id/medalists
Expect response to be successful
Expect page to have a hash with event as a key, and the event name as the value. Expect hash to have medalists as a key, with an array of medal winner objects as the value.
Medal winner objects should include keys: name, team, age and medal | 1.0 | Feature Test for api/v1/events/:id/medalists - User visits GET api/v1/events/:id/medalists
Expect response to be successful
Expect page to have a hash with event as a key, and the event name as the value. Expect hash to have medalists as a key, with an array of medal winner objects as the value.
Medal winner objects should include keys: name, team, age and medal | test | feature test for api events id medalists user visits get api events id medalists expect response to be successful expect page to have a hash with event as a key and the event name as the value expect hash to have medalists as a key with an array of medal winner objects as the value medal winner objects should include keys name team age and medal | 1 |
15,086 | 2,847,400,402 | IssuesEvent | 2015-05-29 16:45:01 | Hellmark/glidenote | https://api.github.com/repos/Hellmark/glidenote | opened | [Windows] Sometimes does not remain on top. | bug Type-Defect | On Windows systems, sometimes there is an issue where the window for Glidenote does not remain always on top, getting covered by other applications. Exiting and restarting often fixes this. | 1.0 | [Windows] Sometimes does not remain on top. - On Windows systems, sometimes there is an issue where the window for Glidenote does not remain always on top, getting covered by other applications. Exiting and restarting often fixes this. | non_test | sometimes does not remain on top on windows systems sometimes there is an issue where the window for glidenote does not remain always on top getting covered by other applications exiting and restarting often fixes this | 0 |
228,486 | 18,237,565,341 | IssuesEvent | 2021-10-01 08:54:23 | mozilla-mobile/fenix | https://api.github.com/repos/mozilla-mobile/fenix | closed | Intermittent UI test failure - <HomeScreenTest.toolbarTapDoesntDismissOnboardingTest> | eng:intermittent-test eng:ui-test | ### Firebase Test Run: [Firebase link](https://console.firebase.google.com/project/moz-fenix/testlab/histories/bh.66b7091e15d53d45/matrices/8126722461576627932/executions/bs.65312591e8e083dd/testcases/1/test-cases)
### Stacktrace:
androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: (with text: is "Welcome to Firefox Preview!")
View Hierarchy:
+>DecorView{id=-1, visibility=VISIBLE, width=1080, height=1920, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params={(0,0)(fillxfill) gr=CENTER sim={adjust=resize} ty=APPLICATION fmt=TRANSPARENT
fl=LAYOUT_IN_SCREEN LAYOUT_INSET_DECOR HARDWARE_ACCELERATED TRANSLUCENT_NAVIGATION DRAWS_SYSTEM_BAR_BACKGROUNDS
pfl=FORCE_DRAW_STATUS_BAR_BACKGROUND}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+->LinearLayout{id=-1, visibility=VISIBLE, width=1080, height=1920, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@55d221a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2}
|
+-->ViewStub{id=16908682, res-name=action_mode_bar_stub, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@327a14b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+-->FrameLayout{id=16908290, res-name=content, visibility=VISIBLE, width=1080, height=1920, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@606b728, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+--->ConstraintLayout{id=2131362895, res-name=search_wrapper, visibility=VISIBLE, width=1080, height=1920, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@30f4340, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=14}
|
+---->BrowserToolbar{id=2131363098, res-name=toolbar, desc=Google, Search or enter address, visibility=VISIBLE, width=1080, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@77d5279, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1634.0, child-count=2}
|
+----->DisplayToolbarView{id=-1, visibility=GONE, width=1080, height=154, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1f4a404, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=12}
|
+------>ActionContainer{id=2131362623, res-name=mozac_browser_toolbar_navigation_actions, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@e3b3ded, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0}
|
+------>AppCompatImageView{id=2131362614, res-name=mozac_browser_toolbar_background, visibility=INVISIBLE, width=1058, height=110, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@e65c422, tag=null, root-is-layout-requested=false, has-input-connection=false, x=22.0, y=22.0}
|
+------>AppCompatImageView{id=2131362621, res-name=mozac_browser_toolbar_empty_indicator, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@7630eb3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>TrackingProtectionIconView{id=2131362631, res-name=mozac_browser_toolbar_tracking_protection_indicator, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@519fc70, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>AppCompatImageView{id=2131362629, res-name=mozac_browser_toolbar_separator, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@59acbe9, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>SiteSecurityIconView{id=2131362628, res-name=mozac_browser_toolbar_security_indicator, desc=Site information, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@c40006e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>HighlightView{id=2131362626, res-name=mozac_browser_toolbar_permission_indicator, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@a75e30f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>OriginView{id=2131362624, res-name=mozac_browser_toolbar_origin_view, visibility=VISIBLE, width=1036, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@64b3da5, tag=null, root-is-layout-requested=false, has-input-connection=false, x=44.0, y=22.0, child-count=2}
|
+------->TextView{id=2131362630, res-name=mozac_browser_toolbar_title_view, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@d6fb57a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=, input-type=0, ime-target=false, has-links=false}
|
+------->TextView{id=2131362632, res-name=mozac_browser_toolbar_url_view, visibility=VISIBLE, width=1036, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@837a12b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=, input-type=0, ime-target=false, has-links=false}
|
+------>ActionContainer{id=2131362625, res-name=mozac_browser_toolbar_page_actions, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@50ce988, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0}
|
+------>ActionContainer{id=2131362615, res-name=mozac_browser_toolbar_browser_actions, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@cd70f21, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0}
|
+------>MenuButton{id=2131362622, res-name=mozac_browser_toolbar_menu, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@9f47c5d, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=3}
|
+------->AppCompatImageView{id=2131362423, res-name=highlight, desc=Highlighted, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@7eb79d2, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------->AppCompatImageView{id=2131362452, res-name=icon, desc=Menu, visibility=VISIBLE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@8cd0aa3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------->AppCompatImageView{id=2131362717, res-name=notification_dot, desc=Highlighted, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@59d61a0, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>ProgressBar{id=2131362627, res-name=mozac_browser_toolbar_progress, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@9818159, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+----->ConstraintLayout{id=2131362617, res-name=mozac_browser_toolbar_container, visibility=VISIBLE, width=1080, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@e1badff, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=5}
|
+------>AppCompatImageView{id=2131362614, res-name=mozac_browser_toolbar_background, visibility=VISIBLE, width=1036, height=110, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@306f7cc, tag=null, root-is-layout-requested=false, has-input-connection=false, x=22.0, y=22.0}
|
+------>AppCompatImageView{id=2131362619, res-name=mozac_browser_toolbar_edit_icon, desc=Google, visibility=VISIBLE, width=110, height=110, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@d3fda15, tag=null, root-is-layout-requested=false, has-input-connection=false, x=22.0, y=22.0}
|
+------>InlineAutocompleteEditText{id=2131362620, res-name=mozac_browser_toolbar_edit_url_view, visibility=VISIBLE, width=816, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@7872b1b, tag=null, root-is-layout-requested=false, has-input-connection=true, editor-info=[inputType=0x11 imeOptions=0x12000002 privateImeOptions=null actionLabel=null actionId=0 initialSelStart=0 initialSelEnd=0 initialCapsMode=0x0 hintText=Search or enter address label=null packageName=null fieldId=0 fieldName=null extras=Bundle[{androidx.core.view.inputmethod.EditorInfoCompat.CONTENT_SELECTION_HEAD=0, androidx.core.view.inputmethod.EditorInfoCompat.CONTENT_SELECTION_END=0, androidx.core.view.inputmethod.EditorInfoCompat.CONTENT_SURROUNDING_TEXT=}] hintLocales=null contentMimeTypes=null ], x=132.0, y=22.0, text=, hint=Search or enter address, input-type=17, ime-target=true, has-links=false}
|
+------>ActionContainer{id=2131362618, res-name=mozac_browser_toolbar_edit_actions, visibility=VISIBLE, width=110, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@591c4b8, tag=null, root-is-layout-requested=false, has-input-connection=false, x=948.0, y=22.0, child-count=1}
|
+------->AppCompatImageButton{id=-1, desc=Voice search, visibility=VISIBLE, width=110, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@7510291, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>AppCompatImageView{id=2131362616, res-name=mozac_browser_toolbar_clear_view, desc=Clear, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@96c75f6, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->ViewStub{id=2131362892, res-name=search_suggestions_hint, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@1635df7, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->View{id=2131362893, res-name=search_suggestions_hint_divider, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@1fa7464, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->Barrier{id=2131362888, res-name=search_hint_bottom_barrier, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@7236cd, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=66.0}
|
+---->AwesomeBarWrapper{id=2131362060, res-name=awesome_bar, visibility=INVISIBLE, width=1080, height=1458, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@ce1fb82, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=66.0, child-count=1}
|
+----->AndroidComposeView{id=-1, visibility=VISIBLE, width=1080, height=1458, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f65e293, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+------>ViewLayerContainer{id=-1, visibility=VISIBLE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@a1c72d0, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2}
|
+------->ViewLayer{id=4, visibility=VISIBLE, width=1080, height=1458, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@5f872c9, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------->ViewLayer{id=5, visibility=VISIBLE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@e384dce, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->View{id=2131362381, res-name=fill_link_from_clipboard, desc=Fill link from clipboard, ., visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@10214ef, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->AppCompatImageView{id=2131362544, res-name=link_icon, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@1debfc, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->AppCompatTextView{id=2131362166, res-name=clipboard_title, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@b8c7285, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=Fill link from clipboard, input-type=0, ime-target=false, has-links=false}
|
+---->AppCompatTextView{id=2131362167, res-name=clipboard_url, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@d8f78da, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=, input-type=0, ime-target=false, has-links=false}
|
+---->View{id=2131362380, res-name=fill_link_divider, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@f85110b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->View{id=2131362770, res-name=pill_wrapper_divider, visibility=VISIBLE, width=1080, height=3, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@5bcbe8, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1521.0}
|
+---->View{id=2131362769, res-name=pill_wrapper, visibility=VISIBLE, width=1080, height=110, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@ca6b201, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1524.0}
|
+---->AppCompatToggleButton{id=2131362792, res-name=qr_scan_button, visibility=VISIBLE, width=241, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@afc48a6, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1524.0, text=Scan, input-type=0, ime-target=false, has-links=false, is-checked=false}
|
+---->AppCompatToggleButton{id=2131362886, res-name=search_engines_shortcut_button, visibility=VISIBLE, width=404, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@1f1b2e7, tag=null, root-is-layout-requested=false, has-input-connection=false, x=241.0, y=1524.0, text=Search engine, input-type=0, ime-target=false, has-links=false, is-checked=false}
|
at dalvik.system.VMStack.getThreadStackTrace(Native Method)
at java.lang.Thread.getStackTrace(Thread.java:1538)
at androidx.test.espresso.base.DefaultFailureHandler.getUserFriendlyError(DefaultFailureHandler.java:16)
at androidx.test.espresso.base.DefaultFailureHandler.handle(DefaultFailureHandler.java:36)
at androidx.test.espresso.ViewInteraction.waitForAndHandleInteractionResults(ViewInteraction.java:106)
at androidx.test.espresso.ViewInteraction.check(ViewInteraction.java:31)
at org.mozilla.fenix.ui.robots.HomeScreenRobotKt.assertWelcomeHeader(HomeScreenRobot.kt:417)
at org.mozilla.fenix.ui.robots.HomeScreenRobotKt.access$assertWelcomeHeader(HomeScreenRobot.kt:1)
at org.mozilla.fenix.ui.robots.HomeScreenRobot.verifyWelcomeHeader(HomeScreenRobot.kt:84)
at org.mozilla.fenix.ui.HomeScreenTest$toolbarTapDoesntDismissOnboardingTest$3.invoke(HomeScreenTest.kt:139)
at org.mozilla.fenix.ui.HomeScreenTest$toolbarTapDoesntDismissOnboardingTest$3.invoke(HomeScreenTest.kt:138)
at org.mozilla.fenix.ui.robots.SearchRobot$Transition.dismissSearchBar(SearchRobot.kt:173)
at org.mozilla.fenix.ui.HomeScreenTest.toolbarTapDoesntDismissOnboardingTest(HomeScreenTest.kt:138)
at java.lang.reflect.Method.invoke(Native Method)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at androidx.test.rule.ActivityTestRule$ActivityStatement.evaluate(ActivityTestRule.java:531)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at org.junit.runner.JUnitCore.run(JUnitCore.java:115)
at androidx.test.internal.runner.TestExecutor.execute(TestExecutor.java:56)
at androidx.test.runner.AndroidJUnitRunner.onStart(AndroidJUnitRunner.java:395)
at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:2145)
### Build: 9/23 Main
| 2.0 | Intermittent UI test failure - <HomeScreenTest.toolbarTapDoesntDismissOnboardingTest> - ### Firebase Test Run: [Firebase link](https://console.firebase.google.com/project/moz-fenix/testlab/histories/bh.66b7091e15d53d45/matrices/8126722461576627932/executions/bs.65312591e8e083dd/testcases/1/test-cases)
### Stacktrace:
androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: (with text: is "Welcome to Firefox Preview!")
View Hierarchy:
+>DecorView{id=-1, visibility=VISIBLE, width=1080, height=1920, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params={(0,0)(fillxfill) gr=CENTER sim={adjust=resize} ty=APPLICATION fmt=TRANSPARENT
fl=LAYOUT_IN_SCREEN LAYOUT_INSET_DECOR HARDWARE_ACCELERATED TRANSLUCENT_NAVIGATION DRAWS_SYSTEM_BAR_BACKGROUNDS
pfl=FORCE_DRAW_STATUS_BAR_BACKGROUND}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+->LinearLayout{id=-1, visibility=VISIBLE, width=1080, height=1920, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@55d221a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2}
|
+-->ViewStub{id=16908682, res-name=action_mode_bar_stub, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@327a14b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+-->FrameLayout{id=16908290, res-name=content, visibility=VISIBLE, width=1080, height=1920, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@606b728, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+--->ConstraintLayout{id=2131362895, res-name=search_wrapper, visibility=VISIBLE, width=1080, height=1920, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@30f4340, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=14}
|
+---->BrowserToolbar{id=2131363098, res-name=toolbar, desc=Google, Search or enter address, visibility=VISIBLE, width=1080, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@77d5279, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1634.0, child-count=2}
|
+----->DisplayToolbarView{id=-1, visibility=GONE, width=1080, height=154, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@1f4a404, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=12}
|
+------>ActionContainer{id=2131362623, res-name=mozac_browser_toolbar_navigation_actions, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@e3b3ded, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0}
|
+------>AppCompatImageView{id=2131362614, res-name=mozac_browser_toolbar_background, visibility=INVISIBLE, width=1058, height=110, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@e65c422, tag=null, root-is-layout-requested=false, has-input-connection=false, x=22.0, y=22.0}
|
+------>AppCompatImageView{id=2131362621, res-name=mozac_browser_toolbar_empty_indicator, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@7630eb3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>TrackingProtectionIconView{id=2131362631, res-name=mozac_browser_toolbar_tracking_protection_indicator, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@519fc70, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>AppCompatImageView{id=2131362629, res-name=mozac_browser_toolbar_separator, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@59acbe9, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>SiteSecurityIconView{id=2131362628, res-name=mozac_browser_toolbar_security_indicator, desc=Site information, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@c40006e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>HighlightView{id=2131362626, res-name=mozac_browser_toolbar_permission_indicator, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@a75e30f, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>OriginView{id=2131362624, res-name=mozac_browser_toolbar_origin_view, visibility=VISIBLE, width=1036, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@64b3da5, tag=null, root-is-layout-requested=false, has-input-connection=false, x=44.0, y=22.0, child-count=2}
|
+------->TextView{id=2131362630, res-name=mozac_browser_toolbar_title_view, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@d6fb57a, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=, input-type=0, ime-target=false, has-links=false}
|
+------->TextView{id=2131362632, res-name=mozac_browser_toolbar_url_view, visibility=VISIBLE, width=1036, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@837a12b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=, input-type=0, ime-target=false, has-links=false}
|
+------>ActionContainer{id=2131362625, res-name=mozac_browser_toolbar_page_actions, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@50ce988, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0}
|
+------>ActionContainer{id=2131362615, res-name=mozac_browser_toolbar_browser_actions, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@cd70f21, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=0}
|
+------>MenuButton{id=2131362622, res-name=mozac_browser_toolbar_menu, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@9f47c5d, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=3}
|
+------->AppCompatImageView{id=2131362423, res-name=highlight, desc=Highlighted, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@7eb79d2, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------->AppCompatImageView{id=2131362452, res-name=icon, desc=Menu, visibility=VISIBLE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@8cd0aa3, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------->AppCompatImageView{id=2131362717, res-name=notification_dot, desc=Highlighted, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.widget.FrameLayout$LayoutParams@59d61a0, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>ProgressBar{id=2131362627, res-name=mozac_browser_toolbar_progress, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@9818159, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+----->ConstraintLayout{id=2131362617, res-name=mozac_browser_toolbar_container, visibility=VISIBLE, width=1080, height=154, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@e1badff, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=5}
|
+------>AppCompatImageView{id=2131362614, res-name=mozac_browser_toolbar_background, visibility=VISIBLE, width=1036, height=110, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@306f7cc, tag=null, root-is-layout-requested=false, has-input-connection=false, x=22.0, y=22.0}
|
+------>AppCompatImageView{id=2131362619, res-name=mozac_browser_toolbar_edit_icon, desc=Google, visibility=VISIBLE, width=110, height=110, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@d3fda15, tag=null, root-is-layout-requested=false, has-input-connection=false, x=22.0, y=22.0}
|
+------>InlineAutocompleteEditText{id=2131362620, res-name=mozac_browser_toolbar_edit_url_view, visibility=VISIBLE, width=816, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@7872b1b, tag=null, root-is-layout-requested=false, has-input-connection=true, editor-info=[inputType=0x11 imeOptions=0x12000002 privateImeOptions=null actionLabel=null actionId=0 initialSelStart=0 initialSelEnd=0 initialCapsMode=0x0 hintText=Search or enter address label=null packageName=null fieldId=0 fieldName=null extras=Bundle[{androidx.core.view.inputmethod.EditorInfoCompat.CONTENT_SELECTION_HEAD=0, androidx.core.view.inputmethod.EditorInfoCompat.CONTENT_SELECTION_END=0, androidx.core.view.inputmethod.EditorInfoCompat.CONTENT_SURROUNDING_TEXT=}] hintLocales=null contentMimeTypes=null ], x=132.0, y=22.0, text=, hint=Search or enter address, input-type=17, ime-target=true, has-links=false}
|
+------>ActionContainer{id=2131362618, res-name=mozac_browser_toolbar_edit_actions, visibility=VISIBLE, width=110, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@591c4b8, tag=null, root-is-layout-requested=false, has-input-connection=false, x=948.0, y=22.0, child-count=1}
|
+------->AppCompatImageButton{id=-1, desc=Voice search, visibility=VISIBLE, width=110, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@7510291, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------>AppCompatImageView{id=2131362616, res-name=mozac_browser_toolbar_clear_view, desc=Clear, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@96c75f6, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->ViewStub{id=2131362892, res-name=search_suggestions_hint, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@1635df7, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->View{id=2131362893, res-name=search_suggestions_hint_divider, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@1fa7464, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->Barrier{id=2131362888, res-name=search_hint_bottom_barrier, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@7236cd, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=66.0}
|
+---->AwesomeBarWrapper{id=2131362060, res-name=awesome_bar, visibility=INVISIBLE, width=1080, height=1458, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@ce1fb82, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=66.0, child-count=1}
|
+----->AndroidComposeView{id=-1, visibility=VISIBLE, width=1080, height=1458, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@f65e293, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+------>ViewLayerContainer{id=-1, visibility=VISIBLE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@a1c72d0, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=2}
|
+------->ViewLayer{id=4, visibility=VISIBLE, width=1080, height=1458, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@5f872c9, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+------->ViewLayer{id=5, visibility=VISIBLE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=android.view.ViewGroup$LayoutParams@e384dce, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->View{id=2131362381, res-name=fill_link_from_clipboard, desc=Fill link from clipboard, ., visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@10214ef, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->AppCompatImageView{id=2131362544, res-name=link_icon, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@1debfc, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->AppCompatTextView{id=2131362166, res-name=clipboard_title, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@b8c7285, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=Fill link from clipboard, input-type=0, ime-target=false, has-links=false}
|
+---->AppCompatTextView{id=2131362167, res-name=clipboard_url, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@d8f78da, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, text=, input-type=0, ime-target=false, has-links=false}
|
+---->View{id=2131362380, res-name=fill_link_divider, visibility=GONE, width=0, height=0, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=true, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@f85110b, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0}
|
+---->View{id=2131362770, res-name=pill_wrapper_divider, visibility=VISIBLE, width=1080, height=3, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@5bcbe8, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1521.0}
|
+---->View{id=2131362769, res-name=pill_wrapper, visibility=VISIBLE, width=1080, height=110, has-focus=false, has-focusable=false, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@ca6b201, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1524.0}
|
+---->AppCompatToggleButton{id=2131362792, res-name=qr_scan_button, visibility=VISIBLE, width=241, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@afc48a6, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=1524.0, text=Scan, input-type=0, ime-target=false, has-links=false, is-checked=false}
|
+---->AppCompatToggleButton{id=2131362886, res-name=search_engines_shortcut_button, visibility=VISIBLE, width=404, height=110, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=true, is-enabled=true, is-focused=false, is-focusable=true, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@1f1b2e7, tag=null, root-is-layout-requested=false, has-input-connection=false, x=241.0, y=1524.0, text=Search engine, input-type=0, ime-target=false, has-links=false, is-checked=false}
|
at dalvik.system.VMStack.getThreadStackTrace(Native Method)
at java.lang.Thread.getStackTrace(Thread.java:1538)
at androidx.test.espresso.base.DefaultFailureHandler.getUserFriendlyError(DefaultFailureHandler.java:16)
at androidx.test.espresso.base.DefaultFailureHandler.handle(DefaultFailureHandler.java:36)
at androidx.test.espresso.ViewInteraction.waitForAndHandleInteractionResults(ViewInteraction.java:106)
at androidx.test.espresso.ViewInteraction.check(ViewInteraction.java:31)
at org.mozilla.fenix.ui.robots.HomeScreenRobotKt.assertWelcomeHeader(HomeScreenRobot.kt:417)
at org.mozilla.fenix.ui.robots.HomeScreenRobotKt.access$assertWelcomeHeader(HomeScreenRobot.kt:1)
at org.mozilla.fenix.ui.robots.HomeScreenRobot.verifyWelcomeHeader(HomeScreenRobot.kt:84)
at org.mozilla.fenix.ui.HomeScreenTest$toolbarTapDoesntDismissOnboardingTest$3.invoke(HomeScreenTest.kt:139)
at org.mozilla.fenix.ui.HomeScreenTest$toolbarTapDoesntDismissOnboardingTest$3.invoke(HomeScreenTest.kt:138)
at org.mozilla.fenix.ui.robots.SearchRobot$Transition.dismissSearchBar(SearchRobot.kt:173)
at org.mozilla.fenix.ui.HomeScreenTest.toolbarTapDoesntDismissOnboardingTest(HomeScreenTest.kt:138)
at java.lang.reflect.Method.invoke(Native Method)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:59)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:56)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at androidx.test.rule.ActivityTestRule$ActivityStatement.evaluate(ActivityTestRule.java:531)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.BlockJUnit4ClassRunner$1.evaluate(BlockJUnit4ClassRunner.java:100)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:366)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:103)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:63)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
at org.junit.runners.ParentRunner$4.run(ParentRunner.java:331)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:79)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:329)
at org.junit.runners.ParentRunner.access$100(ParentRunner.java:66)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:293)
at org.junit.runners.ParentRunner$3.evaluate(ParentRunner.java:306)
at org.junit.runners.ParentRunner.run(ParentRunner.java:413)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at org.junit.runner.JUnitCore.run(JUnitCore.java:115)
at androidx.test.internal.runner.TestExecutor.execute(TestExecutor.java:56)
at androidx.test.runner.AndroidJUnitRunner.onStart(AndroidJUnitRunner.java:395)
at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:2145)
### Build: 9/23 Main
| test | intermittent ui test failure firebase test run stacktrace androidx test espresso nomatchingviewexception no views in hierarchy found matching with text is welcome to firefox preview view hierarchy decorview id visibility visible width height has focus false has focusable true has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params fillxfill gr center sim adjust resize ty application fmt transparent fl layout in screen layout inset decor hardware accelerated translucent navigation draws system bar backgrounds pfl force draw status bar background tag null root is layout requested false has input connection false x y child count linearlayout id visibility visible width height has focus false has focusable true has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params android widget framelayout layoutparams tag null root is layout requested false has input connection false x y child count viewstub id res name action mode bar stub visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params android widget linearlayout layoutparams tag null root is layout requested false has input connection false x y framelayout id res name content visibility visible width height has focus false has focusable true has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params android widget linearlayout layoutparams tag null root is layout requested false has input connection false x y child count constraintlayout id res name search wrapper visibility visible width height has focus false has focusable true has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params android widget framelayout layoutparams tag null root is layout requested false has input connection false x y child count browsertoolbar id res name toolbar desc google search or enter address visibility visible width height has focus false has focusable true has window focus true is clickable true is enabled true is focused false is focusable true is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y child count displaytoolbarview id visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params android view viewgroup layoutparams tag null root is layout requested false has input connection false x y child count actioncontainer id res name mozac browser toolbar navigation actions visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y child count appcompatimageview id res name mozac browser toolbar background visibility invisible width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y appcompatimageview id res name mozac browser toolbar empty indicator visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y trackingprotectioniconview id res name mozac browser toolbar tracking protection indicator visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y appcompatimageview id res name mozac browser toolbar separator visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y sitesecurityiconview id res name mozac browser toolbar security indicator desc site information visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y highlightview id res name mozac browser toolbar permission indicator visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y originview id res name mozac browser toolbar origin view visibility visible width height has focus false has focusable true has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y child count textview id res name mozac browser toolbar title view visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params android widget linearlayout layoutparams tag null root is layout requested false has input connection false x y text input type ime target false has links false textview id res name mozac browser toolbar url view visibility visible width height has focus false has focusable true has window focus true is clickable true is enabled true is focused false is focusable true is layout requested false is selected false layout params android widget linearlayout layoutparams tag null root is layout requested false has input connection false x y text input type ime target false has links false actioncontainer id res name mozac browser toolbar page actions visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y child count actioncontainer id res name mozac browser toolbar browser actions visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y child count menubutton id res name mozac browser toolbar menu visibility gone width height has focus false has focusable false has window focus true is clickable true is enabled true is focused false is focusable true is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y child count appcompatimageview id res name highlight desc highlighted visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params android widget framelayout layoutparams tag null root is layout requested false has input connection false x y appcompatimageview id res name icon desc menu visibility visible width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params android widget framelayout layoutparams tag null root is layout requested false has input connection false x y appcompatimageview id res name notification dot desc highlighted visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params android widget framelayout layoutparams tag null root is layout requested false has input connection false x y progressbar id res name mozac browser toolbar progress visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y constraintlayout id res name mozac browser toolbar container visibility visible width height has focus false has focusable true has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params android view viewgroup layoutparams tag null root is layout requested false has input connection false x y child count appcompatimageview id res name mozac browser toolbar background visibility visible width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y appcompatimageview id res name mozac browser toolbar edit icon desc google visibility visible width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y inlineautocompleteedittext id res name mozac browser toolbar edit url view visibility visible width height has focus false has focusable true has window focus true is clickable true is enabled true is focused false is focusable true is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection true editor info hintlocales null contentmimetypes null x y text hint search or enter address input type ime target true has links false actioncontainer id res name mozac browser toolbar edit actions visibility visible width height has focus false has focusable true has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y child count appcompatimagebutton id desc voice search visibility visible width height has focus false has focusable true has window focus true is clickable true is enabled true is focused false is focusable true is layout requested false is selected false layout params android widget linearlayout layoutparams tag null root is layout requested false has input connection false x y appcompatimageview id res name mozac browser toolbar clear view desc clear visibility gone width height has focus false has focusable false has window focus true is clickable true is enabled true is focused false is focusable true is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y viewstub id res name search suggestions hint visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y view id res name search suggestions hint divider visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y barrier id res name search hint bottom barrier visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y awesomebarwrapper id res name awesome bar visibility invisible width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y child count androidcomposeview id visibility visible width height has focus false has focusable true has window focus true is clickable false is enabled true is focused false is focusable true is layout requested false is selected false layout params android view viewgroup layoutparams tag null root is layout requested false has input connection false x y child count viewlayercontainer id visibility visible width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params android view viewgroup layoutparams tag null root is layout requested false has input connection false x y child count viewlayer id visibility visible width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params android view viewgroup layoutparams tag null root is layout requested false has input connection false x y viewlayer id visibility visible width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params android view viewgroup layoutparams tag null root is layout requested false has input connection false x y view id res name fill link from clipboard desc fill link from clipboard visibility gone width height has focus false has focusable false has window focus true is clickable true is enabled true is focused false is focusable true is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y appcompatimageview id res name link icon visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y appcompattextview id res name clipboard title visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y text fill link from clipboard input type ime target false has links false appcompattextview id res name clipboard url visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y text input type ime target false has links false view id res name fill link divider visibility gone width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested true is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y view id res name pill wrapper divider visibility visible width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y view id res name pill wrapper visibility visible width height has focus false has focusable false has window focus true is clickable false is enabled true is focused false is focusable false is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y appcompattogglebutton id res name qr scan button visibility visible width height has focus false has focusable true has window focus true is clickable true is enabled true is focused false is focusable true is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y text scan input type ime target false has links false is checked false appcompattogglebutton id res name search engines shortcut button visibility visible width height has focus false has focusable true has window focus true is clickable true is enabled true is focused false is focusable true is layout requested false is selected false layout params androidx constraintlayout widget constraintlayout layoutparams tag null root is layout requested false has input connection false x y text search engine input type ime target false has links false is checked false at dalvik system vmstack getthreadstacktrace native method at java lang thread getstacktrace thread java at androidx test espresso base defaultfailurehandler getuserfriendlyerror defaultfailurehandler java at androidx test espresso base defaultfailurehandler handle defaultfailurehandler java at androidx test espresso viewinteraction waitforandhandleinteractionresults viewinteraction java at androidx test espresso viewinteraction check viewinteraction java at org mozilla fenix ui robots homescreenrobotkt assertwelcomeheader homescreenrobot kt at org mozilla fenix ui robots homescreenrobotkt access assertwelcomeheader homescreenrobot kt at org mozilla fenix ui robots homescreenrobot verifywelcomeheader homescreenrobot kt at org mozilla fenix ui homescreentest toolbartapdoesntdismissonboardingtest invoke homescreentest kt at org mozilla fenix ui homescreentest toolbartapdoesntdismissonboardingtest invoke homescreentest kt at org mozilla fenix ui robots searchrobot transition dismisssearchbar searchrobot kt at org mozilla fenix ui homescreentest toolbartapdoesntdismissonboardingtest homescreentest kt at java lang reflect method invoke native method at org junit runners model frameworkmethod runreflectivecall frameworkmethod java at org junit internal runners model reflectivecallable run reflectivecallable java at org junit runners model frameworkmethod invokeexplosively frameworkmethod java at org junit internal runners statements invokemethod evaluate invokemethod java at androidx test rule activitytestrule activitystatement evaluate activitytestrule java at org junit runners parentrunner evaluate parentrunner java at org junit runners evaluate java at org junit runners parentrunner runleaf parentrunner java at org junit runners runchild java at org junit runners runchild java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runners suite runchild suite java at org junit runners suite runchild suite java at org junit runners parentrunner run parentrunner java at org junit runners parentrunner schedule parentrunner java at org junit runners parentrunner runchildren parentrunner java at org junit runners parentrunner access parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner evaluate parentrunner java at org junit runners parentrunner run parentrunner java at org junit runner junitcore run junitcore java at org junit runner junitcore run junitcore java at androidx test internal runner testexecutor execute testexecutor java at androidx test runner androidjunitrunner onstart androidjunitrunner java at android app instrumentation instrumentationthread run instrumentation java build main | 1 |
46,561 | 7,267,045,842 | IssuesEvent | 2018-02-20 02:05:26 | FakeItEasy/FakeItEasy | https://api.github.com/repos/FakeItEasy/FakeItEasy | opened | Document that delegates can be faked | P3 documentation | As @zvirja [points out](https://github.com/AutoFixture/AutoFixture/issues/984#issuecomment-366633722), we [don't document](http://fakeiteasy.readthedocs.io/en/stable/what-can-be-faked/) that FakeItEasy can fake delegates. | 1.0 | Document that delegates can be faked - As @zvirja [points out](https://github.com/AutoFixture/AutoFixture/issues/984#issuecomment-366633722), we [don't document](http://fakeiteasy.readthedocs.io/en/stable/what-can-be-faked/) that FakeItEasy can fake delegates. | non_test | document that delegates can be faked as zvirja we that fakeiteasy can fake delegates | 0 |
34,200 | 4,893,308,957 | IssuesEvent | 2016-11-18 22:39:47 | coreos/dex | https://api.github.com/repos/coreos/dex | closed | server: test flake in TestOAuth2CodeFlow | area/testing priority/P1 | Looks like our rounding is messed up.
```
server_test.go:341: verify id token and oauth2 token expiry: expected expired_in to be 2016-11-18 21:16:13 +0000 UTC, got 2016-11-18 21:16:13.506259379 +0000 UTC
``` | 1.0 | server: test flake in TestOAuth2CodeFlow - Looks like our rounding is messed up.
```
server_test.go:341: verify id token and oauth2 token expiry: expected expired_in to be 2016-11-18 21:16:13 +0000 UTC, got 2016-11-18 21:16:13.506259379 +0000 UTC
``` | test | server test flake in looks like our rounding is messed up server test go verify id token and token expiry expected expired in to be utc got utc | 1 |
180,313 | 30,481,407,648 | IssuesEvent | 2023-07-17 20:40:23 | bcgov/bc-wallet-mobile | https://api.github.com/repos/bcgov/bc-wallet-mobile | closed | Define "more content" hint as part of design guide | story/design | ### User story
As a user, I want to visibly see if there is more content to scroll so that I don't miss any content hiding below the fold.
### Design
In style guide: https://xd.adobe.com/view/eb9e0945-61d7-40ca-8e8e-bf4bd0c72934-becd/screen/096d0603-d83f-4677-ab49-fc92485e4ba3/specs/
### Acceptance criteria
Given that the navigation tab is present on the screen
When there is content below the navigation tab
Then the content is blurred | 1.0 | Define "more content" hint as part of design guide - ### User story
As a user, I want to visibly see if there is more content to scroll so that I don't miss any content hiding below the fold.
### Design
In style guide: https://xd.adobe.com/view/eb9e0945-61d7-40ca-8e8e-bf4bd0c72934-becd/screen/096d0603-d83f-4677-ab49-fc92485e4ba3/specs/
### Acceptance criteria
Given that the navigation tab is present on the screen
When there is content below the navigation tab
Then the content is blurred | non_test | define more content hint as part of design guide user story as a user i want to visibly see if there is more content to scroll so that i don t miss any content hiding below the fold design in style guide acceptance criteria given that the navigation tab is present on the screen when there is content below the navigation tab then the content is blurred | 0 |
311,290 | 26,780,422,374 | IssuesEvent | 2023-01-31 20:40:08 | ZcashFoundation/zebra | https://api.github.com/repos/ZcashFoundation/zebra | closed | change(ci): Change set-output to environment files by May 2023 | A-devops S-needs-triage P-Medium :zap: C-deprecation C-testing | ## Motivation
This message is logged by a lot of our workflows:
> The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
### Specifications
https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter
| 1.0 | change(ci): Change set-output to environment files by May 2023 - ## Motivation
This message is logged by a lot of our workflows:
> The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
### Specifications
https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter
| test | change ci change set output to environment files by may motivation this message is logged by a lot of our workflows the set output command is deprecated and will be disabled soon please upgrade to using environment files for more information see specifications | 1 |
276,070 | 23,964,109,167 | IssuesEvent | 2022-09-12 22:14:38 | Azure/azure-sdk-for-python | https://api.github.com/repos/Azure/azure-sdk-for-python | closed | attestation/azure-security-attestation - cspell found spelling errors in source code | Client Attestation | Spell check scanning of package at `sdk/attestation/azure-security-attestation` detected spelling errors in the source code and related files. This directory is opted out of PR spell checking in PR #22199 to keep PRs unblocked.
## What to do
1. Ensure Node.js is installed (https://nodejs.org/en/download/).
1. Delete the entry in `.vscode/cspell.json`'s `ignorePaths` field. It will look like: `sdk/attestation/azure-security-attestation/**`. You need to do this to enable checking the files.
1. From the root of the repo run spell check using `./eng/common/spelling/Invoke-Cspell.ps1 -ScanGlobs "sdk/attestation/azure-security-attestation/**"`
1. Fix detections according to http://aka.ms/azsdk/engsys/spellcheck use the "False positives" section to fix false positives
1. Check in changes (including the change to `.vscode/cspell.json` where the `ignorePaths` is updated to remove the entry for this service.). You may need to run `git add -f .vscode/cspell.json` to force adding the changes to the file in git.
## Spell checking output
```
./sdk/attestation/azure-security-attestation/azure/security/attestation/_administration_client.py:225:33 - Unknown word (recieved)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_client.py:87:11 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_common.py:76:23 - Unknown word (ECDS)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_common.py:80:55 - Unknown word (ECDS)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:166:30 - Unknown word (MRENCLAVE)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:167:29 - Unknown word (MRSIGNER)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:765:38 - Unknown word (clist)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:767:60 - Unknown word (clist)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:874:10 - Unknown word (kwtype)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:874:42 - Unknown word (primatives)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:874:90 - Unknown word (primatives)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:877:10 - Unknown word (kwtype)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:883:69 - Unknown word (ECDH)
./sdk/attestation/azure-security-attestation/azure/security/attestation/aio/_administration_client_async.py:243:33 - Unknown word (recieved)
./sdk/attestation/azure-security-attestation/azure/security/attestation/aio/_client_async.py:85:11 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/README.md:3:261 - Unknown word (TPMs)
./sdk/attestation/azure-security-attestation/samples/README.md:55:3 - Unknown word (shareduks)
./sdk/attestation/azure-security-attestation/samples/README.md:138:23 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/README.md:138:43 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/README.md:142:24 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/README.md:157:29 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave_async.py:149:31 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave_async.py:153:32 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave_async.py:185:23 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave_async.py:189:24 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave.py:152:31 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave.py:156:32 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave.py:188:23 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave.py:192:24 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_authentication_async.py:87:58 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/samples/sample_authentication_async.py:117:58 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/samples/sample_authentication.py:81:58 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/samples/sample_authentication.py:106:58 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:25:6 - Unknown word (AQAAAAIAAA)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:25:18 - Unknown word (EQAAAAAAAAMA)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:26:8 - Unknown word (AAAAAABQAKAJ)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:26:20 - Unknown word (Oacj)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:26:27 - Unknown word (Eypl)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:26:62 - Unknown word (AAAAABER)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:28:48 - Unknown word (Oeqbo)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:28:58 - Unknown word (Ghwg)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:34:64 - Unknown word (IYOB)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:38:39 - Unknown word (Kzghp)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:38:49 - Unknown word (Ohtc)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:40:17 - Unknown word (BQLCBs)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:40:23 - Unknown word (JRJD)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:45:55 - Unknown word (pajf)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:45:62 - Unknown word (OGSU)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:45:68 - Unknown word (Joifis)
./sdk/attestation/azure-security-attestation/samples/sample_get_set_policy_async.py:115:23 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_get_set_policy_async.py:119:24 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_get_set_policy.py:113:23 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_get_set_policy.py:117:24 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_utils.py:57:21 - Unknown word (ECDS)
./sdk/attestation/azure-security-attestation/tests/attestation_preparer.py:42:7 - Unknown word (possiblity)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:32:6 - Unknown word (AQAAAAIAAA)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:32:18 - Unknown word (EQAAAAAAAAMA)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:33:8 - Unknown word (AAAAAABQAKAJ)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:33:20 - Unknown word (Oacj)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:33:27 - Unknown word (Eypl)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:33:62 - Unknown word (AAAAABER)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:35:48 - Unknown word (Oeqbo)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:35:58 - Unknown word (Ghwg)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:41:64 - Unknown word (IYOB)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:45:39 - Unknown word (Kzghp)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:45:49 - Unknown word (Ohtc)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:47:17 - Unknown word (BQLCBs)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:47:23 - Unknown word (JRJD)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:52:55 - Unknown word (pajf)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:52:62 - Unknown word (OGSU)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:52:68 - Unknown word (Joifis)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:141:27 - Unknown word (getopenidmetadataasync)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:148:35 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:157:24 - Unknown word (getopenidmetadataasync)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:161:34 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:166:29 - Unknown word (getopenidmetadataasync)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:170:34 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:271:60 - Unknown word (aikcert)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:41:28 - Unknown word (ecds)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:42:24 - Unknown word (ECDS)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:43:9 - Unknown word (eckey)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:43:30 - Unknown word (ecds)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:44:53 - Unknown word (eckey)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:160:17 - Unknown word (ecds)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:162:40 - Unknown word (SECP)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:28:6 - Unknown word (AQAAAAIAAA)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:28:18 - Unknown word (EQAAAAAAAAMA)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:29:8 - Unknown word (AAAAAABQAKAJ)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:29:20 - Unknown word (Oacj)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:29:27 - Unknown word (Eypl)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:29:62 - Unknown word (AAAAABER)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:31:48 - Unknown word (Oeqbo)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:31:58 - Unknown word (Ghwg)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:37:64 - Unknown word (IYOB)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:41:39 - Unknown word (Kzghp)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:41:49 - Unknown word (Ohtc)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:43:17 - Unknown word (BQLCBs)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:43:23 - Unknown word (JRJD)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:48:55 - Unknown word (pajf)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:48:62 - Unknown word (OGSU)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:48:68 - Unknown word (Joifis)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:141:21 - Unknown word (getopenidmetadata)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:147:35 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:156:18 - Unknown word (getopenidmetadata)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:160:34 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:165:23 - Unknown word (getopenidmetadata)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:169:34 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:282:60 - Unknown word (aikcert)
```
| 1.0 | attestation/azure-security-attestation - cspell found spelling errors in source code - Spell check scanning of package at `sdk/attestation/azure-security-attestation` detected spelling errors in the source code and related files. This directory is opted out of PR spell checking in PR #22199 to keep PRs unblocked.
## What to do
1. Ensure Node.js is installed (https://nodejs.org/en/download/).
1. Delete the entry in `.vscode/cspell.json`'s `ignorePaths` field. It will look like: `sdk/attestation/azure-security-attestation/**`. You need to do this to enable checking the files.
1. From the root of the repo run spell check using `./eng/common/spelling/Invoke-Cspell.ps1 -ScanGlobs "sdk/attestation/azure-security-attestation/**"`
1. Fix detections according to http://aka.ms/azsdk/engsys/spellcheck use the "False positives" section to fix false positives
1. Check in changes (including the change to `.vscode/cspell.json` where the `ignorePaths` is updated to remove the entry for this service.). You may need to run `git add -f .vscode/cspell.json` to force adding the changes to the file in git.
## Spell checking output
```
./sdk/attestation/azure-security-attestation/azure/security/attestation/_administration_client.py:225:33 - Unknown word (recieved)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_client.py:87:11 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_common.py:76:23 - Unknown word (ECDS)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_common.py:80:55 - Unknown word (ECDS)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:166:30 - Unknown word (MRENCLAVE)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:167:29 - Unknown word (MRSIGNER)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:765:38 - Unknown word (clist)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:767:60 - Unknown word (clist)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:874:10 - Unknown word (kwtype)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:874:42 - Unknown word (primatives)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:874:90 - Unknown word (primatives)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:877:10 - Unknown word (kwtype)
./sdk/attestation/azure-security-attestation/azure/security/attestation/_models.py:883:69 - Unknown word (ECDH)
./sdk/attestation/azure-security-attestation/azure/security/attestation/aio/_administration_client_async.py:243:33 - Unknown word (recieved)
./sdk/attestation/azure-security-attestation/azure/security/attestation/aio/_client_async.py:85:11 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/README.md:3:261 - Unknown word (TPMs)
./sdk/attestation/azure-security-attestation/samples/README.md:55:3 - Unknown word (shareduks)
./sdk/attestation/azure-security-attestation/samples/README.md:138:23 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/README.md:138:43 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/README.md:142:24 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/README.md:157:29 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave_async.py:149:31 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave_async.py:153:32 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave_async.py:185:23 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave_async.py:189:24 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave.py:152:31 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave.py:156:32 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave.py:188:23 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_attest_enclave.py:192:24 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_authentication_async.py:87:58 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/samples/sample_authentication_async.py:117:58 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/samples/sample_authentication.py:81:58 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/samples/sample_authentication.py:106:58 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:25:6 - Unknown word (AQAAAAIAAA)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:25:18 - Unknown word (EQAAAAAAAAMA)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:26:8 - Unknown word (AAAAAABQAKAJ)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:26:20 - Unknown word (Oacj)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:26:27 - Unknown word (Eypl)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:26:62 - Unknown word (AAAAABER)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:28:48 - Unknown word (Oeqbo)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:28:58 - Unknown word (Ghwg)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:34:64 - Unknown word (IYOB)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:38:39 - Unknown word (Kzghp)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:38:49 - Unknown word (Ohtc)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:40:17 - Unknown word (BQLCBs)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:40:23 - Unknown word (JRJD)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:45:55 - Unknown word (pajf)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:45:62 - Unknown word (OGSU)
./sdk/attestation/azure-security-attestation/samples/sample_collateral.py:45:68 - Unknown word (Joifis)
./sdk/attestation/azure-security-attestation/samples/sample_get_set_policy_async.py:115:23 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_get_set_policy_async.py:119:24 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_get_set_policy.py:113:23 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_get_set_policy.py:117:24 - Unknown word (mrsigner)
./sdk/attestation/azure-security-attestation/samples/sample_utils.py:57:21 - Unknown word (ECDS)
./sdk/attestation/azure-security-attestation/tests/attestation_preparer.py:42:7 - Unknown word (possiblity)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:32:6 - Unknown word (AQAAAAIAAA)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:32:18 - Unknown word (EQAAAAAAAAMA)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:33:8 - Unknown word (AAAAAABQAKAJ)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:33:20 - Unknown word (Oacj)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:33:27 - Unknown word (Eypl)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:33:62 - Unknown word (AAAAABER)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:35:48 - Unknown word (Oeqbo)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:35:58 - Unknown word (Ghwg)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:41:64 - Unknown word (IYOB)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:45:39 - Unknown word (Kzghp)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:45:49 - Unknown word (Ohtc)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:47:17 - Unknown word (BQLCBs)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:47:23 - Unknown word (JRJD)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:52:55 - Unknown word (pajf)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:52:62 - Unknown word (OGSU)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:52:68 - Unknown word (Joifis)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:141:27 - Unknown word (getopenidmetadataasync)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:148:35 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:157:24 - Unknown word (getopenidmetadataasync)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:161:34 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:166:29 - Unknown word (getopenidmetadataasync)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:170:34 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation_async.py:271:60 - Unknown word (aikcert)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:41:28 - Unknown word (ecds)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:42:24 - Unknown word (ECDS)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:43:9 - Unknown word (eckey)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:43:30 - Unknown word (ecds)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:44:53 - Unknown word (eckey)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:160:17 - Unknown word (ecds)
./sdk/attestation/azure-security-attestation/tests/test_attestation_token.py:162:40 - Unknown word (SECP)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:28:6 - Unknown word (AQAAAAIAAA)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:28:18 - Unknown word (EQAAAAAAAAMA)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:29:8 - Unknown word (AAAAAABQAKAJ)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:29:20 - Unknown word (Oacj)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:29:27 - Unknown word (Eypl)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:29:62 - Unknown word (AAAAABER)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:31:48 - Unknown word (Oeqbo)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:31:58 - Unknown word (Ghwg)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:37:64 - Unknown word (IYOB)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:41:39 - Unknown word (Kzghp)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:41:49 - Unknown word (Ohtc)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:43:17 - Unknown word (BQLCBs)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:43:23 - Unknown word (JRJD)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:48:55 - Unknown word (pajf)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:48:62 - Unknown word (OGSU)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:48:68 - Unknown word (Joifis)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:141:21 - Unknown word (getopenidmetadata)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:147:35 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:156:18 - Unknown word (getopenidmetadata)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:160:34 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:165:23 - Unknown word (getopenidmetadata)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:169:34 - Unknown word (jwks)
./sdk/attestation/azure-security-attestation/tests/test_attestation.py:282:60 - Unknown word (aikcert)
```
| test | attestation azure security attestation cspell found spelling errors in source code spell check scanning of package at sdk attestation azure security attestation detected spelling errors in the source code and related files this directory is opted out of pr spell checking in pr to keep prs unblocked what to do ensure node js is installed delete the entry in vscode cspell json s ignorepaths field it will look like sdk attestation azure security attestation you need to do this to enable checking the files from the root of the repo run spell check using eng common spelling invoke cspell scanglobs sdk attestation azure security attestation fix detections according to use the false positives section to fix false positives check in changes including the change to vscode cspell json where the ignorepaths is updated to remove the entry for this service you may need to run git add f vscode cspell json to force adding the changes to the file in git spell checking output sdk attestation azure security attestation azure security attestation administration client py unknown word recieved sdk attestation azure security attestation azure security attestation client py unknown word jwks sdk attestation azure security attestation azure security attestation common py unknown word ecds sdk attestation azure security attestation azure security attestation common py unknown word ecds sdk attestation azure security attestation azure security attestation models py unknown word mrenclave sdk attestation azure security attestation azure security attestation models py unknown word mrsigner sdk attestation azure security attestation azure security attestation models py unknown word clist sdk attestation azure security attestation azure security attestation models py unknown word clist sdk attestation azure security attestation azure security attestation models py unknown word kwtype sdk attestation azure security attestation azure security attestation models py unknown word primatives sdk attestation azure security attestation azure security attestation models py unknown word primatives sdk attestation azure security attestation azure security attestation models py unknown word kwtype sdk attestation azure security attestation azure security attestation models py unknown word ecdh sdk attestation azure security attestation azure security attestation aio administration client async py unknown word recieved sdk attestation azure security attestation azure security attestation aio client async py unknown word jwks sdk attestation azure security attestation readme md unknown word tpms sdk attestation azure security attestation samples readme md unknown word shareduks sdk attestation azure security attestation samples readme md unknown word mrsigner sdk attestation azure security attestation samples readme md unknown word mrsigner sdk attestation azure security attestation samples readme md unknown word mrsigner sdk attestation azure security attestation samples readme md unknown word mrsigner sdk attestation azure security attestation samples sample attest enclave async py unknown word mrsigner sdk attestation azure security attestation samples sample attest enclave async py unknown word mrsigner sdk attestation azure security attestation samples sample attest enclave async py unknown word mrsigner sdk attestation azure security attestation samples sample attest enclave async py unknown word mrsigner sdk attestation azure security attestation samples sample attest enclave py unknown word mrsigner sdk attestation azure security attestation samples sample attest enclave py unknown word mrsigner sdk attestation azure security attestation samples sample attest enclave py unknown word mrsigner sdk attestation azure security attestation samples sample attest enclave py unknown word mrsigner sdk attestation azure security attestation samples sample authentication async py unknown word jwks sdk attestation azure security attestation samples sample authentication async py unknown word jwks sdk attestation azure security attestation samples sample authentication py unknown word jwks sdk attestation azure security attestation samples sample authentication py unknown word jwks sdk attestation azure security attestation samples sample collateral py unknown word aqaaaaiaaa sdk attestation azure security attestation samples sample collateral py unknown word eqaaaaaaaama sdk attestation azure security attestation samples sample collateral py unknown word aaaaaabqakaj sdk attestation azure security attestation samples sample collateral py unknown word oacj sdk attestation azure security attestation samples sample collateral py unknown word eypl sdk attestation azure security attestation samples sample collateral py unknown word aaaaaber sdk attestation azure security attestation samples sample collateral py unknown word oeqbo sdk attestation azure security attestation samples sample collateral py unknown word ghwg sdk attestation azure security attestation samples sample collateral py unknown word iyob sdk attestation azure security attestation samples sample collateral py unknown word kzghp sdk attestation azure security attestation samples sample collateral py unknown word ohtc sdk attestation azure security attestation samples sample collateral py unknown word bqlcbs sdk attestation azure security attestation samples sample collateral py unknown word jrjd sdk attestation azure security attestation samples sample collateral py unknown word pajf sdk attestation azure security attestation samples sample collateral py unknown word ogsu sdk attestation azure security attestation samples sample collateral py unknown word joifis sdk attestation azure security attestation samples sample get set policy async py unknown word mrsigner sdk attestation azure security attestation samples sample get set policy async py unknown word mrsigner sdk attestation azure security attestation samples sample get set policy py unknown word mrsigner sdk attestation azure security attestation samples sample get set policy py unknown word mrsigner sdk attestation azure security attestation samples sample utils py unknown word ecds sdk attestation azure security attestation tests attestation preparer py unknown word possiblity sdk attestation azure security attestation tests test attestation async py unknown word aqaaaaiaaa sdk attestation azure security attestation tests test attestation async py unknown word eqaaaaaaaama sdk attestation azure security attestation tests test attestation async py unknown word aaaaaabqakaj sdk attestation azure security attestation tests test attestation async py unknown word oacj sdk attestation azure security attestation tests test attestation async py unknown word eypl sdk attestation azure security attestation tests test attestation async py unknown word aaaaaber sdk attestation azure security attestation tests test attestation async py unknown word oeqbo sdk attestation azure security attestation tests test attestation async py unknown word ghwg sdk attestation azure security attestation tests test attestation async py unknown word iyob sdk attestation azure security attestation tests test attestation async py unknown word kzghp sdk attestation azure security attestation tests test attestation async py unknown word ohtc sdk attestation azure security attestation tests test attestation async py unknown word bqlcbs sdk attestation azure security attestation tests test attestation async py unknown word jrjd sdk attestation azure security attestation tests test attestation async py unknown word pajf sdk attestation azure security attestation tests test attestation async py unknown word ogsu sdk attestation azure security attestation tests test attestation async py unknown word joifis sdk attestation azure security attestation tests test attestation async py unknown word getopenidmetadataasync sdk attestation azure security attestation tests test attestation async py unknown word jwks sdk attestation azure security attestation tests test attestation async py unknown word getopenidmetadataasync sdk attestation azure security attestation tests test attestation async py unknown word jwks sdk attestation azure security attestation tests test attestation async py unknown word getopenidmetadataasync sdk attestation azure security attestation tests test attestation async py unknown word jwks sdk attestation azure security attestation tests test attestation async py unknown word aikcert sdk attestation azure security attestation tests test attestation token py unknown word ecds sdk attestation azure security attestation tests test attestation token py unknown word ecds sdk attestation azure security attestation tests test attestation token py unknown word eckey sdk attestation azure security attestation tests test attestation token py unknown word ecds sdk attestation azure security attestation tests test attestation token py unknown word eckey sdk attestation azure security attestation tests test attestation token py unknown word ecds sdk attestation azure security attestation tests test attestation token py unknown word secp sdk attestation azure security attestation tests test attestation py unknown word aqaaaaiaaa sdk attestation azure security attestation tests test attestation py unknown word eqaaaaaaaama sdk attestation azure security attestation tests test attestation py unknown word aaaaaabqakaj sdk attestation azure security attestation tests test attestation py unknown word oacj sdk attestation azure security attestation tests test attestation py unknown word eypl sdk attestation azure security attestation tests test attestation py unknown word aaaaaber sdk attestation azure security attestation tests test attestation py unknown word oeqbo sdk attestation azure security attestation tests test attestation py unknown word ghwg sdk attestation azure security attestation tests test attestation py unknown word iyob sdk attestation azure security attestation tests test attestation py unknown word kzghp sdk attestation azure security attestation tests test attestation py unknown word ohtc sdk attestation azure security attestation tests test attestation py unknown word bqlcbs sdk attestation azure security attestation tests test attestation py unknown word jrjd sdk attestation azure security attestation tests test attestation py unknown word pajf sdk attestation azure security attestation tests test attestation py unknown word ogsu sdk attestation azure security attestation tests test attestation py unknown word joifis sdk attestation azure security attestation tests test attestation py unknown word getopenidmetadata sdk attestation azure security attestation tests test attestation py unknown word jwks sdk attestation azure security attestation tests test attestation py unknown word getopenidmetadata sdk attestation azure security attestation tests test attestation py unknown word jwks sdk attestation azure security attestation tests test attestation py unknown word getopenidmetadata sdk attestation azure security attestation tests test attestation py unknown word jwks sdk attestation azure security attestation tests test attestation py unknown word aikcert | 1 |
49,676 | 6,036,213,498 | IssuesEvent | 2017-06-09 15:34:48 | bontorhumala/untar | https://api.github.com/repos/bontorhumala/untar | closed | Test NIMD Builder on different houses | test needed | REDD house 2
**OK** [sm_trace_df, sm_trace] = trace_redd_all( idx=2, dt_start='2011-05-01 18:00:00', dt_end='2011-05-02 18:00:00', hours=24 );


**OK** [sm_trace_df, sm_trace] = trace_redd_all( idx=2, dt_start='2011-04-20 18:00:00', dt_end='2011-04-21 18:00:00', hours=24 );



**NOT OK** [sm_trace_df, sm_trace] = trace_redd_all( idx=2, dt_start='2011-04-22 18:00:00', dt_end='2011-04-23 18:00:00', hours=24 );


**OK** [sm_trace_df, sm_trace] = trace_redd_all( idx=2, dt_start='2011-04-23 18:00:00', dt_end='2011-04-24 18:00:00', hours=24 );


**OK** [sm_trace_df, sm_trace] = trace_redd_all( idx=2, dt_start='2011-04-25 18:00:00', dt_end='2011-04-26 18:00:00', hours=24 );


| 1.0 | Test NIMD Builder on different houses - REDD house 2
**OK** [sm_trace_df, sm_trace] = trace_redd_all( idx=2, dt_start='2011-05-01 18:00:00', dt_end='2011-05-02 18:00:00', hours=24 );


**OK** [sm_trace_df, sm_trace] = trace_redd_all( idx=2, dt_start='2011-04-20 18:00:00', dt_end='2011-04-21 18:00:00', hours=24 );



**NOT OK** [sm_trace_df, sm_trace] = trace_redd_all( idx=2, dt_start='2011-04-22 18:00:00', dt_end='2011-04-23 18:00:00', hours=24 );


**OK** [sm_trace_df, sm_trace] = trace_redd_all( idx=2, dt_start='2011-04-23 18:00:00', dt_end='2011-04-24 18:00:00', hours=24 );


**OK** [sm_trace_df, sm_trace] = trace_redd_all( idx=2, dt_start='2011-04-25 18:00:00', dt_end='2011-04-26 18:00:00', hours=24 );


| test | test nimd builder on different houses redd house ok trace redd all idx dt start dt end hours ok trace redd all idx dt start dt end hours not ok trace redd all idx dt start dt end hours ok trace redd all idx dt start dt end hours ok trace redd all idx dt start dt end hours | 1 |
654,455 | 21,652,607,275 | IssuesEvent | 2022-05-06 10:58:07 | metabase/metabase | https://api.github.com/repos/metabase/metabase | closed | i18n.js mapToMomentLocale there is a bug in this method, | Type:Bug Priority:P3 Querying/Parameters & Variables Customization/i18n .Frontend | browser version: Chrome 100.0.4896.127
operating system: OS X 12.0.1 M1
databases: h2
Metabase version: 1.42.4
Metabase hosting environment: OS X 12.0.1
Metabase internal database: H2
i18n.js mapToMomentLocale
I'm Chinese, sorry for my bad English
When the language pack is Chinese, there is a bug in this method, it is zh in metabase, but zh-cn in moment
The browser console
(索引):247 Uncaught Error: Cannot find module './zh'
at webpackContextResolve ((索引):247:1)
at webpackContext ((索引):242:1)
at updateMomentLocale (i18n.js:84:1)
at setLocalization (i18n.js:77:1)
at Module../lib/i18n.js (i18n.js:121:1)
at __webpack_require__ (bootstrap:24:1)
at fn (hot module replacement:61:1)
at Module../app.js (app-main.js:48:1)
at __webpack_require__ (bootstrap:24:1)
at fn (hot module replacement:61:1)
The code try to fix
```js
function mapToMomentLocale(locale = "") {
switch (locale) {
case "zh-Hans":
return "zh-cn";
case "zh":
return "zh-cn";
default:
return locale.toLowerCase();
}
}
``` | 1.0 | i18n.js mapToMomentLocale there is a bug in this method, - browser version: Chrome 100.0.4896.127
operating system: OS X 12.0.1 M1
databases: h2
Metabase version: 1.42.4
Metabase hosting environment: OS X 12.0.1
Metabase internal database: H2
i18n.js mapToMomentLocale
I'm Chinese, sorry for my bad English
When the language pack is Chinese, there is a bug in this method, it is zh in metabase, but zh-cn in moment
The browser console
(索引):247 Uncaught Error: Cannot find module './zh'
at webpackContextResolve ((索引):247:1)
at webpackContext ((索引):242:1)
at updateMomentLocale (i18n.js:84:1)
at setLocalization (i18n.js:77:1)
at Module../lib/i18n.js (i18n.js:121:1)
at __webpack_require__ (bootstrap:24:1)
at fn (hot module replacement:61:1)
at Module../app.js (app-main.js:48:1)
at __webpack_require__ (bootstrap:24:1)
at fn (hot module replacement:61:1)
The code try to fix
```js
function mapToMomentLocale(locale = "") {
switch (locale) {
case "zh-Hans":
return "zh-cn";
case "zh":
return "zh-cn";
default:
return locale.toLowerCase();
}
}
``` | non_test | js maptomomentlocale there is a bug in this method browser version chrome operating system os x databases metabase version metabase hosting environment os x metabase internal database js maptomomentlocale i m chinese sorry for my bad english when the language pack is chinese there is a bug in this method it is zh in metabase but zh cn in moment the browser console (索引) uncaught error cannot find module zh at webpackcontextresolve (索引) at webpackcontext (索引) at updatemomentlocale js at setlocalization js at module lib js js at webpack require bootstrap at fn hot module replacement at module app js app main js at webpack require bootstrap at fn hot module replacement the code try to fix js function maptomomentlocale locale switch locale case zh hans return zh cn case zh return zh cn default return locale tolowercase | 0 |
193,678 | 15,384,460,707 | IssuesEvent | 2021-03-03 04:44:46 | fga-eps-mds/2020.2-e-Vacina-Backend | https://api.github.com/repos/fga-eps-mds/2020.2-e-Vacina-Backend | closed | Criar documento Sprint 3 | Scrum Master Sprint 3 documentation | ## Histórico de Versões
| Versão | Data | Autor | Descrição |
| ------------------- | ------------------- | ------------------- | ------------------- |
| 1.0 | 2/03/2020 | Ciro | Criar documento Sprint 3 |
## Descrição
Criar documento da Sprint 3.
## Tarefas
- [ ] Criar documento da Sprint 3
## Critério de aceitação
- [ ] Criar documento da Sprint 3
- [ ] Disponibilizar no Github pages | 1.0 | Criar documento Sprint 3 - ## Histórico de Versões
| Versão | Data | Autor | Descrição |
| ------------------- | ------------------- | ------------------- | ------------------- |
| 1.0 | 2/03/2020 | Ciro | Criar documento Sprint 3 |
## Descrição
Criar documento da Sprint 3.
## Tarefas
- [ ] Criar documento da Sprint 3
## Critério de aceitação
- [ ] Criar documento da Sprint 3
- [ ] Disponibilizar no Github pages | non_test | criar documento sprint histórico de versões versão data autor descrição ciro criar documento sprint descrição criar documento da sprint tarefas criar documento da sprint critério de aceitação criar documento da sprint disponibilizar no github pages | 0 |
142,633 | 21,796,203,115 | IssuesEvent | 2022-05-15 17:14:05 | lankybox02/RiverBox | https://api.github.com/repos/lankybox02/RiverBox | opened | Sidebar design for homepage | enhancement design low priority | The homepage looks very blank, here's a small sketch i want to implement
 | 1.0 | Sidebar design for homepage - The homepage looks very blank, here's a small sketch i want to implement
 | non_test | sidebar design for homepage the homepage looks very blank here s a small sketch i want to implement | 0 |
317,538 | 27,243,951,580 | IssuesEvent | 2023-02-21 23:24:00 | Exiled-Team/EXILED | https://api.github.com/repos/Exiled-Team/EXILED | closed | [BUG] SCPs crash sometimes when setting player scale | requires-testing | **Describe the bug**
In a semi-rare subset of cases, setting the Player.Scale property of any player will cause every SCP in the round to be disconnected from the server.
**To Reproduce**
Set the scale of a player, for example, to `Player.Scale = new(1.5f, 1.5f, 1.5f);` with 1 (or more) people as an SCP
**Expected behavior**
SCPs should not be disconnected when a player's Scale property is modified.
**Server logs**
old image but this is the error that appears when they get disconnected

**EXILED Version ("latest" is not a version):** 6.0.0-beta.25
**Results of `show plugins` command in console:**
**Additional context**
In my plugin called `skull_island`, I have random effects from taking painkillers and one of those effects is resizing the player. Sometimes when the player gets resized, every SCP in the round immediately gets disconnected.
| 1.0 | [BUG] SCPs crash sometimes when setting player scale - **Describe the bug**
In a semi-rare subset of cases, setting the Player.Scale property of any player will cause every SCP in the round to be disconnected from the server.
**To Reproduce**
Set the scale of a player, for example, to `Player.Scale = new(1.5f, 1.5f, 1.5f);` with 1 (or more) people as an SCP
**Expected behavior**
SCPs should not be disconnected when a player's Scale property is modified.
**Server logs**
old image but this is the error that appears when they get disconnected

**EXILED Version ("latest" is not a version):** 6.0.0-beta.25
**Results of `show plugins` command in console:**
**Additional context**
In my plugin called `skull_island`, I have random effects from taking painkillers and one of those effects is resizing the player. Sometimes when the player gets resized, every SCP in the round immediately gets disconnected.
| test | scps crash sometimes when setting player scale describe the bug in a semi rare subset of cases setting the player scale property of any player will cause every scp in the round to be disconnected from the server to reproduce set the scale of a player for example to player scale new with or more people as an scp expected behavior scps should not be disconnected when a player s scale property is modified server logs old image but this is the error that appears when they get disconnected exiled version latest is not a version beta results of show plugins command in console additional context in my plugin called skull island i have random effects from taking painkillers and one of those effects is resizing the player sometimes when the player gets resized every scp in the round immediately gets disconnected | 1 |
196,579 | 6,935,429,505 | IssuesEvent | 2017-12-03 08:48:25 | ankidroid/Anki-Android | https://api.github.com/repos/ankidroid/Anki-Android | closed | Scrolling with whiteboard enabled and fullscreen disabled | enhancement Priority-Low | Hello,
I don't know whether it is a bug or a whishlist feature (in case the current implementation of the whiteboard makes it nontrivial to fix this). Please label accordingly!
When I have the whiteboard enabled in Ankidroid to scribble on a card that takes more space than can be displayed on my phone's screen, it is possible to scroll up and down by moving my finger on the right end of the screen when one of the two fullscreen modes is enabled in the setings. When I turn off fullscreen mode, the whiteboard draws on the area that was previously being used for scrolling when fullscreen was on.
Since I appreciate all of the information displayed when fullscreen is off but also have thousands of cards that are both large and require the whiteboard to be on, I would be very pleased if scrolling was made possible without having fullscreen turned on. My current workflow of enabling and disabling the whiteboard every time cries for improvement
Thanks for all your previous and future work on this invaluable piece of software!
###### Research
*Enter an [ x ] character to confirm the points below:*
[ x ] I have read the [support page](https://ankidroid.org/docs/help.html) and am reporting a bug or enhancement request specific to AnkiDroid
[ x ] I have checked the [manual](https://ankidroid.org/docs/manual.html) and the [FAQ](https://github.com/ankidroid/Anki-Android/wiki/FAQ) and could not find a solution to my issue
[ x ] I have searched for similar existing issues here and on the user forum
**-> this might also help** #4443
###### Reproduction Steps
1. see above
2.
3.
###### Expected Result
see above
###### Actual Result
see above
###### Debug info
Version 2.7 from FDroid
Android 5.1.1 (CyanogenMod 12.1) | 1.0 | Scrolling with whiteboard enabled and fullscreen disabled - Hello,
I don't know whether it is a bug or a whishlist feature (in case the current implementation of the whiteboard makes it nontrivial to fix this). Please label accordingly!
When I have the whiteboard enabled in Ankidroid to scribble on a card that takes more space than can be displayed on my phone's screen, it is possible to scroll up and down by moving my finger on the right end of the screen when one of the two fullscreen modes is enabled in the setings. When I turn off fullscreen mode, the whiteboard draws on the area that was previously being used for scrolling when fullscreen was on.
Since I appreciate all of the information displayed when fullscreen is off but also have thousands of cards that are both large and require the whiteboard to be on, I would be very pleased if scrolling was made possible without having fullscreen turned on. My current workflow of enabling and disabling the whiteboard every time cries for improvement
Thanks for all your previous and future work on this invaluable piece of software!
###### Research
*Enter an [ x ] character to confirm the points below:*
[ x ] I have read the [support page](https://ankidroid.org/docs/help.html) and am reporting a bug or enhancement request specific to AnkiDroid
[ x ] I have checked the [manual](https://ankidroid.org/docs/manual.html) and the [FAQ](https://github.com/ankidroid/Anki-Android/wiki/FAQ) and could not find a solution to my issue
[ x ] I have searched for similar existing issues here and on the user forum
**-> this might also help** #4443
###### Reproduction Steps
1. see above
2.
3.
###### Expected Result
see above
###### Actual Result
see above
###### Debug info
Version 2.7 from FDroid
Android 5.1.1 (CyanogenMod 12.1) | non_test | scrolling with whiteboard enabled and fullscreen disabled hello i don t know whether it is a bug or a whishlist feature in case the current implementation of the whiteboard makes it nontrivial to fix this please label accordingly when i have the whiteboard enabled in ankidroid to scribble on a card that takes more space than can be displayed on my phone s screen it is possible to scroll up and down by moving my finger on the right end of the screen when one of the two fullscreen modes is enabled in the setings when i turn off fullscreen mode the whiteboard draws on the area that was previously being used for scrolling when fullscreen was on since i appreciate all of the information displayed when fullscreen is off but also have thousands of cards that are both large and require the whiteboard to be on i would be very pleased if scrolling was made possible without having fullscreen turned on my current workflow of enabling and disabling the whiteboard every time cries for improvement thanks for all your previous and future work on this invaluable piece of software research enter an character to confirm the points below i have read the and am reporting a bug or enhancement request specific to ankidroid i have checked the and the and could not find a solution to my issue i have searched for similar existing issues here and on the user forum this might also help reproduction steps see above expected result see above actual result see above debug info version from fdroid android cyanogenmod | 0 |
21,658 | 3,911,451,066 | IssuesEvent | 2016-04-20 05:57:29 | hercules-390/hyperion | https://api.github.com/repos/hercules-390/hyperion | closed | Integrated console cmdpref enhancements requested | Enhancement Fix being tested... In progress... | 1. The same cmdpref should not be allowed for multiple integrated consoles.
Any attempt to specify one already in use should be rejected.
The default of slash "/" should be changed to a list of valid cmdpref that select
the first available at that time from the list.
.
2. All output messages from the operating system for an integrated console should have the
cmdpref prepended just like commands and replies from the user and Hercules.rc files are now. | 1.0 | Integrated console cmdpref enhancements requested - 1. The same cmdpref should not be allowed for multiple integrated consoles.
Any attempt to specify one already in use should be rejected.
The default of slash "/" should be changed to a list of valid cmdpref that select
the first available at that time from the list.
.
2. All output messages from the operating system for an integrated console should have the
cmdpref prepended just like commands and replies from the user and Hercules.rc files are now. | test | integrated console cmdpref enhancements requested the same cmdpref should not be allowed for multiple integrated consoles any attempt to specify one already in use should be rejected the default of slash should be changed to a list of valid cmdpref that select the first available at that time from the list all output messages from the operating system for an integrated console should have the cmdpref prepended just like commands and replies from the user and hercules rc files are now | 1 |
804,972 | 29,505,564,305 | IssuesEvent | 2023-06-03 09:04:06 | googleapis/google-cloud-ruby | https://api.github.com/repos/googleapis/google-cloud-ruby | opened | [Nightly CI Failures] Failures detected for google-iam-v1 | type: bug priority: p1 nightly failure | At 2023-06-03 09:04:05 UTC, detected failures in google-iam-v1 for: rubocop.
The CI logs can be found [here](https://github.com/googleapis/google-cloud-ruby/actions/runs/5162726703)
report_key_0673855fcf1286321a520e70ed5e2455 | 1.0 | [Nightly CI Failures] Failures detected for google-iam-v1 - At 2023-06-03 09:04:05 UTC, detected failures in google-iam-v1 for: rubocop.
The CI logs can be found [here](https://github.com/googleapis/google-cloud-ruby/actions/runs/5162726703)
report_key_0673855fcf1286321a520e70ed5e2455 | non_test | failures detected for google iam at utc detected failures in google iam for rubocop the ci logs can be found report key | 0 |
13,377 | 15,838,344,615 | IssuesEvent | 2021-04-06 22:18:03 | 90301/TextReplace | https://api.github.com/repos/90301/TextReplace | closed | Line Instance Count | Log Processor | LineMatchCount function:
- Text to match
- Min number of instances per line
- [Optional] > or <
If a match is found:
Return the line.
Possibly add another that counts the instances per line and returns the count.
Ex:
LineMatchCount( [ , 2 )
this[1][2] <---- would trigger
this[1] <----- would not trigger
| 1.0 | Line Instance Count - LineMatchCount function:
- Text to match
- Min number of instances per line
- [Optional] > or <
If a match is found:
Return the line.
Possibly add another that counts the instances per line and returns the count.
Ex:
LineMatchCount( [ , 2 )
this[1][2] <---- would trigger
this[1] <----- would not trigger
| non_test | line instance count linematchcount function text to match min number of instances per line or if a match is found return the line possibly add another that counts the instances per line and returns the count ex linematchcount this would trigger this would not trigger | 0 |
132,679 | 5,190,732,501 | IssuesEvent | 2017-01-21 12:52:33 | playatech/laravel-voldb | https://api.github.com/repos/playatech/laravel-voldb | opened | Create separate table for listing shift names | high priority major change | Instead of letting admins name shifts arbitrarily, the shifts table should be used to define shift names per department. This would also be a good opportunity to add descriptions for shifts (issue #21).
The current ```shifts``` table should be split into ```shifts``` and ```event_shifts``` tables. The ```shifts``` table would define the information about shifts available within departments and ```event_shifts``` table would define the dates, times, duration, and the number of volunteers required.
When editing a department there should be a list of available shifts as well as a button to create new ones. When creating event shifts, a dropdown should appear that lists available shift names instead of a text field. | 1.0 | Create separate table for listing shift names - Instead of letting admins name shifts arbitrarily, the shifts table should be used to define shift names per department. This would also be a good opportunity to add descriptions for shifts (issue #21).
The current ```shifts``` table should be split into ```shifts``` and ```event_shifts``` tables. The ```shifts``` table would define the information about shifts available within departments and ```event_shifts``` table would define the dates, times, duration, and the number of volunteers required.
When editing a department there should be a list of available shifts as well as a button to create new ones. When creating event shifts, a dropdown should appear that lists available shift names instead of a text field. | non_test | create separate table for listing shift names instead of letting admins name shifts arbitrarily the shifts table should be used to define shift names per department this would also be a good opportunity to add descriptions for shifts issue the current shifts table should be split into shifts and event shifts tables the shifts table would define the information about shifts available within departments and event shifts table would define the dates times duration and the number of volunteers required when editing a department there should be a list of available shifts as well as a button to create new ones when creating event shifts a dropdown should appear that lists available shift names instead of a text field | 0 |
569,195 | 16,997,112,746 | IssuesEvent | 2021-07-01 08:00:15 | kubesphere/kubesphere | https://api.github.com/repos/kubesphere/kubesphere | closed | The link address is incorrect in the Create Application Template page | area/console kind/bug kind/need-to-verify priority/low |
**Describe the Bug**
In the Create Application Template page, the links for 《Helm 规范及应用开发》 are different in the two places


/kind bug
/assign @leoendless
/priority Low
/milestone 3.1.0
/area console
| 1.0 | The link address is incorrect in the Create Application Template page -
**Describe the Bug**
In the Create Application Template page, the links for 《Helm 规范及应用开发》 are different in the two places


/kind bug
/assign @leoendless
/priority Low
/milestone 3.1.0
/area console
| non_test | the link address is incorrect in the create application template page describe the bug in the create application template page the links for 《helm 规范及应用开发》 are different in the two places kind bug assign leoendless priority low milestone area console | 0 |
318,145 | 23,705,133,857 | IssuesEvent | 2022-08-29 23:45:59 | YildirimCat/portfolio_schema | https://api.github.com/repos/YildirimCat/portfolio_schema | opened | Hakkımda ve Projeler kısımlarının içerikleri | documentation | Hakkımda ve Portfolyo ögelerinin içeriklerinin nasıl doldurulacağı görsellerle anlatılmalıdır. | 1.0 | Hakkımda ve Projeler kısımlarının içerikleri - Hakkımda ve Portfolyo ögelerinin içeriklerinin nasıl doldurulacağı görsellerle anlatılmalıdır. | non_test | hakkımda ve projeler kısımlarının içerikleri hakkımda ve portfolyo ögelerinin içeriklerinin nasıl doldurulacağı görsellerle anlatılmalıdır | 0 |
804,229 | 29,480,257,471 | IssuesEvent | 2023-06-02 04:38:16 | department-of-veterans-affairs/va.gov-team | https://api.github.com/repos/department-of-veterans-affairs/va.gov-team | closed | Update documentation for OOB/Manual deployments to cover approval for deployment. | high-priority platform-cop-frontend platform-cop | ## Issue Description
When a manual deployment is finished, it requires an approval from an admin on the vets-website repository to approve it. This is not mentioned in our documentation and has lead to confusion for multiple parties trying to do manual deployments. This documentation should be updated.
---
## Tasks
- [ ] Update the manual deployment documentation to cover the approval process at the end of manual deployments. | 1.0 | Update documentation for OOB/Manual deployments to cover approval for deployment. - ## Issue Description
When a manual deployment is finished, it requires an approval from an admin on the vets-website repository to approve it. This is not mentioned in our documentation and has lead to confusion for multiple parties trying to do manual deployments. This documentation should be updated.
---
## Tasks
- [ ] Update the manual deployment documentation to cover the approval process at the end of manual deployments. | non_test | update documentation for oob manual deployments to cover approval for deployment issue description when a manual deployment is finished it requires an approval from an admin on the vets website repository to approve it this is not mentioned in our documentation and has lead to confusion for multiple parties trying to do manual deployments this documentation should be updated tasks update the manual deployment documentation to cover the approval process at the end of manual deployments | 0 |
404,624 | 11,860,639,266 | IssuesEvent | 2020-03-25 15:10:59 | dhowe/spectre | https://api.github.com/repos/dhowe/spectre | closed | OceanProfile changes have blocked all mouse/touch events on main site | bug high-priority | OceanProfile appears to have blocked all mouse/touch event on pages in the main site (such as the 'pick-your-side' and 'dark-ad' pages) which are fine when the <OceanProfile /> component is temporarily removed. | 1.0 | OceanProfile changes have blocked all mouse/touch events on main site - OceanProfile appears to have blocked all mouse/touch event on pages in the main site (such as the 'pick-your-side' and 'dark-ad' pages) which are fine when the <OceanProfile /> component is temporarily removed. | non_test | oceanprofile changes have blocked all mouse touch events on main site oceanprofile appears to have blocked all mouse touch event on pages in the main site such as the pick your side and dark ad pages which are fine when the component is temporarily removed | 0 |
322,728 | 9,828,235,486 | IssuesEvent | 2019-06-15 09:36:14 | ahmedkaludi/accelerated-mobile-pages | https://api.github.com/repos/ahmedkaludi/accelerated-mobile-pages | closed | Need to create a filter to add the classes which have to be excluded in infinity scroll. | NEED FAST REVIEW [Priority: HIGH] enhancement | Desc: Need to create a filter to add the classes which have to be excluded in infinity scroll. | 1.0 | Need to create a filter to add the classes which have to be excluded in infinity scroll. - Desc: Need to create a filter to add the classes which have to be excluded in infinity scroll. | non_test | need to create a filter to add the classes which have to be excluded in infinity scroll desc need to create a filter to add the classes which have to be excluded in infinity scroll | 0 |
742,445 | 25,855,201,217 | IssuesEvent | 2022-12-13 13:16:32 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | support-uat.microsoft.com - site is not usable | browser-firefox priority-critical engine-gecko os-win7 | <!-- @browser: Firefox 108.0b3 (64-bit) -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/115246 -->
**URL**: https://support-uat.microsoft.com/en-us/office/about-the-microsoft-support-and-recovery-assistant-e90bb691-c2a7-4697-a94f-88836856c72f
**Browser / Version**: Firefox 108.0b3 (64-bit)
**Operating System**: Windows 7
**Tested Another Browser**: Yes Internet Explorer
**Problem type**: Site is not usable
**Description**: Buttons or links not working
**Steps to Reproduce**:
I get this message in Firefox 108.0b3 (64-bit)
Secure Connection Failed
An error occurred during a connection to support-uat.microsoft.com. Peer reports it experienced an internal error.
Error code: SSL_ERROR_INTERNAL_ERROR_ALERT
The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
Please contact the website owners to inform them of this problem.
Learn more…
Here is the error I get in Internet explorer 11 updated version 11.0.105
This page can’t be displayed
Turn on TLS 1.0, TLS 1.1, and TLS 1.2 in Advanced settings and try connecting to https://support-uat.microsoft.com again. If this error persists, it is possible that this site uses an unsupported protocol or cipher suite such as RC4 (link for the details), which is not considered secure. Please contact your site administrator.
Change settings
I click change settings and it shows me use TLS 1.0, use TLS 1.1 and use TLS 1.2 are already turned on under advanced settings.
The (link for the details) gives me a:
This page can’t be displayed
• Make sure the web address https://support.microsoft.com is correct.
• Look for the page with your search engine.
• Refresh the page in a few minutes.
Fix connection problems. The fix connection problem brings up the windows network diagnostics which just says troubleshooting couldn’t identify the problem so I click close and am brought right back to the above This page can’t be displayed error.
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2022/12/a731a3ae-f796-4630-b4c8-48901b794622.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20221117185908</li><li>channel: beta</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2022/12/8db62c0b-e941-46f7-99d9-fc2768b301e3)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | support-uat.microsoft.com - site is not usable - <!-- @browser: Firefox 108.0b3 (64-bit) -->
<!-- @ua_header: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:108.0) Gecko/20100101 Firefox/108.0 -->
<!-- @reported_with: desktop-reporter -->
<!-- @public_url: https://github.com/webcompat/web-bugs/issues/115246 -->
**URL**: https://support-uat.microsoft.com/en-us/office/about-the-microsoft-support-and-recovery-assistant-e90bb691-c2a7-4697-a94f-88836856c72f
**Browser / Version**: Firefox 108.0b3 (64-bit)
**Operating System**: Windows 7
**Tested Another Browser**: Yes Internet Explorer
**Problem type**: Site is not usable
**Description**: Buttons or links not working
**Steps to Reproduce**:
I get this message in Firefox 108.0b3 (64-bit)
Secure Connection Failed
An error occurred during a connection to support-uat.microsoft.com. Peer reports it experienced an internal error.
Error code: SSL_ERROR_INTERNAL_ERROR_ALERT
The page you are trying to view cannot be shown because the authenticity of the received data could not be verified.
Please contact the website owners to inform them of this problem.
Learn more…
Here is the error I get in Internet explorer 11 updated version 11.0.105
This page can’t be displayed
Turn on TLS 1.0, TLS 1.1, and TLS 1.2 in Advanced settings and try connecting to https://support-uat.microsoft.com again. If this error persists, it is possible that this site uses an unsupported protocol or cipher suite such as RC4 (link for the details), which is not considered secure. Please contact your site administrator.
Change settings
I click change settings and it shows me use TLS 1.0, use TLS 1.1 and use TLS 1.2 are already turned on under advanced settings.
The (link for the details) gives me a:
This page can’t be displayed
• Make sure the web address https://support.microsoft.com is correct.
• Look for the page with your search engine.
• Refresh the page in a few minutes.
Fix connection problems. The fix connection problem brings up the windows network diagnostics which just says troubleshooting couldn’t identify the problem so I click close and am brought right back to the above This page can’t be displayed error.
<details>
<summary>View the screenshot</summary>
<img alt="Screenshot" src="https://webcompat.com/uploads/2022/12/a731a3ae-f796-4630-b4c8-48901b794622.jpeg">
</details>
<details>
<summary>Browser Configuration</summary>
<ul>
<li>gfx.webrender.all: false</li><li>gfx.webrender.blob-images: true</li><li>gfx.webrender.enabled: false</li><li>image.mem.shared: true</li><li>buildID: 20221117185908</li><li>channel: beta</li><li>hasTouchScreen: false</li><li>mixed active content blocked: false</li><li>mixed passive content blocked: false</li><li>tracking content blocked: false</li>
</ul>
</details>
[View console log messages](https://webcompat.com/console_logs/2022/12/8db62c0b-e941-46f7-99d9-fc2768b301e3)
_From [webcompat.com](https://webcompat.com/) with ❤️_ | non_test | support uat microsoft com site is not usable url browser version firefox bit operating system windows tested another browser yes internet explorer problem type site is not usable description buttons or links not working steps to reproduce i get this message in firefox bit secure connection failed an error occurred during a connection to support uat microsoft com peer reports it experienced an internal error error code ssl error internal error alert the page you are trying to view cannot be shown because the authenticity of the received data could not be verified please contact the website owners to inform them of this problem learn more… here is the error i get in internet explorer updated version this page can’t be displayed turn on tls tls and tls in advanced settings and try connecting to again if this error persists it is possible that this site uses an unsupported protocol or cipher suite such as link for the details which is not considered secure please contact your site administrator change settings i click change settings and it shows me use tls use tls and use tls are already turned on under advanced settings the link for the details gives me a this page can’t be displayed • make sure the web address is correct • look for the page with your search engine • refresh the page in a few minutes fix connection problems the fix connection problem brings up the windows network diagnostics which just says troubleshooting couldn’t identify the problem so i click close and am brought right back to the above this page can’t be displayed error view the screenshot img alt screenshot src browser configuration gfx webrender all false gfx webrender blob images true gfx webrender enabled false image mem shared true buildid channel beta hastouchscreen false mixed active content blocked false mixed passive content blocked false tracking content blocked false from with ❤️ | 0 |
273,232 | 23,739,493,332 | IssuesEvent | 2022-08-31 11:07:26 | streamnative/pulsar | https://api.github.com/repos/streamnative/pulsar | opened | ISSUE-17363: Flaky-test: BatchMessageWithBatchIndexLevelTest.testBatchMessageAck | component/test flaky-tests | Original Issue: apache/pulsar#17363
---
### Search before asking
- [X] I searched in the [issues](https://github.com/apache/pulsar/issues) and found nothing similar.
### Example failure
https://github.com/apache/pulsar/runs/8104817693?check_suite_focus=true
### Exception stacktrace
```
Error: Tests run: 74, Failures: 1, Errors: 0, Skipped: 5, Time elapsed: 92.5 s <<< FAILURE! - in org.apache.pulsar.broker.service.BatchMessageWithBatchIndexLevelTest
Error: testBatchMessageAck(org.apache.pulsar.broker.service.BatchMessageWithBatchIndexLevelTest) Time elapsed: 10.399 s <<< FAILURE!
org.awaitility.core.ConditionTimeoutException: Assertion condition defined as a org.apache.pulsar.broker.service.BatchMessageWithBatchIndexLevelTest expected [0] but found [16] within 10 seconds.
at org.awaitility.core.ConditionAwaiter.await(ConditionAwaiter.java:167)
at org.awaitility.core.AssertionCondition.await(AssertionCondition.java:119)
at org.awaitility.core.AssertionCondition.await(AssertionCondition.java:31)
at org.awaitility.core.ConditionFactory.until(ConditionFactory.java:985)
at org.awaitility.core.ConditionFactory.untilAsserted(ConditionFactory.java:769)
at org.apache.pulsar.broker.service.BatchMessageWithBatchIndexLevelTest.testBatchMessageAck(BatchMessageWithBatchIndexLevelTest.java:106)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:132)
at org.testng.internal.InvokeMethodRunnable.runOne(InvokeMethodRunnable.java:45)
at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:73)
at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:11)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: java.lang.AssertionError: expected [0] but found [16]
at org.testng.Assert.fail(Assert.java:99)
at org.testng.Assert.failNotEquals(Assert.java:1037)
at org.testng.Assert.assertEqualsImpl(Assert.java:140)
at org.testng.Assert.assertEquals(Assert.java:122)
at org.testng.Assert.assertEquals(Assert.java:907)
at org.testng.Assert.assertEquals(Assert.java:917)
at org.apache.pulsar.broker.service.BatchMessageWithBatchIndexLevelTest.lambda$testBatchMessageAck$2(BatchMessageWithBatchIndexLevelTest.java:107)
at org.awaitility.core.AssertionCondition.lambda$new$0(AssertionCondition.java:53)
at org.awaitility.core.ConditionAwaiter$ConditionPoller.call(ConditionAwaiter.java:248)
at org.awaitility.core.ConditionAwaiter$ConditionPoller.call(ConditionAwaiter.java:235)
... 4 more
```
### Are you willing to submit a PR?
- [ ] I'm willing to submit a PR! | 2.0 | ISSUE-17363: Flaky-test: BatchMessageWithBatchIndexLevelTest.testBatchMessageAck - Original Issue: apache/pulsar#17363
---
### Search before asking
- [X] I searched in the [issues](https://github.com/apache/pulsar/issues) and found nothing similar.
### Example failure
https://github.com/apache/pulsar/runs/8104817693?check_suite_focus=true
### Exception stacktrace
```
Error: Tests run: 74, Failures: 1, Errors: 0, Skipped: 5, Time elapsed: 92.5 s <<< FAILURE! - in org.apache.pulsar.broker.service.BatchMessageWithBatchIndexLevelTest
Error: testBatchMessageAck(org.apache.pulsar.broker.service.BatchMessageWithBatchIndexLevelTest) Time elapsed: 10.399 s <<< FAILURE!
org.awaitility.core.ConditionTimeoutException: Assertion condition defined as a org.apache.pulsar.broker.service.BatchMessageWithBatchIndexLevelTest expected [0] but found [16] within 10 seconds.
at org.awaitility.core.ConditionAwaiter.await(ConditionAwaiter.java:167)
at org.awaitility.core.AssertionCondition.await(AssertionCondition.java:119)
at org.awaitility.core.AssertionCondition.await(AssertionCondition.java:31)
at org.awaitility.core.ConditionFactory.until(ConditionFactory.java:985)
at org.awaitility.core.ConditionFactory.untilAsserted(ConditionFactory.java:769)
at org.apache.pulsar.broker.service.BatchMessageWithBatchIndexLevelTest.testBatchMessageAck(BatchMessageWithBatchIndexLevelTest.java:106)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:568)
at org.testng.internal.MethodInvocationHelper.invokeMethod(MethodInvocationHelper.java:132)
at org.testng.internal.InvokeMethodRunnable.runOne(InvokeMethodRunnable.java:45)
at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:73)
at org.testng.internal.InvokeMethodRunnable.call(InvokeMethodRunnable.java:11)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635)
at java.base/java.lang.Thread.run(Thread.java:833)
Caused by: java.lang.AssertionError: expected [0] but found [16]
at org.testng.Assert.fail(Assert.java:99)
at org.testng.Assert.failNotEquals(Assert.java:1037)
at org.testng.Assert.assertEqualsImpl(Assert.java:140)
at org.testng.Assert.assertEquals(Assert.java:122)
at org.testng.Assert.assertEquals(Assert.java:907)
at org.testng.Assert.assertEquals(Assert.java:917)
at org.apache.pulsar.broker.service.BatchMessageWithBatchIndexLevelTest.lambda$testBatchMessageAck$2(BatchMessageWithBatchIndexLevelTest.java:107)
at org.awaitility.core.AssertionCondition.lambda$new$0(AssertionCondition.java:53)
at org.awaitility.core.ConditionAwaiter$ConditionPoller.call(ConditionAwaiter.java:248)
at org.awaitility.core.ConditionAwaiter$ConditionPoller.call(ConditionAwaiter.java:235)
... 4 more
```
### Are you willing to submit a PR?
- [ ] I'm willing to submit a PR! | test | issue flaky test batchmessagewithbatchindexleveltest testbatchmessageack original issue apache pulsar search before asking i searched in the and found nothing similar example failure exception stacktrace error tests run failures errors skipped time elapsed s failure in org apache pulsar broker service batchmessagewithbatchindexleveltest error testbatchmessageack org apache pulsar broker service batchmessagewithbatchindexleveltest time elapsed s failure org awaitility core conditiontimeoutexception assertion condition defined as a org apache pulsar broker service batchmessagewithbatchindexleveltest expected but found within seconds at org awaitility core conditionawaiter await conditionawaiter java at org awaitility core assertioncondition await assertioncondition java at org awaitility core assertioncondition await assertioncondition java at org awaitility core conditionfactory until conditionfactory java at org awaitility core conditionfactory untilasserted conditionfactory java at org apache pulsar broker service batchmessagewithbatchindexleveltest testbatchmessageack batchmessagewithbatchindexleveltest java at java base jdk internal reflect nativemethodaccessorimpl native method at java base jdk internal reflect nativemethodaccessorimpl invoke nativemethodaccessorimpl java at java base jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java base java lang reflect method invoke method java at org testng internal methodinvocationhelper invokemethod methodinvocationhelper java at org testng internal invokemethodrunnable runone invokemethodrunnable java at org testng internal invokemethodrunnable call invokemethodrunnable java at org testng internal invokemethodrunnable call invokemethodrunnable java at java base java util concurrent futuretask run futuretask java at java base java util concurrent threadpoolexecutor runworker threadpoolexecutor java at java base java util concurrent threadpoolexecutor worker run threadpoolexecutor java at java base java lang thread run thread java caused by java lang assertionerror expected but found at org testng assert fail assert java at org testng assert failnotequals assert java at org testng assert assertequalsimpl assert java at org testng assert assertequals assert java at org testng assert assertequals assert java at org testng assert assertequals assert java at org apache pulsar broker service batchmessagewithbatchindexleveltest lambda testbatchmessageack batchmessagewithbatchindexleveltest java at org awaitility core assertioncondition lambda new assertioncondition java at org awaitility core conditionawaiter conditionpoller call conditionawaiter java at org awaitility core conditionawaiter conditionpoller call conditionawaiter java more are you willing to submit a pr i m willing to submit a pr | 1 |
144,016 | 11,591,965,015 | IssuesEvent | 2020-02-24 10:29:55 | wazuh/wazuh-qa | https://api.github.com/repos/wazuh/wazuh-qa | opened | FIM System tests: 0207: Use of report changes | fim-system-tests | Hi!
In this issue, we will comment on all the related activities to complete the design and the implementation of the scenario `Use of report changes` for FIM system tests.
**Tasks**
- [ ] Create the corresponding `ossec.conf` with the scenario specifications.
- [ ] Create actions tasks in Ansible format which will import required actions from common_tasks folder
- [ ] Create required tasks to launch the `alerts.json` and `ES` verification scripts.
- [ ] Create master playbook `launch_environment.yml` which will import the scenario's tasks and launch them.
_`Note`_: The description may be updated in the future, if needed.
Kr,
Rshad | 1.0 | FIM System tests: 0207: Use of report changes - Hi!
In this issue, we will comment on all the related activities to complete the design and the implementation of the scenario `Use of report changes` for FIM system tests.
**Tasks**
- [ ] Create the corresponding `ossec.conf` with the scenario specifications.
- [ ] Create actions tasks in Ansible format which will import required actions from common_tasks folder
- [ ] Create required tasks to launch the `alerts.json` and `ES` verification scripts.
- [ ] Create master playbook `launch_environment.yml` which will import the scenario's tasks and launch them.
_`Note`_: The description may be updated in the future, if needed.
Kr,
Rshad | test | fim system tests use of report changes hi in this issue we will comment on all the related activities to complete the design and the implementation of the scenario use of report changes for fim system tests tasks create the corresponding ossec conf with the scenario specifications create actions tasks in ansible format which will import required actions from common tasks folder create required tasks to launch the alerts json and es verification scripts create master playbook launch environment yml which will import the scenario s tasks and launch them note the description may be updated in the future if needed kr rshad | 1 |
269,686 | 23,459,138,019 | IssuesEvent | 2022-08-16 11:37:53 | wazuh/wazuh | https://api.github.com/repos/wazuh/wazuh | opened | Release 4.3.7 - Release Candidate 1 - Demo use cases | team/cicd release test | ### Demo use cases information
| | |
|---------------------------------|--------------------------------------------|
| **Main release candidate issue** | #14562 |
| **Version** | 4.3.7 |
| **Release candidate #** | RC1 |
| **Tag** | https://github.com/wazuh/wazuh/tree/v4.3.7-rc1 |
| **Previous Demo use cases** | -- |
## Checks
Status | Result | Use case | Issues
:--: | :--: | -- | -- |
⚫ | ⚫ | Audit |
⚫ | ⚫ | AWS Wodle |
⚫ | ⚫ | Brute force |
⚫ | ⚫ | Docker |
⚫ | ⚫ | Emotet |
⚫ | ⚫ | FIM |
⚫ | ⚫ | IP Reputation |
⚫ | ⚫ | Netcat |
⚫ | ⚫ | Osquery |
⚫ | ⚫ | Shellshock |
⚫ | ⚫ | SQL Injection |
⚫ | ⚫ | Slack |
⚫ | ⚫ | Suricata |
⚫ | ⚫ | Trojan |
⚫ | ⚫ | Virustotal |
⚫ | ⚫ | Vulnerability Detector |
⚫ | ⚫ | Yara |
⚫ | ⚫ | Windows Defender |
Result legend:
⚫ - Not started
🕐 - Pending/In progress
✔️ - Results Ready
⚠️ - Review required
Status legend:
⚫ - None
🔴 - Rejected
🟢 - Approved
## Auditors validation
In order to close and proceed with release or the next candidate version, the following auditors must give the green light to this RC.
- [ ] @alberpilot
- [ ] @teddytpc1 | 1.0 | Release 4.3.7 - Release Candidate 1 - Demo use cases - ### Demo use cases information
| | |
|---------------------------------|--------------------------------------------|
| **Main release candidate issue** | #14562 |
| **Version** | 4.3.7 |
| **Release candidate #** | RC1 |
| **Tag** | https://github.com/wazuh/wazuh/tree/v4.3.7-rc1 |
| **Previous Demo use cases** | -- |
## Checks
Status | Result | Use case | Issues
:--: | :--: | -- | -- |
⚫ | ⚫ | Audit |
⚫ | ⚫ | AWS Wodle |
⚫ | ⚫ | Brute force |
⚫ | ⚫ | Docker |
⚫ | ⚫ | Emotet |
⚫ | ⚫ | FIM |
⚫ | ⚫ | IP Reputation |
⚫ | ⚫ | Netcat |
⚫ | ⚫ | Osquery |
⚫ | ⚫ | Shellshock |
⚫ | ⚫ | SQL Injection |
⚫ | ⚫ | Slack |
⚫ | ⚫ | Suricata |
⚫ | ⚫ | Trojan |
⚫ | ⚫ | Virustotal |
⚫ | ⚫ | Vulnerability Detector |
⚫ | ⚫ | Yara |
⚫ | ⚫ | Windows Defender |
Result legend:
⚫ - Not started
🕐 - Pending/In progress
✔️ - Results Ready
⚠️ - Review required
Status legend:
⚫ - None
🔴 - Rejected
🟢 - Approved
## Auditors validation
In order to close and proceed with release or the next candidate version, the following auditors must give the green light to this RC.
- [ ] @alberpilot
- [ ] @teddytpc1 | test | release release candidate demo use cases demo use cases information main release candidate issue version release candidate tag previous demo use cases checks status result use case issues ⚫ ⚫ audit ⚫ ⚫ aws wodle ⚫ ⚫ brute force ⚫ ⚫ docker ⚫ ⚫ emotet ⚫ ⚫ fim ⚫ ⚫ ip reputation ⚫ ⚫ netcat ⚫ ⚫ osquery ⚫ ⚫ shellshock ⚫ ⚫ sql injection ⚫ ⚫ slack ⚫ ⚫ suricata ⚫ ⚫ trojan ⚫ ⚫ virustotal ⚫ ⚫ vulnerability detector ⚫ ⚫ yara ⚫ ⚫ windows defender result legend ⚫ not started 🕐 pending in progress ✔️ results ready ⚠️ review required status legend ⚫ none 🔴 rejected 🟢 approved auditors validation in order to close and proceed with release or the next candidate version the following auditors must give the green light to this rc alberpilot | 1 |
337,340 | 30,247,495,622 | IssuesEvent | 2023-07-06 17:39:46 | unifyai/ivy | https://api.github.com/repos/unifyai/ivy | reopened | Fix non_linear_activation_functions.test_torch_softmax | PyTorch Frontend Sub Task Failing Test | | | |
|---|---|
|jax|<a href="https://github.com/unifyai/ivy/actions/runs/5413195771"><img src=https://img.shields.io/badge/-success-success></a>
|numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5413195771"><img src=https://img.shields.io/badge/-success-success></a>
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5478319447"><img src=https://img.shields.io/badge/-failure-red></a>
|torch|<a href="https://github.com/unifyai/ivy/actions/runs/5413195771"><img src=https://img.shields.io/badge/-success-success></a>
|paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5413195771"><img src=https://img.shields.io/badge/-success-success></a>
| 1.0 | Fix non_linear_activation_functions.test_torch_softmax - | | |
|---|---|
|jax|<a href="https://github.com/unifyai/ivy/actions/runs/5413195771"><img src=https://img.shields.io/badge/-success-success></a>
|numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5413195771"><img src=https://img.shields.io/badge/-success-success></a>
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5478319447"><img src=https://img.shields.io/badge/-failure-red></a>
|torch|<a href="https://github.com/unifyai/ivy/actions/runs/5413195771"><img src=https://img.shields.io/badge/-success-success></a>
|paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5413195771"><img src=https://img.shields.io/badge/-success-success></a>
| test | fix non linear activation functions test torch softmax jax a href src numpy a href src tensorflow a href src torch a href src paddle a href src | 1 |
141,770 | 11,435,155,515 | IssuesEvent | 2020-02-04 18:49:39 | flutter/flutter | https://api.github.com/repos/flutter/flutter | closed | flutter_platform should use `package:build_runner_core` when it becomes available | a: tests tool | Running Dart programs from source in Dart 2 has non-trivial overhead compared to running from kernel. To improve the developer workflow for iterating on tests, we should leverage `package:build_runner_core` to modularly build and run flutter tests from kernel.
This is blocked on:
https://github.com/dart-lang/build/issues/1428
https://github.com/dart-lang/build/issues/1427 | 1.0 | flutter_platform should use `package:build_runner_core` when it becomes available - Running Dart programs from source in Dart 2 has non-trivial overhead compared to running from kernel. To improve the developer workflow for iterating on tests, we should leverage `package:build_runner_core` to modularly build and run flutter tests from kernel.
This is blocked on:
https://github.com/dart-lang/build/issues/1428
https://github.com/dart-lang/build/issues/1427 | test | flutter platform should use package build runner core when it becomes available running dart programs from source in dart has non trivial overhead compared to running from kernel to improve the developer workflow for iterating on tests we should leverage package build runner core to modularly build and run flutter tests from kernel this is blocked on | 1 |
330,349 | 24,257,336,235 | IssuesEvent | 2022-09-27 19:00:08 | CMU-313/fall22-hw3-teedy-roosevelt | https://api.github.com/repos/CMU-313/fall22-hw3-teedy-roosevelt | closed | [FEATURE] TEST-ISSUE | documentation | **Describe the final product of this feature**
This is a dummy issue to test the settings for this repository
**What frontend changes will be required**
N/A
**What backend changes will be required**
N/A
**What middleware changes will be required**
N/A
| 1.0 | [FEATURE] TEST-ISSUE - **Describe the final product of this feature**
This is a dummy issue to test the settings for this repository
**What frontend changes will be required**
N/A
**What backend changes will be required**
N/A
**What middleware changes will be required**
N/A
| non_test | test issue describe the final product of this feature this is a dummy issue to test the settings for this repository what frontend changes will be required n a what backend changes will be required n a what middleware changes will be required n a | 0 |
197,233 | 14,914,112,648 | IssuesEvent | 2021-01-22 15:00:37 | ARUP-CAS/aiscr-digiarchiv-2 | https://api.github.com/repos/ARUP-CAS/aiscr-digiarchiv-2 | closed | Nefunkční přihlašování | CLIENT FIX ASAP!!! bug B ready for test | Pravděpodobně v souvislosti se včerejším přechodem na zabezpečenou verzi backendu (https://backend.aiscr.cz/) se rozbilo přihlašování (nejde se přihlásit). Prosím o vyřešení - asi bude třeba upravit volání XML-RPC. | 1.0 | Nefunkční přihlašování - Pravděpodobně v souvislosti se včerejším přechodem na zabezpečenou verzi backendu (https://backend.aiscr.cz/) se rozbilo přihlašování (nejde se přihlásit). Prosím o vyřešení - asi bude třeba upravit volání XML-RPC. | test | nefunkční přihlašování pravděpodobně v souvislosti se včerejším přechodem na zabezpečenou verzi backendu se rozbilo přihlašování nejde se přihlásit prosím o vyřešení asi bude třeba upravit volání xml rpc | 1 |
787,201 | 27,710,118,849 | IssuesEvent | 2023-03-14 13:47:12 | bihealth/sodar-core | https://api.github.com/repos/bihealth/sodar-core | closed | Change filesfolders app display title to "Files" | cosmetic low priority app: filesfolders | "Small Files" was a SODAR specific thing not relevant anymore. The display name should simply be "Files" from now on.
## Spec
- Rename `filesfolders.plugins.ProjectAppPlugin.title` to `Files`
- In docs, docstrings and `README`, rename all references for `Small Files` to `Files` | 1.0 | Change filesfolders app display title to "Files" - "Small Files" was a SODAR specific thing not relevant anymore. The display name should simply be "Files" from now on.
## Spec
- Rename `filesfolders.plugins.ProjectAppPlugin.title` to `Files`
- In docs, docstrings and `README`, rename all references for `Small Files` to `Files` | non_test | change filesfolders app display title to files small files was a sodar specific thing not relevant anymore the display name should simply be files from now on spec rename filesfolders plugins projectappplugin title to files in docs docstrings and readme rename all references for small files to files | 0 |
255,201 | 21,911,742,810 | IssuesEvent | 2022-05-21 06:34:22 | hyperledger/iroha | https://api.github.com/repos/hyperledger/iroha | reopened | Fix Flaky tests | iroha2 CI Tests | Cargo nextest is the more permanent solution to flaky tests, specifically it has a method of remembering and re-running tests that have failed previously.
https://nexte.st/index.html
We should move to use it in our CI image, and potentially generate test coverage and run tests in one go. | 1.0 | Fix Flaky tests - Cargo nextest is the more permanent solution to flaky tests, specifically it has a method of remembering and re-running tests that have failed previously.
https://nexte.st/index.html
We should move to use it in our CI image, and potentially generate test coverage and run tests in one go. | test | fix flaky tests cargo nextest is the more permanent solution to flaky tests specifically it has a method of remembering and re running tests that have failed previously we should move to use it in our ci image and potentially generate test coverage and run tests in one go | 1 |
167,811 | 13,043,682,840 | IssuesEvent | 2020-07-29 02:19:37 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | roachtest: cdc/initial-scan/rangefeed=true failed | C-test-failure O-roachtest O-robot branch-master release-blocker | [(roachtest).cdc/initial-scan/rangefeed=true failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2079204&tab=buildLog) on [master@542c83e7db1694208e09c7fea7d350db4993b897](https://github.com/cockroachdb/cockroach/commits/542c83e7db1694208e09c7fea7d350db4993b897):
```
The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/cdc/initial-scan/rangefeed=true/run_1
cdc.go:913,cdc.go:218,cdc.go:529,test_runner.go:757: initial scan did not complete
```
<details><summary>More</summary><p>
Artifacts: [/cdc/initial-scan/rangefeed=true](https://teamcity.cockroachdb.com/viewLog.html?buildId=2079204&tab=artifacts#/cdc/initial-scan/rangefeed=true)
[See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Acdc%2Finitial-scan%2Frangefeed%3Dtrue.%2A&sort=title&restgroup=false&display=lastcommented+project)
<sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>
| 2.0 | roachtest: cdc/initial-scan/rangefeed=true failed - [(roachtest).cdc/initial-scan/rangefeed=true failed](https://teamcity.cockroachdb.com/viewLog.html?buildId=2079204&tab=buildLog) on [master@542c83e7db1694208e09c7fea7d350db4993b897](https://github.com/cockroachdb/cockroach/commits/542c83e7db1694208e09c7fea7d350db4993b897):
```
The test failed on branch=master, cloud=gce:
test artifacts and logs in: /home/agent/work/.go/src/github.com/cockroachdb/cockroach/artifacts/cdc/initial-scan/rangefeed=true/run_1
cdc.go:913,cdc.go:218,cdc.go:529,test_runner.go:757: initial scan did not complete
```
<details><summary>More</summary><p>
Artifacts: [/cdc/initial-scan/rangefeed=true](https://teamcity.cockroachdb.com/viewLog.html?buildId=2079204&tab=artifacts#/cdc/initial-scan/rangefeed=true)
[See this test on roachdash](https://roachdash.crdb.dev/?filter=status%3Aopen+t%3A.%2Acdc%2Finitial-scan%2Frangefeed%3Dtrue.%2A&sort=title&restgroup=false&display=lastcommented+project)
<sub>powered by [pkg/cmd/internal/issues](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)</sub></p></details>
| test | roachtest cdc initial scan rangefeed true failed on the test failed on branch master cloud gce test artifacts and logs in home agent work go src github com cockroachdb cockroach artifacts cdc initial scan rangefeed true run cdc go cdc go cdc go test runner go initial scan did not complete more artifacts powered by | 1 |
285,584 | 24,678,798,003 | IssuesEvent | 2022-10-18 19:21:13 | status-im/status-desktop | https://api.github.com/repos/status-im/status-desktop | closed | Communities portal: can't open community that is displayed on the portal | testing priority 1: high E:Bugfixes E:Communities messenger | ### Description
when opening (clicking) community, that was ingested from contract to the community portal, the community is not opened, and the following error is shown in console:
```
section is empty and cannot be made as active one
```
<img width="1512" alt="Screenshot 2022-09-06 at 11 41 58" src="https://user-images.githubusercontent.com/82375995/188597915-4477b266-958c-43a7-8dfc-debbc870ff59.png">
| 1.0 | Communities portal: can't open community that is displayed on the portal - ### Description
when opening (clicking) community, that was ingested from contract to the community portal, the community is not opened, and the following error is shown in console:
```
section is empty and cannot be made as active one
```
<img width="1512" alt="Screenshot 2022-09-06 at 11 41 58" src="https://user-images.githubusercontent.com/82375995/188597915-4477b266-958c-43a7-8dfc-debbc870ff59.png">
| test | communities portal can t open community that is displayed on the portal description when opening clicking community that was ingested from contract to the community portal the community is not opened and the following error is shown in console section is empty and cannot be made as active one img width alt screenshot at src | 1 |
95,010 | 3,933,559,800 | IssuesEvent | 2016-04-25 19:33:32 | ghutchis/avogadro | https://api.github.com/repos/ghutchis/avogadro | closed | Click to measure tool | auto-migrated low priority v_1.1.0 | The hover popup for the Click to measure tool mentions only distances and angles and does not measure dihedrals (which can be displayed by clicking on a 4th atoms). This latter aspect is not directly documented.
Reported by: @hrzepa | 1.0 | Click to measure tool - The hover popup for the Click to measure tool mentions only distances and angles and does not measure dihedrals (which can be displayed by clicking on a 4th atoms). This latter aspect is not directly documented.
Reported by: @hrzepa | non_test | click to measure tool the hover popup for the click to measure tool mentions only distances and angles and does not measure dihedrals which can be displayed by clicking on a atoms this latter aspect is not directly documented reported by hrzepa | 0 |
5,353 | 2,772,033,330 | IssuesEvent | 2015-05-02 08:09:52 | rust-lang/rust | https://api.github.com/repos/rust-lang/rust | closed | Compiler panic on function shadowing | A-resolve E-needstest I-ICE | Compiler expects function, finds &str. This causes a compiler panic when attempting to compile.
```rust
fn main() {
let train = "foo";
let x = train("hello");
}
fn train(file: &str) -> bool {
true
}
``` | 1.0 | Compiler panic on function shadowing - Compiler expects function, finds &str. This causes a compiler panic when attempting to compile.
```rust
fn main() {
let train = "foo";
let x = train("hello");
}
fn train(file: &str) -> bool {
true
}
``` | test | compiler panic on function shadowing compiler expects function finds str this causes a compiler panic when attempting to compile rust fn main let train foo let x train hello fn train file str bool true | 1 |
289,174 | 24,965,854,084 | IssuesEvent | 2022-11-01 19:18:34 | DMTF/libspdm | https://api.github.com/repos/DMTF/libspdm | closed | Enable code coverage in CI/CD | enhancement test | Github allows logs, like code coverage reports, to be stored and retrieved from their servers. In particular, since LCOV generates .html files I believe (not 100 % sure) we can use Github to host the .html files through Github Pages. | 1.0 | Enable code coverage in CI/CD - Github allows logs, like code coverage reports, to be stored and retrieved from their servers. In particular, since LCOV generates .html files I believe (not 100 % sure) we can use Github to host the .html files through Github Pages. | test | enable code coverage in ci cd github allows logs like code coverage reports to be stored and retrieved from their servers in particular since lcov generates html files i believe not sure we can use github to host the html files through github pages | 1 |
104,008 | 8,958,010,213 | IssuesEvent | 2019-01-27 10:31:08 | CNMAT/CNMAT-Externs | https://api.github.com/repos/CNMAT/CNMAT-Externs | closed | assist_string() no longer supported | bug testing | I'm getting this error in the Max window for Max 8:
> assist_string: function no longer supported
I that needs to be done some other way. | 1.0 | assist_string() no longer supported - I'm getting this error in the Max window for Max 8:
> assist_string: function no longer supported
I that needs to be done some other way. | test | assist string no longer supported i m getting this error in the max window for max assist string function no longer supported i that needs to be done some other way | 1 |
121,582 | 15,982,347,033 | IssuesEvent | 2021-04-18 03:29:48 | sophiaklu/sp21-cse110-lab3 | https://api.github.com/repos/sophiaklu/sp21-cse110-lab3 | closed | Style journal entry #1, #2, and #3 | css design | # Proposed Change
Add style (css) for journal entry 1, 2, and 3 in index.html
# Why is this needed?
adding aesthetic layer | 1.0 | Style journal entry #1, #2, and #3 - # Proposed Change
Add style (css) for journal entry 1, 2, and 3 in index.html
# Why is this needed?
adding aesthetic layer | non_test | style journal entry and proposed change add style css for journal entry and in index html why is this needed adding aesthetic layer | 0 |
270,304 | 23,501,366,013 | IssuesEvent | 2022-08-18 08:43:21 | wazuh/wazuh | https://api.github.com/repos/wazuh/wazuh | closed | Release 4.3.7 - Revision 1 - Release Candidate RC1 - Footprint Metrics - SYSCOLLECTOR (3.5d) | release test/4.3.7 | ## Footprint metrics information
| | |
|---------------------------------|--------------------------------------------|
| **Main release candidate issue #** | # |
| **Main footprint metrics issue #** | #14554 |
| **Version** | 4.3.7 |
| **Release candidate #** | RC1 |
| **Tag** | https://github.com/wazuh/wazuh/tree/4.3.7-rc1 |
## Stress test documentation
### Packages used
- Repository: `packages-dev.wazuh.com`
- Package path: `pre-release`
- Package revision: `1`
- **Jenkins build**: https://ci.wazuh.info/job/Test_stress/3456/
---
<details><summary>Manager</summary>
+ <details><summary>Plots</summary>
















</details>
+ <details><summary>Logs and configuration</summary>
[ossec_Test_stress_B3456_manager_2022-08-16.zip](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_manager_centos/logs/ossec_Test_stress_B3456_manager_2022-08-16.zip)
</details>
+ <details><summary>CSV</summary>
[monitor-manager-Test_stress_B3456_manager-pre-release.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_manager_centos/data/monitor-manager-Test_stress_B3456_manager-pre-release.csv)
[Test_stress_B3456_manager_analysisd_state.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_manager_centos/data/Test_stress_B3456_manager_analysisd_state.csv)
[Test_stress_B3456_manager_remoted_state.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_manager_centos/data/Test_stress_B3456_manager_remoted_state.csv)
</details>
</details>
<details><summary>Centos agent</summary>
+ <details><summary>Plots</summary>

















</details>
+ <details><summary>Logs and configuration</summary>
[ossec_Test_stress_B3456_centos_2022-08-16.zip](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_centos/logs/ossec_Test_stress_B3456_centos_2022-08-16.zip)
</details>
+ <details><summary>CSV</summary>
[monitor-agent-Test_stress_B3456_centos-pre-release.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_centos/data/monitor-agent-Test_stress_B3456_centos-pre-release.csv)
[Test_stress_B3456_centos_agentd_state.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_centos/data/Test_stress_B3456_centos_agentd_state.csv)
</details>
</details>
<details><summary>Ubuntu agent</summary>
+ <details><summary>Plots</summary>

















</details>
+ <details><summary>Logs and configuration</summary>
[ossec_Test_stress_B3456_ubuntu_2022-08-16.zip](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_ubuntu/logs/ossec_Test_stress_B3456_ubuntu_2022-08-16.zip)
</details>
+ <details><summary>CSV</summary>
[monitor-agent-Test_stress_B3456_ubuntu-pre-release.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_ubuntu/data/monitor-agent-Test_stress_B3456_ubuntu-pre-release.csv)
[Test_stress_B3456_ubuntu_agentd_state.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_ubuntu/data/Test_stress_B3456_ubuntu_agentd_state.csv)
</details>
</details>
<details><summary>Windows agent</summary>
+ <details><summary>Plots</summary>















</details>
+ <details><summary>Logs and configuration</summary>
[ossec_Test_stress_B3456_windows_2022-08-16.zip](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_windows/logs/ossec_Test_stress_B3456_windows_2022-08-16.zip)
</details>
+ <details><summary>CSV</summary>
[monitor-winagent-Test_stress_B3456_windows-pre-release.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_windows/data/monitor-winagent-Test_stress_B3456_windows-pre-release.csv)
[Test_stress_B3456_windows_agentd_state.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_windows/data/Test_stress_B3456_windows_agentd_state.csv)
</details>
</details>
<details><summary>macOS agent</summary>
+ <details><summary>Plots</summary>
</details>
+ <details><summary>Logs and configuration</summary>
</details>
+ <details><summary>CSV</summary>
</details>
</details>
<details><summary>Solaris agent</summary>
+ <details><summary>Plots</summary>
</details>
+ <details><summary>Logs and configuration</summary>
</details>
+ <details><summary>CSV</summary>
</details>
</details> | 1.0 | Release 4.3.7 - Revision 1 - Release Candidate RC1 - Footprint Metrics - SYSCOLLECTOR (3.5d) - ## Footprint metrics information
| | |
|---------------------------------|--------------------------------------------|
| **Main release candidate issue #** | # |
| **Main footprint metrics issue #** | #14554 |
| **Version** | 4.3.7 |
| **Release candidate #** | RC1 |
| **Tag** | https://github.com/wazuh/wazuh/tree/4.3.7-rc1 |
## Stress test documentation
### Packages used
- Repository: `packages-dev.wazuh.com`
- Package path: `pre-release`
- Package revision: `1`
- **Jenkins build**: https://ci.wazuh.info/job/Test_stress/3456/
---
<details><summary>Manager</summary>
+ <details><summary>Plots</summary>
















</details>
+ <details><summary>Logs and configuration</summary>
[ossec_Test_stress_B3456_manager_2022-08-16.zip](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_manager_centos/logs/ossec_Test_stress_B3456_manager_2022-08-16.zip)
</details>
+ <details><summary>CSV</summary>
[monitor-manager-Test_stress_B3456_manager-pre-release.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_manager_centos/data/monitor-manager-Test_stress_B3456_manager-pre-release.csv)
[Test_stress_B3456_manager_analysisd_state.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_manager_centos/data/Test_stress_B3456_manager_analysisd_state.csv)
[Test_stress_B3456_manager_remoted_state.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_manager_centos/data/Test_stress_B3456_manager_remoted_state.csv)
</details>
</details>
<details><summary>Centos agent</summary>
+ <details><summary>Plots</summary>

















</details>
+ <details><summary>Logs and configuration</summary>
[ossec_Test_stress_B3456_centos_2022-08-16.zip](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_centos/logs/ossec_Test_stress_B3456_centos_2022-08-16.zip)
</details>
+ <details><summary>CSV</summary>
[monitor-agent-Test_stress_B3456_centos-pre-release.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_centos/data/monitor-agent-Test_stress_B3456_centos-pre-release.csv)
[Test_stress_B3456_centos_agentd_state.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_centos/data/Test_stress_B3456_centos_agentd_state.csv)
</details>
</details>
<details><summary>Ubuntu agent</summary>
+ <details><summary>Plots</summary>

















</details>
+ <details><summary>Logs and configuration</summary>
[ossec_Test_stress_B3456_ubuntu_2022-08-16.zip](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_ubuntu/logs/ossec_Test_stress_B3456_ubuntu_2022-08-16.zip)
</details>
+ <details><summary>CSV</summary>
[monitor-agent-Test_stress_B3456_ubuntu-pre-release.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_ubuntu/data/monitor-agent-Test_stress_B3456_ubuntu-pre-release.csv)
[Test_stress_B3456_ubuntu_agentd_state.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_ubuntu/data/Test_stress_B3456_ubuntu_agentd_state.csv)
</details>
</details>
<details><summary>Windows agent</summary>
+ <details><summary>Plots</summary>















</details>
+ <details><summary>Logs and configuration</summary>
[ossec_Test_stress_B3456_windows_2022-08-16.zip](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_windows/logs/ossec_Test_stress_B3456_windows_2022-08-16.zip)
</details>
+ <details><summary>CSV</summary>
[monitor-winagent-Test_stress_B3456_windows-pre-release.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_windows/data/monitor-winagent-Test_stress_B3456_windows-pre-release.csv)
[Test_stress_B3456_windows_agentd_state.csv](https://ci.wazuh.com/data/Test_stress/pre-release/4.3.7/B3456-5040m/B3456_agent_windows/data/Test_stress_B3456_windows_agentd_state.csv)
</details>
</details>
<details><summary>macOS agent</summary>
+ <details><summary>Plots</summary>
</details>
+ <details><summary>Logs and configuration</summary>
</details>
+ <details><summary>CSV</summary>
</details>
</details>
<details><summary>Solaris agent</summary>
+ <details><summary>Plots</summary>
</details>
+ <details><summary>Logs and configuration</summary>
</details>
+ <details><summary>CSV</summary>
</details>
</details> | test | release revision release candidate footprint metrics syscollector footprint metrics information main release candidate issue main footprint metrics issue version release candidate tag stress test documentation packages used repository packages dev wazuh com package path pre release package revision jenkins build manager plots logs and configuration csv centos agent plots logs and configuration csv ubuntu agent plots logs and configuration csv windows agent plots logs and configuration csv macos agent plots logs and configuration csv solaris agent plots logs and configuration csv | 1 |
246,401 | 26,611,693,678 | IssuesEvent | 2023-01-24 01:04:47 | nidhihcl/linux-4.1.15 | https://api.github.com/repos/nidhihcl/linux-4.1.15 | closed | CVE-2022-41850 (Medium) detected in linuxlinux-4.6 - autoclosed | security vulnerability | ## CVE-2022-41850 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.6</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/nidhihcl/linux-4.1.15/commit/55d3d4cefc3daba58b100af3336832311407cf6f">55d3d4cefc3daba58b100af3336832311407cf6f</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/hid/hid-roccat.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/hid/hid-roccat.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
roccat_report_event in drivers/hid/hid-roccat.c in the Linux kernel through 5.19.12 has a race condition and resultant use-after-free in certain situations where a report is received while copying a report->value is in progress.
<p>Publish Date: 2022-09-30
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-41850>CVE-2022-41850</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.7</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: High
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2022-41850">https://www.linuxkernelcves.com/cves/CVE-2022-41850</a></p>
<p>Release Date: 2022-09-30</p>
<p>Fix Resolution: v4.9.331,v4.14.296,v4.19.262,v5.4.220,v5.10.150,v5.15.75,v6.0.3</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2022-41850 (Medium) detected in linuxlinux-4.6 - autoclosed - ## CVE-2022-41850 - Medium Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linuxlinux-4.6</b></p></summary>
<p>
<p>The Linux Kernel</p>
<p>Library home page: <a href=https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux>https://mirrors.edge.kernel.org/pub/linux/kernel/v4.x/?wsslib=linux</a></p>
<p>Found in HEAD commit: <a href="https://github.com/nidhihcl/linux-4.1.15/commit/55d3d4cefc3daba58b100af3336832311407cf6f">55d3d4cefc3daba58b100af3336832311407cf6f</a></p>
<p>Found in base branch: <b>master</b></p></p>
</details>
</p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary>
<p></p>
<p>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/hid/hid-roccat.c</b>
<img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/hid/hid-roccat.c</b>
</p>
</details>
<p></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
roccat_report_event in drivers/hid/hid-roccat.c in the Linux kernel through 5.19.12 has a race condition and resultant use-after-free in certain situations where a report is received while copying a report->value is in progress.
<p>Publish Date: 2022-09-30
<p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2022-41850>CVE-2022-41850</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>4.7</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Local
- Attack Complexity: High
- Privileges Required: Low
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://www.linuxkernelcves.com/cves/CVE-2022-41850">https://www.linuxkernelcves.com/cves/CVE-2022-41850</a></p>
<p>Release Date: 2022-09-30</p>
<p>Fix Resolution: v4.9.331,v4.14.296,v4.19.262,v5.4.220,v5.10.150,v5.15.75,v6.0.3</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_test | cve medium detected in linuxlinux autoclosed cve medium severity vulnerability vulnerable library linuxlinux the linux kernel library home page a href found in head commit a href found in base branch master vulnerable source files drivers hid hid roccat c drivers hid hid roccat c vulnerability details roccat report event in drivers hid hid roccat c in the linux kernel through has a race condition and resultant use after free in certain situations where a report is received while copying a report value is in progress publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity high privileges required low user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with mend | 0 |
55,370 | 14,008,700,113 | IssuesEvent | 2020-10-29 00:22:12 | mwilliams7197/WebGoat | https://api.github.com/repos/mwilliams7197/WebGoat | closed | CVE-2018-11695 (High) detected in node-sass-4.11.0.tgz - autoclosed | security vulnerability | ## CVE-2018-11695 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sass-4.11.0.tgz</b></p></summary>
<p>Wrapper around libsass</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.11.0.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.11.0.tgz</a></p>
<p>Path to dependency file: WebGoat/docs/package.json</p>
<p>Path to vulnerable library: WebGoat/docs/node_modules/node-sass/package.json</p>
<p>
Dependency Hierarchy:
- gulp-sass-4.0.2.tgz (Root Library)
- :x: **node-sass-4.11.0.tgz** (Vulnerable Library)
<p>Found in base branch: <b>develop</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
An issue was discovered in LibSass <3.5.3. A NULL pointer dereference was found in the function Sass::Expand::operator which could be leveraged by an attacker to cause a denial of service (application crash) or possibly have unspecified other impact.
<p>Publish Date: 2018-06-04
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-11695>CVE-2018-11695</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/sass/libsass/issues/2664">https://github.com/sass/libsass/issues/2664</a></p>
<p>Release Date: 2018-06-04</p>
<p>Fix Resolution: Libsass:3.5.3, Node-sass:4.9.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"node-sass","packageVersion":"4.11.0","isTransitiveDependency":true,"dependencyTree":"gulp-sass:4.0.2;node-sass:4.11.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"Libsass:3.5.3, Node-sass:4.9.0"}],"vulnerabilityIdentifier":"CVE-2018-11695","vulnerabilityDetails":"An issue was discovered in LibSass \u003c3.5.3. A NULL pointer dereference was found in the function Sass::Expand::operator which could be leveraged by an attacker to cause a denial of service (application crash) or possibly have unspecified other impact.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-11695","cvss3Severity":"high","cvss3Score":"8.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"Required","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> --> | True | CVE-2018-11695 (High) detected in node-sass-4.11.0.tgz - autoclosed - ## CVE-2018-11695 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>node-sass-4.11.0.tgz</b></p></summary>
<p>Wrapper around libsass</p>
<p>Library home page: <a href="https://registry.npmjs.org/node-sass/-/node-sass-4.11.0.tgz">https://registry.npmjs.org/node-sass/-/node-sass-4.11.0.tgz</a></p>
<p>Path to dependency file: WebGoat/docs/package.json</p>
<p>Path to vulnerable library: WebGoat/docs/node_modules/node-sass/package.json</p>
<p>
Dependency Hierarchy:
- gulp-sass-4.0.2.tgz (Root Library)
- :x: **node-sass-4.11.0.tgz** (Vulnerable Library)
<p>Found in base branch: <b>develop</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
An issue was discovered in LibSass <3.5.3. A NULL pointer dereference was found in the function Sass::Expand::operator which could be leveraged by an attacker to cause a denial of service (application crash) or possibly have unspecified other impact.
<p>Publish Date: 2018-06-04
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-11695>CVE-2018-11695</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>8.8</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: Required
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: High
- Integrity Impact: High
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Origin: <a href="https://github.com/sass/libsass/issues/2664">https://github.com/sass/libsass/issues/2664</a></p>
<p>Release Date: 2018-06-04</p>
<p>Fix Resolution: Libsass:3.5.3, Node-sass:4.9.0</p>
</p>
</details>
<p></p>
<!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"node-sass","packageVersion":"4.11.0","isTransitiveDependency":true,"dependencyTree":"gulp-sass:4.0.2;node-sass:4.11.0","isMinimumFixVersionAvailable":true,"minimumFixVersion":"Libsass:3.5.3, Node-sass:4.9.0"}],"vulnerabilityIdentifier":"CVE-2018-11695","vulnerabilityDetails":"An issue was discovered in LibSass \u003c3.5.3. A NULL pointer dereference was found in the function Sass::Expand::operator which could be leveraged by an attacker to cause a denial of service (application crash) or possibly have unspecified other impact.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2018-11695","cvss3Severity":"high","cvss3Score":"8.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"High","UI":"Required","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> --> | non_test | cve high detected in node sass tgz autoclosed cve high severity vulnerability vulnerable library node sass tgz wrapper around libsass library home page a href path to dependency file webgoat docs package json path to vulnerable library webgoat docs node modules node sass package json dependency hierarchy gulp sass tgz root library x node sass tgz vulnerable library found in base branch develop vulnerability details an issue was discovered in libsass a null pointer dereference was found in the function sass expand operator which could be leveraged by an attacker to cause a denial of service application crash or possibly have unspecified other impact publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution libsass node sass isopenpronvulnerability true ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails an issue was discovered in libsass a null pointer dereference was found in the function sass expand operator which could be leveraged by an attacker to cause a denial of service application crash or possibly have unspecified other impact vulnerabilityurl | 0 |
58,856 | 6,621,740,405 | IssuesEvent | 2017-09-21 20:22:59 | SEED-platform/seed | https://api.github.com/repos/SEED-platform/seed | closed | Check Matching results screen to make sure information is correct | Matching/Pairing Test | I will do more testing on this, but I just imported a file with 2191 records in it and this is what the program reported for records imported, etc. I have no idea where these numbers are coming from

And the records actually imported and in the list view are actually the 2191 records in the original file. | 1.0 | Check Matching results screen to make sure information is correct - I will do more testing on this, but I just imported a file with 2191 records in it and this is what the program reported for records imported, etc. I have no idea where these numbers are coming from

And the records actually imported and in the list view are actually the 2191 records in the original file. | test | check matching results screen to make sure information is correct i will do more testing on this but i just imported a file with records in it and this is what the program reported for records imported etc i have no idea where these numbers are coming from and the records actually imported and in the list view are actually the records in the original file | 1 |
131,872 | 10,720,424,005 | IssuesEvent | 2019-10-26 17:32:40 | ansible/molecule | https://api.github.com/repos/ansible/molecule | closed | Deprecation Warning: GCE module will be deprecated in 2.12 | bug hacktoberfest test | # Issue Type
- Deprecation warning
# Molecule and Ansible details
```
ansible --version && molecule --version
ansible 2.8.0
molecule, version 2.20.1
```
Molecule installation method: `pip`
Ansible installation method: `pip`
# Actual Behaviour
The [GCE module](https://docs.ansible.com/ansible/latest/modules/gce_module.html) will be deprecated in ansible 2.12.
The [recommendation](https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_2.8.html#deprecation-notices) is to use module `gcp_compute_instance`.
This must be reflected in `google` driver cookiecutter template I guess (`https://github.com/ansible/molecule/tree/master/molecule/cookiecutter/scenario/driver/gce`).
Using recommended modules will make playbooks a little more complex, for example you need to also use `gcp_compute_address` to create external address for VM. I am already using this in MongoDB role, where I test 3 node cluster with multiple disks, because it gives me more options.
I can provide some examples if you want. From first glance, there might be needed more variables from user in `platforms` section.
This is not yet big priority, because we still have a lot of time until ansible 2.12. | 1.0 | Deprecation Warning: GCE module will be deprecated in 2.12 - # Issue Type
- Deprecation warning
# Molecule and Ansible details
```
ansible --version && molecule --version
ansible 2.8.0
molecule, version 2.20.1
```
Molecule installation method: `pip`
Ansible installation method: `pip`
# Actual Behaviour
The [GCE module](https://docs.ansible.com/ansible/latest/modules/gce_module.html) will be deprecated in ansible 2.12.
The [recommendation](https://docs.ansible.com/ansible/devel/porting_guides/porting_guide_2.8.html#deprecation-notices) is to use module `gcp_compute_instance`.
This must be reflected in `google` driver cookiecutter template I guess (`https://github.com/ansible/molecule/tree/master/molecule/cookiecutter/scenario/driver/gce`).
Using recommended modules will make playbooks a little more complex, for example you need to also use `gcp_compute_address` to create external address for VM. I am already using this in MongoDB role, where I test 3 node cluster with multiple disks, because it gives me more options.
I can provide some examples if you want. From first glance, there might be needed more variables from user in `platforms` section.
This is not yet big priority, because we still have a lot of time until ansible 2.12. | test | deprecation warning gce module will be deprecated in issue type deprecation warning molecule and ansible details ansible version molecule version ansible molecule version molecule installation method pip ansible installation method pip actual behaviour the will be deprecated in ansible the is to use module gcp compute instance this must be reflected in google driver cookiecutter template i guess using recommended modules will make playbooks a little more complex for example you need to also use gcp compute address to create external address for vm i am already using this in mongodb role where i test node cluster with multiple disks because it gives me more options i can provide some examples if you want from first glance there might be needed more variables from user in platforms section this is not yet big priority because we still have a lot of time until ansible | 1 |
644,164 | 20,968,726,543 | IssuesEvent | 2022-03-28 09:20:16 | TencentBlueKing/bk-user | https://api.github.com/repos/TencentBlueKing/bk-user | closed | API 只支持来自apigateway和esb的请求 | Priority: ⚡️high Layer:⚕api | - saas -> api
- esb -> api
- login -> api
目前上云, 开启了token机制; 而容器化没有开启任何校验
------
可选:
1. token
2. app_code/app_secret
3. esb 和 apigateway的jwt | 1.0 | API 只支持来自apigateway和esb的请求 - - saas -> api
- esb -> api
- login -> api
目前上云, 开启了token机制; 而容器化没有开启任何校验
------
可选:
1. token
2. app_code/app_secret
3. esb 和 apigateway的jwt | non_test | api 只支持来自apigateway和esb的请求 saas api esb api login api 目前上云 开启了token机制 而容器化没有开启任何校验 可选 token app code app secret esb 和 apigateway的jwt | 0 |
30,649 | 5,830,555,678 | IssuesEvent | 2017-05-08 17:08:12 | habitat-sh/habitat | https://api.github.com/repos/habitat-sh/habitat | closed | Doc Bug | Bug Documentation | URL https://www.habitat.sh/docs/create-packages-configure/
Bad syntax:
[["servers"]]
host = host-1
port = 4545
[["servers"]]
host = host-2
port = 3434
Good syntax:
[[servers]] <--- quotes do NOT seem to be necessary
host = "host-1" <--- quotes here ARE necessary
port = 4545
... | 1.0 | Doc Bug - URL https://www.habitat.sh/docs/create-packages-configure/
Bad syntax:
[["servers"]]
host = host-1
port = 4545
[["servers"]]
host = host-2
port = 3434
Good syntax:
[[servers]] <--- quotes do NOT seem to be necessary
host = "host-1" <--- quotes here ARE necessary
port = 4545
... | non_test | doc bug url bad syntax host host port host host port good syntax quotes do not seem to be necessary host host quotes here are necessary port | 0 |
300,595 | 25,979,335,662 | IssuesEvent | 2022-12-19 17:20:23 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | roachtest: hibernate failed | C-test-failure O-robot O-roachtest branch-master T-sql-sessions | roachtest.hibernate [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7879902?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7879902?buildTab=artifacts#/hibernate) on master @ [ec095bc2fdbe4e518b076db20e4920fab67222bf](https://github.com/cockroachdb/cockroach/commits/ec095bc2fdbe4e518b076db20e4920fab67222bf):
```
test artifacts and logs in: /artifacts/hibernate/run_1
(test_impl.go:297).Fatalf:
Tests run on Cockroach v23.1.0-alpha.00000000-1017-gec095bc2fd
Tests run against hibernate 5.6.9
8406 Total Tests Run
8389 tests passed
17 tests failed
1928 tests skipped
0 tests ignored
0 tests passed unexpectedly
1 test failed unexpectedly
0 tests expected failed but skipped
0 tests expected failed but not run
---
--- FAIL: org.hibernate.jpa.test.criteria.selectcase.SelectCaseLiteralHandlingBindTest.whereCaseExpression - unknown (unexpected)
For a full summary look at the hibernate artifacts
An updated blocklist (hibernateBlockList23_1) is available in the artifacts' hibernate log
```
<p>Parameters: <code>ROACHTEST_cloud=gce</code>
, <code>ROACHTEST_cpu=4</code>
, <code>ROACHTEST_encrypted=false</code>
, <code>ROACHTEST_ssd=0</code>
</p>
<details><summary>Help</summary>
<p>
See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md)
See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7)
</p>
</details>
/cc @cockroachdb/sql-experience
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*hibernate.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-22238 | 2.0 | roachtest: hibernate failed - roachtest.hibernate [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7879902?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Nightlies_RoachtestNightlyGceBazel/7879902?buildTab=artifacts#/hibernate) on master @ [ec095bc2fdbe4e518b076db20e4920fab67222bf](https://github.com/cockroachdb/cockroach/commits/ec095bc2fdbe4e518b076db20e4920fab67222bf):
```
test artifacts and logs in: /artifacts/hibernate/run_1
(test_impl.go:297).Fatalf:
Tests run on Cockroach v23.1.0-alpha.00000000-1017-gec095bc2fd
Tests run against hibernate 5.6.9
8406 Total Tests Run
8389 tests passed
17 tests failed
1928 tests skipped
0 tests ignored
0 tests passed unexpectedly
1 test failed unexpectedly
0 tests expected failed but skipped
0 tests expected failed but not run
---
--- FAIL: org.hibernate.jpa.test.criteria.selectcase.SelectCaseLiteralHandlingBindTest.whereCaseExpression - unknown (unexpected)
For a full summary look at the hibernate artifacts
An updated blocklist (hibernateBlockList23_1) is available in the artifacts' hibernate log
```
<p>Parameters: <code>ROACHTEST_cloud=gce</code>
, <code>ROACHTEST_cpu=4</code>
, <code>ROACHTEST_encrypted=false</code>
, <code>ROACHTEST_ssd=0</code>
</p>
<details><summary>Help</summary>
<p>
See: [roachtest README](https://github.com/cockroachdb/cockroach/blob/master/pkg/cmd/roachtest/README.md)
See: [How To Investigate \(internal\)](https://cockroachlabs.atlassian.net/l/c/SSSBr8c7)
</p>
</details>
/cc @cockroachdb/sql-experience
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*hibernate.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-22238 | test | roachtest hibernate failed roachtest hibernate with on master test artifacts and logs in artifacts hibernate run test impl go fatalf tests run on cockroach alpha tests run against hibernate total tests run tests passed tests failed tests skipped tests ignored tests passed unexpectedly test failed unexpectedly tests expected failed but skipped tests expected failed but not run fail org hibernate jpa test criteria selectcase selectcaseliteralhandlingbindtest wherecaseexpression unknown unexpected for a full summary look at the hibernate artifacts an updated blocklist is available in the artifacts hibernate log parameters roachtest cloud gce roachtest cpu roachtest encrypted false roachtest ssd help see see cc cockroachdb sql experience jira issue crdb | 1 |
201,466 | 15,207,767,553 | IssuesEvent | 2021-02-17 00:58:27 | QubesOS/updates-status | https://api.github.com/repos/QubesOS/updates-status | closed | gui-agent-linux v4.1.15 (r4.1) | r4.1-archlinux-cur-test r4.1-bullseye-cur-test r4.1-buster-cur-test r4.1-centos8-cur-test r4.1-dom0-cur-test r4.1-fc31-cur-test r4.1-fc32-cur-test r4.1-fc33-cur-test | Update of gui-agent-linux to v4.1.15 for Qubes r4.1, see comments below for details.
Built from: https://github.com/QubesOS/qubes-gui-agent-linux/commit/3d2e1cdd3d5796aec3cbeab6303ac2adc719e3e9
[Changes since previous version](https://github.com/QubesOS/qubes-gui-agent-linux/compare/v4.1.14...v4.1.15):
QubesOS/qubes-gui-agent-linux@3d2e1cd version 4.1.15
QubesOS/qubes-gui-agent-linux@03bccc6 Merge remote-tracking branch 'origin/pr/126'
QubesOS/qubes-gui-agent-linux@ef0182f Merge remote-tracking branch 'origin/pr/113'
QubesOS/qubes-gui-agent-linux@56f1b43 Mass replace: ‘/var/run’ → ‘/run’
QubesOS/qubes-gui-agent-linux@473c450 Merge remote-tracking branch 'origin/pr/125'
QubesOS/qubes-gui-agent-linux@0793bc1 Merge remote-tracking branch 'origin/pr/124'
QubesOS/qubes-gui-agent-linux@a01c640 Merge remote-tracking branch 'origin/pr/121'
QubesOS/qubes-gui-agent-linux@ac6b71e Remove unneded time parameters
QubesOS/qubes-gui-agent-linux@c387fe3 Merge commit '39bc4cffd1a50dd0e0768d1184045360d3eee599' into less-XInternAtom
QubesOS/qubes-gui-agent-linux@93ab017 Merge commit '39bc4cffd1a50dd0e0768d1184045360d3eee599' into no-null-properties
QubesOS/qubes-gui-agent-linux@ab398bd Avoid passing NULL as an X11 string
QubesOS/qubes-gui-agent-linux@6a5378c Remove references to /tmp/qubes-session-{env,waiter}
QubesOS/qubes-gui-agent-linux@14e93a5 Tell Java we are a non-reparenting window manager
QubesOS/qubes-gui-agent-linux@f84093a Only set focus on windows that want it
QubesOS/qubes-gui-agent-linux@cc2a426 Use actual X11 timestamps
QubesOS/qubes-gui-agent-linux@19ce958 Delete commented-out code
QubesOS/qubes-gui-agent-linux@7391391 Add Vim modeline
QubesOS/qubes-gui-agent-linux@39da627 Log when an unmanaged window is skipped
QubesOS/qubes-gui-agent-linux@2984496 Move XInternAtom calls to startup
QubesOS/qubes-gui-agent-linux@1c2ea23 Remove unnecessary XInternAtom
QubesOS/qubes-gui-agent-linux@39bc4cf debian: update compat
QubesOS/qubes-gui-agent-linux@8cfa43d debian: update control
QubesOS/qubes-gui-agent-linux@585fa45 vmside: Implement the WM_STATE property.
QubesOS/qubes-gui-agent-linux@ea4931e vmside: Rename wm_state to net_wm_state.
QubesOS/qubes-gui-agent-linux@285a0a7 Start gui-agent only after systemd let in normal users
Referenced issues:
QubesOS/qubes-issues#6315
QubesOS/qubes-issues#5789
QubesOS/qubes-issues#3982
If you're release manager, you can issue GPG-inline signed command:
* `Upload gui-agent-linux 3d2e1cdd3d5796aec3cbeab6303ac2adc719e3e9 r4.1 current repo` (available 7 days from now)
* `Upload gui-agent-linux 3d2e1cdd3d5796aec3cbeab6303ac2adc719e3e9 r4.1 current (dists) repo`, you can choose subset of distributions, like `vm-fc24 vm-fc25` (available 7 days from now)
* `Upload gui-agent-linux 3d2e1cdd3d5796aec3cbeab6303ac2adc719e3e9 r4.1 security-testing repo`
Above commands will work only if packages in current-testing repository were built from given commit (i.e. no new version superseded it).
| 8.0 | gui-agent-linux v4.1.15 (r4.1) - Update of gui-agent-linux to v4.1.15 for Qubes r4.1, see comments below for details.
Built from: https://github.com/QubesOS/qubes-gui-agent-linux/commit/3d2e1cdd3d5796aec3cbeab6303ac2adc719e3e9
[Changes since previous version](https://github.com/QubesOS/qubes-gui-agent-linux/compare/v4.1.14...v4.1.15):
QubesOS/qubes-gui-agent-linux@3d2e1cd version 4.1.15
QubesOS/qubes-gui-agent-linux@03bccc6 Merge remote-tracking branch 'origin/pr/126'
QubesOS/qubes-gui-agent-linux@ef0182f Merge remote-tracking branch 'origin/pr/113'
QubesOS/qubes-gui-agent-linux@56f1b43 Mass replace: ‘/var/run’ → ‘/run’
QubesOS/qubes-gui-agent-linux@473c450 Merge remote-tracking branch 'origin/pr/125'
QubesOS/qubes-gui-agent-linux@0793bc1 Merge remote-tracking branch 'origin/pr/124'
QubesOS/qubes-gui-agent-linux@a01c640 Merge remote-tracking branch 'origin/pr/121'
QubesOS/qubes-gui-agent-linux@ac6b71e Remove unneded time parameters
QubesOS/qubes-gui-agent-linux@c387fe3 Merge commit '39bc4cffd1a50dd0e0768d1184045360d3eee599' into less-XInternAtom
QubesOS/qubes-gui-agent-linux@93ab017 Merge commit '39bc4cffd1a50dd0e0768d1184045360d3eee599' into no-null-properties
QubesOS/qubes-gui-agent-linux@ab398bd Avoid passing NULL as an X11 string
QubesOS/qubes-gui-agent-linux@6a5378c Remove references to /tmp/qubes-session-{env,waiter}
QubesOS/qubes-gui-agent-linux@14e93a5 Tell Java we are a non-reparenting window manager
QubesOS/qubes-gui-agent-linux@f84093a Only set focus on windows that want it
QubesOS/qubes-gui-agent-linux@cc2a426 Use actual X11 timestamps
QubesOS/qubes-gui-agent-linux@19ce958 Delete commented-out code
QubesOS/qubes-gui-agent-linux@7391391 Add Vim modeline
QubesOS/qubes-gui-agent-linux@39da627 Log when an unmanaged window is skipped
QubesOS/qubes-gui-agent-linux@2984496 Move XInternAtom calls to startup
QubesOS/qubes-gui-agent-linux@1c2ea23 Remove unnecessary XInternAtom
QubesOS/qubes-gui-agent-linux@39bc4cf debian: update compat
QubesOS/qubes-gui-agent-linux@8cfa43d debian: update control
QubesOS/qubes-gui-agent-linux@585fa45 vmside: Implement the WM_STATE property.
QubesOS/qubes-gui-agent-linux@ea4931e vmside: Rename wm_state to net_wm_state.
QubesOS/qubes-gui-agent-linux@285a0a7 Start gui-agent only after systemd let in normal users
Referenced issues:
QubesOS/qubes-issues#6315
QubesOS/qubes-issues#5789
QubesOS/qubes-issues#3982
If you're release manager, you can issue GPG-inline signed command:
* `Upload gui-agent-linux 3d2e1cdd3d5796aec3cbeab6303ac2adc719e3e9 r4.1 current repo` (available 7 days from now)
* `Upload gui-agent-linux 3d2e1cdd3d5796aec3cbeab6303ac2adc719e3e9 r4.1 current (dists) repo`, you can choose subset of distributions, like `vm-fc24 vm-fc25` (available 7 days from now)
* `Upload gui-agent-linux 3d2e1cdd3d5796aec3cbeab6303ac2adc719e3e9 r4.1 security-testing repo`
Above commands will work only if packages in current-testing repository were built from given commit (i.e. no new version superseded it).
| test | gui agent linux update of gui agent linux to for qubes see comments below for details built from qubesos qubes gui agent linux version qubesos qubes gui agent linux merge remote tracking branch origin pr qubesos qubes gui agent linux merge remote tracking branch origin pr qubesos qubes gui agent linux mass replace ‘ var run’ → ‘ run’ qubesos qubes gui agent linux merge remote tracking branch origin pr qubesos qubes gui agent linux merge remote tracking branch origin pr qubesos qubes gui agent linux merge remote tracking branch origin pr qubesos qubes gui agent linux remove unneded time parameters qubesos qubes gui agent linux merge commit into less xinternatom qubesos qubes gui agent linux merge commit into no null properties qubesos qubes gui agent linux avoid passing null as an string qubesos qubes gui agent linux remove references to tmp qubes session env waiter qubesos qubes gui agent linux tell java we are a non reparenting window manager qubesos qubes gui agent linux only set focus on windows that want it qubesos qubes gui agent linux use actual timestamps qubesos qubes gui agent linux delete commented out code qubesos qubes gui agent linux add vim modeline qubesos qubes gui agent linux log when an unmanaged window is skipped qubesos qubes gui agent linux move xinternatom calls to startup qubesos qubes gui agent linux remove unnecessary xinternatom qubesos qubes gui agent linux debian update compat qubesos qubes gui agent linux debian update control qubesos qubes gui agent linux vmside implement the wm state property qubesos qubes gui agent linux vmside rename wm state to net wm state qubesos qubes gui agent linux start gui agent only after systemd let in normal users referenced issues qubesos qubes issues qubesos qubes issues qubesos qubes issues if you re release manager you can issue gpg inline signed command upload gui agent linux current repo available days from now upload gui agent linux current dists repo you can choose subset of distributions like vm vm available days from now upload gui agent linux security testing repo above commands will work only if packages in current testing repository were built from given commit i e no new version superseded it | 1 |
101,778 | 8,797,429,341 | IssuesEvent | 2018-12-23 19:31:28 | flutter/flutter | https://api.github.com/repos/flutter/flutter | closed | Add a test for the compute method in Foundation. | a: tests framework waiting for PR to land (fixed) | The [`compute`](https://docs.flutter.io/flutter/foundation/compute.html) method in the in Foundation spawns isolates and attempts to run tasks on the same. This exercises the Engine and the VM in unique ways. There are no tests for this method in the framework. Isolate spawning tests in the engine also do not test child and grandchild isolate runs. Tests should be added for the following cases:
* Single child isolate spawn and shutdown.
* Child isolate spawns its own children.
* Child isolates are spawned and the engine (the Flutter view) is torn down. | 1.0 | Add a test for the compute method in Foundation. - The [`compute`](https://docs.flutter.io/flutter/foundation/compute.html) method in the in Foundation spawns isolates and attempts to run tasks on the same. This exercises the Engine and the VM in unique ways. There are no tests for this method in the framework. Isolate spawning tests in the engine also do not test child and grandchild isolate runs. Tests should be added for the following cases:
* Single child isolate spawn and shutdown.
* Child isolate spawns its own children.
* Child isolates are spawned and the engine (the Flutter view) is torn down. | test | add a test for the compute method in foundation the method in the in foundation spawns isolates and attempts to run tasks on the same this exercises the engine and the vm in unique ways there are no tests for this method in the framework isolate spawning tests in the engine also do not test child and grandchild isolate runs tests should be added for the following cases single child isolate spawn and shutdown child isolate spawns its own children child isolates are spawned and the engine the flutter view is torn down | 1 |
314,628 | 9,600,713,086 | IssuesEvent | 2019-05-10 10:03:58 | webcompat/web-bugs | https://api.github.com/repos/webcompat/web-bugs | closed | mobile.firefoxchina.cn - see bug description | browser-firefox-mobile engine-gecko priority-normal | <!-- @browser: Firefox Mobile 66.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 7.1.2; Mobile; rv:66.0) Gecko/66.0 Firefox/66.0 -->
<!-- @reported_with: mobile-reporter -->
**URL**: https://mobile.firefoxchina.cn/
**Browser / Version**: Firefox Mobile 66.0
**Operating System**: Android 7.1.2
**Tested Another Browser**: Yes
**Problem type**: Something else
**Description**: I NEED ENGLISH LANGUAGE THAN CHINESE
**Steps to Reproduce**:
i don,t understand these chinese language
<details>
<summary>Browser Configuration</summary>
<ul>
<li>mixed active content blocked: false</li><li>image.mem.shared: true</li><li>buildID: 20190508040447</li><li>tracking content blocked: false</li><li>gfx.webrender.blob-images: true</li><li>hasTouchScreen: true</li><li>mixed passive content blocked: false</li><li>gfx.webrender.enabled: false</li><li>gfx.webrender.all: false</li><li>channel: default</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | 1.0 | mobile.firefoxchina.cn - see bug description - <!-- @browser: Firefox Mobile 66.0 -->
<!-- @ua_header: Mozilla/5.0 (Android 7.1.2; Mobile; rv:66.0) Gecko/66.0 Firefox/66.0 -->
<!-- @reported_with: mobile-reporter -->
**URL**: https://mobile.firefoxchina.cn/
**Browser / Version**: Firefox Mobile 66.0
**Operating System**: Android 7.1.2
**Tested Another Browser**: Yes
**Problem type**: Something else
**Description**: I NEED ENGLISH LANGUAGE THAN CHINESE
**Steps to Reproduce**:
i don,t understand these chinese language
<details>
<summary>Browser Configuration</summary>
<ul>
<li>mixed active content blocked: false</li><li>image.mem.shared: true</li><li>buildID: 20190508040447</li><li>tracking content blocked: false</li><li>gfx.webrender.blob-images: true</li><li>hasTouchScreen: true</li><li>mixed passive content blocked: false</li><li>gfx.webrender.enabled: false</li><li>gfx.webrender.all: false</li><li>channel: default</li>
</ul>
</details>
_From [webcompat.com](https://webcompat.com/) with ❤️_ | non_test | mobile firefoxchina cn see bug description url browser version firefox mobile operating system android tested another browser yes problem type something else description i need english language than chinese steps to reproduce i don t understand these chinese language browser configuration mixed active content blocked false image mem shared true buildid tracking content blocked false gfx webrender blob images true hastouchscreen true mixed passive content blocked false gfx webrender enabled false gfx webrender all false channel default from with ❤️ | 0 |
325,593 | 27,946,313,075 | IssuesEvent | 2023-03-24 03:37:37 | pyca/cryptography | https://api.github.com/repos/pyca/cryptography | closed | Switch to cargo sparse registry | testing | https://github.com/rust-lang/cargo/pull/11224 will be in rust 1.68.0 (releasing on March 9). This is a tracking issue for adopting it fully.
- [x] Rebuild container images from infra with latest rustup stable.
- [x] https://github.com/pyca/cryptography/pull/8480
- [x] Upgrade tart base image with latest rustc for arm64 macOS runners.
- [ ] Wait for GH to ship 1.68.0 in base images
- [x] https://github.com/actions/runner-images/pull/7279
- [ ] https://github.com/actions/runner-images/pull/7309
- [x] https://github.com/actions/runner-images/pull/7286
- [ ] Add the same key everywhere else 😄
- [ ] Delete `~/.cargo/registry/index/` from `.github/actions/cache/action.yml` since it is no longer needed. | 1.0 | Switch to cargo sparse registry - https://github.com/rust-lang/cargo/pull/11224 will be in rust 1.68.0 (releasing on March 9). This is a tracking issue for adopting it fully.
- [x] Rebuild container images from infra with latest rustup stable.
- [x] https://github.com/pyca/cryptography/pull/8480
- [x] Upgrade tart base image with latest rustc for arm64 macOS runners.
- [ ] Wait for GH to ship 1.68.0 in base images
- [x] https://github.com/actions/runner-images/pull/7279
- [ ] https://github.com/actions/runner-images/pull/7309
- [x] https://github.com/actions/runner-images/pull/7286
- [ ] Add the same key everywhere else 😄
- [ ] Delete `~/.cargo/registry/index/` from `.github/actions/cache/action.yml` since it is no longer needed. | test | switch to cargo sparse registry will be in rust releasing on march this is a tracking issue for adopting it fully rebuild container images from infra with latest rustup stable upgrade tart base image with latest rustc for macos runners wait for gh to ship in base images add the same key everywhere else 😄 delete cargo registry index from github actions cache action yml since it is no longer needed | 1 |
82,257 | 15,882,694,834 | IssuesEvent | 2021-04-09 16:21:43 | eventespresso/barista | https://api.github.com/repos/eventespresso/barista | closed | Organize E2E Utilities | C: assets 💎 D: Packages 📦 P3: med priority 😐 S:1 new 👶🏻 T: code-quality 👾 | While reviewing https://github.com/eventespresso/barista/pull/813 I realized that we should start to organize our utility functions otherwise that folder will get really crowded making it difficult to find things.
I'm thinking using the domains would work best as top level folders, for example:
```
packages
e2e-tests
utils
admin
ee-event-editor
addNewDate.ts
addNewEntity.ts
addNewPriceModifier.ts
addNewTicket.ts
wp-plugins-page
activate-plugin.js
wp-themes-page
activate-theme.js
public
reg-checkout
addNewRegistration.ts
answerRegFormTextInput.ts
shared
canvas.js
clear-local-storage.js
```
but we may want to also add additional folders within that, ex:
```
ee-event-editor
addNewEntity.ts
datetimes
addNewDate.ts
tickets
addNewPriceModifier.ts
addNewTicket.ts
```
thoughts? suggestions? random facts about cephalopods? | 1.0 | Organize E2E Utilities - While reviewing https://github.com/eventespresso/barista/pull/813 I realized that we should start to organize our utility functions otherwise that folder will get really crowded making it difficult to find things.
I'm thinking using the domains would work best as top level folders, for example:
```
packages
e2e-tests
utils
admin
ee-event-editor
addNewDate.ts
addNewEntity.ts
addNewPriceModifier.ts
addNewTicket.ts
wp-plugins-page
activate-plugin.js
wp-themes-page
activate-theme.js
public
reg-checkout
addNewRegistration.ts
answerRegFormTextInput.ts
shared
canvas.js
clear-local-storage.js
```
but we may want to also add additional folders within that, ex:
```
ee-event-editor
addNewEntity.ts
datetimes
addNewDate.ts
tickets
addNewPriceModifier.ts
addNewTicket.ts
```
thoughts? suggestions? random facts about cephalopods? | non_test | organize utilities while reviewing i realized that we should start to organize our utility functions otherwise that folder will get really crowded making it difficult to find things i m thinking using the domains would work best as top level folders for example packages tests utils admin ee event editor addnewdate ts addnewentity ts addnewpricemodifier ts addnewticket ts wp plugins page activate plugin js wp themes page activate theme js public reg checkout addnewregistration ts answerregformtextinput ts shared canvas js clear local storage js but we may want to also add additional folders within that ex ee event editor addnewentity ts datetimes addnewdate ts tickets addnewpricemodifier ts addnewticket ts thoughts suggestions random facts about cephalopods | 0 |
361,392 | 25,337,952,484 | IssuesEvent | 2022-11-18 18:34:17 | BASIN-3D/basin3d | https://api.github.com/repos/BASIN-3D/basin3d | opened | Update Acknowledgements | documentation | The acknowledgements in README.md should include ESS-DIVE. We should also mention that the funding came from the DOE Office of Science Biological and Environmental Research program. | 1.0 | Update Acknowledgements - The acknowledgements in README.md should include ESS-DIVE. We should also mention that the funding came from the DOE Office of Science Biological and Environmental Research program. | non_test | update acknowledgements the acknowledgements in readme md should include ess dive we should also mention that the funding came from the doe office of science biological and environmental research program | 0 |
183,811 | 14,257,165,747 | IssuesEvent | 2020-11-20 02:53:58 | ryanheise/just_audio | https://api.github.com/repos/ryanheise/just_audio | closed | iOS: load with initialIndex greater than previous playlist size fails | 3 testing bug | <!-- ALL SECTIONS BELOW MUST BE COMPLETED -->
**Which API doesn't behave as documented, and how does it misbehave?**
`load `with `initialIndex `greater than previous playlist size fails on iOS (Android works)
**Minimal reproduction project**
https://github.com/bacr/just_audio/blob/master/just_audio/example/lib/main.dart
**To Reproduce (i.e. user steps, not code)**
Run example
**Error messages**
```
Error in handleMethodCall
```
**Expected behavior**
Example will play first playlist for 5 seconds and then change to second playlist.
**Smartphone (please complete the following information):**
- Device: iPhone 8 emulator, iPhone X
- OS: iOS 13.5, 14.1
**Flutter SDK version**
```
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 1.22.3, on Mac OS X 10.15.5 19F101, locale en-RU)
[✗] Android toolchain - develop for Android devices
✗ Unable to locate Android SDK.
Install Android Studio from: https://developer.android.com/studio/index.html
On first launch it will assist you in installing the Android SDK components.
(or visit https://flutter.dev/docs/get-started/install/macos#android-setup for detailed instructions).
If the Android SDK has been installed to a custom location, set ANDROID_SDK_ROOT to that location.
You may also want to add it to your PATH environment variable.
[✓] Xcode - develop for iOS and macOS (Xcode 11.5)
[!] Android Studio (not installed)
[✓] VS Code (version 1.50.1)
[✓] Connected device (1 available)
! Doctor found issues in 2 categories.
```
| 1.0 | iOS: load with initialIndex greater than previous playlist size fails - <!-- ALL SECTIONS BELOW MUST BE COMPLETED -->
**Which API doesn't behave as documented, and how does it misbehave?**
`load `with `initialIndex `greater than previous playlist size fails on iOS (Android works)
**Minimal reproduction project**
https://github.com/bacr/just_audio/blob/master/just_audio/example/lib/main.dart
**To Reproduce (i.e. user steps, not code)**
Run example
**Error messages**
```
Error in handleMethodCall
```
**Expected behavior**
Example will play first playlist for 5 seconds and then change to second playlist.
**Smartphone (please complete the following information):**
- Device: iPhone 8 emulator, iPhone X
- OS: iOS 13.5, 14.1
**Flutter SDK version**
```
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 1.22.3, on Mac OS X 10.15.5 19F101, locale en-RU)
[✗] Android toolchain - develop for Android devices
✗ Unable to locate Android SDK.
Install Android Studio from: https://developer.android.com/studio/index.html
On first launch it will assist you in installing the Android SDK components.
(or visit https://flutter.dev/docs/get-started/install/macos#android-setup for detailed instructions).
If the Android SDK has been installed to a custom location, set ANDROID_SDK_ROOT to that location.
You may also want to add it to your PATH environment variable.
[✓] Xcode - develop for iOS and macOS (Xcode 11.5)
[!] Android Studio (not installed)
[✓] VS Code (version 1.50.1)
[✓] Connected device (1 available)
! Doctor found issues in 2 categories.
```
| test | ios load with initialindex greater than previous playlist size fails which api doesn t behave as documented and how does it misbehave load with initialindex greater than previous playlist size fails on ios android works minimal reproduction project to reproduce i e user steps not code run example error messages error in handlemethodcall expected behavior example will play first playlist for seconds and then change to second playlist smartphone please complete the following information device iphone emulator iphone x os ios flutter sdk version doctor summary to see all details run flutter doctor v flutter channel stable on mac os x locale en ru android toolchain develop for android devices ✗ unable to locate android sdk install android studio from on first launch it will assist you in installing the android sdk components or visit for detailed instructions if the android sdk has been installed to a custom location set android sdk root to that location you may also want to add it to your path environment variable xcode develop for ios and macos xcode android studio not installed vs code version connected device available doctor found issues in categories | 1 |
502,684 | 14,564,892,163 | IssuesEvent | 2020-12-17 06:11:03 | Plaxy-Technologies-Inc/YouPlanets-Bug-Report | https://api.github.com/repos/Plaxy-Technologies-Inc/YouPlanets-Bug-Report | opened | Refreshing issue | Priority: Medium | **Describe the bug**
If refreshing on Planet Question on Desktop, it will direct users to Planet Page. If refreshing any pages in planet studio on mobile, it will direct users to Planet Page.
**To Reproduce**
just try | 1.0 | Refreshing issue - **Describe the bug**
If refreshing on Planet Question on Desktop, it will direct users to Planet Page. If refreshing any pages in planet studio on mobile, it will direct users to Planet Page.
**To Reproduce**
just try | non_test | refreshing issue describe the bug if refreshing on planet question on desktop it will direct users to planet page if refreshing any pages in planet studio on mobile it will direct users to planet page to reproduce just try | 0 |
163,025 | 13,908,361,757 | IssuesEvent | 2020-10-20 13:43:41 | do-community/creatorlinks | https://api.github.com/repos/do-community/creatorlinks | opened | Update Readme to include detailed setup instructions | documentation good first issue | Update README file to include more detailed setup instructions to get the development environment up and running. | 1.0 | Update Readme to include detailed setup instructions - Update README file to include more detailed setup instructions to get the development environment up and running. | non_test | update readme to include detailed setup instructions update readme file to include more detailed setup instructions to get the development environment up and running | 0 |
480,766 | 13,866,483,885 | IssuesEvent | 2020-10-16 06:53:31 | ISISScientificComputing/autoreduce | https://api.github.com/repos/ISISScientificComputing/autoreduce | closed | Run not found when run exists | :clock1: High Priority :key: WebApp | Issue raised by: [developer]
Found in #750
### What?
For some instruments,(e.g. GEM or HRPD), clicking on a run that exists results in `Reduction run not found` instead of seeing the result from the run!
To reproduce:
* If it does not already exist on the WebApp submit `python manual_submission.py HRPD 78938` where HRPD at this point is setup to run the simple copy-raw-file script and therefore shouldn't be failing on any circumstance
* Then in WebApp click on HRPD and then 78938
Which result in the WebApp 'Reduction run not found'.
### Where?
Either a bug in the WebApp code or that the database get populated in such a why that mismatch happens. To view content of database use e.g. MySQL Workbench
### Reproducible?
Yes
### How to test the issue is resolved
The above steps can be repeated successfully and with result from run displayed. Furthermore repeat the above steps but purposes, during cycle 20_2, purposely insert error in HRPD reduce.py script (HRPD is not enabled in production for cycle 20_2). Test that for this case also result of run are displayed. Selenium tested of webapp is still not enabled, but meanwhile it may possible to test aspect of this via e.g. systemtests/test_end_to_end.py - not sure
| 1.0 | Run not found when run exists - Issue raised by: [developer]
Found in #750
### What?
For some instruments,(e.g. GEM or HRPD), clicking on a run that exists results in `Reduction run not found` instead of seeing the result from the run!
To reproduce:
* If it does not already exist on the WebApp submit `python manual_submission.py HRPD 78938` where HRPD at this point is setup to run the simple copy-raw-file script and therefore shouldn't be failing on any circumstance
* Then in WebApp click on HRPD and then 78938
Which result in the WebApp 'Reduction run not found'.
### Where?
Either a bug in the WebApp code or that the database get populated in such a why that mismatch happens. To view content of database use e.g. MySQL Workbench
### Reproducible?
Yes
### How to test the issue is resolved
The above steps can be repeated successfully and with result from run displayed. Furthermore repeat the above steps but purposes, during cycle 20_2, purposely insert error in HRPD reduce.py script (HRPD is not enabled in production for cycle 20_2). Test that for this case also result of run are displayed. Selenium tested of webapp is still not enabled, but meanwhile it may possible to test aspect of this via e.g. systemtests/test_end_to_end.py - not sure
| non_test | run not found when run exists issue raised by found in what for some instruments e g gem or hrpd clicking on a run that exists results in reduction run not found instead of seeing the result from the run to reproduce if it does not already exist on the webapp submit python manual submission py hrpd where hrpd at this point is setup to run the simple copy raw file script and therefore shouldn t be failing on any circumstance then in webapp click on hrpd and then which result in the webapp reduction run not found where either a bug in the webapp code or that the database get populated in such a why that mismatch happens to view content of database use e g mysql workbench reproducible yes how to test the issue is resolved the above steps can be repeated successfully and with result from run displayed furthermore repeat the above steps but purposes during cycle purposely insert error in hrpd reduce py script hrpd is not enabled in production for cycle test that for this case also result of run are displayed selenium tested of webapp is still not enabled but meanwhile it may possible to test aspect of this via e g systemtests test end to end py not sure | 0 |
10,500 | 2,622,168,482 | IssuesEvent | 2015-03-04 00:13:27 | byzhang/rapidjson | https://api.github.com/repos/byzhang/rapidjson | closed | new document's AddMember asserted. | auto-migrated Priority-Medium Type-Defect | ```
I want to create an new json document:
========================================
rapidjson::Document document;
document.AddMember<int>("int_1", 1, document.GetAllocator());
========================================
Program asserted at document.h:253
252: GenericValue& AddMember(GenericValue& name, GenericValue& value,
Allocator& allocator) {
253: RAPIDJSON_ASSERT(IsObject());
I must call Parse("{}") before any AddMember() to avoid this assert.
It's corrected?
```
Original issue reported on code.google.com by `zhangpei...@gmail.com` on 11 Oct 2012 at 6:51 | 1.0 | new document's AddMember asserted. - ```
I want to create an new json document:
========================================
rapidjson::Document document;
document.AddMember<int>("int_1", 1, document.GetAllocator());
========================================
Program asserted at document.h:253
252: GenericValue& AddMember(GenericValue& name, GenericValue& value,
Allocator& allocator) {
253: RAPIDJSON_ASSERT(IsObject());
I must call Parse("{}") before any AddMember() to avoid this assert.
It's corrected?
```
Original issue reported on code.google.com by `zhangpei...@gmail.com` on 11 Oct 2012 at 6:51 | non_test | new document s addmember asserted i want to create an new json document rapidjson document document document addmember int document getallocator program asserted at document h genericvalue addmember genericvalue name genericvalue value allocator allocator rapidjson assert isobject i must call parse before any addmember to avoid this assert it s corrected original issue reported on code google com by zhangpei gmail com on oct at | 0 |
173,835 | 13,446,902,592 | IssuesEvent | 2020-09-08 13:35:18 | navikt/ditt-nav-arbeidsgiver-api | https://api.github.com/repos/navikt/ditt-nav-arbeidsgiver-api | closed | Bygg av test_master | deploy test_master | Kommenter med
>/deploy test_master
for å deploye til dev-fss.
Commit: c852b38d11ace72ef15ded45feb39f63fd36a700 | 1.0 | Bygg av test_master - Kommenter med
>/deploy test_master
for å deploye til dev-fss.
Commit: c852b38d11ace72ef15ded45feb39f63fd36a700 | test | bygg av test master kommenter med deploy test master for å deploye til dev fss commit | 1 |
125,569 | 26,687,279,271 | IssuesEvent | 2023-01-26 23:22:00 | GPUOpen-Tools/compressonator | https://api.github.com/repos/GPUOpen-Tools/compressonator | closed | Is it possible to have windows CLI releases as zip files? | Code update | Currently, windows releases are executables that require administrator privileges to install the command line tool. The executable can't even be unpacked by 7zip. There's no reason to "install" a CLI tool, afaik.
Edit: just found out the .exe can be called from the command line, but the administrator privileges requirement is still an issue.
Edit: tried it. It extracted files somewhere, I don't know where. Not to the path I specified.
Would it be possible to have a simple archive as it's provided for linux ?
At least for the command line version. This would help a lot for automatic deployment of new versions, thank you | 1.0 | Is it possible to have windows CLI releases as zip files? - Currently, windows releases are executables that require administrator privileges to install the command line tool. The executable can't even be unpacked by 7zip. There's no reason to "install" a CLI tool, afaik.
Edit: just found out the .exe can be called from the command line, but the administrator privileges requirement is still an issue.
Edit: tried it. It extracted files somewhere, I don't know where. Not to the path I specified.
Would it be possible to have a simple archive as it's provided for linux ?
At least for the command line version. This would help a lot for automatic deployment of new versions, thank you | non_test | is it possible to have windows cli releases as zip files currently windows releases are executables that require administrator privileges to install the command line tool the executable can t even be unpacked by there s no reason to install a cli tool afaik edit just found out the exe can be called from the command line but the administrator privileges requirement is still an issue edit tried it it extracted files somewhere i don t know where not to the path i specified would it be possible to have a simple archive as it s provided for linux at least for the command line version this would help a lot for automatic deployment of new versions thank you | 0 |
333,117 | 29,508,928,051 | IssuesEvent | 2023-06-03 17:17:08 | JuliaPluto/Malt.jl | https://api.github.com/repos/JuliaPluto/Malt.jl | closed | Test for nesting | test | We already know that this will work, but it is good to add a test:
Malt.jl should be usable inside a Malt.jl worker without any change in functionality. | 1.0 | Test for nesting - We already know that this will work, but it is good to add a test:
Malt.jl should be usable inside a Malt.jl worker without any change in functionality. | test | test for nesting we already know that this will work but it is good to add a test malt jl should be usable inside a malt jl worker without any change in functionality | 1 |
25,397 | 5,163,250,148 | IssuesEvent | 2017-01-17 05:37:25 | wireservice/csvkit | https://api.github.com/repos/wireservice/csvkit | closed | csvclean documentation is poor | documentation | Great tool really, but the documentation is very poor. It should be interesting to explain each task done by csvclean:
- delete every unneeded quote
- recode from XXX charset to UTF-8
- replace X delimiter by a comma
- replace \r\n by \n
This last modification is ok for me as I can then grep the file without problem, but it is not compatible with the RFC (which recommand \r\n).
| 1.0 | csvclean documentation is poor - Great tool really, but the documentation is very poor. It should be interesting to explain each task done by csvclean:
- delete every unneeded quote
- recode from XXX charset to UTF-8
- replace X delimiter by a comma
- replace \r\n by \n
This last modification is ok for me as I can then grep the file without problem, but it is not compatible with the RFC (which recommand \r\n).
| non_test | csvclean documentation is poor great tool really but the documentation is very poor it should be interesting to explain each task done by csvclean delete every unneeded quote recode from xxx charset to utf replace x delimiter by a comma replace r n by n this last modification is ok for me as i can then grep the file without problem but it is not compatible with the rfc which recommand r n | 0 |
230,597 | 7,612,004,792 | IssuesEvent | 2018-05-01 15:57:11 | alces-software/alces-flight-center | https://api.github.com/repos/alces-software/alces-flight-center | closed | Log page displaying repeated ticket/case ID's | high priority | Historical log entries are showing with multiple links to the case they have been linked. | 1.0 | Log page displaying repeated ticket/case ID's - Historical log entries are showing with multiple links to the case they have been linked. | non_test | log page displaying repeated ticket case id s historical log entries are showing with multiple links to the case they have been linked | 0 |
76,868 | 21,580,006,010 | IssuesEvent | 2022-05-02 17:39:19 | envoyproxy/envoy-mobile | https://api.github.com/repos/envoyproxy/envoy-mobile | opened | Fix `android_build` CI jobs with bazel 6.x | build ci | When updating to bazel 6.x, the `android_build` CI job [fails](https://github.com/envoyproxy/envoy-mobile/runs/6260253760?check_suite_focus=true) with the following error:
```
ERROR: /private/var/tmp/_bazel_runner/b225883c33850f3f191a570e7b70ec29/external/bazel_tools/tools/jdk/BUILD:29:19: While resolving toolchains for target @bazel_tools//tools/jdk:current_java_runtime: no matching toolchains found for types @bazel_tools//tools/jdk:runtime_toolchain_type
``` | 1.0 | Fix `android_build` CI jobs with bazel 6.x - When updating to bazel 6.x, the `android_build` CI job [fails](https://github.com/envoyproxy/envoy-mobile/runs/6260253760?check_suite_focus=true) with the following error:
```
ERROR: /private/var/tmp/_bazel_runner/b225883c33850f3f191a570e7b70ec29/external/bazel_tools/tools/jdk/BUILD:29:19: While resolving toolchains for target @bazel_tools//tools/jdk:current_java_runtime: no matching toolchains found for types @bazel_tools//tools/jdk:runtime_toolchain_type
``` | non_test | fix android build ci jobs with bazel x when updating to bazel x the android build ci job with the following error error private var tmp bazel runner external bazel tools tools jdk build while resolving toolchains for target bazel tools tools jdk current java runtime no matching toolchains found for types bazel tools tools jdk runtime toolchain type | 0 |
62,414 | 6,796,303,300 | IssuesEvent | 2017-11-01 18:32:42 | learn-co-curriculum/validations-in-controller-actions-rails | https://api.github.com/repos/learn-co-curriculum/validations-in-controller-actions-rails | closed | Capybara test issue | Test | in spec/views/songs/index.html.erb_spec.rb
The following test
it "renders a list of songs" do
visit songs_path
expect(all("tbody > tr").size).to eq(2)
end
would not pass for me even though my table was being produced correctly.
I took it to AAQ. They were stumped. I'm able to get the test to pass with the following modification:
it "renders a list of songs" do
visit songs_path
expect(all("tr").size).to eq(3) #changed to three to include table header
end
The learn expert on AAQ said I could/should raise this as an issue. | 1.0 | Capybara test issue - in spec/views/songs/index.html.erb_spec.rb
The following test
it "renders a list of songs" do
visit songs_path
expect(all("tbody > tr").size).to eq(2)
end
would not pass for me even though my table was being produced correctly.
I took it to AAQ. They were stumped. I'm able to get the test to pass with the following modification:
it "renders a list of songs" do
visit songs_path
expect(all("tr").size).to eq(3) #changed to three to include table header
end
The learn expert on AAQ said I could/should raise this as an issue. | test | capybara test issue in spec views songs index html erb spec rb the following test it renders a list of songs do visit songs path expect all tbody tr size to eq end would not pass for me even though my table was being produced correctly i took it to aaq they were stumped i m able to get the test to pass with the following modification it renders a list of songs do visit songs path expect all tr size to eq changed to three to include table header end the learn expert on aaq said i could should raise this as an issue | 1 |
22,854 | 3,974,167,718 | IssuesEvent | 2016-05-04 21:10:20 | extnet/Ext.NET | https://api.github.com/repos/extnet/Ext.NET | closed | Window doesn't update its layout on a browser resize if width/height are set in percents | 3.x extjs-test-pending review review-after-extjs-upgrade sencha | https://www.sencha.com/forum/showthread.php?295343
It is probably fixed in ExtJS 5.1.1. Review after upgrade.
A possible workaround is here:
http://forums.ext.net/showthread.php?59379
**UPDATE**: Still reproducible with ExtJS 5.1.1 and Ext.NET 3.2.0.
**Update:** This reads as **fixed** in forums. Adding the *review* tag. | 1.0 | Window doesn't update its layout on a browser resize if width/height are set in percents - https://www.sencha.com/forum/showthread.php?295343
It is probably fixed in ExtJS 5.1.1. Review after upgrade.
A possible workaround is here:
http://forums.ext.net/showthread.php?59379
**UPDATE**: Still reproducible with ExtJS 5.1.1 and Ext.NET 3.2.0.
**Update:** This reads as **fixed** in forums. Adding the *review* tag. | test | window doesn t update its layout on a browser resize if width height are set in percents it is probably fixed in extjs review after upgrade a possible workaround is here update still reproducible with extjs and ext net update this reads as fixed in forums adding the review tag | 1 |
612,476 | 19,013,844,682 | IssuesEvent | 2021-11-23 12:19:49 | jetstack/cert-manager | https://api.github.com/repos/jetstack/cert-manager | closed | Cert-Manager CRDs errors | kind/bug priority/important-soon | **Describe the bug**:
Hello,
this is a cross-posted issue in [Dashboard](https://github.com/kubernetes/dashboard/issues/6632) and Cert-Manager repositories.
I'm pretty sure it's a Cert-Manager CRD problem but I can't be 100% sure.
Premise:
I installed the Kubernetes Dashboard via the chart (5.0.4) using the `pinnedCRDs` option.
```
pinnedCRDs:
- kind: customresourcedefinition
name: certificates.cert-manager.io
displayName: "Certificates"
namespaced: true
- kind: customresourcedefinition
name: certificaterequests.cert-manager.io
displayName: "Certificate Requests"
namespaced: true
- kind: customresourcedefinition
name: challenges.acme.cert-manager.io
displayName: "Challenges"
namespaced: true
- kind: customresourcedefinition
name: orders.acme.cert-manager.io
displayName: "Orders"
namespaced: true
```
and I installed Cert-Manager via the chart (v1.6.1) with the option `installCRDs: true`.
I get this:
<img width="212" alt="Screenshot 2021-11-19 at 15 51 17" src="https://user-images.githubusercontent.com/36044817/142648883-d29a2899-246f-4b54-95ab-1c509af2ec1d.png">
By clicking on one of the menu items, the Dashboard FE makes a rest call to the Dashboard BE:
Example:
```
https://dashboard.example.com/api/v1/crd/certificates.cert-manager.io
```
The API responds this:
```
the server could not find the requested resource (get certificates.cert-manager.io)
```
The CRDs are correctly installed:
```
kubectl get crd | grep cert-manager.io
certificaterequests.cert-manager.io 2021-11-19T13:24:18Z
certificates.cert-manager.io 2021-11-19T13:24:18Z
challenges.acme.cert-manager.io 2021-11-19T13:24:18Z
clusterissuers.cert-manager.io 2021-11-19T13:24:18Z
issuers.cert-manager.io 2021-11-19T13:24:18Z
orders.acme.cert-manager.io 2021-11-19T13:24:18Z
```
I have checked all the involved Dashboard BE code and I don't think there is anything wrong with it.
Ref:
* https://github.com/kubernetes/dashboard/blob/master/src/app/backend/errors/errors.go#L120
* https://github.com/kubernetes/dashboard/blob/master/src/app/backend/errors/handler.go#L106
* https://github.com/kubernetes/dashboard/blob/master/src/app/backend/handler/apihandler.go#L2548-L2553
* https://github.com/kubernetes/dashboard/blob/master/src/app/backend/resource/customresourcedefinition/types/types.go#L50-L60
* https://github.com/kubernetes/dashboard/blob/master/src/app/backend/handler/apihandler.go#L649-L652
All the CRDs of the dozen charts installed in the clusters work perfectly, I tried to completely remove Cert-Manager and reinstall it from scratch and nothing changes.
We have many clusters on both AWS EKS (K8s 1.21.5) and Azure AKS (K8s 1.21.2), all aligned and basically with the same software/charts installed. The problem occurs to everyone regardless.
So I assume the problem is on the Cert-Manager side. Can you help me in any way?
**Expected behavior**:
I would like to be able to have the details of the Cert-Manager CRDs in the dashboard.
**Steps to reproduce the bug**:
It is already in the description.
**Anything else we need to know?**:
**Environment details:**:
- Kubernetes version: 1.21.2/1.21.5
- Cloud-provider/provisioner: AKS/EKS
- cert-manager version: v1.6.1
- Install method: helm chart
/kind bug
| 1.0 | Cert-Manager CRDs errors - **Describe the bug**:
Hello,
this is a cross-posted issue in [Dashboard](https://github.com/kubernetes/dashboard/issues/6632) and Cert-Manager repositories.
I'm pretty sure it's a Cert-Manager CRD problem but I can't be 100% sure.
Premise:
I installed the Kubernetes Dashboard via the chart (5.0.4) using the `pinnedCRDs` option.
```
pinnedCRDs:
- kind: customresourcedefinition
name: certificates.cert-manager.io
displayName: "Certificates"
namespaced: true
- kind: customresourcedefinition
name: certificaterequests.cert-manager.io
displayName: "Certificate Requests"
namespaced: true
- kind: customresourcedefinition
name: challenges.acme.cert-manager.io
displayName: "Challenges"
namespaced: true
- kind: customresourcedefinition
name: orders.acme.cert-manager.io
displayName: "Orders"
namespaced: true
```
and I installed Cert-Manager via the chart (v1.6.1) with the option `installCRDs: true`.
I get this:
<img width="212" alt="Screenshot 2021-11-19 at 15 51 17" src="https://user-images.githubusercontent.com/36044817/142648883-d29a2899-246f-4b54-95ab-1c509af2ec1d.png">
By clicking on one of the menu items, the Dashboard FE makes a rest call to the Dashboard BE:
Example:
```
https://dashboard.example.com/api/v1/crd/certificates.cert-manager.io
```
The API responds this:
```
the server could not find the requested resource (get certificates.cert-manager.io)
```
The CRDs are correctly installed:
```
kubectl get crd | grep cert-manager.io
certificaterequests.cert-manager.io 2021-11-19T13:24:18Z
certificates.cert-manager.io 2021-11-19T13:24:18Z
challenges.acme.cert-manager.io 2021-11-19T13:24:18Z
clusterissuers.cert-manager.io 2021-11-19T13:24:18Z
issuers.cert-manager.io 2021-11-19T13:24:18Z
orders.acme.cert-manager.io 2021-11-19T13:24:18Z
```
I have checked all the involved Dashboard BE code and I don't think there is anything wrong with it.
Ref:
* https://github.com/kubernetes/dashboard/blob/master/src/app/backend/errors/errors.go#L120
* https://github.com/kubernetes/dashboard/blob/master/src/app/backend/errors/handler.go#L106
* https://github.com/kubernetes/dashboard/blob/master/src/app/backend/handler/apihandler.go#L2548-L2553
* https://github.com/kubernetes/dashboard/blob/master/src/app/backend/resource/customresourcedefinition/types/types.go#L50-L60
* https://github.com/kubernetes/dashboard/blob/master/src/app/backend/handler/apihandler.go#L649-L652
All the CRDs of the dozen charts installed in the clusters work perfectly, I tried to completely remove Cert-Manager and reinstall it from scratch and nothing changes.
We have many clusters on both AWS EKS (K8s 1.21.5) and Azure AKS (K8s 1.21.2), all aligned and basically with the same software/charts installed. The problem occurs to everyone regardless.
So I assume the problem is on the Cert-Manager side. Can you help me in any way?
**Expected behavior**:
I would like to be able to have the details of the Cert-Manager CRDs in the dashboard.
**Steps to reproduce the bug**:
It is already in the description.
**Anything else we need to know?**:
**Environment details:**:
- Kubernetes version: 1.21.2/1.21.5
- Cloud-provider/provisioner: AKS/EKS
- cert-manager version: v1.6.1
- Install method: helm chart
/kind bug
| non_test | cert manager crds errors describe the bug hello this is a cross posted issue in and cert manager repositories i m pretty sure it s a cert manager crd problem but i can t be sure premise i installed the kubernetes dashboard via the chart using the pinnedcrds option pinnedcrds kind customresourcedefinition name certificates cert manager io displayname certificates namespaced true kind customresourcedefinition name certificaterequests cert manager io displayname certificate requests namespaced true kind customresourcedefinition name challenges acme cert manager io displayname challenges namespaced true kind customresourcedefinition name orders acme cert manager io displayname orders namespaced true and i installed cert manager via the chart with the option installcrds true i get this img width alt screenshot at src by clicking on one of the menu items the dashboard fe makes a rest call to the dashboard be example the api responds this the server could not find the requested resource get certificates cert manager io the crds are correctly installed kubectl get crd grep cert manager io certificaterequests cert manager io certificates cert manager io challenges acme cert manager io clusterissuers cert manager io issuers cert manager io orders acme cert manager io i have checked all the involved dashboard be code and i don t think there is anything wrong with it ref all the crds of the dozen charts installed in the clusters work perfectly i tried to completely remove cert manager and reinstall it from scratch and nothing changes we have many clusters on both aws eks and azure aks all aligned and basically with the same software charts installed the problem occurs to everyone regardless so i assume the problem is on the cert manager side can you help me in any way expected behavior i would like to be able to have the details of the cert manager crds in the dashboard steps to reproduce the bug it is already in the description anything else we need to know environment details kubernetes version cloud provider provisioner aks eks cert manager version install method helm chart kind bug | 0 |
166,689 | 12,968,067,515 | IssuesEvent | 2020-07-21 04:49:13 | woowacourse-teams/2020-devbie | https://api.github.com/repos/woowacourse-teams/2020-devbie | closed | [TEST] Github OAuth 로그인 테스트 코드 추가 | 🧪 Test | ## 구현할 기능
- Github OAuth 로그인을 로직에서 누락된 테스트 코드를 추가한다.
## 작업 상세 내용
- [x] 유저 - 도메인, 컨트롤러, 서비스 - 보스독
- [x] Auth - 컨트롤러(인터셉터, 리졸버) - 유안
- [x] Auth - jwt - 소니
- [x] Auth - GithubClient - 앨런
| 1.0 | [TEST] Github OAuth 로그인 테스트 코드 추가 - ## 구현할 기능
- Github OAuth 로그인을 로직에서 누락된 테스트 코드를 추가한다.
## 작업 상세 내용
- [x] 유저 - 도메인, 컨트롤러, 서비스 - 보스독
- [x] Auth - 컨트롤러(인터셉터, 리졸버) - 유안
- [x] Auth - jwt - 소니
- [x] Auth - GithubClient - 앨런
| test | github oauth 로그인 테스트 코드 추가 구현할 기능 github oauth 로그인을 로직에서 누락된 테스트 코드를 추가한다 작업 상세 내용 유저 도메인 컨트롤러 서비스 보스독 auth 컨트롤러 인터셉터 리졸버 유안 auth jwt 소니 auth githubclient 앨런 | 1 |
341,823 | 30,602,371,020 | IssuesEvent | 2023-07-22 14:56:50 | unifyai/ivy | https://api.github.com/repos/unifyai/ivy | opened | Fix tensor.test_paddle_clip | Sub Task Failing Test Paddle Frontend | | | |
|---|---|
|numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5630947656/job/15257413832"><img src=https://img.shields.io/badge/-failure-red></a>
|jax|<a href="https://github.com/unifyai/ivy/actions/runs/5630947656/job/15257413832"><img src=https://img.shields.io/badge/-failure-red></a>
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5630947656/job/15257413832"><img src=https://img.shields.io/badge/-failure-red></a>
|torch|<a href="https://github.com/unifyai/ivy/actions/runs/5630947656/job/15257413832"><img src=https://img.shields.io/badge/-failure-red></a>
|paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5630947656/job/15257413832"><img src=https://img.shields.io/badge/-failure-red></a>
| 1.0 | Fix tensor.test_paddle_clip - | | |
|---|---|
|numpy|<a href="https://github.com/unifyai/ivy/actions/runs/5630947656/job/15257413832"><img src=https://img.shields.io/badge/-failure-red></a>
|jax|<a href="https://github.com/unifyai/ivy/actions/runs/5630947656/job/15257413832"><img src=https://img.shields.io/badge/-failure-red></a>
|tensorflow|<a href="https://github.com/unifyai/ivy/actions/runs/5630947656/job/15257413832"><img src=https://img.shields.io/badge/-failure-red></a>
|torch|<a href="https://github.com/unifyai/ivy/actions/runs/5630947656/job/15257413832"><img src=https://img.shields.io/badge/-failure-red></a>
|paddle|<a href="https://github.com/unifyai/ivy/actions/runs/5630947656/job/15257413832"><img src=https://img.shields.io/badge/-failure-red></a>
| test | fix tensor test paddle clip numpy a href src jax a href src tensorflow a href src torch a href src paddle a href src | 1 |
239,362 | 19,849,620,936 | IssuesEvent | 2022-01-21 10:47:02 | SAP/fundamental-ngx | https://api.github.com/repos/SAP/fundamental-ngx | closed | test(core): date-picker - add control-value-accessor tests | core unit tests | #### Is this a bug, enhancement, or feature request?
enhancement
#### Briefly describe your proposal.
there's no test coverage for control value accessor of `core-date-picker`. This can lead to not standardised behavior or even bugs
#### Which versions of Angular and Fundamental Library for Angular are affected? (If this is a feature request, use current version.)
fundamental-ngx@0.33
#### If this is a bug, please provide steps for reproducing it.
#### Please provide relevant source code if applicable.
#### Is there anything else we should know?
| 1.0 | test(core): date-picker - add control-value-accessor tests - #### Is this a bug, enhancement, or feature request?
enhancement
#### Briefly describe your proposal.
there's no test coverage for control value accessor of `core-date-picker`. This can lead to not standardised behavior or even bugs
#### Which versions of Angular and Fundamental Library for Angular are affected? (If this is a feature request, use current version.)
fundamental-ngx@0.33
#### If this is a bug, please provide steps for reproducing it.
#### Please provide relevant source code if applicable.
#### Is there anything else we should know?
| test | test core date picker add control value accessor tests is this a bug enhancement or feature request enhancement briefly describe your proposal there s no test coverage for control value accessor of core date picker this can lead to not standardised behavior or even bugs which versions of angular and fundamental library for angular are affected if this is a feature request use current version fundamental ngx if this is a bug please provide steps for reproducing it please provide relevant source code if applicable is there anything else we should know | 1 |
196,310 | 14,855,579,713 | IssuesEvent | 2021-01-18 12:59:23 | rixed/ramen | https://api.github.com/repos/rixed/ramen | opened | As there is an option to force compilation via dessser, have an option to force the legacy code generator | tests | Useful for testing one against the other. | 1.0 | As there is an option to force compilation via dessser, have an option to force the legacy code generator - Useful for testing one against the other. | test | as there is an option to force compilation via dessser have an option to force the legacy code generator useful for testing one against the other | 1 |
173,553 | 13,428,674,061 | IssuesEvent | 2020-09-06 22:51:42 | npdarrington/Whats-Cookin | https://api.github.com/repos/npdarrington/Whats-Cookin | closed | User Class Favorite Recipes TDD | iteration: 1️⃣ type: test 🔮 | As a user, I want to be able to add and remove favorite recipes that I find inside of the app.
- [ ] Test the method that is created when a user toggles the favorite state for a recipe.
- [ ] Happy and sad path if possible.
| 1.0 | User Class Favorite Recipes TDD - As a user, I want to be able to add and remove favorite recipes that I find inside of the app.
- [ ] Test the method that is created when a user toggles the favorite state for a recipe.
- [ ] Happy and sad path if possible.
| test | user class favorite recipes tdd as a user i want to be able to add and remove favorite recipes that i find inside of the app test the method that is created when a user toggles the favorite state for a recipe happy and sad path if possible | 1 |
329,991 | 28,321,493,231 | IssuesEvent | 2023-04-11 01:50:23 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | ccl/changefeedccl: TestAlterChangefeedDatabaseScopeUnqualifiedName failed | C-test-failure O-robot branch-release-23.1 | ccl/changefeedccl.TestAlterChangefeedDatabaseScopeUnqualifiedName [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Ci_TestsAwsLinuxArm64_UnitTests/9532445?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Ci_TestsAwsLinuxArm64_UnitTests/9532445?buildTab=artifacts#/) on release-23.1 @ [e8a7c363ff012830e6a725d66c202d535a95b6bb](https://github.com/cockroachdb/cockroach/commits/e8a7c363ff012830e6a725d66c202d535a95b6bb):
```
=== RUN TestAlterChangefeedDatabaseScopeUnqualifiedName
test_log_scope.go:161: test logs captured to: /artifacts/tmp/_tmp/f236cfce7e32f4b492de4b4f1cd80c96/logTestAlterChangefeedDatabaseScopeUnqualifiedName4253575537
test_log_scope.go:79: use -show-logs to present logs inline
=== CONT TestAlterChangefeedDatabaseScopeUnqualifiedName
alter_changefeed_test.go:1010: -- test log scope end --
test logs left over in: /artifacts/tmp/_tmp/f236cfce7e32f4b492de4b4f1cd80c96/logTestAlterChangefeedDatabaseScopeUnqualifiedName4253575537
--- FAIL: TestAlterChangefeedDatabaseScopeUnqualifiedName (6.62s)
=== RUN TestAlterChangefeedDatabaseScopeUnqualifiedName/pubsub
helpers_test.go:817: making server as secondary tenant
helpers_test.go:895: making pubsub feed factory
alter_changefeed_test.go:980: failed to start feed for job 0: pq: opening client: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.
--- FAIL: TestAlterChangefeedDatabaseScopeUnqualifiedName/pubsub (6.60s)
```
<details><summary>Help</summary>
<p>
See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM)
</p>
</details>
/cc @cockroachdb/cdc
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestAlterChangefeedDatabaseScopeUnqualifiedName.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-26828 | 1.0 | ccl/changefeedccl: TestAlterChangefeedDatabaseScopeUnqualifiedName failed - ccl/changefeedccl.TestAlterChangefeedDatabaseScopeUnqualifiedName [failed](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Ci_TestsAwsLinuxArm64_UnitTests/9532445?buildTab=log) with [artifacts](https://teamcity.cockroachdb.com/buildConfiguration/Cockroach_Ci_TestsAwsLinuxArm64_UnitTests/9532445?buildTab=artifacts#/) on release-23.1 @ [e8a7c363ff012830e6a725d66c202d535a95b6bb](https://github.com/cockroachdb/cockroach/commits/e8a7c363ff012830e6a725d66c202d535a95b6bb):
```
=== RUN TestAlterChangefeedDatabaseScopeUnqualifiedName
test_log_scope.go:161: test logs captured to: /artifacts/tmp/_tmp/f236cfce7e32f4b492de4b4f1cd80c96/logTestAlterChangefeedDatabaseScopeUnqualifiedName4253575537
test_log_scope.go:79: use -show-logs to present logs inline
=== CONT TestAlterChangefeedDatabaseScopeUnqualifiedName
alter_changefeed_test.go:1010: -- test log scope end --
test logs left over in: /artifacts/tmp/_tmp/f236cfce7e32f4b492de4b4f1cd80c96/logTestAlterChangefeedDatabaseScopeUnqualifiedName4253575537
--- FAIL: TestAlterChangefeedDatabaseScopeUnqualifiedName (6.62s)
=== RUN TestAlterChangefeedDatabaseScopeUnqualifiedName/pubsub
helpers_test.go:817: making server as secondary tenant
helpers_test.go:895: making pubsub feed factory
alter_changefeed_test.go:980: failed to start feed for job 0: pq: opening client: google: could not find default credentials. See https://developers.google.com/accounts/docs/application-default-credentials for more information.
--- FAIL: TestAlterChangefeedDatabaseScopeUnqualifiedName/pubsub (6.60s)
```
<details><summary>Help</summary>
<p>
See also: [How To Investigate a Go Test Failure \(internal\)](https://cockroachlabs.atlassian.net/l/c/HgfXfJgM)
</p>
</details>
/cc @cockroachdb/cdc
<sub>
[This test on roachdash](https://roachdash.crdb.dev/?filter=status:open%20t:.*TestAlterChangefeedDatabaseScopeUnqualifiedName.*&sort=title+created&display=lastcommented+project) | [Improve this report!](https://github.com/cockroachdb/cockroach/tree/master/pkg/cmd/internal/issues)
</sub>
Jira issue: CRDB-26828 | test | ccl changefeedccl testalterchangefeeddatabasescopeunqualifiedname failed ccl changefeedccl testalterchangefeeddatabasescopeunqualifiedname with on release run testalterchangefeeddatabasescopeunqualifiedname test log scope go test logs captured to artifacts tmp tmp test log scope go use show logs to present logs inline cont testalterchangefeeddatabasescopeunqualifiedname alter changefeed test go test log scope end test logs left over in artifacts tmp tmp fail testalterchangefeeddatabasescopeunqualifiedname run testalterchangefeeddatabasescopeunqualifiedname pubsub helpers test go making server as secondary tenant helpers test go making pubsub feed factory alter changefeed test go failed to start feed for job pq opening client google could not find default credentials see for more information fail testalterchangefeeddatabasescopeunqualifiedname pubsub help see also cc cockroachdb cdc jira issue crdb | 1 |
300,730 | 25,991,664,003 | IssuesEvent | 2022-12-20 08:09:54 | Tencent/bk-job | https://api.github.com/repos/Tencent/bk-job | closed | bugfix: 作业编辑态时脚本内出现“扫描”级别的高危语句无法保存 | kind/bug stage/test | **Version / Branch / tag**
V3.5.X
**出了什么问题?(What Happened?)**
高危规则是 `扫描` 级别:
<img width="1227" alt="image" src="https://user-images.githubusercontent.com/3852595/203005776-29e982a8-7552-495b-b409-801c9d03bb35.png">
但是作业编辑中依然无法正常保存:
<img width="1511" alt="image" src="https://user-images.githubusercontent.com/3852595/203005637-25be9377-0cb4-4fbf-a5a5-7552908e02d2.png">
**如何复现?(How to reproduce?)**
**预期结果(What you expect?)**
能够保存 | 1.0 | bugfix: 作业编辑态时脚本内出现“扫描”级别的高危语句无法保存 - **Version / Branch / tag**
V3.5.X
**出了什么问题?(What Happened?)**
高危规则是 `扫描` 级别:
<img width="1227" alt="image" src="https://user-images.githubusercontent.com/3852595/203005776-29e982a8-7552-495b-b409-801c9d03bb35.png">
但是作业编辑中依然无法正常保存:
<img width="1511" alt="image" src="https://user-images.githubusercontent.com/3852595/203005637-25be9377-0cb4-4fbf-a5a5-7552908e02d2.png">
**如何复现?(How to reproduce?)**
**预期结果(What you expect?)**
能够保存 | test | bugfix 作业编辑态时脚本内出现“扫描”级别的高危语句无法保存 version branch tag x 出了什么问题? what happened 高危规则是 扫描 级别: img width alt image src 但是作业编辑中依然无法正常保存: img width alt image src 如何复现? how to reproduce 预期结果 what you expect 能够保存 | 1 |
213,504 | 16,523,763,545 | IssuesEvent | 2021-05-26 17:19:34 | yugabyte/yugabyte-db | https://api.github.com/repos/yugabyte/yugabyte-db | opened | Test: replacing the split tablet on master side cases | area/docdb lifecycle/need-test | From @bmatican:
"replacing the old tablet all together might lead to some weird states, if, say:
- we only replace it with 1 of it's children
- then some client asks for the tablet splits
- then the 2nd child gets added
I'm thinking for the actual split time, we could maybe add all the children at the same time. For the heartbeat path though, I'm not sure exactly what's the best way to handle this. It probably depends a bit on how we'll handle this on the client side.."
https://github.com/yugabyte/yugabyte-db/blob/5fc9ce1e301015b563af652868d18b1f5cbf4395/src/yb/master/catalog_entity_info.cc#L356 | 1.0 | Test: replacing the split tablet on master side cases - From @bmatican:
"replacing the old tablet all together might lead to some weird states, if, say:
- we only replace it with 1 of it's children
- then some client asks for the tablet splits
- then the 2nd child gets added
I'm thinking for the actual split time, we could maybe add all the children at the same time. For the heartbeat path though, I'm not sure exactly what's the best way to handle this. It probably depends a bit on how we'll handle this on the client side.."
https://github.com/yugabyte/yugabyte-db/blob/5fc9ce1e301015b563af652868d18b1f5cbf4395/src/yb/master/catalog_entity_info.cc#L356 | test | test replacing the split tablet on master side cases from bmatican replacing the old tablet all together might lead to some weird states if say we only replace it with of it s children then some client asks for the tablet splits then the child gets added i m thinking for the actual split time we could maybe add all the children at the same time for the heartbeat path though i m not sure exactly what s the best way to handle this it probably depends a bit on how we ll handle this on the client side | 1 |
303,759 | 26,227,863,376 | IssuesEvent | 2023-01-04 20:32:17 | cockroachdb/cockroach | https://api.github.com/repos/cockroachdb/cockroach | closed | sql: TestDropDatabaseDeleteData failed under stress | C-test-failure O-robot | SHA: https://github.com/cockroachdb/cockroach/commits/1a62e113d96c8db306ce4823a662dbf209b69392
Parameters:
```
TAGS=
GOFLAGS=-race
```
To repro, try:
```
# Don't forget to check out a clean suitable branch and experiment with the
# stress invocation until the desired results present themselves. For example,
# using stress instead of stressrace and passing the '-p' stressflag which
# controls concurrency.
./scripts/gceworker.sh start && ./scripts/gceworker.sh mosh
cd ~/go/src/github.com/cockroachdb/cockroach && \
stdbuf -oL -eL \
make stressrace TESTS=TestDropDatabaseDeleteData PKG=github.com/cockroachdb/cockroach/pkg/sql TESTTIMEOUT=5m STRESSFLAGS='-maxtime 20m -timeout 10m' 2>&1 | tee /tmp/stress.log
```
Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=2051128&tab=buildLog
```
I200630 06:41:45.533996 53387 sql/event_log.go:135 [n1,client=127.0.0.1:37730,user=root] Event: "create_table", target: 54, info: {TableName:t.public.kv2 Statement:CREATE TABLE t.public.kv2 (k CHAR PRIMARY KEY, v CHAR, FAMILY (k), FAMILY (v)) User:root}
I200630 06:41:45.549759 53369 storage/replica_command.go:247 [n1,split,s1,r21/1:/{Table/53-Max}] initiating a split of this range at key /Table/54 [r22] (zone config)
I200630 06:41:45.730567 53387 sql/lease.go:353 [n1,client=127.0.0.1:37730,user=root] publish: descID=53 (kv) version=2 mtime=2020-06-30 06:41:45.642843708 +0000 UTC
I200630 06:41:45.755740 53387 sql/lease.go:353 [n1,client=127.0.0.1:37730,user=root] publish: descID=54 (kv2) version=2 mtime=2020-06-30 06:41:45.642843708 +0000 UTC
I200630 06:41:45.819052 53387 sql/event_log.go:135 [n1,client=127.0.0.1:37730,user=root] Event: "drop_database", target: 52, info: {DatabaseName:t Statement:DROP DATABASE t CASCADE User:root DroppedSchemaObjects:[t.public.kv t.public.kv2]}
I200630 06:41:45.883242 53009 sql/lease.go:353 [n1,scExec] publish: descID=54 (kv2) version=3 mtime=2020-06-30 06:41:45.881574652 +0000 UTC
I200630 06:41:45.887049 53387 sql/lease.go:353 [n1,client=127.0.0.1:37730,user=root,scExec] publish: descID=53 (kv) version=3 mtime=2020-06-30 06:41:45.885584131 +0000 UTC
I200630 06:41:45.983233 53009 sql/lease.go:353 [n1,scExec] publish: descID=54 (kv2) version=3 mtime=2020-06-30 06:41:45.885584131 +0000 UTC
I200630 06:41:46.039001 53123 gossip/gossip.go:1510 [n1] node has connected to cluster via gossip
I200630 06:41:46.039736 53123 storage/stores.go:263 [n1] wrote 0 node addresses to persistent storage
W200630 06:41:46.063373 53500 storage/intentresolver/intent_resolver.go:520 failed to push during intent resolution: failed to push id=1a979206 key=/Table/SystemConfigSpan/Start rw=true pri=0.04398082 stat=PENDING epo=0 ts=1593499305.885584131,0 orig=1593499305.885584131,0 max=0.000000000,0 wto=false seq=1
W200630 06:41:46.075170 53387 sql/schema_changer.go:754 [n1,client=127.0.0.1:37730,user=root,scExec] failed to update drop job: TransactionRetryWithProtoRefreshError: WriteTooOldError: write at timestamp 1593499305.885584131,0 too old; wrote at 1593499305.885584131,2
I200630 06:41:46.135501 53009 sql/lease.go:353 [n1,scExec] publish: descID=53 (kv) version=3 mtime=2020-06-30 06:41:46.134087711 +0000 UTC
I200630 06:41:46.166008 53034 util/stop/stopper.go:546 quiescing; tasks left:
5 [async] storage.IntentResolver: cleanup txn records
1 [async] transport racer
1 [async] kv.TxnCoordSender: heartbeat loop
1 [async] intent_resolver_ir_batcher
1 [async] intent_resolver_gc_batcher
1 [async] closedts-rangefeed-subscriber
I200630 06:41:46.166243 53326 kv/transport_race.go:113 transport race promotion: ran 47 iterations on up to 544 requests
I200630 06:41:46.166552 53034 util/stop/stopper.go:546 quiescing; tasks left:
4 [async] storage.IntentResolver: cleanup txn records
1 [async] transport racer
1 [async] kv.TxnCoordSender: heartbeat loop
1 [async] intent_resolver_ir_batcher
1 [async] intent_resolver_gc_batcher
1 [async] closedts-rangefeed-subscriber
I200630 06:41:46.167673 53034 util/stop/stopper.go:546 quiescing; tasks left:
1 [async] kv.TxnCoordSender: heartbeat loop
W200630 06:41:46.176144 53009 sql/schema_changer.go:754 [n1,scExec] failed to update drop job: log-job: node unavailable; try another peer
W200630 06:41:46.176815 53009 internal/client/txn.go:509 [n1,scExec] failure aborting transaction: node unavailable; try another peer; abort caused by: kv/txn_interceptor_heartbeater.go:345: node already quiescing
W200630 06:41:46.177182 53009 sql/schema_changer.go:1601 [n1] Error executing schema change: kv/txn_interceptor_heartbeater.go:345: node already quiescing
--- FAIL: TestDropDatabaseDeleteData (1.95s)
drop_test.go:384: job 0: expected running status waiting for GC TTL, got draining names
Failed to find issue assignee:
old friend vivekmenezes is friendless
```
Jira issue: CRDB-4085 | 1.0 | sql: TestDropDatabaseDeleteData failed under stress - SHA: https://github.com/cockroachdb/cockroach/commits/1a62e113d96c8db306ce4823a662dbf209b69392
Parameters:
```
TAGS=
GOFLAGS=-race
```
To repro, try:
```
# Don't forget to check out a clean suitable branch and experiment with the
# stress invocation until the desired results present themselves. For example,
# using stress instead of stressrace and passing the '-p' stressflag which
# controls concurrency.
./scripts/gceworker.sh start && ./scripts/gceworker.sh mosh
cd ~/go/src/github.com/cockroachdb/cockroach && \
stdbuf -oL -eL \
make stressrace TESTS=TestDropDatabaseDeleteData PKG=github.com/cockroachdb/cockroach/pkg/sql TESTTIMEOUT=5m STRESSFLAGS='-maxtime 20m -timeout 10m' 2>&1 | tee /tmp/stress.log
```
Failed test: https://teamcity.cockroachdb.com/viewLog.html?buildId=2051128&tab=buildLog
```
I200630 06:41:45.533996 53387 sql/event_log.go:135 [n1,client=127.0.0.1:37730,user=root] Event: "create_table", target: 54, info: {TableName:t.public.kv2 Statement:CREATE TABLE t.public.kv2 (k CHAR PRIMARY KEY, v CHAR, FAMILY (k), FAMILY (v)) User:root}
I200630 06:41:45.549759 53369 storage/replica_command.go:247 [n1,split,s1,r21/1:/{Table/53-Max}] initiating a split of this range at key /Table/54 [r22] (zone config)
I200630 06:41:45.730567 53387 sql/lease.go:353 [n1,client=127.0.0.1:37730,user=root] publish: descID=53 (kv) version=2 mtime=2020-06-30 06:41:45.642843708 +0000 UTC
I200630 06:41:45.755740 53387 sql/lease.go:353 [n1,client=127.0.0.1:37730,user=root] publish: descID=54 (kv2) version=2 mtime=2020-06-30 06:41:45.642843708 +0000 UTC
I200630 06:41:45.819052 53387 sql/event_log.go:135 [n1,client=127.0.0.1:37730,user=root] Event: "drop_database", target: 52, info: {DatabaseName:t Statement:DROP DATABASE t CASCADE User:root DroppedSchemaObjects:[t.public.kv t.public.kv2]}
I200630 06:41:45.883242 53009 sql/lease.go:353 [n1,scExec] publish: descID=54 (kv2) version=3 mtime=2020-06-30 06:41:45.881574652 +0000 UTC
I200630 06:41:45.887049 53387 sql/lease.go:353 [n1,client=127.0.0.1:37730,user=root,scExec] publish: descID=53 (kv) version=3 mtime=2020-06-30 06:41:45.885584131 +0000 UTC
I200630 06:41:45.983233 53009 sql/lease.go:353 [n1,scExec] publish: descID=54 (kv2) version=3 mtime=2020-06-30 06:41:45.885584131 +0000 UTC
I200630 06:41:46.039001 53123 gossip/gossip.go:1510 [n1] node has connected to cluster via gossip
I200630 06:41:46.039736 53123 storage/stores.go:263 [n1] wrote 0 node addresses to persistent storage
W200630 06:41:46.063373 53500 storage/intentresolver/intent_resolver.go:520 failed to push during intent resolution: failed to push id=1a979206 key=/Table/SystemConfigSpan/Start rw=true pri=0.04398082 stat=PENDING epo=0 ts=1593499305.885584131,0 orig=1593499305.885584131,0 max=0.000000000,0 wto=false seq=1
W200630 06:41:46.075170 53387 sql/schema_changer.go:754 [n1,client=127.0.0.1:37730,user=root,scExec] failed to update drop job: TransactionRetryWithProtoRefreshError: WriteTooOldError: write at timestamp 1593499305.885584131,0 too old; wrote at 1593499305.885584131,2
I200630 06:41:46.135501 53009 sql/lease.go:353 [n1,scExec] publish: descID=53 (kv) version=3 mtime=2020-06-30 06:41:46.134087711 +0000 UTC
I200630 06:41:46.166008 53034 util/stop/stopper.go:546 quiescing; tasks left:
5 [async] storage.IntentResolver: cleanup txn records
1 [async] transport racer
1 [async] kv.TxnCoordSender: heartbeat loop
1 [async] intent_resolver_ir_batcher
1 [async] intent_resolver_gc_batcher
1 [async] closedts-rangefeed-subscriber
I200630 06:41:46.166243 53326 kv/transport_race.go:113 transport race promotion: ran 47 iterations on up to 544 requests
I200630 06:41:46.166552 53034 util/stop/stopper.go:546 quiescing; tasks left:
4 [async] storage.IntentResolver: cleanup txn records
1 [async] transport racer
1 [async] kv.TxnCoordSender: heartbeat loop
1 [async] intent_resolver_ir_batcher
1 [async] intent_resolver_gc_batcher
1 [async] closedts-rangefeed-subscriber
I200630 06:41:46.167673 53034 util/stop/stopper.go:546 quiescing; tasks left:
1 [async] kv.TxnCoordSender: heartbeat loop
W200630 06:41:46.176144 53009 sql/schema_changer.go:754 [n1,scExec] failed to update drop job: log-job: node unavailable; try another peer
W200630 06:41:46.176815 53009 internal/client/txn.go:509 [n1,scExec] failure aborting transaction: node unavailable; try another peer; abort caused by: kv/txn_interceptor_heartbeater.go:345: node already quiescing
W200630 06:41:46.177182 53009 sql/schema_changer.go:1601 [n1] Error executing schema change: kv/txn_interceptor_heartbeater.go:345: node already quiescing
--- FAIL: TestDropDatabaseDeleteData (1.95s)
drop_test.go:384: job 0: expected running status waiting for GC TTL, got draining names
Failed to find issue assignee:
old friend vivekmenezes is friendless
```
Jira issue: CRDB-4085 | test | sql testdropdatabasedeletedata failed under stress sha parameters tags goflags race to repro try don t forget to check out a clean suitable branch and experiment with the stress invocation until the desired results present themselves for example using stress instead of stressrace and passing the p stressflag which controls concurrency scripts gceworker sh start scripts gceworker sh mosh cd go src github com cockroachdb cockroach stdbuf ol el make stressrace tests testdropdatabasedeletedata pkg github com cockroachdb cockroach pkg sql testtimeout stressflags maxtime timeout tee tmp stress log failed test sql event log go event create table target info tablename t public statement create table t public k char primary key v char family k family v user root storage replica command go initiating a split of this range at key table zone config sql lease go publish descid kv version mtime utc sql lease go publish descid version mtime utc sql event log go event drop database target info databasename t statement drop database t cascade user root droppedschemaobjects sql lease go publish descid version mtime utc sql lease go publish descid kv version mtime utc sql lease go publish descid version mtime utc gossip gossip go node has connected to cluster via gossip storage stores go wrote node addresses to persistent storage storage intentresolver intent resolver go failed to push during intent resolution failed to push id key table systemconfigspan start rw true pri stat pending epo ts orig max wto false seq sql schema changer go failed to update drop job transactionretrywithprotorefresherror writetooolderror write at timestamp too old wrote at sql lease go publish descid kv version mtime utc util stop stopper go quiescing tasks left storage intentresolver cleanup txn records transport racer kv txncoordsender heartbeat loop intent resolver ir batcher intent resolver gc batcher closedts rangefeed subscriber kv transport race go transport race promotion ran iterations on up to requests util stop stopper go quiescing tasks left storage intentresolver cleanup txn records transport racer kv txncoordsender heartbeat loop intent resolver ir batcher intent resolver gc batcher closedts rangefeed subscriber util stop stopper go quiescing tasks left kv txncoordsender heartbeat loop sql schema changer go failed to update drop job log job node unavailable try another peer internal client txn go failure aborting transaction node unavailable try another peer abort caused by kv txn interceptor heartbeater go node already quiescing sql schema changer go error executing schema change kv txn interceptor heartbeater go node already quiescing fail testdropdatabasedeletedata drop test go job expected running status waiting for gc ttl got draining names failed to find issue assignee old friend vivekmenezes is friendless jira issue crdb | 1 |
95,698 | 27,587,546,206 | IssuesEvent | 2023-03-08 21:04:37 | aws/aws-cdk | https://api.github.com/repos/aws/aws-cdk | closed | aws-codebuild: The default image of aws/codebuild/standard:1.0 results in slow provisioning times | p2 feature-request @aws-cdk/aws-codebuild effort/small breaking-change | ### Describe the bug
Running a Hello World CodeBuild Project consistently takes 2+ minutes to provision yet only seconds to execute. This appears to be due to the AWS CDK using aws/codebuild/standard:1.0 by default. According to the references below, the [latest image for Ubuntu 18.04](https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-available.html) is aws/codebuild/standard:4.0, and it appears that only the latest images are cached.


### Expected Behavior
Per the [AWS CodeBuild docs](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_codebuild-readme.html#environment): "By default, projects use a small instance with an Ubuntu 18.04 image. You can use the environment property to customize the build environment."
I expected the default image to be cached since presumably most people new to the CDK (like me) would use the default. I further expected it to be the latest Ubuntu 18.04 image, which appears to be aws/codebuild/standard:4.0.
### Current Behavior
The default image used is aws/codebuild/standard:1.0, which takes 2+ minutes to provision.

### Reproduction Steps
```
return new Project(this, 'Project', {
environment: {
// Reproduce by not specifying any environment properties
}
});
```
### Possible Solution
I provided a value for the build image, and it reduced provisioning times to under 30 seconds, which is a substantial improvement:
```
return new Project(this, 'Project', {
environment: {
buildImage: LinuxBuildImage.STANDARD_4_0
}
});
```


### Additional Information/Context
_No response_
### CDK CLI Version
2.51.1 (build 3d30cdb)
### Framework Version
_No response_
### Node.js Version
v14.18.2
### OS
Mac OS Ventura 13.0.1
### Language
Typescript
### Language Version
_No response_
### Other information
_No response_ | 1.0 | aws-codebuild: The default image of aws/codebuild/standard:1.0 results in slow provisioning times - ### Describe the bug
Running a Hello World CodeBuild Project consistently takes 2+ minutes to provision yet only seconds to execute. This appears to be due to the AWS CDK using aws/codebuild/standard:1.0 by default. According to the references below, the [latest image for Ubuntu 18.04](https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-available.html) is aws/codebuild/standard:4.0, and it appears that only the latest images are cached.


### Expected Behavior
Per the [AWS CodeBuild docs](https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_codebuild-readme.html#environment): "By default, projects use a small instance with an Ubuntu 18.04 image. You can use the environment property to customize the build environment."
I expected the default image to be cached since presumably most people new to the CDK (like me) would use the default. I further expected it to be the latest Ubuntu 18.04 image, which appears to be aws/codebuild/standard:4.0.
### Current Behavior
The default image used is aws/codebuild/standard:1.0, which takes 2+ minutes to provision.

### Reproduction Steps
```
return new Project(this, 'Project', {
environment: {
// Reproduce by not specifying any environment properties
}
});
```
### Possible Solution
I provided a value for the build image, and it reduced provisioning times to under 30 seconds, which is a substantial improvement:
```
return new Project(this, 'Project', {
environment: {
buildImage: LinuxBuildImage.STANDARD_4_0
}
});
```


### Additional Information/Context
_No response_
### CDK CLI Version
2.51.1 (build 3d30cdb)
### Framework Version
_No response_
### Node.js Version
v14.18.2
### OS
Mac OS Ventura 13.0.1
### Language
Typescript
### Language Version
_No response_
### Other information
_No response_ | non_test | aws codebuild the default image of aws codebuild standard results in slow provisioning times describe the bug running a hello world codebuild project consistently takes minutes to provision yet only seconds to execute this appears to be due to the aws cdk using aws codebuild standard by default according to the references below the is aws codebuild standard and it appears that only the latest images are cached expected behavior per the by default projects use a small instance with an ubuntu image you can use the environment property to customize the build environment i expected the default image to be cached since presumably most people new to the cdk like me would use the default i further expected it to be the latest ubuntu image which appears to be aws codebuild standard current behavior the default image used is aws codebuild standard which takes minutes to provision reproduction steps return new project this project environment reproduce by not specifying any environment properties possible solution i provided a value for the build image and it reduced provisioning times to under seconds which is a substantial improvement return new project this project environment buildimage linuxbuildimage standard additional information context no response cdk cli version build framework version no response node js version os mac os ventura language typescript language version no response other information no response | 0 |
58,515 | 16,577,392,160 | IssuesEvent | 2021-05-31 07:14:55 | primefaces/primefaces | https://api.github.com/repos/primefaces/primefaces | closed | DataTable: filteredValues broken with scope bigger then ViewScoped | defect documentation | See #7336
bah
i basically restored #5481 and i think the behavior was partly correct (they were restored on postback only, not on pageload/f5)
the filteredValues are stored in the SessionScoped and therefore it should be restored on f5 actually, or not?
the problem is that the filter-input doesnt contain the old text ("2010" in the test) anymore as its component state (viewscoped)
so one state is stored in sessionscoped bean, the other state is stored in viewscoped component state, thats a problem
we have 3 possible solutions
1) should we say, filteredValues should not be used with SessionScoped?
2) make filteredValues write-only but e.g. my customer uses it in read-only manner
3) add a note to the docs, that when used SessionScoped, you also have to maintain filterBy (or set MVS) and save it in session (is this possible?) So that filteredValues and filterBy matches when pressing f5 | 1.0 | DataTable: filteredValues broken with scope bigger then ViewScoped - See #7336
bah
i basically restored #5481 and i think the behavior was partly correct (they were restored on postback only, not on pageload/f5)
the filteredValues are stored in the SessionScoped and therefore it should be restored on f5 actually, or not?
the problem is that the filter-input doesnt contain the old text ("2010" in the test) anymore as its component state (viewscoped)
so one state is stored in sessionscoped bean, the other state is stored in viewscoped component state, thats a problem
we have 3 possible solutions
1) should we say, filteredValues should not be used with SessionScoped?
2) make filteredValues write-only but e.g. my customer uses it in read-only manner
3) add a note to the docs, that when used SessionScoped, you also have to maintain filterBy (or set MVS) and save it in session (is this possible?) So that filteredValues and filterBy matches when pressing f5 | non_test | datatable filteredvalues broken with scope bigger then viewscoped see bah i basically restored and i think the behavior was partly correct they were restored on postback only not on pageload the filteredvalues are stored in the sessionscoped and therefore it should be restored on actually or not the problem is that the filter input doesnt contain the old text in the test anymore as its component state viewscoped so one state is stored in sessionscoped bean the other state is stored in viewscoped component state thats a problem we have possible solutions should we say filteredvalues should not be used with sessionscoped make filteredvalues write only but e g my customer uses it in read only manner add a note to the docs that when used sessionscoped you also have to maintain filterby or set mvs and save it in session is this possible so that filteredvalues and filterby matches when pressing | 0 |
54,118 | 7,874,333,451 | IssuesEvent | 2018-06-25 16:42:41 | SAP/fundamental | https://api.github.com/repos/SAP/fundamental | opened | Docs: Update contextual menu icon to overflow icon | Documentation | <img width="179" alt="screen shot 2018-06-25 at 11 39 56 am" src="https://user-images.githubusercontent.com/15215400/41863474-8ec3f1e2-786c-11e8-877f-f032323a0a6e.png">
- [ ] update all documentation instances for contextual menu (component page, action bar, starter page, etc.)
- [ ] update test pages aswell. | 1.0 | Docs: Update contextual menu icon to overflow icon - <img width="179" alt="screen shot 2018-06-25 at 11 39 56 am" src="https://user-images.githubusercontent.com/15215400/41863474-8ec3f1e2-786c-11e8-877f-f032323a0a6e.png">
- [ ] update all documentation instances for contextual menu (component page, action bar, starter page, etc.)
- [ ] update test pages aswell. | non_test | docs update contextual menu icon to overflow icon img width alt screen shot at am src update all documentation instances for contextual menu component page action bar starter page etc update test pages aswell | 0 |
352,407 | 25,065,924,703 | IssuesEvent | 2022-11-07 08:17:58 | Azure/PSRule.Rules.Azure | https://api.github.com/repos/Azure/PSRule.Rules.Azure | closed | Add documentation around using PSRule for Azure with Bicep files that refers to private Bicep registries | documentation | **What is the path or URL of the page you're reporting?**
Don't know yet. Perhaps we should create a dedicated path for this.
**How could the page be improved?**
Add docoumentation around using PSRule for Azure with Bicep files that refers to private Bicep registries.
To deploy a module from a registry, you must have permission to pull the image.
Without setting up this correctly PSRule fails expanding the Bicep files that refers to private Bicep registries.
**Additional context**
Examples should also be added that supports GitHub and Azure DevOps. | 1.0 | Add documentation around using PSRule for Azure with Bicep files that refers to private Bicep registries - **What is the path or URL of the page you're reporting?**
Don't know yet. Perhaps we should create a dedicated path for this.
**How could the page be improved?**
Add docoumentation around using PSRule for Azure with Bicep files that refers to private Bicep registries.
To deploy a module from a registry, you must have permission to pull the image.
Without setting up this correctly PSRule fails expanding the Bicep files that refers to private Bicep registries.
**Additional context**
Examples should also be added that supports GitHub and Azure DevOps. | non_test | add documentation around using psrule for azure with bicep files that refers to private bicep registries what is the path or url of the page you re reporting don t know yet perhaps we should create a dedicated path for this how could the page be improved add docoumentation around using psrule for azure with bicep files that refers to private bicep registries to deploy a module from a registry you must have permission to pull the image without setting up this correctly psrule fails expanding the bicep files that refers to private bicep registries additional context examples should also be added that supports github and azure devops | 0 |
361,569 | 10,710,739,997 | IssuesEvent | 2019-10-25 03:26:47 | webcamoid/webcamoid | https://api.github.com/repos/webcamoid/webcamoid | closed | Memory usage continues to grow | Critical: Bug Platform: Mac Priority: Hi | In macOS. When the applications connect to the Virtual Camera of the webcamoid, the memory usage of the webcamoid will continue to grow. In the end, it will cause the entire system to run very slowly!
Is there a way to limit the memory cap used by the webcamoid?
Thank you.
Before:

When an application connected:

| 1.0 | Memory usage continues to grow - In macOS. When the applications connect to the Virtual Camera of the webcamoid, the memory usage of the webcamoid will continue to grow. In the end, it will cause the entire system to run very slowly!
Is there a way to limit the memory cap used by the webcamoid?
Thank you.
Before:

When an application connected:

| non_test | memory usage continues to grow in macos when the applications connect to the virtual camera of the webcamoid the memory usage of the webcamoid will continue to grow in the end it will cause the entire system to run very slowly is there a way to limit the memory cap used by the webcamoid thank you before when an application connected | 0 |
158,594 | 12,419,653,383 | IssuesEvent | 2020-05-23 07:34:10 | the-canonizer/canonizer.2.0 | https://api.github.com/repos/the-canonizer/canonizer.2.0 | closed | My Supports : Camp names are missing and getting page crash on remove support of the blank camp name | 18th release Fixed Show Stopper bug ready to test | Steps to reproduce :
1. Go to https://staging.canonizer.com/
2. Login with valid email and password
3. Go to browse
4. Select Namespace as "Sandbox testing" and select as of filter "as of date" = "6/18/2019, 5:30:00 AM"
5. Go to Account settings -> My Supports
Please refer attached screenshot

I think filter values are getting saved in session.User supports page also not listing all the supported camps
Please confirm..
| 1.0 | My Supports : Camp names are missing and getting page crash on remove support of the blank camp name - Steps to reproduce :
1. Go to https://staging.canonizer.com/
2. Login with valid email and password
3. Go to browse
4. Select Namespace as "Sandbox testing" and select as of filter "as of date" = "6/18/2019, 5:30:00 AM"
5. Go to Account settings -> My Supports
Please refer attached screenshot

I think filter values are getting saved in session.User supports page also not listing all the supported camps
Please confirm..
| test | my supports camp names are missing and getting page crash on remove support of the blank camp name steps to reproduce go to login with valid email and password go to browse select namespace as sandbox testing and select as of filter as of date am go to account settings my supports please refer attached screenshot i think filter values are getting saved in session user supports page also not listing all the supported camps please confirm | 1 |
273,908 | 23,793,922,361 | IssuesEvent | 2022-09-02 17:16:47 | woowa-techcamp-2022/android-banchan-06 | https://api.github.com/repos/woowa-techcamp-2022/android-banchan-06 | opened | [Test] Cart Repository 변경에 대응 테스트 코드 수정 | Test ✍️ 웅재 🦊 | ## 📪 Issue
<!-- 이슈에 대한 내용을 설명해주세요. -->
### Cart Repository 변경에 대응 테스트 코드 수정
## 📚 To-do
<!-- 해야 할 일들을 적어주세요. -->
- [x] Cart Repository 변경에 대응하여 SpyBanchanDetailCacheDataSourceImpl을 작성하여 적용
## 🕐 목표 작업 시간
<!-- 목표 작업 시작일과 작업 마감일을 명시해주세요. -->
09.03 02:00 - 02:15
## 📆 실제 작업 시간
<!-- 작업 완료 후 실제 작업 시작일과 작업 마감일을 작성해주세요. -->
09.03 02:00 - 02:15 | 1.0 | [Test] Cart Repository 변경에 대응 테스트 코드 수정 - ## 📪 Issue
<!-- 이슈에 대한 내용을 설명해주세요. -->
### Cart Repository 변경에 대응 테스트 코드 수정
## 📚 To-do
<!-- 해야 할 일들을 적어주세요. -->
- [x] Cart Repository 변경에 대응하여 SpyBanchanDetailCacheDataSourceImpl을 작성하여 적용
## 🕐 목표 작업 시간
<!-- 목표 작업 시작일과 작업 마감일을 명시해주세요. -->
09.03 02:00 - 02:15
## 📆 실제 작업 시간
<!-- 작업 완료 후 실제 작업 시작일과 작업 마감일을 작성해주세요. -->
09.03 02:00 - 02:15 | test | cart repository 변경에 대응 테스트 코드 수정 📪 issue cart repository 변경에 대응 테스트 코드 수정 📚 to do cart repository 변경에 대응하여 spybanchandetailcachedatasourceimpl을 작성하여 적용 🕐 목표 작업 시간 📆 실제 작업 시간 | 1 |
2,591 | 2,607,930,556 | IssuesEvent | 2015-02-26 00:26:31 | chrsmithdemos/minify | https://api.github.com/repos/chrsmithdemos/minify | opened | 2.1.2 and !FAIL: Minify_CSS : paths | auto-migrated Priority-Medium Type-Defect | ```
Minify version: 2.1.2
PHP version: 5.2.6
What steps will reproduce the problem?
1. run min_unit_tests/test_Minify_CSS.php
2. look at Minify_CSS : paths
!FAIL: Minify_CSS : paths (1 of 3 tests run so far have failed)
---Output: 414 bytes
@import "foo.css";@import 'bar/foo.css' print;@import
'/css/foo.css';@import 'http://foo.com/css/foo.css';@import url(../foo.css)
tv, projection;@import url("/css/foo.css");@import
url(/css2/foo.css);@import
url(data:image/gif;base64,AAAA);foo{background:url('bar/foo.png')}foo{background
:url('http://foo.com/css/foo.css')}foo{background:url("//foo.com/css/foo.css")}f
oo{background:url(data:image/gif;base64,AAAA)}
---Expected: 426 bytes
@import "../foo.css";@import '../bar/foo.css' print;@import
'/css/foo.css';@import 'http://foo.com/css/foo.css';@import
url(../../foo.css) tv, projection;@import url("/css/foo.css");@import
url(/css2/foo.css);@import
url(data:image/gif;base64,AAAA);foo{background:url('../bar/foo.png')}foo{backgro
und:url('http://foo.com/css/foo.css')}foo{background:url("//foo.com/css/foo.css"
)}foo{background:url(data:image/gif;base64,AAAA)}
Did any unit tests FAIL?
yes, but only this, everything other was 'PASS'
```
-----
Original issue reported on code.google.com by `SmallPar...@gmail.com` on 2 Mar 2009 at 2:00 | 1.0 | 2.1.2 and !FAIL: Minify_CSS : paths - ```
Minify version: 2.1.2
PHP version: 5.2.6
What steps will reproduce the problem?
1. run min_unit_tests/test_Minify_CSS.php
2. look at Minify_CSS : paths
!FAIL: Minify_CSS : paths (1 of 3 tests run so far have failed)
---Output: 414 bytes
@import "foo.css";@import 'bar/foo.css' print;@import
'/css/foo.css';@import 'http://foo.com/css/foo.css';@import url(../foo.css)
tv, projection;@import url("/css/foo.css");@import
url(/css2/foo.css);@import
url(data:image/gif;base64,AAAA);foo{background:url('bar/foo.png')}foo{background
:url('http://foo.com/css/foo.css')}foo{background:url("//foo.com/css/foo.css")}f
oo{background:url(data:image/gif;base64,AAAA)}
---Expected: 426 bytes
@import "../foo.css";@import '../bar/foo.css' print;@import
'/css/foo.css';@import 'http://foo.com/css/foo.css';@import
url(../../foo.css) tv, projection;@import url("/css/foo.css");@import
url(/css2/foo.css);@import
url(data:image/gif;base64,AAAA);foo{background:url('../bar/foo.png')}foo{backgro
und:url('http://foo.com/css/foo.css')}foo{background:url("//foo.com/css/foo.css"
)}foo{background:url(data:image/gif;base64,AAAA)}
Did any unit tests FAIL?
yes, but only this, everything other was 'PASS'
```
-----
Original issue reported on code.google.com by `SmallPar...@gmail.com` on 2 Mar 2009 at 2:00 | non_test | and fail minify css paths minify version php version what steps will reproduce the problem run min unit tests test minify css php look at minify css paths fail minify css paths of tests run so far have failed output bytes import foo css import bar foo css print import css foo css import url foo css tv projection import url css foo css import url foo css import url data image gif aaaa foo background url bar foo png foo background url oo background url data image gif aaaa expected bytes import foo css import bar foo css print import css foo css import url foo css tv projection import url css foo css import url foo css import url data image gif aaaa foo background url bar foo png foo backgro und url foo background url data image gif aaaa did any unit tests fail yes but only this everything other was pass original issue reported on code google com by smallpar gmail com on mar at | 0 |
222,055 | 24,684,096,292 | IssuesEvent | 2022-10-19 01:13:41 | pustovitDmytro/sns-telegram-bot | https://api.github.com/repos/pustovitDmytro/sns-telegram-bot | opened | CVE-2022-3517 (High) detected in minimatch-3.0.4.tgz | security vulnerability | ## CVE-2022-3517 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>minimatch-3.0.4.tgz</b></p></summary>
<p>a glob matcher in javascript</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz">https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/npm/node_modules/minimatch/package.json,/node_modules/minimatch/package.json</p>
<p>
Dependency Hierarchy:
- semantic-release-19.0.2.tgz (Root Library)
- npm-9.0.0.tgz
- npm-8.4.1.tgz
- glob-7.2.0.tgz
- :x: **minimatch-3.0.4.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/pustovitDmytro/sns-telegram-bot/commit/1935409b8ecca96fcded15e00801ae171e9cf439">1935409b8ecca96fcded15e00801ae171e9cf439</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A vulnerability was found in the minimatch package. This flaw allows a Regular Expression Denial of Service (ReDoS) when calling the braceExpand function with specific arguments, resulting in a Denial of Service.
<p>Publish Date: 2022-10-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-3517>CVE-2022-3517</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2022-10-17</p>
<p>Fix Resolution: minimatch - 3.0.5</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | True | CVE-2022-3517 (High) detected in minimatch-3.0.4.tgz - ## CVE-2022-3517 - High Severity Vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>minimatch-3.0.4.tgz</b></p></summary>
<p>a glob matcher in javascript</p>
<p>Library home page: <a href="https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz">https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz</a></p>
<p>Path to dependency file: /package.json</p>
<p>Path to vulnerable library: /node_modules/npm/node_modules/minimatch/package.json,/node_modules/minimatch/package.json</p>
<p>
Dependency Hierarchy:
- semantic-release-19.0.2.tgz (Root Library)
- npm-9.0.0.tgz
- npm-8.4.1.tgz
- glob-7.2.0.tgz
- :x: **minimatch-3.0.4.tgz** (Vulnerable Library)
<p>Found in HEAD commit: <a href="https://github.com/pustovitDmytro/sns-telegram-bot/commit/1935409b8ecca96fcded15e00801ae171e9cf439">1935409b8ecca96fcded15e00801ae171e9cf439</a></p>
<p>Found in base branch: <b>master</b></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary>
<p>
A vulnerability was found in the minimatch package. This flaw allows a Regular Expression Denial of Service (ReDoS) when calling the braceExpand function with specific arguments, resulting in a Denial of Service.
<p>Publish Date: 2022-10-17
<p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-3517>CVE-2022-3517</a></p>
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.5</b>)</summary>
<p>
Base Score Metrics:
- Exploitability Metrics:
- Attack Vector: Network
- Attack Complexity: Low
- Privileges Required: None
- User Interaction: None
- Scope: Unchanged
- Impact Metrics:
- Confidentiality Impact: None
- Integrity Impact: None
- Availability Impact: High
</p>
For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>.
</p>
</details>
<p></p>
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary>
<p>
<p>Type: Upgrade version</p>
<p>Release Date: 2022-10-17</p>
<p>Fix Resolution: minimatch - 3.0.5</p>
</p>
</details>
<p></p>
***
Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github) | non_test | cve high detected in minimatch tgz cve high severity vulnerability vulnerable library minimatch tgz a glob matcher in javascript library home page a href path to dependency file package json path to vulnerable library node modules npm node modules minimatch package json node modules minimatch package json dependency hierarchy semantic release tgz root library npm tgz npm tgz glob tgz x minimatch tgz vulnerable library found in head commit a href found in base branch master vulnerability details a vulnerability was found in the minimatch package this flaw allows a regular expression denial of service redos when calling the braceexpand function with specific arguments resulting in a denial of service publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version release date fix resolution minimatch step up your open source security game with mend | 0 |
50,534 | 10,519,914,599 | IssuesEvent | 2019-09-29 21:17:05 | jyn514/rcc | https://api.github.com/repos/jyn514/rcc | opened | Variable Length Arrays | codegen enhancement | Thanks to @Tachyon
```c
int main() {
int n = 1;
int a[n];
return *a;
}
<stdin>:3:9: error: not a constant expression
``` | 1.0 | Variable Length Arrays - Thanks to @Tachyon
```c
int main() {
int n = 1;
int a[n];
return *a;
}
<stdin>:3:9: error: not a constant expression
``` | non_test | variable length arrays thanks to tachyon c int main int n int a return a error not a constant expression | 0 |
26,767 | 2,685,374,261 | IssuesEvent | 2015-03-29 23:26:14 | IssueMigrationTest/Test5 | https://api.github.com/repos/IssueMigrationTest/Test5 | opened | support for simple closures | auto-migrated Priority-Medium Type-Enhancement | **Issue by [Fahrzin Hemmati](/fahhem)**
_15 Nov 2010 at 2:18 GMT_
_Originally opened on Google Code_
----
```
This originally was a segfault issue, but in trying to reproduce it I got a
different error. I'll release the original source in a few weeks.
Anyway, here's a case:
def map_fail(config):
#a=[config[i] for i in xrange(len(config))]
a=map(lambda i: config[i], xrange(len(config)))
def main():
config = [1,2,6,8,5,9,9,6,5,4,8]
map_fail(config)
if __name__=='__main__':
main()
Basically, the map can't handle the closure-based lambda and has weird issues
with config's type. But if you comment it out and use the list comprehension,
shedskin can create the necessary closure by basically implementing map in the
code (FOR_IN_NEW).
As far as I know, map(some_func,some_iterable) is equivalent to
[some_func(iteration) for iteration in some_iterable] so converting to list
comprehensions for instances where closure is used for the lambda could make
shedskin more robust.
```
| 1.0 | support for simple closures - **Issue by [Fahrzin Hemmati](/fahhem)**
_15 Nov 2010 at 2:18 GMT_
_Originally opened on Google Code_
----
```
This originally was a segfault issue, but in trying to reproduce it I got a
different error. I'll release the original source in a few weeks.
Anyway, here's a case:
def map_fail(config):
#a=[config[i] for i in xrange(len(config))]
a=map(lambda i: config[i], xrange(len(config)))
def main():
config = [1,2,6,8,5,9,9,6,5,4,8]
map_fail(config)
if __name__=='__main__':
main()
Basically, the map can't handle the closure-based lambda and has weird issues
with config's type. But if you comment it out and use the list comprehension,
shedskin can create the necessary closure by basically implementing map in the
code (FOR_IN_NEW).
As far as I know, map(some_func,some_iterable) is equivalent to
[some_func(iteration) for iteration in some_iterable] so converting to list
comprehensions for instances where closure is used for the lambda could make
shedskin more robust.
```
| non_test | support for simple closures issue by fahhem nov at gmt originally opened on google code this originally was a segfault issue but in trying to reproduce it i got a different error i ll release the original source in a few weeks anyway here s a case def map fail config a for i in xrange len config a map lambda i config xrange len config def main config map fail config if name main main basically the map can t handle the closure based lambda and has weird issues with config s type but if you comment it out and use the list comprehension shedskin can create the necessary closure by basically implementing map in the code for in new as far as i know map some func some iterable is equivalent to so converting to list comprehensions for instances where closure is used for the lambda could make shedskin more robust | 0 |
17,059 | 2,615,129,926 | IssuesEvent | 2015-03-01 05:59:45 | chrsmith/google-api-java-client | https://api.github.com/repos/chrsmith/google-api-java-client | opened | Exponential backoff for access token requests failing due to rate limits | auto-migrated Component-Auth Priority-Low Type-Enhancement | ```
copied from:
https://code.google.com/p/google-oauth-java-client/issues/detail?id=57
Version of google-oauth-java-client (e.g. 1.5.0-beta)?
1.12.0-beta
Java environment (e.g. Java 6, Android 2.3, App Engine)?
Java 6, presumably non-AppEngine unless you're not using the AppEngine robot
credentials.
Describe the problem.
1. Share the refresh token with 10+ machines.
2. Perform an authenticated API request across the same machines simultaneously.
Expected: Eventual success.
Actual: Access denied error.
How would you expect it to be fixed?
https://code.google.com/p/google-oauth-java-client/source/browse/google-oauth-cl
ient/src/main/java/com/google/api/client/auth/oauth2/TokenRequest.java#303
http://code.google.com/p/gsutil/source/browse/trunk/src/oauth2_plugin/oauth2_cli
ent.py#343
The problem is that if you have many machines hitting the token endpoint for
the same refresh token, you will hit the rate limit and further requests will
yield 403 without any computer-readable indication that you've hit a rate limit
(there is human-readable HTML in the response that so indicates). We need to
treat 403s as if they were a 429 (http://tools.ietf.org/html/rfc6585) and,
without a Retry-After field, just use exponential backoff to try and get a
refresh token. (If a Retry-After field were available, use it to establish a
baseline for adding extra delay.)
This will not fix the underlying problem, but it will amelioriate it, and
slowly machines will be able to start work.
In this case, we cannot expect that the response will contain JSON, so we'll
have to fall back on raw HTTP code handling.
My comment:
Problem is we have no good way yet of knowing that a 403 is recoverable.
Another potential source of 403 for Google APIs is if the API hasn't been
enabled in the APIs Console. So we need a reliable way of detecting that. One
possibility is to read the human-readable HTML, but that seems prone to fail in
the future. So at this point I don't have a concrete proposal yet, and
therefore I'll keep it as Low priority, but I'll keep it open until we do.
```
Original issue reported on code.google.com by `yan...@google.com` on 2 Nov 2012 at 12:17 | 1.0 | Exponential backoff for access token requests failing due to rate limits - ```
copied from:
https://code.google.com/p/google-oauth-java-client/issues/detail?id=57
Version of google-oauth-java-client (e.g. 1.5.0-beta)?
1.12.0-beta
Java environment (e.g. Java 6, Android 2.3, App Engine)?
Java 6, presumably non-AppEngine unless you're not using the AppEngine robot
credentials.
Describe the problem.
1. Share the refresh token with 10+ machines.
2. Perform an authenticated API request across the same machines simultaneously.
Expected: Eventual success.
Actual: Access denied error.
How would you expect it to be fixed?
https://code.google.com/p/google-oauth-java-client/source/browse/google-oauth-cl
ient/src/main/java/com/google/api/client/auth/oauth2/TokenRequest.java#303
http://code.google.com/p/gsutil/source/browse/trunk/src/oauth2_plugin/oauth2_cli
ent.py#343
The problem is that if you have many machines hitting the token endpoint for
the same refresh token, you will hit the rate limit and further requests will
yield 403 without any computer-readable indication that you've hit a rate limit
(there is human-readable HTML in the response that so indicates). We need to
treat 403s as if they were a 429 (http://tools.ietf.org/html/rfc6585) and,
without a Retry-After field, just use exponential backoff to try and get a
refresh token. (If a Retry-After field were available, use it to establish a
baseline for adding extra delay.)
This will not fix the underlying problem, but it will amelioriate it, and
slowly machines will be able to start work.
In this case, we cannot expect that the response will contain JSON, so we'll
have to fall back on raw HTTP code handling.
My comment:
Problem is we have no good way yet of knowing that a 403 is recoverable.
Another potential source of 403 for Google APIs is if the API hasn't been
enabled in the APIs Console. So we need a reliable way of detecting that. One
possibility is to read the human-readable HTML, but that seems prone to fail in
the future. So at this point I don't have a concrete proposal yet, and
therefore I'll keep it as Low priority, but I'll keep it open until we do.
```
Original issue reported on code.google.com by `yan...@google.com` on 2 Nov 2012 at 12:17 | non_test | exponential backoff for access token requests failing due to rate limits copied from version of google oauth java client e g beta beta java environment e g java android app engine java presumably non appengine unless you re not using the appengine robot credentials describe the problem share the refresh token with machines perform an authenticated api request across the same machines simultaneously expected eventual success actual access denied error how would you expect it to be fixed ient src main java com google api client auth tokenrequest java ent py the problem is that if you have many machines hitting the token endpoint for the same refresh token you will hit the rate limit and further requests will yield without any computer readable indication that you ve hit a rate limit there is human readable html in the response that so indicates we need to treat as if they were a and without a retry after field just use exponential backoff to try and get a refresh token if a retry after field were available use it to establish a baseline for adding extra delay this will not fix the underlying problem but it will amelioriate it and slowly machines will be able to start work in this case we cannot expect that the response will contain json so we ll have to fall back on raw http code handling my comment problem is we have no good way yet of knowing that a is recoverable another potential source of for google apis is if the api hasn t been enabled in the apis console so we need a reliable way of detecting that one possibility is to read the human readable html but that seems prone to fail in the future so at this point i don t have a concrete proposal yet and therefore i ll keep it as low priority but i ll keep it open until we do original issue reported on code google com by yan google com on nov at | 0 |
64,623 | 15,977,336,527 | IssuesEvent | 2021-04-17 04:28:05 | kellylotz7/robot-gladiators | https://api.github.com/repos/kellylotz7/robot-gladiators | closed | Add randomness to health and damage values | initial build | - Start enemies at a random health value between 40 and 60.
- Start enemies with a random attack value between 10 and 14.
- Attack damage is random, using the robot's attack value as an upper limit (for example, if the player's attack is 10, their damage range is 7-10). | 1.0 | Add randomness to health and damage values - - Start enemies at a random health value between 40 and 60.
- Start enemies with a random attack value between 10 and 14.
- Attack damage is random, using the robot's attack value as an upper limit (for example, if the player's attack is 10, their damage range is 7-10). | non_test | add randomness to health and damage values start enemies at a random health value between and start enemies with a random attack value between and attack damage is random using the robot s attack value as an upper limit for example if the player s attack is their damage range is | 0 |
338,647 | 30,311,118,974 | IssuesEvent | 2023-07-10 12:53:31 | UMC-CommonPlant/test_server | https://api.github.com/repos/UMC-CommonPlant/test_server | opened | Issue Template Test | test | # 이슈 제목
## 이슈 설명
## 작업 내용
- [] 새로운 작업 내용
- [] 기존 코드 변경
## To-Do
<!-- 해야 할 일들을 적어주세요 -->
- []
| 1.0 | Issue Template Test - # 이슈 제목
## 이슈 설명
## 작업 내용
- [] 새로운 작업 내용
- [] 기존 코드 변경
## To-Do
<!-- 해야 할 일들을 적어주세요 -->
- []
| test | issue template test 이슈 제목 이슈 설명 작업 내용 새로운 작업 내용 기존 코드 변경 to do | 1 |
225,189 | 17,796,951,364 | IssuesEvent | 2021-09-01 00:06:41 | Maceris/Ikala-Core | https://api.github.com/repos/Maceris/Ikala-Core | closed | PluginManager unit tests | testing | Unit tests should be created for the Plugin Manager. This will require many mock plugins. | 1.0 | PluginManager unit tests - Unit tests should be created for the Plugin Manager. This will require many mock plugins. | test | pluginmanager unit tests unit tests should be created for the plugin manager this will require many mock plugins | 1 |
83,734 | 7,880,856,730 | IssuesEvent | 2018-06-26 17:09:27 | dpn-admin/EXANode-Acceptance-testing | https://api.github.com/repos/dpn-admin/EXANode-Acceptance-testing | closed | 3.3.3.16. MBR.007.000 Member overview | Acceptance Test DPN Test Needs further review bug | Verify:
1) Only DPN users/admins are able to access this section.
2) A list of members is shown, with the possibility to view the details for each member | 2.0 | 3.3.3.16. MBR.007.000 Member overview - Verify:
1) Only DPN users/admins are able to access this section.
2) A list of members is shown, with the possibility to view the details for each member | test | mbr member overview verify only dpn users admins are able to access this section a list of members is shown with the possibility to view the details for each member | 1 |
197,575 | 14,934,475,286 | IssuesEvent | 2021-01-25 10:34:52 | SAPDocuments/Issues | https://api.github.com/repos/SAPDocuments/Issues | closed | Launchpad Scenario - Screenshot Update: Added setting button | Low-Prio SCPTest-2101A SCPTest-psite SCPTest-trial1 SCPTest-trial2 SCPTest-trial3 | Hello,
Scenario URL: https://developers.sap.com/tutorials/cp-portal-cloud-foundry-new-sapui5.html
Step 1: Click the Content Manager icon in the side panel to open the Content Manager.
Screenshot Update: Setting option is not there in old screenshot.
Please update the screenshot.
New screenshot:
<img width="953" alt="Launchpad_1" src="https://user-images.githubusercontent.com/66831161/104504254-2ecf5980-5608-11eb-916f-9ac901e486f2.PNG">
Labels to be added:
Landscape label: Landscape label: trail1, trail2, trail3
Sprint Label: SCPTest-2101
Scenario label: SCPTest-psite
Prio: low-prio
Thanks,
Shubham Agarwal | 5.0 | Launchpad Scenario - Screenshot Update: Added setting button - Hello,
Scenario URL: https://developers.sap.com/tutorials/cp-portal-cloud-foundry-new-sapui5.html
Step 1: Click the Content Manager icon in the side panel to open the Content Manager.
Screenshot Update: Setting option is not there in old screenshot.
Please update the screenshot.
New screenshot:
<img width="953" alt="Launchpad_1" src="https://user-images.githubusercontent.com/66831161/104504254-2ecf5980-5608-11eb-916f-9ac901e486f2.PNG">
Labels to be added:
Landscape label: Landscape label: trail1, trail2, trail3
Sprint Label: SCPTest-2101
Scenario label: SCPTest-psite
Prio: low-prio
Thanks,
Shubham Agarwal | test | launchpad scenario screenshot update added setting button hello scenario url step click the content manager icon in the side panel to open the content manager screenshot update setting option is not there in old screenshot please update the screenshot new screenshot img width alt launchpad src labels to be added landscape label landscape label sprint label scptest scenario label scptest psite prio low prio thanks shubham agarwal | 1 |
166,743 | 26,402,106,860 | IssuesEvent | 2023-01-13 02:45:33 | SOM-st/SOM | https://api.github.com/repos/SOM-st/SOM | closed | Concatenation on Symbol should return a Symbol | spec language design | The intuitive assumption for `#foo + #bar` is that it results in `#foobar`.
Similarly, the receiver should define the result type in the case of `#foo + 'bar' == #foobar`.
Squeak doesn't do this, but simply returns a string as SOM does at the moment.
Though, Pharo does the more intuitive thing, which I think is the right thing.
That this is missing was first noticed in https://github.com/SOM-st/SOM/pull/106#issuecomment-1378826493 and https://github.com/SOM-st/SOM/pull/106#issuecomment-1378845163. | 1.0 | Concatenation on Symbol should return a Symbol - The intuitive assumption for `#foo + #bar` is that it results in `#foobar`.
Similarly, the receiver should define the result type in the case of `#foo + 'bar' == #foobar`.
Squeak doesn't do this, but simply returns a string as SOM does at the moment.
Though, Pharo does the more intuitive thing, which I think is the right thing.
That this is missing was first noticed in https://github.com/SOM-st/SOM/pull/106#issuecomment-1378826493 and https://github.com/SOM-st/SOM/pull/106#issuecomment-1378845163. | non_test | concatenation on symbol should return a symbol the intuitive assumption for foo bar is that it results in foobar similarly the receiver should define the result type in the case of foo bar foobar squeak doesn t do this but simply returns a string as som does at the moment though pharo does the more intuitive thing which i think is the right thing that this is missing was first noticed in and | 0 |
84,780 | 16,552,851,685 | IssuesEvent | 2021-05-28 10:34:14 | heclak/community-a4e-c | https://api.github.com/repos/heclak/community-a4e-c | closed | Bomb Drag Counted Twice | Bug Code/EFM Code/LUA | 
This adds the drag for the number of bombs, however DCS already adds this drag when mounting the bombs on the rack. This results in the drag being added twice, which effectively makes for a very draggy MER rack. | 2.0 | Bomb Drag Counted Twice - 
This adds the drag for the number of bombs, however DCS already adds this drag when mounting the bombs on the rack. This results in the drag being added twice, which effectively makes for a very draggy MER rack. | non_test | bomb drag counted twice this adds the drag for the number of bombs however dcs already adds this drag when mounting the bombs on the rack this results in the drag being added twice which effectively makes for a very draggy mer rack | 0 |
212,974 | 7,244,577,685 | IssuesEvent | 2018-02-14 15:32:18 | openshift/origin | https://api.github.com/repos/openshift/origin | closed | Statefulset example: cannot find volume plugin for alpha provisioning | area/examples component/storage kind/bug lifecycle/stale priority/P2 | I'm trying to run this [Zookeeper example](https://github.com/openshift/origin/tree/master/examples/statefulsets/zookeeper), but I end with errors such as:
```
FirstSeen LastSeen Count From SubObjectPath Type Reason Message
--------- -------- ----- ---- ------------- -------- ------ -------
1h 12s 281 {default-scheduler } Warning FailedScheduling [SchedulerPredicates failed due to PersistentVolumeClaim is not bound: "datadir-zoo-0", which is unexpected., SchedulerPredicates failed due to PersistentVolumeClaim is not bound: "datadir-zoo-0", which is unexpected.]
```
or
```
error finding provisioning plugin for claim test/datadir-zoo-2: cannot find volume plugin for alpha provisioning
```
I'm note sure but I suspect that it might be due to line `volume.alpha.kubernetes.io/storage-class: anything`, because I don't think that there is any default StorageClass defined...
If so how can I set up the most simple StorageClass to get this to work, because as I'm self-hosting my openshift origin cluster, I cannot fit into any of the cloud storage option (GCE, AWS, Azure, etc...)?
##### Version
```
[user@server ~]$ oc version
oc v1.5.0-alpha.2+e4b43ee
kubernetes v1.5.2+43a9be4
features: Basic-Auth GSSAPI Kerberos SPNEGO
Server https://192.168.1.106:8443
openshift v1.5.0-alpha.2+e4b43ee
kubernetes v1.5.2+43a9be4
```
##### Steps To Reproduce
1. Retrieve file [zookeeper.yaml](https://gist.github.com/Syffs/0ddf5f007ca8360f3ac50262697e6452)
2. Run as below:
```
oc process -f zookeeper.yaml > zookeeper.active
oc create -f zookeeper.active
```
3. oc describe pods zoo-0
##### Current Result
- Volumes are not allocated
- Pods are not scheduled
| 1.0 | Statefulset example: cannot find volume plugin for alpha provisioning - I'm trying to run this [Zookeeper example](https://github.com/openshift/origin/tree/master/examples/statefulsets/zookeeper), but I end with errors such as:
```
FirstSeen LastSeen Count From SubObjectPath Type Reason Message
--------- -------- ----- ---- ------------- -------- ------ -------
1h 12s 281 {default-scheduler } Warning FailedScheduling [SchedulerPredicates failed due to PersistentVolumeClaim is not bound: "datadir-zoo-0", which is unexpected., SchedulerPredicates failed due to PersistentVolumeClaim is not bound: "datadir-zoo-0", which is unexpected.]
```
or
```
error finding provisioning plugin for claim test/datadir-zoo-2: cannot find volume plugin for alpha provisioning
```
I'm note sure but I suspect that it might be due to line `volume.alpha.kubernetes.io/storage-class: anything`, because I don't think that there is any default StorageClass defined...
If so how can I set up the most simple StorageClass to get this to work, because as I'm self-hosting my openshift origin cluster, I cannot fit into any of the cloud storage option (GCE, AWS, Azure, etc...)?
##### Version
```
[user@server ~]$ oc version
oc v1.5.0-alpha.2+e4b43ee
kubernetes v1.5.2+43a9be4
features: Basic-Auth GSSAPI Kerberos SPNEGO
Server https://192.168.1.106:8443
openshift v1.5.0-alpha.2+e4b43ee
kubernetes v1.5.2+43a9be4
```
##### Steps To Reproduce
1. Retrieve file [zookeeper.yaml](https://gist.github.com/Syffs/0ddf5f007ca8360f3ac50262697e6452)
2. Run as below:
```
oc process -f zookeeper.yaml > zookeeper.active
oc create -f zookeeper.active
```
3. oc describe pods zoo-0
##### Current Result
- Volumes are not allocated
- Pods are not scheduled
| non_test | statefulset example cannot find volume plugin for alpha provisioning i m trying to run this but i end with errors such as firstseen lastseen count from subobjectpath type reason message default scheduler warning failedscheduling or error finding provisioning plugin for claim test datadir zoo cannot find volume plugin for alpha provisioning i m note sure but i suspect that it might be due to line volume alpha kubernetes io storage class anything because i don t think that there is any default storageclass defined if so how can i set up the most simple storageclass to get this to work because as i m self hosting my openshift origin cluster i cannot fit into any of the cloud storage option gce aws azure etc version oc version oc alpha kubernetes features basic auth gssapi kerberos spnego server openshift alpha kubernetes steps to reproduce retrieve file run as below oc process f zookeeper yaml zookeeper active oc create f zookeeper active oc describe pods zoo current result volumes are not allocated pods are not scheduled | 0 |
339,523 | 30,453,445,075 | IssuesEvent | 2023-07-16 15:34:21 | michalleptuch/ink-workspace | https://api.github.com/repos/michalleptuch/ink-workspace | closed | A screen rotation issue | bug testing | I use HDMI to connect an external monitor with my laptop. When I rotate the screen using Ink Workspace, it causes the default screen position of the system to be misaligned and requires readjustment.


| 1.0 | A screen rotation issue - I use HDMI to connect an external monitor with my laptop. When I rotate the screen using Ink Workspace, it causes the default screen position of the system to be misaligned and requires readjustment.


| test | a screen rotation issue i use hdmi to connect an external monitor with my laptop when i rotate the screen using ink workspace it causes the default screen position of the system to be misaligned and requires readjustment | 1 |
52,723 | 7,781,665,255 | IssuesEvent | 2018-06-06 01:42:51 | fga-gpp-mds/2018.1-Lacos-da-Alegria | https://api.github.com/repos/fga-gpp-mds/2018.1-Lacos-da-Alegria | opened | Documentar resultados da Sprint 11 | Boas práticas EPS documentation easy management | ### Descrição
Eu, como Scrum Master, gostaria de documentar os resultados da Sprint 11 para manter registro da mesma. | 1.0 | Documentar resultados da Sprint 11 - ### Descrição
Eu, como Scrum Master, gostaria de documentar os resultados da Sprint 11 para manter registro da mesma. | non_test | documentar resultados da sprint descrição eu como scrum master gostaria de documentar os resultados da sprint para manter registro da mesma | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.