repo_name
stringlengths 4
136
| issue_id
stringlengths 5
10
| text
stringlengths 37
4.84M
|
---|---|---|
backdrop/backdrop-issues | 324300436 | Title: Layout module revision in 10.0 is causing failure.
Question:
username_0: I have a site that uses Views to generate pages using data from a specified node. One example is a page with path `eventreport2/%`. This is displayed by a layout specifically for this path. On the configure layout admin page the Context is set to 'Position 2:eventreport2/%' and the Type then automatically becomes 'string pass-through'.
Such pages with custom layouts are no longer being displayed after update to 10.0 and the log shows two reports
`Notice: Undefined index: load callback in layout_get_layout_by_path() (line 1082 of layout.module)`
and
`Error: Function name must be a string in layout_get_layout_by_path() (line 1083 of layout.module)`
I have fixed this temporarily by reverting to the previous version of layout.module, i.e. before Issue #3004.
Note: I am not using the Taxonomy module which was perhaps the reason for #3004.
Answers:
username_1: Fixing this is pretty simple, we should just check if a "load callback" is specified before attempting to call it. Right now it looks like it's `NULL` in @username_0's example. PR at https://github.com/backdrop/backdrop/pull/2214 adds a simple check.
username_1: Additional test now added to ensure string pass-through arguments work as expected.
Status: Issue closed
username_1: Merged https://github.com/backdrop/backdrop/pull/2214 into 1.x and 1.10.x. |
BeamMW/beam | 494583163 | Title: wallet-api: id session parameter doesn't meat jsonrpc specification
Question:
username_0: **Bug title**
id session parameter doesn't meat jsonrpc specification
**Bug description**
based on https://www.jsonrpc.org/specification
_An identifier established by the Client that MUST contain a String, Number, or NULL value if included. If it is not included it is assumed to be a notification. The value SHOULD normally not be Null [1] and Numbers SHOULD NOT contain fractional parts [2]_
**Current behaviour**
1. we can't use string( specification allows it)
```
$ curl -d '{"jsonrpc":"2.0","id":"1","method":"wallet_status"}' -H "Content-Type: application/json" -X POST http://127.0.0.1:10006/api/wallet | python -m json.tool
{
"error": {
"code": -32603,
"message": "[json.exception.type_error.302] type must be number, but is string"
},
"jsonrpc": "2.0"
}
```
2. if use id =0 ( or any negative value) ther is no any detalization of error
```
curl -d '{"jsonrpc":"2.0","id":0,"method":"wallet_status"}' -H "Content-Type: application/json" -X POST http://127.0.0.1:10006/api/wallet | python -m json.tool
{
"error": {
"code": -32600,
"message": "Invalid JSON-RPC."
},
"id": null,
"jsonrpc": "2.0"
}
```
**Expected behaviour**
it's better to adjust id session parameter with jsonrpc specification
**Platform and build**
mac 3.1.5737
**Log file(s) (if applicable)**
```
{"jsonrpc":"2.0","id":"1","method":"wallet_status"}
D 2019-09-17.15:00:04.759 onInvalidJsonRpc: {"error":{"code":-32603,"message":"[json.exception.type_error.302] type must be number, but is string"},"jsonrpc":"2.0"}
```
Answers:
username_0: verified with the latest master
Status: Issue closed
|
carbon-design-system/carbon-charts | 576380075 | Title: Stacked bar chart timeseries missing labels cause the bars to go off the grid
Question:
username_0: #### I am submitting a...
- [ ] Feature request
- [ ] Design defect
- [x] Source code defect
- [x] Demo/documentation defect
- [ ] Other
#### charts version:
0.29.8
### Issue description
When setting the `options` for a stacked bar time series, it's not clear what `labels` does. If you leave a quantity of labels that is less than the number of any datasets data points, it renders bars outside the grid.
It might be related to a possible bug I noticed here: https://github.com/carbon-design-system/carbon-charts/blob/master/packages/core/src/components/graphs/bar-stacked.ts#L147
`yScale.scaleType` is always `undefined` because is not a valid property of `d3.scale()` (while it's used correctly [here](https://github.com/carbon-design-system/carbon-charts/blob/master/packages/core/src/components/graphs/bar-stacked.ts#L49))
#### Steps to produce the issue
- change [this line](https://github.com/carbon-design-system/carbon-charts/blob/master/packages/core/demo/demo-data/bar.ts#L281) on the demo data to `labels: ["Qty"],`
- press 'Update data' as many times as needed to reproduce the problem
#### Current behavior
#### Expected behavior
### Screenshot or recording

Answers:
username_1: Hi @username_0, you're missing the `stacked: true` field for your left axis. Please let me know if adding that will fix your issue, thanks.
Status: Issue closed
username_0: hi @username_1, unfortunately that's not the problem - we do have `stacked: true` in the axis options.
we fixed it in our case with adding as many labels as the dataset points, but I think there might really be a problem here for example https://github.com/carbon-design-system/carbon-charts/blob/master/packages/core/src/components/graphs/bar-stacked.ts#L147
username_1: #### I am submitting a...
- [ ] Feature request
- [ ] Design defect
- [x] Source code defect
- [x] Demo/documentation defect
- [ ] Other
#### charts version:
0.29.8
### Issue description
When setting the `options` for a stacked bar time series, it's not clear what `labels` does. If you leave a quantity of labels that is less than the number of any datasets data points, it renders bars outside the grid.
It might be related to a possible bug I noticed here: https://github.com/carbon-design-system/carbon-charts/blob/master/packages/core/src/components/graphs/bar-stacked.ts#L147
`yScale.scaleType` is always `undefined` because is not a valid property of `d3.scale()` (while it's used correctly [here](https://github.com/carbon-design-system/carbon-charts/blob/master/packages/core/src/components/graphs/bar-stacked.ts#L49))
#### Steps to produce the issue
- change [this line](https://github.com/carbon-design-system/carbon-charts/blob/master/packages/core/demo/demo-data/bar.ts#L281) on the demo data to `labels: ["Qty"],`
- press 'Update data' as many times as needed to reproduce the problem
#### Current behavior
#### Expected behavior
### Screenshot or recording

username_1: That's fair! Sorry about closing the issue initially, I'll take a look
username_0: no worries, i would have done the same @username_1 :)
username_1: Will be addressed by #529
Status: Issue closed
|
neveldo/jQuery-Mapael | 153255678 | Title: Tapping plots on mobile
Question:
username_0: I have attached a click event to plots on mobile, where upon a tap, the plot changes from one image to another. However, it treats the first tap as whatever hover attributes are present, forcing the user to tap twice to fire the click event. Is there a way around this?
Answers:
username_1: Hello @username_0 , have you checked the native jquery touch events like touchstart/touchend (see http://stackoverflow.com/questions/4755505/how-to-recognize-touch-events-using-jquery-in-safari-for-ipad-is-it-possible) ? Or maybe jquery mobile could be an alternative as it provide a "tap" event : http://www.w3schools.com/jquerymobile/jquerymobile_events_touch.asp .
Another way to get around this may be to change your "click" event by a mouseover for mobile users ?
username_2: @username_0 do you still need help or can we close this issue? Thanks.
Status: Issue closed
|
diegomura/react-pdf | 402492601 | Title: React-pdf 1.2.1 not working on codesandbox.io
Question:
username_0: When testing for some bugs I'm experiencing I tried react-pdf on codesandbox.io.
As soon as you import any part of @react-pdf/renderer to the page you get the following error:
"Potential infinite loop: exceeded 10001 iterations."
https://codesandbox.io/s/308l7yox21
Answers:
username_1: Yes. I'm aware of this. I think this was introduced when we switch from `yoga-layout` to `yoga-layout-prebuilt`, but not sure. This is not something specific to 1.2.1 either.
The error is very cryptic and I would love the lib to work on codesandbox, but I didn't have time yet to take a look at what's going on here. The best way to identify what's going on would be knowing between which versions this got broken, and then seeing the diff of those versions.
Keeping this open for further research
username_1: In the meantime, disabling `Infinite Loop Protection` in the `sandbox.config.json` file makes this error go away. However, the blob does not get rendered inside the iframe, which is weird. IF you open the blob in another tab you can see the pdf document just fine. Also this seems to be just a Chrome issue. I tried it on Firefox and everything is OK.
<img width="1179" alt="screen shot 2019-01-24 at 3 52 14 pm" src="https://user-images.githubusercontent.com/5600341/51701358-0e0f3300-1ff0-11e9-90f8-306490fe2652.png">
username_2: We have also been experiencing this error in Firefox. In Firefox, when you accept the prompt to stop a long-running script...
<img width="578" alt="A web page is slowing down your browser. What would you like to do? (button) Stop it. (button) Wait." src="https://user-images.githubusercontent.com/593122/52273844-eb134600-2942-11e9-98e4-4c3b321a1e2e.png">
... it produces a long stack trace that appears to be linked to yoga-layout(-prebuilt). Sorry about the horrendous length! Let me know if a stack trace from source maps would be useful (I didn’t work out how to get it but can dig in some more).
This may be related to / the cause of the bug in IE (#413), but I haven’t been able to extract a stack trace in IE yet.
| With `yoga-layout-prebuilt`: | With `yoga-layout`: |
|------------------------------|---------------------|
| `Error: Script terminated by timeout at:`<br>`[email protected]:35264:21`<br>`[email protected]:35278:12`<br>`finalizeLineFragment/<@bundle.js:34277:28`<br>`layoutParagraph/</<@bundle.js:34345:7`<br>`layoutParagraph/<@bundle.js:34344:5`<br>`[email protected]:34362:23`<br>`typesetter/</</<@bundle.js:34378:9`<br>`typesetter/</<@bundle.js:34377:14`<br>`compose/</<@bundle.js:33341:14`<br>`compose/<@bundle.js:33340:12`<br>`[email protected]:33366:5`<br>`[email protected]:25080:7`<br>`[email protected]:25095:7`<br>`./node_modules/yoga-layout-prebuilt/yoga-layout/dist/entry-common.js/module.exports/</<@bundle.js:99073:28`<br>`@bundle.js line 90296 > eval:1:86`<br>`./node_modules/yoga-layout-prebuilt/yoga-layout/build/Release/nbind.js/</</ASM_CONSTS<@bundle.js:89404:12`<br>`[email protected]:89412:28`<br>`[email protected]:92559:1`<br>`[email protected]:92555:1`<br>`[email protected]:92552:1`<br>`[email protected]:92546:1`<br>`[email protected]:92048:1`<br>`[email protected]:91902:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:91922:1`<br>`[email protected]:92608:1`<br>`[email protected]:93134:1`<br>`[email protected]:93126:1`<br>`[email protected]:98755:1`<br>`makeMethodCaller/<@bundle.js:90329:57`<br>`./node_modules/yoga-layout-prebuilt/yoga-layout/dist/entry-common.js/module.exports/<@bundle.js:99086:12`<br>`./node_modules/yoga-layout-prebuilt/yoga-layout/dist/entry-common.js/module.exports/patch/prototype[name]@bundle.js:98985:14`<br>`[email protected]:22572:5`<br>`[email protected]:24677:15`<br>`[email protected]:38363:37`<br>`[email protected]:38597:22`<br>`defineIteratorMethods/</prototype[method]@bundle.js:38415:16`<br>`[email protected]:37905:30`<br>`step/<@bundle.js:37916:13`<br>`[email protected]:49373:22`<br>`notify/<@bundle.js:49390:30`<br>`[email protected]:47960:9` | `Error: Script terminated by timeout at:`<br>`[email protected]:35264:21`<br>`[email protected]:35278:12`<br>`finalizeLineFragment/<@bundle.js:34277:28`<br>`layoutParagraph/</<@bundle.js:34345:7`<br>`layoutParagraph/<@bundle.js:34344:5`<br>`[email protected]:34362:23`<br>`typesetter/</</<@bundle.js:34378:9`<br>`typesetter/</<@bundle.js:34377:14`<br>`compose/</<@bundle.js:33341:14`<br>`compose/<@bundle.js:33340:12`<br>`[email protected]:33366:5`<br>`[email protected]:25080:7`<br>`[email protected]:25095:7`<br>`./node_modules/yoga-layout/dist/entry-common.js/module.exports/</<@bundle.js:99073:28`<br>`@bundle.js line 90296 > eval:1:86`<br>`./node_modules/yoga-layout/build/Release/nbind.js/</</ASM_CONSTS<@bundle.js:89404:12`<br>`[email protected]:89412:28`<br>`[email protected]:92559:1`<br>`[email protected]:92555:1`<br>`[email protected]:92552:1`<br>`[email protected]:92546:1`<br>`[email protected]:92048:1`<br>`[email protected]:91902:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:92149:1`<br>`[email protected]:91633:1`<br>`[email protected]:91511:1`<br>`[email protected]:91922:1`<br>`[email protected]:92608:1`<br>`[email protected]:93134:1`<br>`[email protected]:93126:1`<br>`[email protected]:98755:1`<br>`makeMethodCaller/<@bundle.js:90329:57`<br>`./node_modules/yoga-layout/dist/entry-common.js/module.exports/<@bundle.js:99086:12`<br>`./node_modules/yoga-layout/dist/entry-common.js/module.exports/patch/prototype[name]@bundle.js:98985:14`<br>`[email protected]:22572:5`<br>`[email protected]:24677:15`<br>`[email protected]:38363:37`<br>`[email protected]:38597:22`<br>`defineIteratorMethods/</prototype[method]@bundle.js:38415:16`<br>`[email protected]:37905:30`<br>`step/<@bundle.js:37916:13`<br>`[email protected]:49373:22`<br>`notify/<@bundle.js:49390:30`<br>`[email protected]:47960:9`<br>`GlyphString.js:202` |
username_2: Ooh exciting! This appears to have been resolved by #474. You can test this by `npm i github:SDFE/react-pdf#474` :)
Status: Issue closed
username_3: Still seeing this in **1.6.13** both on Mac versions of Chrome (v89.0.4389.90), Firefox (86.0.1), and Safari (v14.0.2)
[CSB Link](https://codesandbox.io/s/broken-fire-0l53j?file=/src/App.tsx)
Disabling loop protection does not render the Document within PDFViewer
Needed this to attempt to reproduce another possible issue I've encountered.
Anyone can suggest an alternative environment to CodeSandbox for this purpose? |
fullcalendar/fullcalendar | 405616315 | Title: Year View Render
Question:
username_0: In the year View I can't able to renderEvent using Select function but month is working fine.
Thanks!
Answers:
username_1: Would you be able to post a [runnable, stripped-down demonstration of the bug](http://fullcalendar.io/wiki/Reduced-Test-Cases/)? Would really appreciate it because the time saved reproducing will be time spent fixing.
username_0: Please Checkout this link
https://codepen.io/username_0/pen/daWNQe
When i am trying to drag on date color highlighted but when i release the mouse button it faded away.
username_1: The year view your are using is not part of the calendar. There is an open request to add a view like that:
https://github.com/fullcalendar/fullcalendar/issues/1140
↑
Could you please visit the link, **give a** 👍 **to vote** ([?](https://github.com/blog/2119-add-reactions-to-pull-requests-issues-and-comments)), press the 🔈**Subscribe** button to receive updates?
Status: Issue closed
username_0: @username_1 I Have tried you link but its not working. It show $calendar is not a function and year view is in different js how could i implement that.
username_1: You could try those examples as a starting point for now but that view is not built-in yet so you would need to implement it yourself for now/ |
webdriverio/webdriverio | 335005728 | Title: isVisible causes server-side error and disconnects
Question:
username_0: ## The problem
isVisible causes server-side error and disconnects.
## Environment
* WebdriverIO version: 4.13.0
* Node.js version: 5.8.0
* Selenium Standalone: 6.15.1
## Details
This problems occurs inconsistently, but when it does occur it's always from using isVisible. The error below is returned, saying that the connection refused to connect, but when running multiple tests, the following test continues without connection errors. I've had this happen on multiple tests at different times, some throw this error more often than others, but it's always on the call to isVisible.
<pre>
{ Error: An unknown server-side error occurred while processing the command.
at elementIdDisplayed("0.5565900215051574-34") - C:\path\node_modules\webdriverio\build\lib\commands\isVisible.js:71:55
details: undefined,
message: 'java.net.ConnectException: Connection refused: connect',
type: 'RuntimeError',
seleniumStack:
{ type: 'UnknownError',
message: 'An unknown server-side error occurred while processing the command.',
orgStatusMessage: 'java.net.ConnectException: Connection refused: connect' },
shotTaken: true }
</pre>
## Code To Reproduce Issue [ Good To Have ]
<pre>
expect(browser.isVisible("#element")).toBeTruthy();
</pre>
Status: Issue closed
Answers:
username_1: This issue is not necessary connected to WebdriverIO. I can't really tell why this is happening but from my understanding it usually occurs if you make too many requests to the automation driver.
username_0: How is "too many requests" defined? I'm still getting this issue on several of my tests. Do you mean the length of the test? I have several pauses to add space between calls, and it still occurs, so I'm not really overloading the driver with a ton of requests all at once. |
KinoKabaret/Kinoit-Quasar-Skeleton | 296202201 | Title: icons duplicates on scroll down
Question:
username_0: - **Chrome**:

- **Safari & Opera** doesn't show this issue.
- **Firefox**: impossible to tell (scroll is disabled, see issue #3 )
Answers:
username_0: Issue irrelevant to v0.2 👍
Status: Issue closed
|
GemeenteUtrecht/zaakafhandelcomponent | 827344538 | Title: Editing of case relevant data
Question:
username_0: An end user needs to be able to edit certain case attributes, details and relevant information.
This issue is related to: https://github.com/GemeenteUtrecht/ZGW/issues/607, https://github.com/GemeenteUtrecht/ZGW/issues/608, https://github.com/GemeenteUtrecht/ZGW/issues/609.
**BACKEND** (@username_0 ):
- [ ] Implement endpoint for case details: https://github.com/GemeenteUtrecht/ZGW/issues/607 is fixed by: https://github.com/GemeenteUtrecht/zaakafhandelcomponent/pull/216.
See the api docs here: https://zac-test.utrechtproeftuin.nl/api/docs/#operation/core_cases_partial_update.
- [ ] Implement endpoint for editing case attributes: https://github.com/GemeenteUtrecht/ZGW/issues/608
- [ ] Implement endpoint for editing case roles: https://github.com/GemeenteUtrecht/ZGW/issues/609
**FRONTEND** (@kelvincy):
- [ ] Editing of case details for issue: https://github.com/GemeenteUtrecht/ZGW/issues/607
- [ ] Editing of case attributes for issue: https://github.com/GemeenteUtrecht/ZGW/issues/608
- [ ] Editing of case roles for issue: https://github.com/GemeenteUtrecht/ZGW/issues/609<issue_closed>
Status: Issue closed |
spirit-code/spirit | 271557582 | Title: Core: add input flag whether to write a neighbours file
Question:
username_0: In the case of interaction pairs model, they should be mirrored when written into the file to create a full neighbour list.
Answers:
username_0: Laid the groundwork with 24125f1a0a9ae3da98c3d84fb5a5bc79a6561a19.
This should be finally implemented when the Hamiltonian refactoring (#311) is finished.
username_0: This is being addressed by PR #416.
Status: Issue closed
username_0: PR #416 has been merged with 5222b0131b38cb61b6f701c561768228f80c5c06. |
adobe/brackets.io | 226358238 | Title: Recent blog posts fail to load
Question:
username_0: Reposting from https://github.com/adobe/brackets/issues/13322 with bit more details:
The feed is interpreted as HTML for whatever reasons now at https://github.com/adobe/brackets.io/blob/9375bf024fa25c7e983ec967ca9db8969e0c8b85/index.html#L508, causing the `Unexpected token` error I think.
Answers:
username_1: The JSON feed is not valid, as it ends with a PHP error message:
``` html
<br />
<b>Warning</b>: call_user_func_array() expects parameter 1 to be a valid callback, first array member is not a valid class name or object in <b>/home/wp_twqxv4/blog.brackets.io/wp-includes/class-wp-hook.php</b> on line <b>298</b><br />
``` |
Luzifer/go-dhparam | 611527352 | Title: Generated DH Parameters fail test with openssl dhparam -check
Question:
username_0: The DH parameters generated by this library seem to fail the test with OpenSSL. This is also causing the unit tests to fail with recent versions of OpenSSL.
For example, these are 2048-bit DH Parameters generated by the library:
```pem
-----BEGIN DH PARAMETERS-----
<KEY>
-----END DH PARAMETERS-----
```
Testing them:
```
$ openssl dhparam -inform PEM -in test.pem -check -noout -text
PKCS#3 DH Parameters: (2048 bit)
prime:
[...]
generator: 2 (0x2)
p value is not a safe prime
```
Answers:
username_0: My bad, the mistake was in my code. Will fix my PR.
Status: Issue closed
|
primefaces/primefaces | 365464046 | Title: Picklist: Javascript error with fast selection
Question:
username_0: ## 1) Environment
- PrimeFaces version: 6.2.9
Version 6.1.x worked
- Affected browsers:
Chrome/Firefox
## 2) Expected behavior
No Javascript errors
...
## 3) Actual behavior
When quickly selecting items (e.g. with Selenium or manually by quickly selecting with 'SPACE/CLICK/SPACE/CLICK/SPACE') a javascript exception occurs:
`
| scrollInView | @ | core.js.xhtml?ln=primefaces&v=6.2.9:480
-- | -- | -- | --
| (anonymous) | @ | components.js.xhtml?…faces&v=6.2.9:16832
| setTimeout (async) | |
| (anonymous) | @ | components.js.xhtml?…faces&v=6.2.9:16831
| dispatch | @ | jquery.js.xhtml?ln=primefaces&v=6.2.9:3
| q.handle | @ | jquery.js.xhtml?ln=primefaces&v=6.2.9:3
| trigger | @ | jquery.js.xhtml?ln=primefaces&v=6.2.9:4
| simulate | @ | jquery.js.xhtml?ln=primefaces&v=6.2.9:4
| c | @ | jquery.js.xhtml?ln=primefaces&v=6.2.9:4
`
## 4) Steps to reproduce
You can test this in the showcase:
https://www.primefaces.org/showcase/ui/data/pickList.xhtml
## 5) Sample XHTML
## 6) Sample bean<issue_closed>
Status: Issue closed |
vasturiano/react-force-graph | 324073165 | Title: Cannot install
Question:
username_0: I tried npm i react-force-graph and kept hitting the same error:
```
warning: templates not found C:\Users\USERNAME\AppData\Local\Temp\pacote-git-template-tmp\git-clone-169f0298
Fatal: The remote end hung up unexpectedly
```
when trying with --verbose, it seems to hang on https://registry.npmjs.org/@tweenjs%2ftween.js
any idea why?
Answers:
username_1: @username_0 just tried `npm i react-force-graph` with npm `v5.3.0` and it installed fine.
Can you succesfully install `npm i [email protected]` in your machine?
username_0: I was able to install [email protected], as well as downgrade npm to v5.3.0 but same error. Even when I tried installing `npm i aframe`:
`42 silly pacote range manifest for @tweenjs/tween.js@^16.8.0 fetched in 547ms
43 silly resolveWithNewModule @tweenjs/[email protected] checking installable status
44 silly fetchPackageMetaData error for document-register-element@github:dmarcos/document-register-element#8ccc532b7 Command failed: C:\Users\...\git.EXE clone -q https://github.com/dmarcos/document-register-element.git C:\Users\USERNAME\AppData\Roaming\npm-cache\_cacache\tmp\git-clone-05bd2adc --config core.longpaths=true
44 silly fetchPackageMetaData warning: templates not found C:\Users\USERNAME\AppData\Local\Temp\pacote-git-template-tmp\git-clone-7c6b309b
44 silly fetchPackageMetaData fatal: The remote end hung up unexpectedly
44 silly fetchPackageMetaData error: RPC failed; HTTP 403 curl 22 The requested URL returned error: 403 Forbidden
45 silly fetchPackageMetaData error for three@github:supermedium/three.js#r90fixMTLLoader Command failed: C:\Users\...\git.EXE clone --depth=1 -q -b r90fixMTLLoader https://github.com/supermedium/three.js.git C:\Users\USERNAME\AppData\Roaming\npm-cache\_cacache\tmp\git-clone-cebb4d62 --config core.longpaths=true
45 silly fetchPackageMetaData warning: templates not found C:\Users\USERNAME\AppData\Local\Temp\pacote-git-template-tmp\git-clone-7c6b309b
45 silly fetchPackageMetaData fatal: The remote end hung up unexpectedly
45 silly fetchPackageMetaData error: RPC failed; HTTP 403 curl 22 The requested URL returned error: 403 Forbidden
46 silly fetchPackageMetaData error for debug@github:ngokevin/debug#noTimestamp Command failed: C:\Users\...\git.EXE clone --depth=1 -q -b noTimestamp https://github.com/ngokevin/debug.git C:\Users\USERNAME\AppData\Roaming\npm-cache\_cacache\tmp\git-clone-c3a1450f --config core.longpaths=true
46 silly fetchPackageMetaData warning: templates not found C:\Users\USERNAME\AppData\Local\Temp\pacote-git-template-tmp\git-clone-7c6b309b
46 silly fetchPackageMetaData fatal: The remote end hung up unexpectedly
46 silly fetchPackageMetaData error: RPC failed; HTTP 403 curl 22 The requested URL returned error: 403 Forbidden`
username_0: Was able to do it on another computer. Closed now
Status: Issue closed
|
gomarkdown/markdown | 496658267 | Title: On Unicode Support
Question:
username_0: Sad to hear about BlackFriday. I use the package in a Markdown to PDF tool (mdtopdf). I filed an issue with BF on this same topic but noticed that the project seems to have died.
Based this excellent write up:
https://stackoverflow.com/questions/29255746/how-encode-rune-into-byte-using-utf8-in-golang
and my little experiment in playground:
https://play.golang.org/p/38X88KLr5aE
I believe this package will need to support "string" as input, instead of or in addition to "[]byte", in order to allow non-ASCII in Markdown. Using utf8.DecodeRuneInString() to ensure proper handling. See also:
https://blog.golang.org/strings
Answers:
username_1: Please provide a test case: a markdown text, how this library renders it and how it should be rendered instead (and verify with https://babelmark.github.io/ that it is indeed incorrect).
Status: Issue closed
username_0: It turns out that my test case actually worked. Further work revealed the issue to be a problem with configuring the PDF generator with appropriate Unicode support.
Closing! |
conda/conda-build | 170508958 | Title: Add way to force re-build
Question:
username_0: I'm building JModelica as a conda package, and it seems to not re-build if I leave the package in the local channel. If I delete it, I get a fresh build. It would be nice if conda-build had a "--force" option to force it to re-build, regardless of what it thinks it needs to do.
Status: Issue closed
Answers:
username_0: Whoops. My bad; I was caching the built packages myself. |
JGCRI/gcamdata | 230145728 | Title: LA1321.Cement (gcam-usa)
Question:
username_0: Somehow an issue didn't get created when @username_1 started this. Just for completeness, opening this.
Answers:
username_1: what about this issue? #407 Maybe because I had it "up next"?
username_0: Argh.
Status: Issue closed
username_0: Re-opening and assigning to @kdorheim .
username_0: Somehow an issue didn't get created when @username_1 started this. Just for completeness, opening this.
Status: Issue closed
username_0: I can't believe I screwed this up AGAIN. Closing. |
YiiGuxing/TranslationPlugin | 999833019 | Title: 翻译失败: 未知错误
Question:
username_0: <!-- (版本崩溃时请提供)
- 错误日志:
```
cn.yiiguxing.plugin.translate.trans.TranslateException: Google Translate :: 翻译失败: 未知错误
at cn.yiiguxing.plugin.translate.trans.AbstractTranslator.translate(AbstractTranslator.kt:101)
at cn.yiiguxing.plugin.translate.trans.TranslateService$translate$$inlined$executeOnPooledThread$1.run(Applications.kt:186)
at com.intellij.openapi.application.impl.ApplicationImpl$1.run(ApplicationImpl.java:238)
at java.base/java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:515)
at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:264)
at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1128)
at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:628)
at java.base/java.lang.Thread.run(Thread.java:834)
Caused by: java.net.HttpRetryException: cannot retry due to redirection, in streaming mode
at java.base/sun.net.www.protocol.http.HttpURLConnection.followRedirect0(HttpURLConnection.java:2704)
at java.base/sun.net.www.protocol.http.HttpURLConnection.followRedirect(HttpURLConnection.java:2690)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream0(HttpURLConnection.java:1849)
at java.base/sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1515)
at java.base/sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:250)
at com.intellij.util.io.HttpRequests$RequestImpl.getInputStream(HttpRequests.java:385)
at com.intellij.util.io.HttpRequests$RequestImpl.readString(HttpRequests.java:440)
at com.intellij.util.io.HttpRequests$Request.readString(HttpRequests.java:105)
at cn.yiiguxing.plugin.translate.trans.AbstractTranslator$doTranslate$2.process(AbstractTranslator.kt:75)
at cn.yiiguxing.plugin.translate.trans.AbstractTranslator$doTranslate$2.process(AbstractTranslator.kt:18)
at com.intellij.util.io.HttpRequests.doProcess(HttpRequests.java:518)
at com.intellij.util.io.HttpRequests.process(HttpRequests.java:500)
at com.intellij.util.io.HttpRequests.access$100(HttpRequests.java:56)
at com.intellij.util.io.HttpRequests$RequestBuilderImpl.connect(HttpRequests.java:350)
at cn.yiiguxing.plugin.translate.trans.AbstractTranslator.doTranslate(AbstractTranslator.kt:73)
at cn.yiiguxing.plugin.translate.trans.AbstractTranslator.translate(AbstractTranslator.kt:80)
... 7 more
```
-->
<!-- 获取环境与错误日志: http://yiiguxing.github.io/TranslationPlugin/start.html#faq-fb -->
Status: Issue closed
Answers:
username_1: duplicate: #827 |
desktop/desktop | 334531414 | Title: selected commit not kept in sync with compare tab state
Question:
username_0: I think we're close to cleaning up the old `History` component which might uncover the root cause of this, but this is a regression I uncovered while testing #4874 so ignore that part of the screenshots.
Repro steps:
- under new History tab, select a commit (whether you're comparing or not doesn't matter)
- switch from History -> Changes -> History
**Expected:**
- commit in diff panel appears selected in list
**Actual:**
- no selection persisted, despite diff being active
<img width="1327" src="https://user-images.githubusercontent.com/359239/41726785-4a36a84c-7549-11e8-969a-12e2010e56ea.png">
This is even more noticeable when you're in the middle of a compare, because it's ignores the commit I had selected and reverts to the commit I had chosen before:
<img width="1329" src="https://user-images.githubusercontent.com/359239/41726901-7e8fe0b8-7549-11e8-98e0-fb2780b954ae.png"><issue_closed>
Status: Issue closed |
leoafarias/fvm | 1010028967 | Title: [BUG]
Question:
username_0: **Before creating a bug report please make check the following**
- [ ] You have read our [FAQ](https://fvm.app/docs/guides/faq)
- [ ] If you have used flutter. Please install correctly, run `pub cache repair`. Close the terminal and try again.
- [ ] Run `fvm doctor` if possible and add the output to the issue.
$ flutter doctor
Doctor summary (to see all details, run flutter doctor -v):
[✓] Flutter (Channel stable, 2.2.3, on Mac OS X 10.15.7 19H15 darwin-x64, locale en-GB)
[✓] Android toolchain - develop for Android devices (Android SDK version 31.0.0)
[!] Xcode - develop for iOS and macOS
✗ Xcode installation is incomplete; a full installation is necessary for iOS development.
Download at: https://developer.apple.com/xcode/download/
Or install Xcode via the App Store.
Once installed, run:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
sudo xcodebuild -runFirstLaunch
! CocoaPods 1.8.4 out of date (1.10.0 is recommended).
CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side.
Without CocoaPods, plugins will not work on iOS or macOS.
For more info, see https://flutter.dev/platform-plugins
To upgrade see https://guides.cocoapods.org/using/getting-started.html#installation for instructions.
[✓] Chrome - develop for the web
[✓] Android Studio (version 2020.3)
[✓] VS Code (version 1.60.2)
[✓] Connected device (1 available)
! Doctor found issues in 1 category.
**Describe the bug**
Trying fvm to have multiple flutter versions per project.
This seems like a regression, since I already saw the same issue but it is closed.
**To Reproduce**
Installing with fvm install 2.0.0 I get 0.0.0-unknown.
FVM Settings:
Located at /Users/jorgenunes/fvm/.settings
skipSetup: false
gitCache: false
$ sudo fvm install 2.0.0
Flutter "2.0.0" is not installed.
Installing version: 2.0.0...
A clonar em '/Users/jorgenunes/fvm/versions/2.0.0'...
remote: Enumerating objects: 337101, done.
remote: Counting objects: 100% (204/204), done.
remote: Compressing objects: 100% (119/119), done.
remote: Total 337101 (delta 93), reused 137 (delta 63), pack-reused 336897
A receber objetos: 100% (337101/337101), 163.10 MiB | 8.53 MiB/s, concluído.
A resolver deltas: 100% (259226/259226), concluído.
HEAD está agora em 60bd88df91 enable build test, roll engine, flag flip (#77154)
Woah! You appear to be trying to run flutter as root.
We strongly recommend running the flutter tool without superuser privileges.
/
📎
[Truncated]
**Expected behavior**
Should install flutter 2.0.0
**Logs**
Not providing additional details
- OS: [e.g. iOS]
- macOS Catalina
- FVM Version 2.2.3
After repairing the cache, I have different error:
fvm install 2.0.0
xcrun: error: active developer path ("/Applications/Xcode.app/Contents/Developer") does not exist
Use `sudo xcode-select --switch path/to/Xcode.app` to specify the Xcode that you wish to use for command line developer tools, or use `xcode-select --install` to install the standalone command line developer tools.
See `man xcode-select` for more details.
Flutter failed to open a file at "/Users/jorgenunes/fvm/versions/2.0.0/bin/cache/lockfile". The flutter tool cannot access the file or directory.
Please ensure that the SDK and/or project is installed in a location that has read/write permissions for the current user.
Answers:
username_0: I went ahead and found out about Sidekick. Locks awesome!
[print screen](https://www.dropbox.com/s/5vithda6ksbh98g/Screenshot%202021-09-28%20at%2018.41.19.png?dl=0)
$ cat .bash_profile | grep "fvm"
f="fvm flutter"
d="fvm dart"
export PATH="$PATH:/Users/myusername/fvm/default/bin"
$ fvm doctor
No FVM config found:
/Users/myusername
Fvm will run the version in your PATH env: /usr/local/bin/flutter
Configured env paths:
Flutter:
/usr/local/bin/flutter
Dart:
/usr/local/bin/dart
FVM_HOME:
not set
username_0: I know it should be working properly but it's not on my macOS Catalina.
Besides the logs, what other information do you need?
I think it's something wrong in the PATH. Can you check the setting above and see if it's .bash_profile?
Should you require more information, I will be happy to assist you.
username_1: Not sure. Why are you using sudo?
username_0: I tried sudo after standard installation guides because it could be wrong permissions. Same output.
There is an empty PATH setting though. Thinking it should have a set.
I will remove and reinstall from scratch and let you know. Please don't clone just yet.
username_1: That path should not impact this. One thing that would impact is not using the latest version of fvm. Can you make sure you are using the latest?
username_0: I had the latest version.
Only missed that Xcode was a dependency I did not wish to install because I was low on disk space.
Thanks for input
Status: Issue closed
|
Erkan-Yilmaz/Gridcoin-tasks | 202352843 | Title: select good, external exchanges for Gridcoin
Question:
username_0: @username_1 from RSVP:
We should apply to:
* https://cosmos.network
* https://interledger.org/ (Hangouts: https://soundcloud.com/user-878991006 )
* http://heatledger.com/ (CCEDK associated)
* https://komodoplatform.com/dex-whitepaper/ (Just a whitepaper for now? SuperNet's EasyDEX)
* https://www.instantdex.org/2016/09/28/forum-disabled-easydex-soon/ (InstantDEX vs EasyDEX vs Iguana?)
* https://bcexchange.org/ ( Unsure of validity, but they mention the addition of altcoins).
* https://etherex.org/ (Site down!)
* https://wavesplatform.com/ (If we partnered with one of their gateways then GRC may be traded with tokens on their platform, low likelihood though).
Any more anyone knows of?
Some of these platforms could result in whales moving into GRC from major alts.
mentioned in [hangout 22](https://github.com/username_0/Gridcoin-hangout-minutes/blob/master/hangout_2017_01_21.MD):
related: #39
Answers:
username_1: Related: https://github.com/username_0/Gridcoin-tasks/issues/24
username_1: EtherEX is now back online.
username_0: @username_2 found the twitter accounts so far:
https://twitter.com/heatcurrency
https://twitter.com/cosmos_hq
https://twitter.com/KomodoPlatform
https://twitter.com/Interledger
https://twitter.com/MagicNxt
username_2: i was also mentioning that we might be able to setup a wishlist/point of sale using (https://twitter.com/delivery_code)
username_3: Any updates ? |
SAP/ui5-webcomponents | 593697253 | Title: ui5-li, ui5-li-custom: aria-label not supported
Question:
username_0: **Describe the bug**
Standard List Item and Custom List Item do not support aria-label.
**To reproduce**
Adding aria-label to either ui5-li or ui5-li-custom are not reflected in their respective shadow DOMs.
**Isolated example**
https://codesandbox.io/s/ui5-webcomponents-fu0lm
**Expected behavior**
The "li" element in the shadow DOM should have the aria-label defined in the web component.
**Affected components** *(if known)*
- ui5-li
- ui5-li-custom
Answers:
username_1: Hi @username_0
What exactly are you trying to achieve?
If you want to add a text to be read out for every ```ui5-li``` or ```ui5-li-custom``` you can just add it like this:
```html
<ui5-li aria-label="Some information to be read out">
...
</ui5-li>
```
username_0: Hi @username_1
Please correct me if I am not understanding this properly, but my understanding is that screenreaders have no knowledge of web components and how to read them. Given that, they just read the shadow DOM of each web component. In this particular case, ui5-list uses an HTML list internally and ui5-li and ui5-li-custom use <li> internally. The screenreader will be reading the <li> inside the shadow DOM of these web components, not the <ui5-li>and <ui5-li-custom> themselves. I added aria-labels to these 2 web components, inspected the shadow DOM of <ui5-li> and <ui5-li-custom>, and their <li> elements do not have the aria-label defined. So even though the web component has the aria-label defined outside, the <li> element inside (which is read by the screenreader) does not have this aria-label.
username_1: Hi @username_0
We should separate the issue for the two components:
1. ```ui5-li```
To this tag you should not set neither aria-label nor aria-labelledby attributes, because you can have limited content(that comes from properties). The accessibility of the component is built with the data that comes from these properties(description, info...) and it is read as expected without any attributes set from outside.
2. ```ui5-li-custom```
When it comes to the custom list item, it is a little more difficult to have abstract point of view, because you can have literally everything inside. However, when using ```ui5-li-custom``` you have access to the html so it not a problem to add aria-label for example and it will be read as expected.
Could you please specify what exactly your problem is. Is it that the attribute is not set on the internal ```li``` tag, that some component is not read properly by screen readers or something else?
username_1: I am closing this due to inactivity. If you still experience the issue, don't hesitate to reopen the issue or create a new one.
Status: Issue closed
|
camptocamp/docker-argocd | 863423738 | Title: Issue: exec argocd-repo-server failed: Permission denied
Question:
username_0: Hi
I need helm and sops support in my argocd , i know there have release for v2.0 now
But i just need to try so i try 1.8.5 version
I try using the same **Dockerfile** and **argocd-repo-server-wrapper** and then upload to our own docker repo
I am using back 1.8.5 install script from argo https://raw.githubusercontent.com/argoproj/argo-cd/v1.8.6/manifests/install.yaml
and modify the repo-sever image
However it turn to CrashLoopBackOff with below error logs
[FATAL tini (7)] exec argocd-repo-server failed: Permission denied
Anyone can help
Answers:
username_1: for your information, im already using this with 1.8.7 and its working.
username_0: Works for me
So the orginal Dockerfile is missing the line
`chmod +x argocd-repo-server && \`
And after adding
env:
- name: ARGOCD_BINARY_NAME
value: "argocd-repo-server"
to repo-server
it also working in 2.0.0 version
Thanks @username_1
username_0: not sure ask here is correct or not
@username_1 do you know how i can use Vault as backend ?
I try follow this https://github.com/jkroepke/helm-secrets#change-secret-driver
add below to repo-server
```
env:
- name: VAULT_ADDR
value: "https://VaultADD"
- name: VAULT_TOKEN
value: "<PASSWORD>"
- name: HELM_SECRETS_DRIVER
value: "vault"
```
But seems not works
I confirm the VAULT_ADDR and VAULT_TOKEN are work correctly in my local
username_1: Honestly, we dont use helm secrets a lot these days since the deprecation.
We prefere to rely on helm sops that is basically supporting lot of things (gpg, kms, vault...)
https://github.com/mozilla/sops#encrypting-using-hashicorp-vault
username_0: Ya ...
I know the example of this **argocd-repo-server-wrapper** is for gpg key
```
#! /bin/sh
GPG_PRIVATE_KEY_FILE='/app/config/gpg/privkey.asc'
if [ -f "${GPG_PRIVATE_KEY_FILE}" ]
then
gpg --import "${GPG_PRIVATE_KEY_FILE}"
fi
exec "$(dirname "$0")/_$(basename "$0")" "$@"
```
But what i need to do for Vault ?
I try adding in **argocd-repo-server-wrapper** and rebuild the image
```
#! /bin/sh
export VAULT_ADDR="https://xxxxxxx"
export VAULT_TOKEN=$(cat /app/config/vault/vault-token) #This value from volume mount and secret
GPG_PRIVATE_KEY_FILE='/app/config/gpg/privkey.asc'
if [ -f "${GPG_PRIVATE_KEY_FILE}" ]
then
gpg --import "${GPG_PRIVATE_KEY_FILE}"
fi
exec "$(dirname "$0")/_$(basename "$0")" "$@"
```
and mount the secret volume to /app/config/vault/vault-token
But it turn out
Error: failed to decrypt secret file 'secrets.yaml': No keys found in file
username_1: hi, i didnt test it with hc vault:
seems you are not providing the right stuff to sops.
https://github.com/mozilla/sops/blob/master/stores/stores.go#L343
Can you try first to use sops locally with hc vault to see what is missing following the doc i provided above.
if you dont success to use it, you could also use directy vault inside argocd with a plugin etc...
ex: https://itnext.io/argocd-secret-management-with-argocd-vault-plugin-539f104aff05
username_0: Ya ...ok thanks for help for the permission anyway , at least we can use pgp right now
So orgrinal case is already resolved , thanks again
Just your information ...
For the Vault case
I export below two env var for locate the vault server and vault token
```export VAULT_ADDR=http://xxxxx
export VAULT_TOKEN=<PASSWORD>```
and verfiy sops using
```
#Encrypt
sops --in-place -e --hc-vault-transit $VAULT_SERVER/v1/sops/keys/demokey demo.yaml
#Decrypt
sops --in-place -d --hc-vault-transit $VAULT_SERVER/v1/sops/keys/demokey demo.yaml
```
Which is success to Encrypt and Decrypt locally
For locally i just need provide that two env var
username_2: @username_0 I don’t know why the wrapper doesn’t have executable permission in your repository. I’ve tried to clone the repository again, and I’ve the right permissions :thinking:
@username_1 do you have the same issue?
username_1: dont know, when i was using 1.8.7
i did :
RUN cd /usr/local/bin && \
mv argocd-repo-server _argocd-repo-server && \
mv argocd-repo-server-wrapper argocd-repo-server && \
chmod +x argocd-repo-server && \
so maybe yes
username_2: OK. I’m not sure how Git handles file permissions, maybe I should add this chmod +x to the Dockerfile.
username_1: yes indeed if you want to make it works for windows docker containers also
https://docs.docker.com/engine/reference/builder/#copy (--chown)
Status: Issue closed
|
sk222sw/sk222sw.github.io | 173251912 | Title: Filtrera på taggar
Question:
username_0: Hittar inget sätt att filtrera thefts på taggar.
Answers:
username_0: Ah, eller nu hittade jag. Om man klickar sig in på en specifik theft så kan man klicka på en tagg för att filtrera på den taggen. Det var dock inte så lätt att hitta in dit - listan med thefts skulle nog kunna indikera att de är klickbara, lika även taggarna.
Status: Issue closed
|
optuna/optuna | 591191955 | Title: Support discrete parameters by `Trial.suggest_float()`.
Question:
username_0: This is a followup of #1021 , and it focuses on https://github.com/optuna/optuna/pull/1021#pullrequestreview-376794576. The full discussion of `suggest_float` can be found the original issue https://github.com/optuna/optuna/issues/510.
## Description
Please add `step` parameter to `Trial.suggest_float` in order to suggest discrete parameter like [`Trial.suggest_discrete_uniform()`](https://optuna.readthedocs.io/en/latest/reference/trial.html#optuna.trial.Trial.suggest_discrete_uniform).
I think we have two points to be discussed as follows:
- parameter name
- `log=True` and `step!=1`
### Parameter name
I think `step` is the first choice to be consistent with [`Trial.suggest_int`](https://optuna.readthedocs.io/en/latest/reference/trial.html#optuna.trial.Trial.suggest_int). The `Trial.suggest_int` employed `step` in https://github.com/optuna/optuna/pull/910.
### `log=True` and `step!=1`
In https://github.com/optuna/optuna/issues/510, I think the design discussion about this case has not been finished yet. So, I think it would be reasonable to raise `NotImplemented` for now.<issue_closed>
Status: Issue closed |
wso2/product-apim | 647260232 | Title: Scope Migration Issues
Question:
username_0: ### Description:
- Need to update migration db scripts.
- Need to remove duplicate scope entries created for different resources in same API.(step1)
- Need to remove duplicate versioned scopes registered for versioned APIs.(step2)
- Need to Fix Bug in moving entries in IDN_RESORCE_SCOPE_MAPPING table to AM_API_RESOURCE_SCOPE_MAPPING table.(step3)<issue_closed>
Status: Issue closed |
prettier/prettier | 685946354 | Title: Unnecessary leading semi
Question:
username_0: **Prettier 2.1.0**
[Playground link](https://prettier.io/playground/#N4Igxg9gdgLg<KEY>)
```sh
--arrow-parens avoid
--parser vue
--no-semi
--trailing-comma none
```
**Input:**
```vue
<template>
<v-map @loaded=";(map = $event) && initMap()"></v-map>
</template>
```
**Output:**
```vue
<template>
<v-map @loaded=";(map = $event) && initMap()"></v-map>
</template>
```
**Expected behavior:**
```vue
<template>
<v-map @loaded="(map = $event) && initMap()"></v-map>
</template>
```
Answers:
username_1: This is expected and we format js like this, when `--no-semi`, but looks weird in this case.
username_0: Yes, when code like `;(() => {...})()` is placed at start of js file, the leading semi is unnecessary too, can this behavior be adjusted?
username_1: We won't change current behavior in js files, but this one may worth discuss.
username_2: Here is a case where I think the automatic semicolon insertion should be reconsidered:
**Prettier 2.1.0**
[Playground link](https://prettier.io/playground/#<KEY>Amz<KEY>F7T4YCxHoK4LRaEA)
```sh
--parser babel
--no-semi
```
**Input:**
```jsx
if (a) {
b()
}
(async() => {
await a()
await b()
})()
```
**Output:**
```jsx
if (a) {
b()
}
;(async () => {
await a()
await b()
})()
```
username_1: Yes, we won't change it in js files. The behavior for js file is out scope of this issue.
username_2: It would definitely be nice to be consistent with Angular & HTML parsers, which would format that template unchanged.
username_3: Input:
`
[1, 2].forEach((item) => console.log(item))
[1, 2].forEach((item) => console.log(item))
`
Output:
`
;[1, 2]
.forEach((item) => console.log(item))
[(1, 2)].forEach((item) => console.log(item))
`
The first line, I can understand.
The second line, I'm shocked.
username_1: Run
```js
console.log(
[1, 2].forEach((item) => console.log(item))
[1, 2].forEach((item) => console.log(item))
)
```
to understand it.
username_3: Why is it wrong
username_1: If you still can't get it, parser your code on https://astexplorer.net/, and check the AST. |
AugurProject/augur | 687642875 | Title: Double storage load in ParaShareToken.isMarketFinalized
Question:
username_0: reads numTicks twice
```
function isMarketInitialized(IMarket _market) public view returns (bool) {
return markets[address(_market)].numTicks != 0;
}
...
function buyCompleteSetsInternal(IMarket _market, address _account, uint256 _amount) internal returns (bool) {
if (!isMarketInitialized(_market)) {
initializeMarket(_market);
}
uint256 _numOutcomes = markets[address(_market)].numOutcomes;
uint256 _numTicks = markets[address(_market)].numTicks;
```
https://github.com/AugurProject/augur/blob/e196efb4261f02200f59d52dc839c8691a04139e/packages/augur-core/src/contracts/para/ParaShareToken.sol#L111-L113<issue_closed>
Status: Issue closed |
yeoman/update-notifier | 374789150 | Title: License for v. 1.0.3
Question:
username_0: I receive the 404 page when trying to review the license for v1.0.3. Could you please add the BSD 2 license file to that version? Thank you, in advance, for your help!
Status: Issue closed
Answers:
username_1: npm used to have a bug where it didn't correctly include license files in packages. We don't maintain older major versions, but upgrade to the latest version and you'll get a correct license file included in the package.
username_0: Thanks! Should we assume that the older versions are also MIT? |
tjwjdgus12/ChinJiIn | 912110474 | Title: Can't fix '듣전' to '듣던'
Question:
username_0: When I try to fix '듣전', there's no '듣던' in recommend list.

'듣던' -> 'ㄷㅡㄷㅈᆞㅣㄴ' also can be 'ㄷㅡㄷ#ㅈᆞㅣㄴ' so I think edit distance of '듣던' should be 1 and it should be in recommend list.
Answers:
username_1: I changed the physical distance calculation not to use physical distance when deletion occurs.
username_2: Now I can find '듣던', but '듣전' is first...
 |
mfem/mfem | 495373610 | Title: GridFunctions on Interface spaces
Question:
username_0: In the intermittent series of 'theoretical physicist asks silly computational questions', if one has a GridFunction defined on an interface-only space, i.e.
coll = new DG_Interface_FECollection(Order, Dimension);
fes = new FiniteElementSpace( mesh, coll );
GridFunction gf( fes );
// do things that populate gf
How does one obtain the values of this GridFunction?
Nothing that eventually calls GetValues will work, because such finite element spaces always return NULL for fes->GetFE(i), as they only have 'face' elements, not 'base' elements.
I have whipped up a couple of functions to do this, but want to make sure i'm not duplicating functionality that's already there.
Answers:
username_1: Hi @username_0,
You are right, MFEM does not have methods to evaluate `GridFunction`s directly on faces. The methods `GridFunction::GetFaceValues` and `GridFunction::GetFaceVectorValues` evaluate values on a given face but they do it indirectly by mapping the point on the face to a point in one of the two adjacent elements and then performing the computation of the value at that point.
username_0: OK, my pull into the hdg branch adds these functions, and I think it's probably only useful for that case.
If this is needed for non HDG algorithms, someone can reopen this and I'll make a PR into mainline.
Status: Issue closed
|
ether/etherpad-lite | 923218645 | Title: Temporary Etherpad
Question:
username_0: Hi Ether Team, i want to asking again.
How to make temporary notes on etherpad like [pad.riseup.net](pad.riseup.net) and how to clean database to ged rid of unused notes?
Answers:
username_1: Please contact the administrator of that site.
Status: Issue closed
|
snowballstem/snowball | 50529519 | Title: Insert licence into source code
Question:
username_0: Could you please inset licence into distributed source code?
Because BSD licence requires including its text with all derivative works. So without including a proper full license text it is making difficult or impossible for anyone to comply with desired license terms.
There was discussion on old mailing list - http://thread.gmane.org/gmane.comp.search.snowball/1463
Thanks,
Marek
Answers:
username_0: Is this acceptable?
username_1: Unfortunately it's more complex than that. It's something I'd like to resolve, but I've been very busy since taking over snowball maintenance and have not had time to work on it yet.
http://snowball.tartarus.org/license.php says:
```
All the software given out on this Snowball site is covered by the BSD License (see http://www.opensource.org/licenses/bsd-license.html ), with Copyright (c) 2001, Dr <NAME>, and (for the Java developments) Copyright (c) 2002, <NAME>.
```
There are actually more copyright holders than that (for example, my contributions are substantial enough to be subject to copyright), but people who contributed code to be made available from the Snowball site can probably be assumed to be happy with it being made available under this advertised licence (I am intending to check this assumption is legally valid).
Unfortunately, there's also code contributed to the repos on github directly (for example, the cmake build system PR) which has never been made available from the Snowball website. Since there's currently no licence specified in the github repo, so we don't even have the implied licence we do for contributions made to the version on the Snowball site.
So we need to check for such contributions, and ask for an explicit license, or else remove them if we can't contact the author, or if they aren't willing or able to grant such a license.
We should also make sure to explicitly ask for a licence grant for new contributions before merging any more non-trivial PRs.
If you want to help move this forwards, checking the PR list and commit log for such contributions and contacting the contributors would be very useful.
username_0: And what should this "licence grant" consist of? Is there any document contributors should fill,...? (I don't understand similar licensing process much)
username_2: As a stopgap, you could maybe say "Copyright Dr <NAME>, <NAME> and contributors"? That's what many projects do, to avoid listing every contributor.
Of course, it'd still be ideal to list every contributor (probably in a separate file, to avoid unnecessary duplication)
username_1: The main issue isn't with exhaustively listing contributors or not, but that it isn't clear that all the contributors have actually licensed their contributions under the appropriate licence.
It's a rather annoying situation in which we can't put a license on the project until we confirm that the contributions are licensed as that, but until we do we'll need to get an explicit licence stated for contributions we merge (or else make the situation worse).
@username_0 I'm not a copyright lawyer, but I'd think an email, or a comment on the PR in which the code was submitted, from them stating that they hold the copyright on their contribution and that they agree to license it under the 2-clause version of the BSD licence as described at: http://www.opensource.org/licenses/bsd-license.html
If anyone isn't the copyright holder (for example, if it's owned by their employer) they'll need to get agreement of the copyright holder.
If anyone doesn't agree, I think we probably have to just drop their contribution. There haven't been a huge number since moving to github, and for those I've merged I think I've asked about licensing in the PR before merging.
Thanks for looking into this.
username_2: Oh, sorry, I missed that your concern was recent contributions via GitHub, not historic contributions. Yes, that's an issue.
There is the option of just adding a BSD license, and contacting all the recent contributors to say that this has happened. If they object, you can back out their contributions. This is pretty much what you have to do, if you contact them before adding the license file, too...
username_1: That would be misleading downloaders as to the licensing situation though, so I don't want to do that.
We need to contact them (or remove their contributions) either way, but the right order to do it in is to ask them first.
I've just become aware of an extra little complication - the link on the snowball site to the licence text currently points to BSD 2 clause, but that URL used to give the BSD 3 clause license (which is pretty unhelpful of OSI). But people contributing code before the URL changed will have implicitly contributed it as BSD 3 clause, so that is the licence we actually have overall. I'll try to get this situation resolved on the "frozen" snowball site too.
These are the commits made since the move to github which we don't have a licence for:
```
a5c68f31 J<NAME>baum user env perl instead of /usr/bin/perl
4bc9f365 Vsevolod Stakhov Make snowball library self-contained.
558c3691 Vsevolod Stakhov Use current directories in cmake.
d178f201 Vsevolod Stakhov Rework modules generation.
8f53cf66 Vsevolod Stakhov Fix cmake build.
ffc12ead Vsevolod Stakhov Add initial cmake script.
fd50dcc2 <NAME> Add Travis-CI support
```
The top commit is a trivial and mechanical change, so there's only actually 2 people we really need to ask. I assume nobody's contacted any of them already? If not, I'll contact them this week.
Status: Issue closed
|
gabrieldarezzo/helpjs-ravi | 912980352 | Title: (5) exiba a quantidade de letras que possuem o texto inserido ao clicar no botão
Question:
username_0: Exemplos de entrada e saida exibe Ronaldo com a quantidade de letras de 6, sendo que o correto seriam 7 letras.
Exemplos de entrada e saida:
'Gabriel' // 7
'Daniel' // 6
---> 'Ronaldo' // 6
'<NAME>' // 14 (Espaço conta)
Answers:
username_1: Não tinha reparado, boa observação.
Poderia mandar um Pulo Request? |
flutter/flutter | 473152838 | Title: FlutterFragment not returning the expected type when inflating it in Android
Question:
username_0: ## Summary
I need to inflate a `FlutterFragment` with a custom dart entry point, and set initial route.
However, this happens, it seems like the `io.flutter.embedding.android.FlutterFragment` is not a valid argument for the fragment layout inflation. This is misleading as the [documentation](https://github.com/flutter/flutter/wiki/Experimental:-Add-Flutter-Fragment), is actually inflating it the same way as I did.

Alternative is to use `Flutter.createFragment(...)`, however it does not allow me to set custom dart entry point other than `main`.

## Logs
`flutter doctor -v`
```
[✓] Flutter (Channel stable, v1.7.8+hotfix.3, on Mac OS X 10.14.5 18F132, locale en-PH)
• Flutter version 1.7.8+hotfix.3 at /Users/username_0/Documents/Tools/flutter
• Framework revision b712a172f9 (2 weeks ago), 2019-07-09 13:14:38 -0700
• Engine revision 54ad777fd2
• Dart version 2.4.0
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.0)
• Android SDK at /Users/username_0/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-29, build-tools 29.0.0
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)
• All Android licenses accepted.
[!] Xcode - develop for iOS and macOS
✗ Xcode installation is incomplete; a full installation is necessary for iOS development.
Download at: https://developer.apple.com/xcode/download/
Or install Xcode via the App Store.
Once installed, run:
sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
✗ CocoaPods installed but not initialized.
CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side.
Without CocoaPods, plugins will not work on iOS or macOS.
For more info, see https://flutter.dev/platform-plugins
To initialize CocoaPods, run:
pod setup
once to finalize CocoaPods' installation.
[✗] iOS tools - develop for iOS devices
✗ libimobiledevice and ideviceinstaller are not installed. To install with Brew, run:
brew update
brew install --HEAD usbmuxd
brew link usbmuxd
brew install --HEAD libimobiledevice
brew install ideviceinstaller
✗ ios-deploy not installed. To install:
brew install ios-deploy
[✓] Android Studio (version 3.4)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 36.1.1
• Dart plugin version 183.6270
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1343-b01)
[✓] VS Code (version 1.36.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 3.2.0
[✓] Connected device (1 available)
• Pixel XL • HT6C90202587 • android-arm64 • Android 8.0.0 (API 26)
! Doctor found issues in 2 categories.
```
Answers:
username_1: This is a miss match of the support lib and androidx. Currently the team is recommending depending on the arr and enabling the jetifier.
depending on the arr: https://github.com/flutter/flutter/wiki/Add-Flutter-to-existing-apps#1-depend-on-the-android-archive-aar
jetifier: https://developer.android.com/jetpack/androidx/migrate#migrate_an_existing_project_using_android_studio
username_2: Still not working with
```
Flutter (Channel master, v1.13.3-pre.83, on Microsoft Windows [Version 10.0.17763.914], locale en-IN)
• Flutter version 1.13.3-pre.83 at E:\fluttersdk
• Framework revision 78db965642 (2 hours ago), 2019-12-19 11:23:01 +0100
• Engine revision 0f90e6546b
• Dart version 2.8.0 (build 2.8.0-dev.0.0 aa6709974d)
```
Same issue, due to FlutterFragment uses Support library classes. :( |
questdb/questdb | 1057023032 | Title: TLS supported?
Question:
username_0: ### Describe the bug
When using the Rust library [tokio-postgres-rutls](https://crates.io/crates/tokio-postgres-rustls) to connect to a QuestDB instance, a connection string as such is required:
`sslmode=require host=localhost port=8812 user=root password=<PASSWORD> dbname=qdb`
However, using setting `sslmode=require` gives me the following error:
`error performing TLS handshake: server does not support TLS`
If I remove `sslmode=require` from the connection string, everything works fine. But in this case, does it not encrypt the connection?
### To reproduce
_No response_
### Expected Behavior
_No response_
### Environment
```markdown
- **QuestDB version**: 6.1.1
- **OS**: Ubuntu 20.04, dockerized QuestDB
```
### Additional context
_No response_
Answers:
username_1: Hi @username_0, thanks for opening the issue 🙌🏻
TLS is not yet supported out of the box, but [pgbouncer](https://www.pgbouncer.org/features.html) might be an option to try in front of QuestDB in the meantime.
username_1: I'm going to close this for the moment, as the question appears to be answered. Thanks @username_0 👍🏻
Status: Issue closed
|
hotoo/detector | 175267133 | Title: [Bug] Detected data wrong
Question:
username_0: **Environment data:**
OS: Mac OS X El Capitan
Browser: Chrome 52.0.2743.116
**Issue:**
Data detected is wrong, putting aside the engine and device properties, the output expected is OS with Mac at least, and browser the version above, however output states ios 9.1 and safari 9:
```json
{
"device": {
"name": "iphone",
"version": -1,
"fullVersion": "-1",
"iphone": -1
},
"os": {
"name": "ios",
"version": 9.1,
"fullVersion": "9.1",
"ios": 9.1
},
"engine": {
"name": "blink",
"version": 601.1,
"fullVersion": "601.1.46",
"mode": 601.1,
"fullMode": "601.1.46",
"compatible": false,
"blink": 601.1
},
"browser": {
"name": "safari",
"version": 9,
"fullVersion": "9.0",
"mode": 9,
"fullMode": "9.0",
"compatible": false,
"safari": 9
}
}
```
Answers:
username_1: 1. What detector version is?
2. Please vist http://username_1.me/detector/examples/ and feedback output information here.
Thank you very much :)
username_0: 1. Acording to the package.json is 2.5.0 which is the latest release to date.
2. The example gives accurate data, tomorrow i'll test in the pc that showed the error, currently i'm in windows and the wrong data happened in Mac.
username_1: Anything updates?
username_1: @username_0 Anything updates?
username_0: @username_1 Man idk why i had those results but after testing both in web and in an Ionic 2 app (which is a hybrid app that works like a small browser serving up the web app like if it were a native app) it works good.
Maybe i had an older version and i did npm update after getting those tests, anyway it's working as expected, thanks.
Status: Issue closed
|
broadinstitute/cromwell | 208462929 | Title: Cannot specify an optional output using select_first
Question:
username_0: - 0.25
- Local+docker backend (though I doubt it matters)
- single workflow (though I doubt it matters)
Workflow output is optional and sometimes both ``oncotate_m2_ob.oncotated_m2_vcf`` and ``oncotate_m2_no_ob.oncotated_m2_vcf`` are not populated.
Proposed solution: select_first returns null if no inputs are populated.
Offending workflow output:
```
File? oncotated_m2_vcf = select_first([oncotate_m2_ob.oncotated_m2_vcf, oncotate_m2_no_ob.oncotated_m2_vcf])
```
Error message:
```
[ERROR] [02/17/2017 14:18:45.923] [cromwell-system-akka.dispatchers.engine-dispatcher-5] [akka://cromwell-system/user/SingleWorkflowRunnerActor/WorkflowManagerActor] WorkflowManagerActor Workflow e241e2bc-95cd-4a8c-a814-20bb8852c6b5 failed (during ExecutingWorkflowState): select_first failed. All provided values were empty.
java.lang.IllegalArgumentException: select_first failed. All provided values were empty.
at wdl4s.expression.WdlStandardLibraryFunctions$$anonfun$select_first$1$$anonfun$apply$10.apply(WdlStandardLibraryFunctions.scala:180)
at wdl4s.expression.WdlStandardLibraryFunctions$$anonfun$select_first$1$$anonfun$apply$10.apply(WdlStandardLibraryFunctions.scala:180)
at scala.Option.getOrElse(Option.scala:121)
at wdl4s.expression.WdlStandardLibraryFunctions$$anonfun$select_first$1.apply(WdlStandardLibraryFunctions.scala:180)
at wdl4s.expression.WdlStandardLibraryFunctions$$anonfun$select_first$1.apply(WdlStandardLibraryFunctions.scala:175)
at scala.util.Success.flatMap(Try.scala:231)
at wdl4s.expression.WdlStandardLibraryFunctions$class.select_first(WdlStandardLibraryFunctions.scala:175)
....snip....
```
Answers:
username_0: Workaround:
```
File? oncotated_m2_vcf = select_first([oncotate_m2_ob.oncotated_m2_vcf, oncotate_m2_no_ob.oncotated_m2_vcf, "/dev/null"])
```
username_1: Hmm, I think this is as-intended and I want to push back.
The primary purpose of `select_first` is to guarantee that you get a non-optional from a sequence of optionals. If you aren't sure that one of the values will be good, you can't use it. That's what the function is for!
In other words, your WDL should not be `File? = select_first(...)`. It should be `File = select_first(...)`
What it sounds like you want is something like `select_first_maybe`, which would be a new feature.
username_0: That is okay by me. For other optional File parameter, I am seeing things like: ``"Mutect2_Multi.ob_filtered_vcf_files": ["null"],``
username_1: You could use this workaround for `select_first_maybe`:
```
Array[File?] maybes
Array[File] goods = select_all(maybes)
if (length(goods) > 0) {
File select_first_maybe = goods[0]
}
```
username_0: @username_1 Many thanks! Can I put that in a workflow output block?
username_1: You would need to put it in the workflow itself and then add something like:
```
output {
File? maybe_output_file = select_first_maybe
}
```
username_1: (FWIW I agree that a single function call would be nicer... But it isn't there yet and it isn't what select_first is for)
username_0: @username_1 No sweat. For me, this is not a big deal and I have an okay-for-now workaround in place.
username_1: Closing for now. Feel free to open another "I want a WDL function to do this" ticket if that's something you still want!
Status: Issue closed
|
OWASP/threat-dragon | 1154116651 | Title: CSS Fixes
Question:
username_0: **Describe the bug**
This will be a tracker issue for any of the further PRs I make to fix small CSS fixes.
**Any additional context, screenshots, etc**
If you also find any such bug and would like it to be fixed, feel free to comment below and I'll take a look at it! |
dask/dask | 190287201 | Title: Question: drain a node
Question:
username_0: Hello,
I have a question about the scheduling where I could not find an answer yet:
Is it possible to drain in dask nodes like in other Cluster systems?
Like: I want to remove this node, so start no new jobs but finish the old one
(I am aware that the jobs would be rescheduled if I just remove the node, I a planned way would also be nice, ecspecially for long running jobs)
Best regards,
Peter
Answers:
username_1: There is internal code to do this, but nothing user facing. Relevant code
is retire_workers in
https://github.com/dask/distributed/blob/master/distributed/scheduler.py
username_0: Hello,
thanks a lot, we should be able to use this.
Is there any particular reason, that this is not user facing? I think it would be useful for others as well
username_1: Much of this is still in flux as we learn more about how Dask gets deployed on various kinds of clusters. Also, with the approach I've personally taken so far this is often handled on the scheduler side, where this is as public as it gets.
You might also enjoy http://matthewrocklin.com/blog/work/2016/09/22/cluster-deployments
username_1: Closing for now.
Status: Issue closed
|
bit-bots/imagetagger | 304152927 | Title: Customizable import format
Question:
username_0: Right now, the import format is fixed and not customizable like the export format. A custom regular expression could solve this issue, especially when it is automatically provided with every new export format. |
rust-lang/crates.io | 391253735 | Title: Can't login on Android
Question:
username_0: Sign in with GitHub doesn't seem to work.
Answers:
username_1: Which android version and which browser, please?
username_0: Android 5, Chrome 70
username_2: Latest Chrome on Android is 76 and I cannot reproduce this issue, so I'm closing it for now.
If it's still an issue please let us know!
Status: Issue closed
|
unclenoriega/Lazyman.bundle | 264647193 | Title: Error on recap playback
Question:
username_0: When attempting to play recaps on the latest version running on PMS 1.9.4.4325 (and at least back to 1.9.2) I notice the following error:
`2017-10-11 11:50:04,235 (7f6e8d7fa700) : DEBUG (runtime:125) - Calling function 'RecapMetadata'
2017-10-11 11:50:04,236 (7f6e8d7fa700) : CRITICAL (sandbox:303) - Exception when calling function 'RecapMetadata' (most recent call last):
File "/usr/lib/plexmediaserver/Resources/Plug-ins-1bf240a65/Framework.bundle/Contents/Resources/Versions/2/Python/Framework/code/sandbox.py", line 294, in call_named_function
result = f(*args, **kwargs)
TypeError: RecapMetadata() got an unexpected keyword argument 'includeBandwidths'
`
Quick solution for me which seemed to work (though I'll admit I have zero actual knowledge of the Plex API) was to add includeBandwidths to the RecapMetadata function signature as follows:
`def RecapMetadata(type, date, recapid, sport, includeBandwidths=None):`
Answers:
username_1: Can you try the version here: https://github.com/nomego/Lazyman.bundle and see if you still have the issue? That is the main version. If you still have the issue, please open an issue there. Thanks!
username_0: Finally had a chance to try on the main version and the issue is still there. Will resubmit the issue there. Thanks!
Status: Issue closed
|
skydoves/PowerSpinner | 674545077 | Title: PopupWindow out of screen when size is unspecified
Question:
username_0: **Please complete the following information:**
- Library Version v1..0
- Affected Device(s) emulator and devices
**Describe the Bug:**
I just put the spinner on the bottom of the screen (with a litle bottom margin), and the popupWindow showed in a small amount of available screen. If I replace the component by the native Spinner, the popup shows correctly, above the control.
I did a quick review of the code, and saw the _**showAsDropDown**_ method called correctly, but isn't working as expected.
**Expected Behavior:**
A clear description of what you expected to happen.
Answers:
username_0: Sorry, I premature create the issue :facepalm:
Status: Issue closed
|
NodeBB/nodebb-theme-vanilla | 57219487 | Title: No fields in my Nodebb Login page.. HELP PLEASE !
Question:
username_0: I have a problem with my login page, there are no fields ?
login page NO FIELDS :

Home page :

Tags Page:

Reigster Page :

Answers:
username_1: Hey there,
I mean, [post a new topic here]! :smile: Sorry about that.
Status: Issue closed
|
clangd/clangd | 975314287 | Title: Cannot treat C header files (.h) as C++ header
Question:
username_0: The config is not useful for me
~~~
CompileFlags: # Tweak the parse settings
Add: [-xc++, -xc++-header]
~~~
So,I want to know how to add parameters to vscode 's clangd plugin to achieve this goal.
**System information**
Output of `clangd --version`:
clangd version 12.0.0 (https://github.com/clangd/llvm-project 8a844a3a321ea56da21af4d48433ad493b1bcfae)
Editor/LSP plugin:
vscode clangd
Operating system:
macOS Catalina 10.15.7
Answers:
username_1: You shouldn't have both `-xc++` and `-xc++-header` (if you do, `-xc++-header` will always take precedence). You can do something like:
```
If:
PathMatch: .*.h
CompileFlags:
Add: [-xc++-header]
```
Even with that there was a bug preventing this from working that has been fixed recently. Can you try one of our weekly builds e.g. https://github.com/clangd/clangd/releases/tag/snapshot_20210822 ? |
redux-saga/redux-saga | 363727734 | Title: redux saga take() returns undefined after dipatching an action
Question:
username_0: So to be short , the take effect of redux saga returns object which rpoperies are undefined except the type . Here is my saga `
`import axios from 'axios';
import {
take, put, call
} from 'redux-saga/effects';
import {
getEventInfo, GET_EVENT_INFO
} from '../actions';
export default function* eventInfoSaga() {
try {
const { token, query } = yield take(GET_EVENT_INFO);
console.log(token, 'token'); // undefined
console.log(query, 'query'); // undefined
const options = {
method: 'post',
url: `https://www.eventbriteapi.com/v3/events/search/?q=${query}&expand=venue`,
credentials: 'include',
headers: { Authorization: `Bearer ${token}` }
};
const response = yield call(axios, options);
console.log(response, 'response eventInfoSaga');
yield put(getEventInfo(response));
} catch (err) {
console.log(err);
}
}`
This is makeActionCreator`
`const makeActionCreator = (type, ...argNames) => (...args) => {
const action = { type };
argNames.forEach((arg, index) => {
action[arg] = args[index];
});
console.log(action, 'actioooooooooooon');
return action;
};
export default makeActionCreator;`
which i call with this `
`import { makeActionCreator } from '../utilities';
export const GET_EVENT_INFO = 'GET_EVENT_INFO';
export const getEventInfo = makeActionCreator(GET_EVENT_INFO, 'token', 'query');`
And this is the component where i dispatch an action with parameters `
`import React, { Component } from 'react';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import SearchIcon from '../SvgIcons';
import MapComponent from '../Map';
import { getEventInfo, getUserInfo } from '../../actions';
class DashboardPage extends Component {
[Truncated]
return {
name,
accessToken
};
};
const mapDispatchToProps = dispatch => ({
dispatchEventInfo() {
dispatch(getEventInfo());
},
dispatchUserInfo() {
dispatch(getUserInfo());
}
});
export default connect(mapStateToProps, mapDispatchToProps)(DashboardPage);`
### Description
In redux-saga documentation they say that take(pattern) Creates an Effect description that instructs the middleware to wait for a specified action on the Store. The Generator is suspended until an action that matches pattern is dispatched.As i understand yield will make it wait that specific action and then do something (request, change, etc.). So why i am getting undefined ? May be i misunderstand something.
I have also post this in stackoverflow , but noone could help me |
cginternals/glbinding | 435763683 | Title: cpplocate should be optional for examples
Question:
username_0: if cpplocate cannot be found or is not provided, examples should fall back to a default implementation. I would prefer to not put the all-systems-every-deploy-scenario approach over convenience for most users: so i prefer to simplify building glbinding (all of it) out of the box as much as possible, i.e., make cpplocate optional and reduce dependencies as much as possible.
Answers:
username_1: The libraries and the tools should not be dependent on cpplocate (and I hope it is this way). If we make the dependency to cpplocate optional for the examples, then we would have to hard-code a search-path (again). Maybe we want to investigate other solutions as resource-inlining as well.
Status: Issue closed
username_1: Implemented with 16d5d987bd65a6278066b3601b695b811fe943df. |
rossfuhrman/_why_the_lucky_markov | 703303710 | Title: Spencer overworked the twelve ghosts to the library. “All that writing on the cloud pull him along and you can call methods directly from DVI-24 pin.
Question:
username_0: Toot: Spencer overworked the twelve ghosts to the library. “All that writing on the cloud pull him along and you can call methods directly from DVI-24 pin.
One comment = 1 upvote. Sometime after this gets 2 upvotes, it will be posted to the main account at https://mastodon.xyz/@_why_toots |
hak5/bashbunny-payloads | 489119530 | Title: Documentation DuckyScript
Question:
username_0: The Documentation is missing the "ENTER" ducky script keyword
Answers:
username_0: Also CTRL-ALT could be added, as some forum post seems to have had a problem with
CTRL-ALT DEL
username_0: https://www.youtube.com/watch?v=GEyDkd6DS8c
ETHERNET_TIMEOUT_X is nowhere mentioned in the written documentation.
Status: Issue closed
|
ZF-Commons/ZfcUser | 241531147 | Title: Idea around the controller tests thought worth sharing.
Question:
username_0: I think this test case could do with some improvement. Just an idea or opinion I'm sharing not trying to be critical :-)
https://github.com/ZF-Commons/ZfcUser/blob/3.x/tests/ZfcUserTest/Controller/UserControllerTest.php#L154
A data provider is used for the test case but potentially break the test out and making each test case explicit will help with maintainability.
For example when validation fails and the user is redirected the test case name could be as follows.
testLoginActionInvalidFormRedirectTrue()
Another idea might just be to change the test name. The actual test name is not clear as to what its testing
```testLoginActionValidFormRedirectFalse($isValid, $wantRedirect)```
and additionally the arguments passed from the data provider vary which makes it confusing.
The test name could perhaps be
```testLoginActionFormAndRedirect`` or ```testLoginActionFormStatusRedirectStatus``` as the arguments then from the data provider (true, true),(true,false) etc make more sense. |
wookay/lolchess | 484899945 | Title: 6법사 3요들 2유령 1닌자: 케넨 3성
Question:
username_0: <img width="271" alt="win21" src="https://user-images.githubusercontent.com/19859/63646847-036a7700-c754-11e9-982b-8f2a1a992fc4.png">
`+ 유미` (6) 마법사 - 모든 아군의 주문력 100% 증가
(3) 요들 - 아군 요들족은 30% 확률로 공격 회피
(2) 유령 - 전투 시작 시 무작위 적 하나에게 저주를 걸어 100의 체력을 갖도록 합니다.
(1) 닌자 - 닌자 유닛 공격력 및 주문력 +50
https://lolchess.gg/simulator?champions=kennen,karthus,aurelionsol,chogath,kindred,morgana,veigar,poppy,twistedfate |
leanprover-community/mathlib-tools | 676447236 | Title: refactoring directory structure of mathlib can cause problems
Question:
username_0: Right now I can break my project-with-mathlib-as-a-dependency using leanproject:
In version 0.0.10:
```
$ leanproject get ImperialCollegeLondon/group-theory-game
...
Looking for local mathlib oleans
Found local mathlib oleans
$ cd group-theory-game
$ lean --make src/group/definitions.lean ## works fine. Note that master mathlib dependency is after the ring change.
$ git checkout Sylow_theorems ## branch from before the recent ring -> ring/basic mathlib change
$ leanproject get-mathlib-cache
Looking for local mathlib oleans
Found local mathlib oleans
$ lean --make src/group/definitions.lean
/home/buzzard/temp/group-theory-game/_target/deps/mathlib/src/algebra/field.lean:1:0: error: ambiguous import, it can be '/home/buzzard/temp/group-theory-game/_target/deps/mathlib/src/algebra/ring/default.lean' or '/home/buzzard/temp/group-theory-game/_target/deps/mathlib/src/algebra/ring.lean'
...
```
In the last few weeks, `algebra/ring.lean` was changed to `algebra/ring/basic.lean` in mathlib, but after `leanproject get-mathlib-cache` I have in `_target` copies of both `ring.lean` and `ring/basic.lean` and this leads to ambiguous imports in mathlib later down the line. |
weirongxu/coc-explorer | 630577110 | Title: NeoVIM v0.3.8 CocCommand explorer toggle issue
Question:
username_0: I have
```
nmap ge :CocCommand explorer<CR>
```
to open/close coc-explorer.
NVIM v0.3.8 opens it perfectly fine

But when I press `ge` again it switches to open file split (Explorer stays open)

There is no such issue on NVIM v0.4.3 btw. On NVIM v0.3.8 it was working fine only few days ago.<issue_closed>
Status: Issue closed |
moononournation/Arduino_GFX | 898252029 | Title: Last row data undefined?
Question:
username_0: Hi there,
I'm using a 80x160px ST7735 based TFT. My hard-coded offsets/extents are here:
```
#define TFT_OFFSETX 26
#define TFT_OFFSETY 1
#define ST7735_TFTWIDTH 80
#define ST7735_TFTHEIGHT 160
```
I draw a rectangle here:
```
gfx->fillScreen(BLACK);
gfx->drawRect(gOffsetX+TFT_OFFSETX, gOffsetY+TFT_OFFSETY, ST7735_TFTWIDTH, ST7735_TFTHEIGHT, GREEN);
```
This is the result:

I noticed there are additional offset arguments in the GFX library:
```
Arduino_ST7735(
Arduino_DataBus *bus, int8_t rst = -1, uint8_t r = 0,
bool ips = false, int16_t w = ST7735_TFTWIDTH, int16_t h = ST7735_TFTHEIGHT,
uint8_t col_offset1 = 0, uint8_t row_offset1 = 0, uint8_t col_offset2 = 0, uint8_t row_offset2 = 0,
bool bgr = true);
```
Can you help me understand why the last row contains random data when displayed?
Thanks!
Answers:
username_1: Please find more details on wiki tab.
Status: Issue closed
username_0: Ah, thank you so much for having many display- specific examples. It looks perfect now! |
UC-Davis-molecular-computing/scadnano | 858021461 | Title: export to oxView format
Question:
username_0: There is a new file format for oxView, which has more information than oxDNA (such as strand names, colors, base pairs).
scadnano should be able to export directly to this format, since scadnano has such information that can be embedded in the oxView format.
Answers:
username_1: Here is the addition I wrote for converting to the .oxview format in the [candano conversion script](https://github.com/lorenzo-rovigatti/tacoxDNA#cadnano-to-oxdna-converter):
https://github.com/lorenzo-rovigatti/tacoxDNA/commit/78ec99507420
If you can get correct positions and connectivity for oxDNA, it should be easy to output to oxView as well
I've also added oxview conversion for rpoly (vhelix) and tiamat.
There is no written standard for the oxview format yet, I'm afraid, but you can easily create and test examples by saving and loading structures in oxview: https://sulcgroup.github.io/oxdna-viewer/. And just let me know if you have any questions! |
bandprotocol/bandchain | 598450417 | Title: Pseudo-randomly choose validators to perform oracle tasks
Question:
username_0: Instead of relying on top validators, the approach the makes more sense would be to randomly choose validators (chances based on staking power) to perform tasks. This way, everyone is expected to contribute to the system and will get jailed if they don't (in future release).<issue_closed>
Status: Issue closed |
kmadathil/sanskrit_parser | 240843121 | Title: Speedup lexical lookup using an O(1) datastructure
Question:
username_0: Currently, the inriaxmlwrapper code (which we use for lexical lookup of forms), reads in XML, and does XPATH search each time when a form is queried.
To speed this up, we could use a suitable datastructure to store the data read from XML. It would speed up the search pretty significantly compared to the current XPATH search. We could convert from XML to TRIE in python, pickle it, and load the pickled version to save conversion time.
Answers:
username_1: Seems a promising suggestion.
username_2: I am not very familiar with tries, but based on https://stackoverflow.com/questions/245878/how-do-i-choose-between-a-hash-table-and-a-trie-prefix-tree, their main advantage appears to be with prefix-based searches. If we are always going to be looking up an exact form, we could use a standard python dict that has an O(1) average cost for lookups. Since our keys are standard unicode strings, we probably don't need to worry about the O(n) worst case complexity. dicts are simpler to use, and everyone's familiar with it (as also indicated in the SO answer) and that also counts for a lot.
username_0: Another TRIE (or DAWG) advantage is that shorter keys get looked up faster. That seemed attractive to me on first sight. However, if we're prioritizing longer splits (as being discussed elsewhere), that might pointless.
But yes - our keys are going to be standard *English* strings (since they're SLP1 encoded), so we're probably good with a dict too, which makes life easier.
username_1: I feel
`for member in set(x)`
is equally fast. Its average case complexity is O(1) only.
So why try tries?
We can pickle the set itself and store, and unpickle and use directly.
username_0: Please see my comment above, dict is now the preferred solution.
We need to store keys (forms) as well as values (tagsets). Using sets, we can only store the keys (as we do today for the quicklookup function. After loading the dict, we could do .keys() on it, and convert that to a set for quicklookup.
username_1: OK.
username_2: There is no need to do .keys() on a dict and convert it into a set. `x in dict` is effectively the same as `x in set(dict.keys())`.
username_0: Does x in dict give the same performance as storing set(dict.keys()) and doing x in set?
username_2: Yes. https://wiki.python.org/moin/TimeComplexity states that implementation of set and dict are intentionally similar.
username_0: Ok dict it is then. We do x in dict for quick lookup and dict[x] to extract the lexical tags.
username_1: Now that we have decided on dicts, time to close this issue?
username_0: Was hoping to close this after we implement it :-)
username_2: I actually have a preliminary implementation locally that includes pickling. @username_1 would you mind adding me as a collaborator for inriaxmlwrapper? I will create a branch there and add it in
username_0: @username_1 @username_2
Did this implementation get merged?
username_2: Waiting for @username_1 to add me as a collaborator. In the meantime, also see #30
username_0: @username_2
He might be busy. I have a fork https://github.com/username_0/inriaxmlwrapper which I use as a git remote for the same repo. I've added you as a collaborator on that. You can push to that. We'll generate a pull request after validating it locally.
username_1: Flood relief.
Added just now.
username_3: Gentlemen, since you're talking about pickling a dict - my suggestion is please just write a json - I vaguely remember reading this http://www.benfrederickson.com/dont-pickle-your-data/ , but the real reason is that this json will be usable in any other programming language easily, and it can be read in as a dict with json.loads() .
username_3: Also, you might consider just using a database, if you suspect future memory constraints.
username_2: @username_1 Our thoughts are with you. Your dedication is both impressive and inspiring!
@username_3 I was thinking about using a database as well, since it would be good not to load the entire db into memory just to look up a small subset of words. Will look into a suitable library.
username_3: If you make the database url a parameter to your program, you can just use couchdb - it comes with a rest api, its easy to replicate (master to master) and has wrappers around the rest api. Optionally, you can be database-neutral by using an interface like the skeleton I've started in [sanskrit_data](https://github.com/sanskrit-coders/sanskrit_data/tree/master/sanskrit_data/db).
username_2: This would require the user to install couchdb server separately at the least, or rely on having an internet connection at the time of usage. I understand the motivation, but I think it makes the package less self-contained. On the other hand, using a sqllite type of database would allow everything to be self-contained. (Is there a self-contained couchdb python module similar to sqllite3?)
Thoughts?
username_3: Yes - couchbase-lite . I've used it quite a bit with scala and java. It can be synced with couchdb (but index-es don't sync). Alas, I don't see python api for it.
(just in case) Please, don't even consider going relational - nosql dbs are the way to go :-)
username_2: It's perhaps not as simple as you imagine. When you sent out the DCS database release email a couple of months ago, I wanted to play around with the data. After installing couchdb in my Ubuntu VM running on my windows laptop, I tried syncing with the vedavaapi.org database. Since the network interface bridging to VMs on Hyper-V is not the most stable in the world, the network would occasionally disconnect, and I just could not get my local couchdb database to fully sync with vedavaapi.org. (It might have synced eventually, but I wanted to explore the data right away, and did not have the patience to wait for eventual consistency). The release included a couchbase lite dump of the db, but as you noted, that is incompatible with couchdb. Eventually I used the couchdb backup scripts from https://github.com/danielebailo/couchdb-dump to dump the database from vedavaapi.org onto my windows host machine, scp'ed that into my VM, and then used the scripts again to restore the dump into the couchdb server on the VM. This is certainly not a smooth experience.
Consider also the following use case - As being discussed in #28, suppose I want to train a deep neural network (several stacked LSTM/CNN layers) using an ML platform as a service such as floydhub, I don't have control over the docker images they run, and so cannot install couchdb server. Given that I am paying by the second, I don't want my training script to go over an internet connection every time it needs to lookup tags for a single word. It makes sense to have a self-contained database in this case.
Regarding the nosql comment, I agree that they may be more natural when dealing with real-world documents that do not fall nicely into rows and columns, but we need to think whether they make sense in this particular application given the constraints. We are using a dict today for essentially key -> value mappings, and want to put this in a db. In the absence of a self-contained nosql python implementation, and given that sqllite3 is part of the python standard library and available on all platforms, I am not convinced that nosql has to be the way to go. I am open to being convinced otherwise.
username_3: The premise is false. I only said that the one self-contained nosql database I know does not support python, not that they don't exist. A casual search throws up many possibilities - https://pypi.python.org/pypi/tinydb , https://sqlite.org/json1.html , berkeley db.
username_2: Ok. I stand corrected :). My apologies for misinterpreting your statement about no python support.
TinyDB definitely seems to be a valid option, and as you say, given the choice, it is better to stay flexible. Will try to update the inriaxmlwrapper class to use tinydb.
username_3: Taking the flexibility preference to a slightly higher level - it is a good idea not to be "married" to any database technology. Access it via an interface (such as DbInterface and ClientInterface [here](https://github.com/sanskrit-coders/sanskrit_data/blob/master/sanskrit_data/db/__init__.py)). Switching to a different database tool should be as simple as calling a different class's constructor - one shouldn't have to go messing about anywhere else.
username_0: Is there any reason to keep this issue open? Should we create another to use standard DB interfaces and close this one?
username_2: I am ok with closing this
Status: Issue closed
|
NaluCFD/Nalu | 302928461 | Title: Selector definition in AssembleElemSolverAlgorithm should exclude inactive_selector
Question:
username_0: I would expect the [AssembleElemSolverAlgorithm](https://github.com/NaluCFD/Nalu/blob/master/include/AssembleElemSolverAlgorithm.h#L62) to use a selector similar to the non-consolidated ElemSolverAlgorithms. However, it does not seem to exclude `realm_.get_inactive_selector()` and I suspect will create issues when running overset cases with consolidated algorithms. Is this a bug or is there a particular reason why this is coded this way?
I think Line 62-63 should be modified to:
```
stk::mesh::Selector s_locally_owned_union =
meta_data.locally_owned_part()
& stk::mesh::selectUnion(partVec_)
& !(realm_.get_inactive_selector();
```
Cc: @username_2, @username_1
Answers:
username_1: Right, this is a WIP and needs to add the inactive part. FaceElem looks clean as we do not support inactive parts at bcs. Any one can crank this out with the above proposed fix.
username_2: I agree, the inactive selector should be added to the selector in AssembleElemSolverAlgorithm. I'll do that unless one of you already did.
Status: Issue closed
username_2: ok, it's pushed. |
renovatebot/config-help | 640726092 | Title: Upgrade multiple versions present in a Docker tag
Question:
username_0: <!-- Please make sure to fill out this questionnaire. You don't need to delete any of the html comments like these ones -->
### Which Renovate are you using?
Renovate Open Source CLI
### Which platform are you using?
GitLab self-hosted
### What would you like to do?
<!-- Maybe you came here because you reached a "dead end" with config and now have a particular question. But don't forget to tell us what you *really* set out to achieve in the first place, because maybe there's a better way or we can help you better if we understand what your original goal was -->
Hello!
Our organization's docker base image tags have multiple versions in them, e.g.
```
FROM <registry>/nodejs12:v12.17.0-alpine3.11@sha256:123456
```
In this example the first version `v12.17.0` is the version of Node included in the image. `3.11` is the version of the alpine OS included. Renovate will upgrade the first node version, for example to `v12.17.0`, but will not upgrade `3.11` to `3.12`.
I'm interested in having renovate upgrade both the OS and Node versions in the tag.
I read a little about changing the versioning scheme to 'loose' or to use a regex version manager, but I'm not certain how to configure that, or if thats what could apply in this case
Answers:
username_1: Would it be enough if Renovate doesn't *understand* what the parts mean, but can simply *sort* tags correctly?
username_0: Yes! I think so.. I think sorting by the 3.11 version first and then the v12.17.0 one second makes sense
username_1: That's a tough ask (reversing the order of significance of the pieces in the version)
username_0: Got it.. I certainly understand thats an edge case and out of the norm. I don't think switching the order is an important requirement. Multiple alpine images are published (3.10, 3.11, 3.12) with the same node version anyways, so if node v12.18.0 gets added, all of the alpine tags get published with that node version.
I think sorting by the first one (v12.17.0) then the second one (3.11) will work ok.
username_1: We'll need to evaluate if the current `loose` versioning is loose enough!
username_1: I had another idea on this. First of all, use `regex` versioning for the node part. i.e. `12.17.0` is the version, while `alpine3.11` is the "compatibility" part. This will mean the `dockerfile` manager will update to e.g. `v12.18.0-alpine3.11`.
Next, add a regex manager for updating the `3.11` part to `3.12`. You might need to use the `v12.17.0` part as "compatibility" there though, e.g. it updates to `v12.17.0-alpine3.12` first.
username_0: Thanks Rhys! I will give the regex option a try. I tested with loose versioning with no luck. Renovate picked up a different linux distribution the registry offers, e.g. v12.17.0-rhel
username_1: In fact regular Docker versioning *might* work, e.g. how it works for `-alpine` etc on Docker Hub. I'm not sure if the `v` throws any spanner in the works though. However the example regex versioning from our docs should be applicable if not. |
material-theme/vsc-material-theme | 1097578376 | Title: Theme suddenly deactivated when Workspace Trust dialog open
Question:
username_0: **To Reproduce**
Steps to reproduce the behavior:
1. Select a project folder/workspace.
2. Right click and choose Open with Code.
3. Workspace Trust dialog is showed.
4. The theme is deactivated.
5. Choose Yes or No and the theme is activated again.
**Expected behavior**
The theme is stayed as it when the Workspace Trust dialog is showed
**Screenshots**

Answers:
username_1: We added a verified domain, hope is enough. If not we have not @LasaleFamine we have to update the package json by adding this:
https://code.visualstudio.com/api/extension-guides/workspace-trust#static-declarations |
alvations/sacremoses | 684120839 | Title: truecase training killed: 9
Question:
username_0: I am trying to train a truecase model with python3.6 and sacremoses43. The file is little large.
It gets killed after an hour. I am using a quadcore intel machine with 16GB RAM.
Any help is appreciated.
Thanks. |
accordproject/template-studio-v2 | 429741495 | Title: Template studio v2 code should follow clean linter rules
Question:
username_0: It would be useful to clearly document and automatically test linter rules on template studio.
A good set of rules for code quality was open-sourced and made public at: https://www.npmjs.com/package/@clausehq/eslint-config |
AmauryQ97/Projet-TLI-S7 | 489162557 | Title: Inscription HTML
Question:
username_0: <!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Inscription</title>
<link rel="stylesheet" href="inscription.css">
</head>
<body>
<h1 id ="no_titre">Inscription</h1>
<form id="inscription" action="" method="GET">
<label>Nom :
<input type="text" name="nom"></label> <br/>
<label>Prénom :
<input type="text" name="prenom"> </label> <br/>
<label>Adresse mail :
<input type="email" name="mail" pattern="+@+"></label> <br/>
<label>Profession :
<input type="text" name="profession"</label> <br/>
<label>Nom utilisateur :
<input type="text" name="utilisateur"></label> <br/>
<label>Mot de passe :
<input type="password" name="mot de passe"></label> <br/>
<button type="reset">Annuler</button>
<button type="submit">Inscription</button>
</form>
</body>
</html> |
serokell/tezos-packaging | 758698857 | Title: version 7.5 is still not in ppa
Question:
username_0: Running `sudo apt update && sudo apt upgrade` doesn't upgrade tezos-client. The version that is in the ppa is still 7.4:0
Answers:
username_1: Unfortunately, our ubuntu packaging is based on the tezos opam packages:(
So we blocked by the https://gitlab.com/tezos/tezos/-/issues/1021
username_1: @username_0, sorry for such a long response. v8.1 was published to the launchpad, should become available soon (there are still some builds running, everything should be available within 20-25 minutes, I think)
username_1: Let me know if this issue can be closed now
username_0: IMO yes, closing
Status: Issue closed
|
docker/cli | 428318523 | Title: Reclaimable space for images reported incorrectly by "docker system df"
Question:
username_0: <!--
If you are reporting a new issue, make sure that we do not have any duplicates
already open. You can ensure this by searching the issue list for this
repository. If there is a duplicate, please close your issue and add a comment
to the existing issue instead.
If you suspect your issue is a bug, please edit your issue description to
include the BUG REPORT INFORMATION shown below. If you fail to provide this
information within 7 days, we cannot debug your issue and will close it. We
will, however, reopen it if you later provide the information.
For more information about reporting issues, see
https://github.com/docker/cli/blob/master/CONTRIBUTING.md#reporting-other-issues
---------------------------------------------------
GENERAL SUPPORT INFORMATION
---------------------------------------------------
The GitHub issue tracker is for bug reports and feature requests.
General support can be found at the following locations:
- Docker Support Forums - https://forums.docker.com
- Docker Community Slack - https://dockr.ly/community
- Post a question on StackOverflow, using the Docker tag
---------------------------------------------------
BUG REPORT INFORMATION
---------------------------------------------------
Use the commands below to provide key information from your environment:
You do NOT have to include this information if this is a FEATURE REQUEST
-->
**Description**
When I issue the 'docker system df' command it reports that all images are active, yet at the same time it reports 21% of the space is reclaimable.
<!--
Briefly describe the problem you are having in a few paragraphs.
-->
**Steps to reproduce the issue:**
1. Issue 'docker system df'
**Describe the results you received:**
TYPE TOTAL ACTIVE SIZE RECLAIMABLE
Images 10 10 10.25GB 2.164GB (21%)
**Describe the results you expected:**
I expected to see a situation that seems possible. My understanding is that the reclaimable space value is based on the number of inactive images, yet all images are reported as active.
**Additional information you deem important (e.g. issue happens only occasionally):**
I have two sets of systems test and prod, I see the same issue on both.
**Output of `docker version`:**
```
Client:
Version: 18.09.2
API version: 1.39
Go version: go1.10.6
Git commit: 6247962
Built: Sun Feb 10 04:13:47 2019
[Truncated]
Total Memory: 62.89GiB
Name: ip-10-195-10-42
ID: FG33:QVSU:NIVG:WXF2:LJZX:QSI5:UTM2:BK6M:NNNZ:RIE5:WRER:SVJD
Docker Root Dir: /var/lib/docker
Debug Mode (client): false
Debug Mode (server): false
Registry: https://index.docker.io/v1/
Labels:
com.opentext.optimost.core-ui.testqaops=true
Experimental: false
Insecure Registries:
127.0.0.0/8
Live Restore Enabled: false
Product License: Community Engine
WARNING: No swap limit support
```
**Additional environment details (AWS, VirtualBox, physical, etc.):**
Environment is AWS |
google/guava | 1110474987 | Title: Which kind of ImmutableMultimap does ImmutableMultimap.builder().build() create?
Question:
username_0: In this regard, it seems rather unfortunate that `ImmutableMultimap.builder().build()` returns `ImmutableMultimap`. Is this a SetMultimap or ListMultimap? At least the Javadoc should be clear about that, or better yet, `build()` should return one of the specific types.
See: https://guava.dev/releases/snapshot-jre/api/docs/com/google/common/collect/ImmutableMultimap.html |
chivalrousGiants/privatize | 170012468 | Title: .gitignore for Swift/XCode
Question:
username_0: TO BUILD OUT .gitignore file, based on existing template (since many files are auto-generated upon building new xcode project/ group/ etc)
1) retrieve template from:
https://github.com/github/gitignore
2) ammend template/ view explanations of gitignored files at http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
#########################
# .gitignore file for Xcode4 and Xcode5 Source projects
#
# Apple bugs, waiting for Apple to fix/respond:
#
# 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation?
#
# Version 2.6
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
#
# 2015 updates:
# - Fixed typo in "xccheckout" line - thanks to @lyck for pointing it out!
# - Fixed the .idea optional ignore. Thanks to @hashier for pointing this out
# - Finally added "xccheckout" to the ignore. Apple still refuses to answer support requests about this, but in practice it seems you should ignore it.
# - minor tweaks from Jona and Coeur (slightly more precise xc* filtering/names)
# 2014 updates:
# - appended non-standard items DISABLED by default (uncomment if you use those tools)
# - removed the edit that an SO.com moderator made without bothering to ask me
# - researched CocoaPods .lock more carefully, thanks to <NAME>
# 2013 updates:
# - fixed the broken "save personal Schemes"
# - added line-by-line explanations for EVERYTHING (some were missing)
#
# NB: if you are storing "built" products, this WILL NOT WORK,
# and you should use a different .gitignore (or none at all)
# This file is for SOURCE projects, where there are many extra
# files that we want to exclude
#
#########################
#####
# OS X temporary files that should never be committed
#
# c.f. http://www.westwind.com/reference/os-x/invisibles.html
.DS_Store
# c.f. http://www.westwind.com/reference/os-x/invisibles.html
.Trashes
# c.f. http://www.westwind.com/reference/os-x/invisibles.html
*.swp
#
# *.lock - this is used and abused by many editors for many different things.
# For the main ones I use (e.g. Eclipse), it should be excluded
# from source-control, but YMMV.
# (lock files are usually local-only file-synchronization on the local FS that should NOT go in git)
# c.f. the "OPTIONAL" section at bottom though, for tool-specific variations!
#
[Truncated]
#
# c.f. http://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
#
#!Gemfile.lock
#
# IDEA:
#
# c.f. https://www.jetbrains.com/objc/help/managing-projects-under-version-control.html?search=workspace.xml
#
#.idea/workspace.xml
#
# TEXTMATE:
#
# -- UNVERIFIED: c.f. http://stackoverflow.com/a/50283/153422
#
#tm_build_errors
####
# UNKNOWN: recommended by others, but I can't discover what these files are
#
Status: Issue closed
Answers:
username_0: TO BUILD OUT .gitignore file, based on existing template (since many files are auto-generated upon building new xcode project/ group/ etc)
1) retrieve template from:
https://github.com/github/gitignore
2) ammend template/ view explanations of gitignored files at http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
#########################
# .gitignore file for Xcode4 and Xcode5 Source projects
#
# Apple bugs, waiting for Apple to fix/respond:
#
# 15564624 - what does the xccheckout file in Xcode5 do? Where's the documentation?
#
# Version 2.6
# For latest version, see: http://stackoverflow.com/questions/49478/git-ignore-file-for-xcode-projects
#
# 2015 updates:
# - Fixed typo in "xccheckout" line - thanks to @lyck for pointing it out!
# - Fixed the .idea optional ignore. Thanks to @hashier for pointing this out
# - Finally added "xccheckout" to the ignore. Apple still refuses to answer support requests about this, but in practice it seems you should ignore it.
# - minor tweaks from Jona and Coeur (slightly more precise xc* filtering/names)
# 2014 updates:
# - appended non-standard items DISABLED by default (uncomment if you use those tools)
# - removed the edit that an SO.com moderator made without bothering to ask me
# - researched CocoaPods .lock more carefully, thanks to <NAME>
# 2013 updates:
# - fixed the broken "save personal Schemes"
# - added line-by-line explanations for EVERYTHING (some were missing)
#
# NB: if you are storing "built" products, this WILL NOT WORK,
# and you should use a different .gitignore (or none at all)
# This file is for SOURCE projects, where there are many extra
# files that we want to exclude
#
#########################
#####
# OS X temporary files that should never be committed
#
# c.f. http://www.westwind.com/reference/os-x/invisibles.html
.DS_Store
# c.f. http://www.westwind.com/reference/os-x/invisibles.html
.Trashes
# c.f. http://www.westwind.com/reference/os-x/invisibles.html
*.swp
#
# *.lock - this is used and abused by many editors for many different things.
# For the main ones I use (e.g. Eclipse), it should be excluded
# from source-control, but YMMV.
# (lock files are usually local-only file-synchronization on the local FS that should NOT go in git)
# c.f. the "OPTIONAL" section at bottom though, for tool-specific variations!
#
[Truncated]
#
# c.f. http://yehudakatz.com/2010/12/16/clarifying-the-roles-of-the-gemspec-and-gemfile/
#
#!Gemfile.lock
#
# IDEA:
#
# c.f. https://www.jetbrains.com/objc/help/managing-projects-under-version-control.html?search=workspace.xml
#
#.idea/workspace.xml
#
# TEXTMATE:
#
# -- UNVERIFIED: c.f. http://stackoverflow.com/a/50283/153422
#
#tm_build_errors
####
# UNKNOWN: recommended by others, but I can't discover what these files are
#
Status: Issue closed
|
robotframework/robotframework | 399282075 | Title: Import Error on Java11 since 3.1
Question:
username_0: Something is still weird, I got failures from Maven.
When trying to run some tests on java11. Works fine with java8. With 3.1 I had the same output, only with your home dev folder @username_1 , so I guess it changed to the dev folder of @Hi-Fi since the deploy of 3.1.1 happened from there.
Hoped it is a 3.1 issue and got fixed in 3.1.1, and also have no clue if this is relevant to the framework, or the Maven plugin.
Here is the trace:
````
2019-01-15 11:05:54.693 | Caused by: org.apache.maven.plugin.PluginExecutionException: Execution default of goal org.robotframework:robotframework-maven-plugin:1.5.1:run failed.
2019-01-15 11:05:54.694 | at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo (DefaultBuildPluginManager.java:148)
2019-01-15 11:05:54.694 | at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:210)
2019-01-15 11:05:54.695 | at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:156)
2019-01-15 11:05:54.695 | at org.apache.maven.lifecycle.internal.MojoExecutor.execute (MojoExecutor.java:148)
2019-01-15 11:05:54.695 | at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
2019-01-15 11:05:54.696 | at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
2019-01-15 11:05:54.696 | at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
2019-01-15 11:05:54.700 | at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
2019-01-15 11:05:54.700 | at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
2019-01-15 11:05:54.700 | at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
2019-01-15 11:05:54.700 | at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
2019-01-15 11:05:54.700 | at org.apache.maven.cli.MavenCli.execute (MavenCli.java:956)
2019-01-15 11:05:54.700 | at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:288)
2019-01-15 11:05:54.700 | at org.apache.maven.cli.MavenCli.main (MavenCli.java:192)
2019-01-15 11:05:54.700 | at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
2019-01-15 11:05:54.700 | at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
2019-01-15 11:05:54.701 | at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
2019-01-15 11:05:54.701 | at java.lang.reflect.Method.invoke (Method.java:566)
2019-01-15 11:05:54.701 | at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:289)
2019-01-15 11:05:54.701 | at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:229)
2019-01-15 11:05:54.701 | at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:415)
2019-01-15 11:05:54.701 | at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:356)
2019-01-15 11:05:54.701 | Caused by: org.python.core.PyException
2019-01-15 11:05:54.702 | at org.python.core.Py.ImportError (Py.java:328)
2019-01-15 11:05:54.702 | at org.python.core.imp.importFromAs (imp.java:1168)
2019-01-15 11:05:54.702 | at org.python.core.imp.importFrom (imp.java:1132)
2019-01-15 11:05:54.702 | at robot.running.timeouts.posix$py.f$0 (C:\Users\hifi\git\robotframework\build\Lib\robot\running\timeouts\posix.py:19)
2019-01-15 11:05:54.703 | at robot.running.timeouts.posix$py.call_function (C:\Users\hifi\git\robotframework\build\Lib\robot\running\timeouts\posix.py)
2019-01-15 11:05:54.703 | at org.python.core.PyTableCode.call (PyTableCode.java:167)
2019-01-15 11:05:54.703 | at org.python.core.PyCode.call (PyCode.java:18)
2019-01-15 11:05:54.703 | at org.python.core.imp.createFromCode (imp.java:436)
2019-01-15 11:05:54.704 | at org.python.core.util.importer.importer_load_module (importer.java:109)
2019-01-15 11:05:54.704 | at org.python.modules.zipimport.zipimporter.zipimporter_load_module (zipimporter.java:163)
2019-01-15 11:05:54.704 | at org.python.modules.zipimport.zipimporter$zipimporter_load_module_exposer.__call__ (Unknown Source)
2019-01-15 11:05:54.704 | at org.python.core.PyBuiltinMethodNarrow.__call__ (PyBuiltinMethodNarrow.java:46)
2019-01-15 11:05:54.704 | at org.python.core.imp.loadFromLoader (imp.java:587)
2019-01-15 11:05:54.705 | at org.python.core.imp.find_module (imp.java:537)
2019-01-15 11:05:54.705 | at org.python.core.PyModule.impAttr (PyModule.java:106)
2019-01-15 11:05:54.705 | at org.python.core.imp.import_next (imp.java:842)
2019-01-15 11:05:54.706 | at org.python.core.imp.import_module_level (imp.java:959)
2019-01-15 11:05:54.706 | at org.python.core.imp.importName (imp.java:1062)
2019-01-15 11:05:54.706 | at org.python.core.ImportFunction.__call__ (__builtin__.java:1280)
2019-01-15 11:05:54.706 | at org.python.core.PyObject.__call__ (PyObject.java:431)
2019-01-15 11:05:54.706 | at org.python.core.__builtin__.__import__ (__builtin__.java:1232)
2019-01-15 11:05:54.707 | at org.python.core.imp.importFromAs (imp.java:1156)
2019-01-15 11:05:54.707 | at org.python.core.imp.importFrom (imp.java:1132)
2019-01-15 11:05:54.707 | at robot.running.timeouts$py.f$0 (C:\Users\hifi\git\robotframework\build\Lib\robot\running\timeouts\__init__.py:137)
2019-01-15 11:05:54.707 | at robot.running.timeouts$py.call_function (C:\Users\hifi\git\robotframework\build\Lib\robot\running\timeouts\__init__.py)
2019-01-15 11:05:54.708 | at org.python.core.PyTableCode.call (PyTableCode.java:167)
2019-01-15 11:05:54.708 | at org.python.core.PyCode.call (PyCode.java:18)
2019-01-15 11:05:54.708 | at org.python.core.imp.createFromCode (imp.java:436)
[Truncated]
2019-01-15 11:05:54.745 | at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:117)
2019-01-15 11:05:54.745 | at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject (LifecycleModuleBuilder.java:81)
2019-01-15 11:05:54.745 | at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build (SingleThreadedBuilder.java:56)
2019-01-15 11:05:54.745 | at org.apache.maven.lifecycle.internal.LifecycleStarter.execute (LifecycleStarter.java:128)
2019-01-15 11:05:54.745 | at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:305)
2019-01-15 11:05:54.745 | at org.apache.maven.DefaultMaven.doExecute (DefaultMaven.java:192)
2019-01-15 11:05:54.745 | at org.apache.maven.DefaultMaven.execute (DefaultMaven.java:105)
2019-01-15 11:05:54.745 | at org.apache.maven.cli.MavenCli.execute (MavenCli.java:956)
2019-01-15 11:05:54.745 | at org.apache.maven.cli.MavenCli.doMain (MavenCli.java:288)
2019-01-15 11:05:54.745 | at org.apache.maven.cli.MavenCli.main (MavenCli.java:192)
2019-01-15 11:05:54.746 | at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0 (Native Method)
2019-01-15 11:05:54.746 | at jdk.internal.reflect.NativeMethodAccessorImpl.invoke (NativeMethodAccessorImpl.java:62)
2019-01-15 11:05:54.746 | at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke (DelegatingMethodAccessorImpl.java:43)
2019-01-15 11:05:54.746 | at java.lang.reflect.Method.invoke (Method.java:566)
2019-01-15 11:05:54.747 | at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced (Launcher.java:289)
2019-01-15 11:05:54.747 | at org.codehaus.plexus.classworlds.launcher.Launcher.launch (Launcher.java:229)
2019-01-15 11:05:54.747 | at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode (Launcher.java:415)
2019-01-15 11:05:54.747 | at org.codehaus.plexus.classworlds.launcher.Launcher.main (Launcher.java:356)
2019-01-15 11:05:54.747 | [MainThread] [ERROR]
````
Answers:
username_1: Could be a Jython issue. Newer Java releases have changed some APIs and Jython isn't fully compatible with them. Good news is that there has been some activity on the Jython mailing list and there's hope for Jython 2.7.2 that ought to work fine with latest Java versions. Fingers crossed.
username_0: Figures, it did not came out before. If I can circumvent this somehow I'll let you know.
Status: Issue closed
username_0: Okay, it happens only on java11, but not on java11.0.1 (OpenJDK) - so upgrading Java solved it.
@Soothsilver I'd say you should use robotframework 3.1.1, as the 3.0.x is not ready for Jigsaw (introduced in Java9) - maybe you can exclude your transitive dependency, and add a dependency to the latest robotframework instead. |
RoboJackets/igvc-software | 713966245 | Title: Set nodes in wheel_odometry.launch to be required
Question:
username_0: For the following node tags in `wheel_odometry.launch`, found in `igvc_navigation`, add the attribute `required="true"`:
* odometer
Once you make the PR, assign a fellow RoboNav member to review it, be it an old or new member.<issue_closed>
Status: Issue closed |
tpq/propr | 1106076167 | Title: Question about implementing ALR with ERCC92 spike ins
Question:
username_0: https://www.nature.com/articles/s41598-017-16520-0
Do I use a single ERCC92 feature as the reference, the summation, or the mean?
Do I include all or only a select few if it's the latter 2 options?
Should I scale all the datasets so their ERCC92 spike counts are the same before transformation? (This will likely result in the same data, though I'm thinking out loud and haven't tested) |
jlippold/tweakCompatible | 416605205 | Title: `Custom Carrier (iOS 12)` working on iOS 12.1.1
Question:
username_0: ```
{
"packageId": "com.rpgfarm.customcarrier",
"action": "working",
"userInfo": {
"arch32": false,
"packageId": "com.rpgfarm.customcarrier",
"deviceId": "iPhone9,3",
"url": "http://cydia.saurik.com/package/com.rpgfarm.customcarrier/",
"iOSVersion": "12.1.1",
"packageVersionIndexed": true,
"packageName": "Custom Carrier (iOS 12)",
"category": "Tweaks",
"repository": "repo.rpgfarm.com",
"name": "Custom Carrier (iOS 12)",
"installed": "1.1",
"packageIndexed": true,
"packageStatusExplaination": "This package version has been marked as Working based on feedback from users in the community. The current positive rating is 100% with 1 working reports.",
"id": "com.rpgfarm.customcarrier",
"commercial": false,
"packageInstalled": true,
"tweakCompatVersion": "0.1.2",
"shortDescription": "Carrier name changer for iOS 12",
"latest": "1.1",
"author": "BawAppie",
"packageStatus": "Working"
},
"base64": "<KEY>",
"chosenStatus": "working",
"notes": ""
}
```<issue_closed>
Status: Issue closed |
sensu/web | 1007298902 | Title: Sensu Engineering no longer works on this project
Question:
username_0: i hope that someone, like me, would not waste time on this.
## Expected Behavior
nothing. pin this issue, maybe?
## Current Behavior
N/A
## Possible Solution
N/A
## Steps to Reproduce
N/A
## Context
N/A
## Your Environment
<!--- Include as many relevant details about the environment you experienced the bug in -->
* Sensu version used (sensuctl, sensu-backend, and/or sensu-agent): N/A
* Installation method (packages, binaries, docker etc.): N/A
* Operating System and version (e.g. Ubuntu 14.04): N/A
* Browser used |
godotengine/godot | 308121843 | Title: TextureButton Still can't drag image to Click Mask
Question:
username_0: <!-- Please search existing issues for potential duplicates before filing yours:
https://github.com/godotengine/godot/issues?q=is%3Aissue
-->
**Godot version:**
3.02 stable
**OS/device including version:**
Windows 10 pro
**Issue description:**
I can't drag a black and white PNG to the Click Mask property of a TextureButton. I searched the problem but the only work around was to use code. Is this being worked on?
Answers:
username_1: Reimport the PNG as BitMap http://docs.godotengine.org/en/latest/classes/class_bitmap.html.
username_0: I know you can reimport, but it isn't intuitive. It took me a long time to figure this out. It would be nice to simply drag a black and white PNG to the spot and have godot do the conversions. Wouldn't this be easier for users?
username_1: Agreed. The problem is that one file can only be imported as one resource type. I've discussed with @akien-mga months ago.
```
[10:47:23] <username_1[m]> I can't use one resource as several type? E.g. a png as both texture and bitmap?
[11:08:35] <Akien> The import maps one source file to one imported resource, so I guess that you can't indeed
[11:09:12] <Akien> Working is to duplicate the source file. We'll see if there's a real use case for having multiple resources from one source file apart from trying to reproduce a bug :P
[11:10:24] <username_1[m]> Umm, one use case is from that issue. If I can import png as both BitMap and texture, I can use it as button and click mask.
[11:10:51] <username_1[m]> without another b&w mask.
```
username_2: How about having an option for the button to use the transparency of the current texture instead of the bitmask, if the bitmask is not set?
username_3: Feature and improvement proposals for the Godot Engine are now being discussed and reviewed in a dedicated [**Godot Improvement Proposals (GIP)**](https://github.com/godotengine/godot-proposals) ([godotengine/godot-proposals](https://github.com/godotengine/godot-proposals)) issue tracker. The GIP tracker has a detailed issue template designed so that proposals include all the relevant information to start a productive discussion and help the community assess the validity of the proposal for the engine.
The main ([godotengine/godot](https://github.com/godotengine/godot)) tracker is now solely dedicated to bug reports and Pull Requests, enabling contributors to have a better focus on bug fixing work. Therefore, we are now closing all older feature proposals on the main issue tracker.
If you are interested in this feature proposal, please [**open a new proposal on the GIP tracker**](https://github.com/godotengine/godot-proposals/issues/new/choose) following the given issue template (after checking that it doesn't exist already). Be sure to reference this closed issue if it includes any relevant discussion (which you are also encouraged to summarize in the new proposal). Thanks in advance!
Status: Issue closed
|
ProgrammingLife2016/PL2-2016 | 153803579 | Title: PMD makes the build failing
Question:
username_0: The build on the test/model branch failes because of PMD, because travis says there are 3 PMD errors. First of all, there are much more of them when I look at my local maven site report. But almost all of them are a 2-character variable violation. (which is thus not in compliance with our checkstyle), and I think travis does not fail because of that. @username_1, there are also some violations in your annotations code, maybe we should also fix those? I hope somebody can find the reason why travis fails and I think we should remove the variable rule from PMD.
Answers:
username_1: No idea what the errors in the maven site are based on @username_2 ???, but you only have to fix the 3 errors which are given when the build completes. In your case the file path is: `PL2-2016\PL2\PL2-parser\target\pmd.xml` (this file path is given at the end of the build). It contains the following stuff:
```xml
<?xml version="1.0" encoding="UTF-8"?>
<pmd version="5.3.5" timestamp="2016-05-09T18:14:58.740">
<file name="...\PL2-2016\PL2\PL2-shared\src\main\java\interfaces\DataAlgoInterface.java">
<violation beginline="14" endline="14" begincolumn="10" endcolumn="30" rule="UnusedModifier" ruleset="Unused Code" package="interfaces" class="DataAlgoInterface" method="getNode" externalInfoUrl="https://pmd.github.io/pmd-5.3.5/pmd-java/rules/java/unusedcode.html#UnusedModifier" priority="3">
Avoid modifiers which are implied by the context
</violation>
<violation beginline="21" endline="21" begincolumn="10" endcolumn="45" rule="UnusedModifier" ruleset="Unused Code" package="interfaces" class="DataAlgoInterface" method="getPhylo" externalInfoUrl="https://pmd.github.io/pmd-5.3.5/pmd-java/rules/java/unusedcode.html#UnusedModifier" priority="3">
Avoid modifiers which are implied by the context
</violation>
<violation beginline="28" endline="28" begincolumn="10" endcolumn="35" rule="UnusedModifier" ruleset="Unused Code" package="interfaces" class="DataAlgoInterface" method="getMeta" externalInfoUrl="https://pmd.github.io/pmd-5.3.5/pmd-java/rules/java/unusedcode.html#UnusedModifier" priority="3">
Avoid modifiers which are implied by the context
</violation>
</file>
</pmd>
```
Whichs means that you should not use the `public` identifier for methods in the interface `...\PL2-2016\PL2\PL2-shared\src\main\java\interfaces\DataAlgoInterface.java`, since methods in interfaces are `public` by default (so just leave out the `public` keyword).
username_0: Thanks, I will try that.
username_2: @username_1 @username_0 I noticed that PMD somehow reports more warnings/errors than it finds during the build. See #62.
username_2: Since the annotation code from Faris does not fail the build, fixing it is not a priority and will be completely up to @username_1. Potentially we should consider excluding it from the static analysis completely, since it is not part of our project.
While working on #62, I will make sure to synchronize the Checkstyle and PMD.
You may close this if this solves the issue @username_0
username_0: @username_1 @username_2 thanks for the help, I fixed it. Build for test/model finally succeeds on travis now, checkstyle apparently started complaining about some lines in the annotation code.
Status: Issue closed
|
stylus/stylus | 349023726 | Title: 'imports' couldn't be set as a option
Question:
username_0: ```javascript
function Renderer(str, options) {
options = options || {};
options.globals = options.globals || {};
options.functions = options.functions || {};
options.use = options.use || [];
options.use = Array.isArray(options.use) ? options.use : [options.use];
options.imports = [join(__dirname, 'functions')];
options.paths = options.paths || [];
options.filename = options.filename || 'stylus';
options.Evaluator = options.Evaluator || Evaluator;
this.options = options;
this.str = str;
this.events = events;
};
```
We couldn't set commons functions of us as global functions
Answers:
username_1: What is this file for?
username_0: @username_1 I meant the `Renderer.js` when you use `stylus.render(str, options)`, I am gonna my functions and mixins in context, please support `options.imports` instead of `stylus(str).import('mixins/vendor')`, I am not sure if you understand me
username_0: @username_1 Please merge that branch, I have fixed this issue
username_1: I am not core member. Dont worry they will see your commit.
Status: Issue closed
|
karawoo/icedataagg | 106849884 | Title: Fix something weird with years in zooplankton section
Question:
username_0: When I run the `aggregate_data.R` script the years in the zooplankton section are getting converted to single digit integers, which ultimately results in the zooplankton data not getting included in the final file (because there's no way to merge these dates with the rest of the data). Need to figure out what's going on here and fix it.<issue_closed>
Status: Issue closed |
nipreps/fmriprep | 717247941 | Title: does fmriprep include correction for baseline drifts?
Question:
username_0: Hello,
Does fmriprep include correction for baseline drifts?
I need to use a LISA tool (LIPSIA) for single-subject analysis and it requires that: "The preprocessing pipeline must include a correction for baseline drifts."
According to the output of the fmriprep (Methods) it seems that there is no correction for baseline drifts.
Please correct me if I am wrong.
Thank you :)
Answers:
username_1: No, fMRIPrep only resamples, and does not attempt to denoise. You could check out https://github.com/nbraingroup/fmridenoise for this purpose. fMRIPrep does provide a set of cosine regressors that can be used to regress out low frequency components. We use a high-pass cutoff of 128s, so frequencies below ~0.008Hz should be effectively removed. This would likely satisfy "baseline drifts".
There are other methods for removing low-frequency components. The only cases where you really need to use the cosine regressors is if you also want to regress out CompCor components.
Hope this helps.
username_0: Thank you Chris for your response.
I think I can apply the correction by LIPSIA: "vpreprocess -in tmp4.v -out prep_$1.v -fwhm 6 -low 10 -high 90"
using as input file the fmriprep derivative.
username_1: Sounds good. Thanks for the question!
Status: Issue closed
|
spring-io/spring-javaformat | 541660431 | Title: Improve compatibility with recent IntelliJ IDEA release
Question:
username_0: With this plugin in IJ 2019.3 I get the following in the logs constantly:
```
2019-12-20 22:44:56,135 [23900685] ERROR - r.PlatformComponentManagerImpl - com.intellij.psi.codeStyle.CodeStyleManager requested as a service, but it is a component - convert it to a service or change call to project.getComponent()
com.intellij.diagnostic.PluginException: com.intellij.psi.codeStyle.CodeStyleManager requested as a service, but it is a component - convert it to a service or change call to project.getComponent()
at com.intellij.ide.plugins.PluginManagerCore.createPluginException(PluginManagerCore.java:405)
at com.intellij.diagnostic.PluginProblemReporterImpl.createPluginExceptionByClass(PluginProblemReporterImpl.java:12)
at com.intellij.diagnostic.PluginException.createByClass(PluginException.java:58)
at com.intellij.diagnostic.PluginException.logPluginError(PluginException.java:75)
at com.intellij.serviceContainer.PlatformComponentManagerImpl.getService(PlatformComponentManagerImpl.kt:308)
at com.intellij.openapi.components.ServiceManager.getService(ServiceManager.java:22)
at com.intellij.psi.codeStyle.CodeStyleManager.getInstance(CodeStyleManager.java:40)
at com.intellij.psi.impl.DiffLog.doActualPsiChange(DiffLog.java:255)
at com.intellij.psi.impl.DocumentCommitThread.lambda$doCommit$8(DocumentCommitThread.java:704)
at com.intellij.psi.impl.PsiDocumentManagerBase.commitToExistingPsi(PsiDocumentManagerBase.java:416)
at com.intellij.psi.impl.PsiDocumentManagerBase.lambda$finishCommitInWriteAction$4(PsiDocumentManagerBase.java:388)
at com.intellij.openapi.progress.impl.CoreProgressManager.registerIndicatorAndRun(CoreProgressManager.java:585)
at com.intellij.openapi.progress.impl.CoreProgressManager.executeProcessUnderProgress(CoreProgressManager.java:531)
at com.intellij.openapi.progress.impl.ProgressManagerImpl.executeProcessUnderProgress(ProgressManagerImpl.java:59)
at com.intellij.openapi.progress.impl.CoreProgressManager.executeNonCancelableSection(CoreProgressManager.java:191)
at com.intellij.psi.impl.PsiDocumentManagerBase.finishCommitInWriteAction(PsiDocumentManagerBase.java:383)
at com.intellij.psi.impl.PsiDocumentManagerImpl.finishCommitInWriteAction(PsiDocumentManagerImpl.java:130)
at com.intellij.psi.impl.PsiDocumentManagerBase$1.run(PsiDocumentManagerBase.java:344)
at com.intellij.psi.impl.PsiDocumentManagerBase.finishCommit(PsiDocumentManagerBase.java:348)
at com.intellij.psi.impl.DocumentCommitThread.lambda$createFinishCommitInEDTRunnable$5(DocumentCommitThread.java:490)
at com.intellij.psi.impl.DocumentCommitThread.commitSynchronously(DocumentCommitThread.java:363)
at com.intellij.psi.impl.PsiDocumentManagerBase.lambda$doCommit$5(PsiDocumentManagerBase.java:477)
at com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(ApplicationImpl.java:885)
at com.intellij.psi.impl.PsiDocumentManagerBase.doCommit(PsiDocumentManagerBase.java:485)
at com.intellij.psi.impl.PsiDocumentManagerBase.commitDocument(PsiDocumentManagerBase.java:324)
at com.intellij.codeInsight.template.impl.ShortenFQNamesProcessor.processText(ShortenFQNamesProcessor.java:24)
at com.intellij.codeInsight.template.impl.TemplateState.reformat(TemplateState.java:1275)
at com.intellij.codeInsight.template.impl.TemplateState.lambda$doReformat$2(TemplateState.java:481)
at com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(ApplicationImpl.java:885)
at com.intellij.codeInsight.template.impl.TemplateState.doReformat(TemplateState.java:485)
at com.intellij.codeInsight.template.impl.TemplateState.lambda$processAllExpressions$1(TemplateState.java:444)
at com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(ApplicationImpl.java:885)
at com.intellij.codeInsight.template.impl.TemplateState.processAllExpressions(TemplateState.java:428)
at com.intellij.codeInsight.template.impl.TemplateState.start(TemplateState.java:399)
at com.intellij.codeInsight.template.impl.TemplateManagerImpl.lambda$startTemplate$2(TemplateManagerImpl.java:178)
at com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(CoreCommandProcessor.java:212)
at com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(CoreCommandProcessor.java:178)
at com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(CoreCommandProcessor.java:168)
at com.intellij.openapi.command.impl.CoreCommandProcessor.executeCommand(CoreCommandProcessor.java:154)
at com.intellij.codeInsight.template.impl.TemplateManagerImpl.startTemplate(TemplateManagerImpl.java:182)
at com.intellij.codeInsight.template.impl.TemplateManagerImpl.startTemplate(TemplateManagerImpl.java:199)
at com.intellij.codeInsight.completion.XmlTagInsertHandler.insertIncompleteTag(XmlTagInsertHandler.java:144)
at com.intellij.codeInsight.completion.XmlTagInsertHandler.handleInsert(XmlTagInsertHandler.java:85)
at com.intellij.codeInsight.lookup.LookupElementBuilder.handleInsert(LookupElementBuilder.java:456)
at com.intellij.codeInsight.lookup.LookupElementDecorator.handleInsert(LookupElementDecorator.java:54)
at com.intellij.codeInsight.completion.CodeCompletionHandlerBase.lambda$insertItem$11(CodeCompletionHandlerBase.java:593)
at com.intellij.openapi.application.impl.ApplicationImpl.runWriteAction(ApplicationImpl.java:885)
at com.intellij.codeInsight.completion.CodeCompletionHandlerBase.insertItem(CodeCompletionHandlerBase.java:577)
at com.intellij.codeInsight.completion.CodeCompletionHandlerBase.lambda$insertItemHonorBlockSelection$8(CodeCompletionHandlerBase.java:493)
at com.intellij.openapi.editor.impl.CaretModelImpl.lambda$runForEachCaret$3(CaretModelImpl.java:355)
at com.intellij.openapi.editor.impl.CaretModelImpl.doWithCaretMerging(CaretModelImpl.java:457)
at com.intellij.openapi.editor.impl.CaretModelImpl.runForEachCaret(CaretModelImpl.java:347)
at com.intellij.openapi.editor.impl.CaretModelImpl.runForEachCaret(CaretModelImpl.java:337)
at com.intellij.codeInsight.completion.CodeCompletionHandlerBase.insertItemHonorBlockSelection(CodeCompletionHandlerBase.java:484)
at com.intellij.codeInsight.completion.CodeCompletionHandlerBase.lookupItemSelected(CodeCompletionHandlerBase.java:459)
[Truncated]
at com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.lambda$processAction$3(IdeKeyEventDispatcher.java:657)
at com.intellij.openapi.application.TransactionGuardImpl.performUserActivity(TransactionGuardImpl.java:193)
at com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processAction(IdeKeyEventDispatcher.java:656)
at com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.processActionOrWaitSecondStroke(IdeKeyEventDispatcher.java:517)
at com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.inInitState(IdeKeyEventDispatcher.java:472)
at com.intellij.openapi.keymap.impl.IdeKeyEventDispatcher.dispatchKeyEvent(IdeKeyEventDispatcher.java:221)
at com.intellij.ide.IdeEventQueue.dispatchKeyEvent(IdeEventQueue.java:830)
at com.intellij.ide.IdeEventQueue._dispatchEvent(IdeEventQueue.java:775)
at com.intellij.ide.IdeEventQueue.lambda$dispatchEvent$8(IdeEventQueue.java:424)
at com.intellij.openapi.progress.impl.CoreProgressManager.computePrioritized(CoreProgressManager.java:698)
at com.intellij.ide.IdeEventQueue.dispatchEvent(IdeEventQueue.java:423)
at java.desktop/java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:203)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:124)
at java.desktop/java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:113)
at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:109)
at java.desktop/java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:101)
at java.desktop/java.awt.EventDispatchThread.run(EventDispatchThread.java:90)
```
I can't say for sure this plugin is the culprit but `SpringFormatComponent`[is a component and not a service](https://github.com/spring-io/spring-javaformat/blob/563ac8d0d4592be70cef4196eec92f6c6b87c561/spring-javaformat-intellij/spring-javaformat-intellij-plugin/src/main/java/io/spring/format/formatter/intellij/SpringFormatComponent.java) so this might be related.
Answers:
username_1: https://github.com/krasa/EclipseCodeFormatter/blob/master/src/java/krasa/formatter/plugin/ProjectCodeStyleInstaller.java#L86
Status: Issue closed
|
jlippold/tweakCompatible | 414301306 | Title: `Lotus Dark` working on iOS 12.1
Question:
username_0: ```
{
"packageId": "com.repo.xarold.com.lotusdark",
"action": "working",
"userInfo": {
"arch32": false,
"packageId": "com.repo.xarold.com.lotusdark",
"deviceId": "iPhone9,3",
"url": "http://cydia.saurik.com/package/com.repo.xarold.com.lotusdark/",
"iOSVersion": "12.1",
"packageVersionIndexed": true,
"packageName": "Lotus Dark",
"category": "Tweaks",
"repository": "Xarold Repo",
"name": "Lotus Dark",
"installed": "1.0.7",
"packageIndexed": true,
"packageStatusExplaination": "A matching version of this tweak for this iOS version could not be found. Please submit a review if you choose to install.",
"id": "com.repo.xarold.com.lotusdark",
"commercial": false,
"packageInstalled": true,
"tweakCompatVersion": "0.1.1",
"shortDescription": "A dark alternative to Lotus",
"latest": "1.0.7",
"author": "<NAME> (navidmx)",
"packageStatus": "Unknown"
},
"base64": "<KEY>",
"chosenStatus": "working",
"notes": ""
}
``` |
open-austin/open-data-progress-report | 102644365 | Title: embedding at austintexas.gov
Question:
username_0: Any thoughts or interest in exploring how this content might be styled to fit in as main content on austintexas.gov? Like as if it were to be framed by the City website nav bars, footer, etc?
Answers:
username_1: Yeah certainly, can you share a link to an example page that would most likely have all the components that would frame the main content?
I'm seeing several layouts at different links within the city site:
http://austintexas.gov/blog/wrap-texas-digital-government-summit (only right sidebar)
http://austintexas.gov/department/austin-hacks (left and right sidebars)
http://austintexas.gov/news/prescribed-burn-helps-restore-native-grasslands (only left sidebar)
username_0: yes, I will ask the team about this at work tomorrow. thank you for providing those example links!
username_0: Showed this to the team at today's weekly data portal gathering... they really like where this is going! Their favorite of the two layouts is the table version. One idea kicked around was to embed as an iframe at the open gov section of austintexas.gov, with attribution to Open Austin. Here's why...
<NAME> brought up a great point today in the meeting. Having the report originate from a place outside government increases the "checks and balances" on this initiative. When the facts are reported by Open Austin and others, especially in a way that makes the code and discussions publicly accessible in a repo like this, that's the kind of transparency that fosters credibility. I'm probably butchering what he said.. but it sounded really cool when he said it.
So to that end, we might get more value from embedding the table and description as an iframe versus forking the code. If that would work well for y'all. Divya, a manager from our web services team, is having one of her programmers look at options on our end. I'll reach out to that person (whom I may not have met yet!) and see how to best connect y'all. Ball still in my court. Over and out!
username_0: Alex from the web services team has staged a demo page for us that has the code embedded as an iframe... it's on our internal server and i don't know how to view it yet. we will need to figure that out. in the meantime, here is a screenshot for discussion. https://drive.google.com/open?id=0ByH6oExoXJ0KMWl1RG5QSnp2VFk
Status: Issue closed
username_0: @username_1 to answer your original question... i guess the decision got made for us! we'll need a way to test said layout per the launch checklist. will open a new issue re testing... |
HEXRD/hexrd | 685065338 | Title: VisibleDeprecationWarning in eta-ome map save method
Question:
username_0: I get the following warning when executeing `hexrd find-orientations`
```
/home/joel/Documents/GitHub/hexrd/hexrd/xrdutil.py:100: VisibleDeprecationWarning: Creating an ndarray from ragged nested sequences (which is a list-or-tuple of lists-or-tuples-or ndarrays with different lengths or shapes) is deprecated. If you meant to do this, you must specify 'dtype=object' when creating the ndarray
args = np.array(eta_ome.planeData.getParams())[:4]
```
which is coming from hexrd.xrdutil.<issue_closed>
Status: Issue closed |
lejard-h/chopper | 1010313515 | Title: QueryMap buildUrl
Question:
username_0: When use QueryMap to get url like example/?filter[age][to]=23&filter[age][from][14] but I get example/?filter.age.to=23&filter.age.from.14 . :( It make some problem when use some official API. How to solve this problem? |
acidanthera/bugtracker | 749611527 | Title: Black screen on boot / Some weird glitch
Question:
username_0: I will upload video of that bug. Laptop is Ice Lake (and just to be sure - my brightness is fully okay, i don't have any issue related to brightness like some guys with Ice Lake have). I checked if there are any similar problems like - the most common with Ice Lake brightness bug, but i am not sure if it's related to it too.
I will try to explain in words: after booting in verbose or not, after Apple logo with progress bar i got black screen for 10 seconds, after that login screen will appear. But one day i just clicked on NumPad and right after boot i got my screen working, but it will get again black, if won't click my NumPad, until 10 seconds or less is gone. In some rare cases i got login screen blink for a second after Apple logo, but it's dissapears and i get black screen, until 10 seconds gone.
I am not sure how to properly debug that problem, because logs of WhateverGreen seems to be okay. If you need any logs or files - tell me please, i will upload them
The video file is big, so i can upload it only to Yandex.Disk, idk if it's okay, but you can preview files there without downloading them - https://yadi.sk/i/lhkeHBw8rMkEjg
Answers:
username_0: Will upload a couple of debug logs.
[green.log](https://github.com/acidanthera/bugtracker/files/5600694/green.log)
[green2.log](https://github.com/acidanthera/bugtracker/files/5600695/green2.log)
[green3.log](https://github.com/acidanthera/bugtracker/files/5600696/green3.log)
username_1: @usr-sse2 @lvs1974 @username_2 @hieplpvip @zhen-zen @osy86 did not you have anything similar? If so, could you post the details?
@username_0, this sounds like a bug in the driver, but I am not positive we will debug Ice Lake as there is no hardware here and the problem is not widely reproducible. Sorry.
Status: Issue closed
username_2: I am aware of this issue. A short period of black screen due to eDP link training failures happens on ICL-based laptops with 4K display, while a short period of glitches occurs while users stay at the login window on laptops with 1080p display. However, I don't own ICL laptops myself, so it's hard for me to analyze these issues in depth.
username_0: I have 1080p screen and i have no glitches on login screen. Just that issue with black screen
username_2: My hypothesis is that your black screen issue is inherently the same as the glitch one, because the symptom disappears when a key is pressed but immediately reappears after the key is released.
username_0: Okay, got it
username_0: @username_1 простите за пинг, просто забыл задать вопрос по поводу этого бага в драйвере. А вообще как-то можно отследить обновляются ли дрова под графику Эплом или нет? На бетках биг сюра у меня просто был другой баг (яблоко загружалось до половины и потом все уходило в черный экран). На стабильной же изменилось - яблоко грузится полностью и потом черный экран. Писал об этом на [AppleLife](https://applelife.ru/threads/hasee-kingbook-x57s1.2945175/)
Понимаю, что немного оффтоп, не не могли бы вы глянуть вот эту [тему](https://github.com/acidanthera/bugtracker/issues/1325) тоже? Я уже все варианты перепробовал - наушники не алло все равно. (в теме на AppleLife тоже описывал). Я просто то ли косячу сам где-то, то ли это какая-то беда с Ice Lake или именно моим кодеком (что тоже возможно, конечно). Проблему описывал тоже на AppleLife в темах по VoodooHDA/и теме связанной с подготовкой своих ресурсов для AppleALC.
Извиняюсь, что на русском, просто не очень легко на английском пояснять все.
username_0: It's seems that with external screen connected that issue is fixed (both monitors will light up after 1 second).
The most interesting that in first (with external screen) log you can see "Link Training successful" for both sreens (internal and external)
But in second one - you won't find that line
It's even not starting (?) without external screen connected
Also you won't find "Begin link training", "Attempt link training", "End link training" in log without external screen connected
I will attach logs, in case it can help
[logIGFBwithEXTERNALscreenCONNECTED.log](https://github.com/acidanthera/bugtracker/files/6087020/logIGFBwithEXTERNALscreenCONNECTED.log)
[IGFBwithoutEXTERNALscreen.log](https://github.com/acidanthera/bugtracker/files/6087021/IGFBwithoutEXTERNALscreen.log)
username_3: Hello, the same situation, and I found that the mouse pointer is not displayed at this time, in the state of flower screen, if you move the mouse will also be black screen flashing. But the mouse pointer will return to normal after 10 seconds when the screen returns to normal display, I guess whether it is related to this, thanks for browsing. |
Takanashi-Rikka1412/C-Sharp-note | 897969073 | Title: 窗体初始化代码尽量放在Load事件处理函数中
Question:
username_0: 通过设计器属性窗口中选择事件Load,绑定Load事件处理函数

```C#
private void Form1_Load(object sender, EventArgs e)
{
// 初始化语句
}
```
窗体初始化代码尽量不要放在构造函数中(部分构造准备代码可放在InitializeComponent方法调用后),最好放在Load事件处理函数中,以防加载窗口时出错。 |
InfinityRaider/AgriCraft | 123106937 | Title: can't place crops on water pads
Question:
username_0: AgriCraft-1.7.10-1.4.6-pre2.jar
forge-1.7.10-10.13.4.1558-1.7.10-universal.jar
Can't place crops on water pads since updating from the previous version.
I checked the previous post and it referenced a commit but i just built off gradle and same issue.. rolling back to AgriCraft-1.7.10-1.4.5.jar the issue does not appear..
Status: Issue closed
Answers:
username_1: Thanks for reporting this, but it has already been reported: see #498 and fixed. |
alephdata/followthemoney | 352010970 | Title: Define reverse properties throughout the model
Question:
username_0: We need to go through all of the cases in which an entity points to another and define a name for the inverse of the relationship.
cf. https://github.com/alephdata/aleph/issues/419#issuecomment-412459766
Answers:
username_0: This has since been done in all relevant places, - if not, let's file as a separate fix.
Status: Issue closed
|
vuetifyjs/vuetify | 467669843 | Title: [Feature Request] v-select should display menu on focus (by tab cycle)
Question:
username_0: ### Problem to solve
The v-select should show menu on focus by tab cycle. The current behavior is to show the menu only when clicked / pressed down arrow / started typing.
This will be very useful as users tend to click on the field open the menu open unless explicitly told to use the down arrow key. In long forms this becomes a hassle. One might argue that the user can just start typing to open the menu, but in a lot of cases the options are not known to the user.
### Proposed solution
The v-select menu should open whenever it receives focus, both mouse click and tab cycle. This can be added as an option in the menu-props.
Reproduction Link
https://codepen.io/username_0/pen/RzOOVj
<!-- generated by vuetify-issue-helper. DO NOT REMOVE -->
Answers:
username_1: We try to have the inputs react as they would with their native counter parts. In light of that, this is not how selects behave.
If you have any additional questions, please reach out to us in our [Discord community](https://community.vuetifyjs.com).
Status: Issue closed
|
dotnetcore/Magicodes.IE | 1085499376 | Title: enum 枚举 继承 byte
Question:
username_0: ### Expected behaviour
hi, 我有一个导入需要导入的dto,
里面有个枚举值,当这个枚举值继承byte的时候,返回了如下的错误类型,并且没有读到excel的值,
Object of type \'System.Int32\' cannot be converted to type Genders
我想这个错误实在转换枚举的时候报错的,我可以做些什么吗?
```
/// <summary>
/// 性别
/// </summary>
public enum Genders : byte
{
/// <summary>
/// 男
/// </summary>
Man = 0,
/// <summary>
/// 女
/// </summary>
Female = 1
}
```
### I'm seeing this behaviour on
_Remove this hint: these checkboxes can be checked like this: [x]_
- [ ] Magicodes.IE.Excel
#### package versions
Example: Magicodes.IE.Excel.Abp 2.6.1
Answers:
username_0: 
username_0: 
username_1: 能否麻烦提供一个PR,年底了比较忙。 |
pingcap/tidb | 519837221 | Title: unit test fails in TestBatchResolveLocks
Question:
username_0: ## Bug Report
Please answer these questions before submitting your issue. Thanks!
1. What did you do?
If possible, provide a recipe for reproducing the error.
https://internal.pingcap.net/idc-jenkins/blue/organizations/jenkins/tidb_ghpr_integration_common_test/detail/tidb_ghpr_integration_common_test/7027/pipeline/
```
[2019-11-08T03:48:50.217Z] ----------------------------------------------------------------------
[2019-11-08T03:48:50.217Z] FAIL: lock_test.go:460: testLockSuite.TestBatchResolveLocks
[2019-11-08T03:48:50.217Z]
[2019-11-08T03:48:50.217Z] lock_test.go:467:
[2019-11-08T03:48:50.217Z] c.Assert(msBeforeLockExpired, Greater, int64(0))
[2019-11-08T03:48:50.217Z] ... compare_one int64 = -47
[2019-11-08T03:48:50.217Z] ... compare_two int64 = 0
[2019-11-08T03:48:50.217Z]
[2019-11-08T03:48:50.217Z] [2019/11/08 11:48:34.301 +08:00] [INFO] [client.go:144] ["[pd] create pd client with endpoints"] [pd-address="[127.0.0.1:2379]"]
[2019-11-08T03:48:50.217Z] [2019/11/08 11:48:34.302 +08:00] [INFO] [client.go:252] ["[pd] switch leader"] [new-leader=http://127.0.0.1:2379] [old-leader=]
[2019-11-08T03:48:50.217Z] [2019/11/08 11:48:34.302 +08:00] [INFO] [client.go:163] ["[pd] init cluster id"] [cluster-id=6756777543279814588]
[2019-11-08T03:48:50.217Z]
[2019-11-08T03:48:50.217Z] ----------------------------------------------------------------------
```
2. What did you expect to see?
3. What did you see instead?
4. What version of TiDB are you using (`tidb-server -V` or run `select tidb_version();` on TiDB)?<issue_closed>
Status: Issue closed |
Intro-to-SE-Lab-Fall-20/Group-2 | 708646995 | Title: Get inbox working
Question:
username_0: Right now messages can be sent and then checked in another inbox like gmail, but the web app inbox is static. Need to look into reading messages and displaying on web app
Status: Issue closed
Answers:
username_0: Inbox works. It loads 5 emails at a time for now. |
stoolball-england/stoolball-org-uk | 812978129 | Title: Chart a batter's form
Question:
username_0: Chart of batting form, showing all individual scores as bars and an average line.
Calculations are in Player::RecalculateStatistics() and review to see how partial data is handled, but rewrite to get them from the derived statistics table if possible.
Possible alternative charting library: https://github.com/nhn/tui.chart |
cypress-io/cypress | 583450565 | Title: Launching my application using cy.visit() ends up with the error "refused to connect"
Question:
username_0: <!-- Is this a question? Questions WILL BE CLOSED. Ask in our chat https://on.cypress.io/chat -->
### Current behavior:
Launched the application using - cy.visit('https://***.com')
The given url has few following redirection url. I am facing an error that "refused to connect" when application tries to connect to the redirection url
Note: Redirection url reach to the SSO application
### Desired behavior:
cy.visit() should take care of redirection url or any other way to achieve it
### Versions
Chrom = 80
Cypress = 3.8.3
Operation system = Windows
Status: Issue closed
Answers:
username_1: Unfortunately we have to close this issue as there is not enough information to reproduce the problem. This does not mean that your issue is not happening - it just means that we do not have a path to move forward.
- Can you explain the redirection mechanism? - What is expected to happen?
- Can you paste a screenshot of the error you are seeing or the full text of the error?
- Can you open your DevTools and see if there are any errors/warning printed there and share those?
Please comment in this issue with a reproducible example and questions answered above and we will consider reopening the issue. |
aodn/content | 325526318 | Title: Timeout downloading anmn_ts_timeseries
Question:
username_0: Refer aodn/backlog#710. Logs show that users are getting timeouts trying to download this collection when filtering by "TIME".
Looking at the definition of the supporting view/tables for this download it doesn't look like there is any supporting index for filtering on "TIME" as "TIME" for this download is the value of a function -timezone('UTC'::text, m."TIME") (functions are a black box for postgres it can't use the index on "TIME" available on the measurements table)
If we want to be able to filter on "TIME" for this download then we should add a supporting index for this column. In this case we need to add an index on the result of the function to the measurements table:
CREATE INDEX measurement_time_idx
ON anfog_ts.anmn_ts.timeseries (timezone('UTC'::text, "TIME"));
Answers:
username_1: Thanks @username_0 . I didn't realise that.
I will add that index. Can/should it be added directly to the view?
username_0: No you can't add indexes to a view. You add it to the underlying table and postgres works out it can use it.
username_0: Tested locally and it fixes the timeout we had in prod. Starts returning records immediately.
Status: Issue closed
|
AnnieBrighton/asmhentai | 608609269 | Title: No connection adapters were found for ''https://asmhentai.com/gallery/274028/''
Question:
username_0: `asmhentai-master>asmhentai.py 'https://asmhentai.com/gallery/274028/'
Traceback (most recent call last):
File "D:\asmhentai-master\asmhentai.py", line 189, in <module>
download_pics(url)
File "D:\asmhentai-master\asmhentai.py", line 128, in download_pics
index = lxml.etree.HTML(req.get(url).text)
File "D:\ProgramData\Anaconda3\lib\site-packages\requests\sessions.py", line 521, in get
return self.request('GET', url, **kwargs)
File "D:\ProgramData\Anaconda3\lib\site-packages\requests\sessions.py", line 508, in request
resp = self.send(prep, **send_kwargs)
File "D:\ProgramData\Anaconda3\lib\site-packages\requests\sessions.py", line 612, in send
adapter = self.get_adapter(url=request.url)
File "D:\ProgramData\Anaconda3\lib\site-packages\requests\sessions.py", line 703, in get_adapter
raise InvalidSchema("No connection adapters were found for '%s'" % url)
requests.exceptions.InvalidSchema: No connection adapters were found for ''https://asmhentai.com/gallery/274028/''
使ってみたらこういうのを出ました。何かのパッケージが足りないでしょうか?`
Answers:
username_0: あしたLinuxでやってみます
username_1: https://asmhentai.com/g/274028/ の誤りでは?
Status: Issue closed
username_0: Linuxでうまくやりました。
ありがとうございます。
Windows環境で、また調整してみます |
googlemaps/google-maps-services-js | 1004354153 | Title: Error: Unable to resolve module crypto
Question:
username_0: After upgrading from `"@googlemaps/google-maps-services-js": "3.1.16"` -> `"@googlemaps/google-maps-services-js": "3.2.0"` started getting this error:

Using `"react-native": "0.65.1"`.
Tried [this](https://github.com/brix/crypto-js/pull/259#issuecomment-799973769), but it didn't help, other solutions involve deprecated packages and for that reason, I won't try them, for now downgrading to `3.1.16` works fine for me.
Status: Issue closed
Answers:
username_1: @username_0 let me know if this works for you!
username_0: Tried `3.2.2` today, but no luck:

Looking a bit deeper, the `crypto` package is empty with a deprecation warning:

Tried [rn-nodeify workaround](https://www.npmjs.com/package/rn-nodeify) with the latest `3.2.2`, seems to be working (didn't test it that much, but at least the application starts without errors). Of course, this is a very hacky way, I will try to look for a cleaner solution if it exists, but it will suffice for now.
It would be really cool to see this package use `crypto-js` instead of the core node module - `crypto`, for all the people who use `google-maps-services-js` with client applications (like react-native or other web-applications). All things considered I am pretty sure this is not going to happen, but at least you could add this workaround to the documentation for others to see. |
HIT-SCIR/ltp | 949361033 | Title: 依存句法问题
Question:
username_0: 最开始我使用的small模型,然后有不少句子,依存句法树存在问题
我换成base模型后,还是有问题,具体问题如下(基于base模型):
eg:等下去干嘛你
结果:
等 下去 干嘛 你
v v v r
0 1 1 0
HED|CMP|COO|HED
即,同一句话里有两个HED,这在3.0时是没有这个问题的。请教一下,是我哪里参数设置错了,导致依存树变成了依存图吗?
Answers:
username_1: 试试把 fast 参数改为 False
```
dep = ltp.dep(hidden, fast=False)
```
username_0: @username_1 谢谢,是这个问题,改了下参数就好了
Status: Issue closed
|
terminusdb/terminusdb | 985170695 | Title: return empty array on document retrieval when there's no elements
Question:
username_0: when a document has a property which is an array, and that array is empty, the returned document will have that property missing.
It should instead return an empty list.
Answers:
username_1: Will test with Python client when fixed
username_2: to replicate:
#!/bin/bash
# Create the database.
`
xh 'http://admin:root@localhost:6363/api/db/admin/test497' <<EOF
{"label":"l","comment":"c"}
EOF
`
# Create a type that contains an array.
`
curl -X POST -H "Content-Type: application/json" -u "admin:root" "http://localhost:6363/api/document/admin/test497?graph_type=schema&author=me&message=me" --data-binary '{"@id": "ArrayTestDoc", "@type": "Class", "array": {"@type": "Array", "@class": "xsd:string"}}'
`
# Create a document in ArrayTestDoc.
`curl -X POST -H "Content-Type: application/json" -u "admin:root" "http://localhost:6363/api/document/admin/test497?graph_type=instance&author=me&message=me" --data-binary '{"@id": "ArrayTestDoc/IdForArrayDoc", "@type": "ArrayTestDoc", "array": ["array1", "array2", "array3"]}'`
# Insert a document with an empty field array.
`curl -X POST -H "Content-Type: application/json" -u "admin:root" "http://localhost:6363/api/document/admin/test497?graph_type=instance&author=me&message=me" --data-binary '{"@id": "ArrayTestDoc/IdForArrayDocEmpty", "@type": "ArrayTestDoc", "array": []}'
`
#Read the document with the field array.
`curl -X GET -H "Content-Type: application/json" -u "admin:root" "http://localhost:6363/api/document/admin/test497?graph_type=instance"`
Output:
```
{"@id":"ArrayTestDoc/IdForArrayDoc", "@type":"ArrayTestDoc", "array": ["array1", "array2", "array3" ]}
{"@id":"ArrayTestDoc/IdForArrayDocEmpty", "@type":"ArrayTestDoc"}
```
username_2: Accepted this as the default behaviour for now. We might re-visit this later.
Status: Issue closed
|
nitayneeman/schematics-utilities | 583094024 | Title: Cannot find module 'schematics-utilities' when using ng add
Question:
username_0: I've recently added `ng add` support to `angular-datatables` project and my PR for it had been merged recently but I'm getting the following error when trying to install the package to clean Angular project.
**Error:**
`An unhandled exception occurred: Cannot find module 'schematics-utilities'`
**Stack Trace:**
```
[error] Error: Cannot find module 'schematics-utilities'
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:636:15)
at Function.Module._load (internal/modules/cjs/loader.js:562:25)
at Module.require (internal/modules/cjs/loader.js:692:17)
at require (internal/modules/cjs/helpers.js:25:18)
at Object.<anonymous> (/home/suryateja/myproject/node_modules/angular-datatables/schematics/src/ng-add/index.js:4:32)
at Module._compile (internal/modules/cjs/loader.js:778:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:789:10)
at Module.load (internal/modules/cjs/loader.js:653:32)
at tryModuleLoad (internal/modules/cjs/loader.js:593:12)
at Function.Module._load (internal/modules/cjs/loader.js:585:3)
at Module.require (internal/modules/cjs/loader.js:692:17)
at require (internal/modules/cjs/helpers.js:25:18)
at new ExportStringRef (/home/suryateja/myproject/node_modules/@angular-devkit/schematics/tools/export-ref.js:18:25)
at NodeModulesEngineHost._resolveReferenceString (/home/suryateja/myproject/node_modules/@angular-devkit/schematics/tools/node-module-engine-host.js:94:21)
at NodeModulesEngineHost.createSchematicDescription (/home/suryateja/myproject/node_modules/@angular-devkit/schematics/tools/file-system-engine-host-base.js:179:34)
at SchematicEngine.createSchematic (/home/suryateja/myproject/node_modules/@angular-devkit/schematics/src/engine/engine.js:219:38)
```
**Steps to Reproduce:**
1. Create a empty Angular project:
`ng new myproject`
2. Run the ng add command:
```
cd myproject
ng add angular-datatables
```
Answers:
username_1: Hey,
This library is merely a collection of utilities for working with Schematics, nothing more. You apparently need to bundle the `dist` files of your package in a consumable way (and `schematics-utilities` provides you some handy functions that might assist). This means, you should publish your package with sort of `schematics` directory.
Actually I wrote a post that covers this:
https://username_1.com/posts/making-an-addable-angular-package-using-schematics
Also, you can check out the following project - which demonstrates a concrete package with `ng-add`:
https://github.com/username_1/angular-addable-package-example
username_0: Hey!
I used the very same article as reference to create the ng-add schematics to `angular-datatables` and I think I understand the problem now.
In your post, you're using webpack to "bundle" all the necessary code into `schematics/ng-add/index.js` in such a way that we wouldn't need `schematics-utilities` package.
Any chance this could be done without introducing `webpack`? The package maintainer explictly mentions not including external tools in project README and I wish to respect that.
username_2: Hi there! Regretfully, I have the same problem. Has anyone resolved this?
username_0: A workaround for now is to install `schematics-utilities` using:
`npm i -D schematics-utilities`
Adter job's done, remove the package.
username_0: I'm closing this issue as we moved away from using this package and implementing the necessary minimal functionality based on `ngx-bootstrap` and we do not face this issue anymore.
Status: Issue closed
|
executablebooks/markdown-it-py | 1147339580 | Title: Gitpod launch failed due to missing requirement in python-attrs [cross-posting reported error]
Question:
username_0: ### Describe the bug
### Problem:
I tried launching this repo via Gitpod: it failed on account of `attr` not being installed.
### Most likely cause:
The `attr` lib is not listed as a requirement for `python-attrs`.
### Reason for posting here:
This issue post is to:
- let you know that I have posted [python-attrs issue 923](https://github.com/python-attrs/attrs/issues/923) to let them know.
- let them know at least one consumer is waiting for them (after I obtain this issue number).
### Reproduce the bug
Launch the repo via Gitpod.
### List your environment
_No response_
Answers:
username_0: This is not an issue with `attrs`; amended issue title accordingly.
Reported failed launch as [gitpod issue 8423](https://github.com/gitpod-io/gitpod/issues/8423). |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.