repo
stringlengths
7
67
org
stringlengths
2
32
issue_id
int64
780k
941M
issue_number
int64
1
134k
pull_request
dict
events
list
user_count
int64
1
77
event_count
int64
1
192
text_size
int64
0
329k
bot_issue
bool
1 class
modified_by_bot
bool
2 classes
text_size_no_bots
int64
0
279k
modified_usernames
bool
2 classes
SpongePowered/SpongeAPI
SpongePowered
179,404,528
1,370
{ "number": 1370, "repo": "SpongeAPI", "user_login": "SpongePowered" }
[ { "action": "opened", "author": "Deamon5550", "comment_id": null, "datetime": 1474956306000, "masked_author": "username_0", "text": "Any event now has two objects attached to it, a cause and a context. The cause contains\r\nan ordered stack of objects which are the direct cause of the event. The context contains\r\nobjects that are tangentially related to the event being thrown that the thrower of the\r\nevent thinks would be useful for proper handling of the event.\r\n\r\nIn the cause only the order matters, in the context only the names matter. A cause has\r\nno names and a context has no ordering.\r\n\r\nPrevious the values of these two objects were both present in the cause which can cause\r\nsome confusion and misaction. Forexample you could attach a player to an event to which\r\nthere are only slightly related to but if no other player is in the cause before them then\r\ncause.first(Player.class) will still return that player even though there are by no means\r\nthe cause of the event.\r\n\r\n![Dont panic](https://i.imgflip.com/1bc26q.jpg)", "title": "Split Cause and Context", "type": "issue" }, { "action": "created", "author": "Zidane", "comment_id": 249891457, "datetime": 1474988502000, "masked_author": "username_1", "text": "@username_0 \r\n\r\nIf we stick to our guns with CauseStacks, should we toss out wrapper causes entirely?", "title": null, "type": "comment" }, { "action": "created", "author": "Deamon5550", "comment_id": 249922425, "datetime": 1474994372000, "masked_author": "username_0", "text": "@username_1 Yeah the purpose behind the wrapper causes was to attach for example with the `EntitySpawnCause` you and the entity that causes the spawn and the spawn type. Under the new system though the spawn type would be part of the context and the entity would simply go in the cause stack.", "title": null, "type": "comment" }, { "action": "created", "author": "Zidane", "comment_id": 249942001, "datetime": 1474998382000, "masked_author": "username_1", "text": "@username_0 \r\n\r\nThinking further, are we going to stop duplicate classes existing in a Cause stack? So, for example, two Players would never exist in a Cause.\r\n\r\nIf not, without naming how would a developer ever know?", "title": null, "type": "comment" }, { "action": "created", "author": "JBYoshi", "comment_id": 261968147, "datetime": 1479741908000, "masked_author": "username_2", "text": "What's the status on this?", "title": null, "type": "comment" }, { "action": "created", "author": "Deamon5550", "comment_id": 279940633, "datetime": 1487145134000, "masked_author": "username_0", "text": "I consider this api change in pretty good shape and the implementation of it compiles now. While there is still testing on the implementation to be done this PR is finished so now is the time for more comments.", "title": null, "type": "comment" }, { "action": "created", "author": "varrix", "comment_id": 317064047, "datetime": 1500658438000, "masked_author": "username_3", "text": "Just caught up with SOS that broke down how this works on the usage end, really great work everyone! :fireworks:", "title": null, "type": "comment" }, { "action": "created", "author": "Faithcaio", "comment_id": 317241528, "datetime": 1500803524000, "masked_author": "username_4", "text": "Any reason why there is no method to get all ContextKeys present in an EventContext?", "title": null, "type": "comment" }, { "action": "created", "author": "Deamon5550", "comment_id": 317241758, "datetime": 1500803778000, "masked_author": "username_0", "text": "@username_4 [there is](https://github.com/SpongePowered/SpongeAPI/pull/1370/files#diff-fbf61a811a6be0f7c3ed1b2b3fc7d79aR122)", "title": null, "type": "comment" }, { "action": "created", "author": "TheRaspPie", "comment_id": 317252276, "datetime": 1500815607000, "masked_author": "username_5", "text": "Could you make EventContext implement the read-only part of the java.util.Map interface and Cause the Collection interface?\r\nIt would be so much easier to work with APIs that work with generic interfaces.", "title": null, "type": "comment" }, { "action": "created", "author": "Deamon5550", "comment_id": 318235236, "datetime": 1501120390000, "masked_author": "username_0", "text": "@username_5 That doesn't work actually as the get method has to return an `Optional` and I don't want to change it. I will add more methods that emulate those in the `Map` interface as well as rename the `keys` method to `keySet` for consistency.", "title": null, "type": "comment" }, { "action": "created", "author": "liach", "comment_id": 328302161, "datetime": 1504989612000, "masked_author": "username_6", "text": "finally!", "title": null, "type": "comment" } ]
7
12
2,520
false
false
2,520
true
Microsoft/vscode-go
Microsoft
209,137,152
809
null
[ { "action": "opened", "author": "idanya", "comment_id": null, "datetime": 1487681694000, "masked_author": "username_0", "text": "When I set a breakpoint anywhere in the code the debugger stops, from there if I try to step over or into it all breaks. This is the log stepping over produces:\r\n\r\n```\r\n2017/02/21 14:46:21 debugger.go:412: continuing\r\n2017/02/21 14:46:31 debugger.go:432: nexting\r\nunexpected fault address 0x6e520054b00\r\nfatal error: fault\r\n2017/02/21 14:46:34 debugger.go:412: continuing\r\n[signal SIGSEGV: segmentation violation code=0x1 addr=0x6e520054b00 pc=0x125ece9]\r\n\r\n```\r\n\r\nWhen paused in a BP I can see the stack, view variables, watch and everything looks good. I can even continue to the next BP using \"continue\" (F5). Stepping over or into the command is the only thing that breaks the session.\r\n\r\nDelve 0.12.1\r\nVSCode 1.9.1\r\nGo Extension 0.6.53", "title": "Debugging stops at breakpoints but can't step over/into", "type": "issue" }, { "action": "created", "author": "ramya-rao-a", "comment_id": 283197146, "datetime": 1488325169000, "masked_author": "username_1", "text": "@username_0 Which version of Go are you using and on what platform?\r\n\r\nI have been seeing issues with Go 1.8 in Mac, but previous version of Go were fine on my Mac\r\nGo 1.8 is also working fine in Windows", "title": null, "type": "comment" }, { "action": "created", "author": "idanya", "comment_id": 283281171, "datetime": 1488358355000, "masked_author": "username_0", "text": "@username_1 Indeed I am using Go 1.8 on Mac.", "title": null, "type": "comment" }, { "action": "created", "author": "ramya-rao-a", "comment_id": 283427533, "datetime": 1488393161000, "masked_author": "username_1", "text": "Can you try `dlv` from the command line and see if you can step in/over/out successfully?", "title": null, "type": "comment" }, { "action": "created", "author": "fasa123", "comment_id": 283877375, "datetime": 1488522784000, "masked_author": "username_2", "text": "Exact same problem here for every go file. Also running the same versions (on Linux). Delve works fine everywhere else (manually and in other editors)", "title": null, "type": "comment" }, { "action": "created", "author": "nicksnyder", "comment_id": 285196936, "datetime": 1489013669000, "masked_author": "username_3", "text": "Potentially related https://github.com/derekparker/delve/issues/761", "title": null, "type": "comment" }, { "action": "created", "author": "josiahbgrace", "comment_id": 286605755, "datetime": 1489538219000, "masked_author": "username_4", "text": "Hi, I fixed this by installing the head version of delve.\r\nbrew install --HEAD go-delve/delve/delve", "title": null, "type": "comment" }, { "action": "created", "author": "kalbasit", "comment_id": 306636592, "datetime": 1496788434000, "masked_author": "username_5", "text": "Should this be closed?", "title": null, "type": "comment" }, { "action": "created", "author": "ramya-rao-a", "comment_id": 306835130, "datetime": 1496850062000, "masked_author": "username_1", "text": "Yes, we should. Thanks @username_5 \r\n\r\n@username_0 Get the latest delve and the issue should be fixed.", "title": null, "type": "comment" }, { "action": "closed", "author": "ramya-rao-a", "comment_id": null, "datetime": 1496850062000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
6
10
1,508
false
false
1,508
true
hasadna/anyway
hasadna
85,736,456
302
null
[ { "action": "opened", "author": "galraij", "comment_id": null, "datetime": 1433588533000, "masked_author": "username_0", "text": "info about the involved vehicle types in an accident is available at the: H********VehData.csv file, and should be connected with the specific accident using the identical ID.", "title": "Add the \"vehicles\" data to the accident marker", "type": "issue" }, { "action": "closed", "author": "omerxx", "comment_id": null, "datetime": 1435701352000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
175
false
false
175
false
trentrichardson/jQuery-Timepicker-Addon
null
118,866,926
848
null
[ { "action": "opened", "author": "brettwebster", "comment_id": null, "datetime": 1448467135000, "masked_author": "username_0", "text": "v1.6.1\r\n* Open a picker\r\n* then click into the textbox and delete the hour\r\n* notice that the textbox no longer has focus preventing you from typing a new value from hour without first clicking into the textbox.\r\n\r\nhttp://jsfiddle.net/username_0/L3BNw/60/\r\n\r\nfocus is handled differently in v1.3.1\r\nhttp://jsfiddle.net/username_0/L3BNw/", "title": "Input loses focus when typing with picker open", "type": "issue" }, { "action": "created", "author": "matjazpotocnik", "comment_id": 164020296, "datetime": 1449860720000, "masked_author": "username_1", "text": "Confirming.", "title": null, "type": "comment" }, { "action": "created", "author": "RipAbyss", "comment_id": 170860480, "datetime": 1452593019000, "masked_author": "username_2", "text": "To overcome this issue, I simply commented one line in jquery-ui-timepicker-addon.js :\r\n\r\n**this.$timeObj[0].setSelectionRange(sPos, ePos)** (L893)\r\n\r\nIf it helps...", "title": null, "type": "comment" }, { "action": "created", "author": "matjazpotocnik", "comment_id": 170921041, "datetime": 1452607483000, "masked_author": "username_1", "text": "Yes, it helps, thank you!", "title": null, "type": "comment" }, { "action": "created", "author": "kindkaktus", "comment_id": 173122155, "datetime": 1453276574000, "masked_author": "username_3", "text": "+1\r\n\r\nCommenting out setSelectionRange also fixes the following issues for me:\r\n1. \"Unspecified error\" in IE when changing time in date/time ranges (reproduced in IE11)\r\n2. Date time picker steals the focus from \"autofocus\" input on the page load", "title": null, "type": "comment" }, { "action": "created", "author": "AdamWillden", "comment_id": 187158510, "datetime": 1456145590000, "masked_author": "username_4", "text": "+1", "title": null, "type": "comment" }, { "action": "created", "author": "Krokador", "comment_id": 193280628, "datetime": 1457362325000, "masked_author": "username_5", "text": "+1 here too. It was messing with the input mask as well in a really annoying way.", "title": null, "type": "comment" }, { "action": "created", "author": "kuba1999", "comment_id": 195090366, "datetime": 1457650956000, "masked_author": "username_6", "text": "+1 helped me too. Thanks", "title": null, "type": "comment" }, { "action": "created", "author": "ahammani", "comment_id": 217436291, "datetime": 1462540494000, "masked_author": "username_7", "text": "+1 Thanks a lot.", "title": null, "type": "comment" }, { "action": "created", "author": "charlex", "comment_id": 227327192, "datetime": 1466477558000, "masked_author": "username_8", "text": "+1 +1", "title": null, "type": "comment" }, { "action": "created", "author": "luisjuniorj", "comment_id": 227511278, "datetime": 1466529918000, "masked_author": "username_9", "text": "+1", "title": null, "type": "comment" }, { "action": "created", "author": "tstackhouse", "comment_id": 230600755, "datetime": 1467752228000, "masked_author": "username_10", "text": "+1", "title": null, "type": "comment" }, { "action": "created", "author": "kakutuzov", "comment_id": 244390816, "datetime": 1472826571000, "masked_author": "username_11", "text": "+1", "title": null, "type": "comment" } ]
12
13
921
false
false
921
true
bloomberg/blpapi-http
bloomberg
59,715,188
111
{ "number": 111, "repo": "blpapi-http", "user_login": "bloomberg" }
[ { "action": "opened", "author": "ericlu88", "comment_id": null, "datetime": 1425420996000, "masked_author": "username_0", "text": "Noticed a small issue while testing `websocket` that the object being sent over the wire is wrapped in a redundant array. \r\nThis is due to the generated js for `...args` syntax.\r\nSince we are not using anywhere else for multiple arguments, remove the unnecessary argument array.", "title": "Remove argument array in websocket", "type": "issue" }, { "action": "created", "author": "yupinghu", "comment_id": 77060457, "datetime": 1425424378000, "masked_author": "username_1", "text": "LGTM", "title": null, "type": "comment" }, { "action": "created", "author": "ericvw", "comment_id": 77064043, "datetime": 1425425971000, "masked_author": "username_2", "text": "lgtm", "title": null, "type": "comment" } ]
3
3
286
false
false
286
false
gabceb/atom-web-view
null
81,739,049
31
null
[ { "action": "opened", "author": "ryoppippi", "comment_id": null, "datetime": 1432784067000, "masked_author": "username_0", "text": "Call Workspace::addOpener instead\r\n```\r\nWorkspace.registerOpener (/Applications/Atom.app/Contents/Resources/app.asar/src/workspace.js:1013:12)\r\nObject.activate (/Users/Ryotaro/.atom/packages/web-view/lib/web.coffee:9:19)\r\nPackage.activateNow (/Applications/Atom.app/Contents/Resources/app.asar/src/package.js:238:19)\r\n<unknown> (/Applications/Atom.app/Contents/Resources/app.asar/src/package.js:219:30)\r\nPackage.measure (/Applications/Atom.app/Contents/Resources/app.asar/src/package.js:163:15)\r\nPackage.activate (/Applications/Atom.app/Contents/Resources/app.asar/src/package.js:211:14)\r\n```", "title": "Workspace.registerOpener is deprecated.", "type": "issue" } ]
1
1
592
false
false
592
false
namsral/multipass
null
184,463,007
14
null
[ { "action": "opened", "author": "0xbaadf00d", "comment_id": null, "datetime": 1477049154000, "masked_author": "username_0", "text": "Hi, \r\n\r\nit would be nice to have ability to customize default html view (eg : title -> rename Multipass to something else) or to use a completely different template (like for the email).\r\n\r\n\r\nThanks", "title": "Add support to custom HTML page template", "type": "issue" }, { "action": "created", "author": "ntodd", "comment_id": 287947875, "datetime": 1490059184000, "masked_author": "username_1", "text": "Also, while \"handle\" makes sense as a generic identity attribute, I believe it is confusing for users as it means nothing without further clarification (I have to tell people \"handle\" means \"email\"). Considering that the default \"handle\" is email, maybe the template should at least be configurable.", "title": null, "type": "comment" } ]
2
2
498
false
false
498
false
KnpLabs/KnpMenuBundle
KnpLabs
60,196,804
262
null
[ { "action": "opened", "author": "h4cc", "comment_id": null, "datetime": 1425715762000, "masked_author": "username_0", "text": "I am using Twitter Bootstrap and needed to change the \"currentClass\" to \"active\" for my whole site and found this quite easy way to do so:\r\n\r\n```yaml\r\n# config.yml\r\n\r\nparameters:\r\n knp_menu.renderer.twig.options:\r\n currentClass: 'active'\r\n```\r\n\r\nI think it would be cool to have such a info present in the documentation.", "title": "Add Documentation about default twig renderer options", "type": "issue" }, { "action": "created", "author": "ajanssens", "comment_id": 81983293, "datetime": 1426547675000, "masked_author": "username_1", "text": "Thanks. You should create a pull request to add this. Very helpful !", "title": null, "type": "comment" }, { "action": "created", "author": "WouterJ", "comment_id": 135665114, "datetime": 1440748404000, "masked_author": "username_2", "text": "If this is really going to be a documented feature, it should be included in the bundle's config & set by the extension imo. You should never have to change bundle parameters", "title": null, "type": "comment" }, { "action": "created", "author": "dbu", "comment_id": 135666601, "datetime": 1440749047000, "masked_author": "username_3", "text": "i think having such css classes in configuration would indeed be a good idea. css frameworks tend to need a specific class for that, not easy to remap on css side afaik.", "title": null, "type": "comment" }, { "action": "created", "author": "h4cc", "comment_id": 135667573, "datetime": 1440749444000, "masked_author": "username_0", "text": "I dont need that value to be changes as container parameter.\r\nMy problem was that _simply_ changeing that common class was very hard to find.", "title": null, "type": "comment" }, { "action": "created", "author": "dbu", "comment_id": 135669548, "datetime": 1440749934000, "masked_author": "username_3", "text": "the problem with handling that over such a parameter is that its very implicit. it does not show when you dump the configuration options, and if you mistype it, you never get any notification of invalid configuration, but it simply does not work.", "title": null, "type": "comment" }, { "action": "created", "author": "xDaizu", "comment_id": 165500164, "datetime": 1450369449000, "masked_author": "username_4", "text": "@username_3 I don't think such a feature being good or bad design is the question at hand. That would be a whole other interesting issue to debate. \r\n\r\nI think that the idea of this \"issue\" is that, if exists, it should be documented. We have some serious \"documentation lacking\" problems in this bundle, because the KnpMenu documentation doesn't cover tons of Symfony-specific use cases, and the \"Symfony documentation\" link is very outdated/brief.\r\n\r\nSo +1. **+1 to document every configuration option available.**", "title": null, "type": "comment" }, { "action": "created", "author": "dbu", "comment_id": 165504105, "datetime": 1450370292000, "masked_author": "username_3", "text": "i am not saying its wrong to document this. i am just saying that even better would be to build a proper solution that is safe against typo and will show up in the config dump console command for example. right now you need to dig in the code to find that parameter could exist, with the fix you could look at the Configuration class.\r\n\r\nbut for either, go for it, send your knights to do pull requests to improve the documentation and the bundle ;-)", "title": null, "type": "comment" }, { "action": "created", "author": "xDaizu", "comment_id": 165520325, "datetime": 1450372978000, "masked_author": "username_4", "text": "@username_3 I agree that would be better. Could we have that? Are your Coding Knights free or do we have to make do with what we have? What are the views of the bundle designers about this? Do we put our effort into it? Or do we document what we currently have?\r\n\r\nAs for *my* knights, by now they're busy retrieving information and building the Compendium of many Languages and keeping the supply line of the Caffeinated Substance of Many Colours, but as soon as they finish....", "title": null, "type": "comment" } ]
5
9
2,559
false
false
2,559
true
getnikola/nikola
getnikola
30,470,907
1,186
null
[ { "action": "opened", "author": "asmeurer", "comment_id": null, "datetime": 1396203289000, "masked_author": "username_0", "text": "In my Wordpress block, I made good use of their code blocks, which are delimited like \r\n\r\n```\r\n[code]\r\ncode here\r\n[/code]\r\n```\r\n\r\nor, to use a language\r\n\r\n```\r\n[code language=\"py\"]\r\npython_code_here\r\n[/code]\r\n```\r\n\r\n(I think `language` can also be spelled just `lang`). \r\n\r\nIf the wordpress importer uses Markdown, it could just translate `[code]` to \\`\\`\\`, `[code lang='x']` to \\`\\`\\`x, and enable fenced code blocks.", "title": "Wordpress importer doesn't translate [code]", "type": "issue" }, { "action": "closed", "author": "ralsina", "comment_id": null, "datetime": 1432328867000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
419
false
false
419
false
donejs/bit-docs-donejs-theme
donejs
225,352,691
52
null
[ { "action": "opened", "author": "chasenlehara", "comment_id": null, "datetime": 1493584635000, "masked_author": "username_0", "text": "__Steps to reproduce:__\r\n\r\n1. Go to the [community page](https://donejs.com/community.html).\r\n2. Make your browser as wide as depicted in the gif below.\r\n3. Click on “Upcoming Events & Meetups”\r\n\r\n__Expected results:__\r\n\r\nThe arrow coming from the in-page navigation would be inside the blue content area.\r\n\r\n__Actual results:__\r\n\r\nThe page isn’t scrolled down far enough.\r\n\r\n![scroll mobile](https://cloud.githubusercontent.com/assets/10070176/25567768/0efb2b28-2daa-11e7-9f32-830349cc53e3.gif)\r\n\r\n__Environment:__\r\n\r\n| Software | Version\r\n| ------------------ | -------\r\n| Browser | Safari 10.1\r\n| Operating system | macOS 10.12.4", "title": "Scroll position wrong on mobile", "type": "issue" } ]
1
1
663
false
false
663
false
RobotiumTech/robotium
RobotiumTech
101,945,417
297
null
[ { "action": "opened", "author": "renas", "comment_id": null, "datetime": 1440003208000, "masked_author": "username_0", "text": "_From [swatidh...@gmail.com](https://code.google.com/u/112872016745826418992/) on January 25, 2012 17:58:26_\n\nWhat steps will reproduce the problem? 2012-01-25 16:22:49 - Hp_Play_2.3] Installing XXX_Play_2.3.apk...\r\n\r\nIts Projec name.apk. What is the expected output? What do you see instead? Not sure whr it is getting this info as my file name is xxx-debug-52943.apk What version of the product are you using? On what operating system? Andriod 2.3 Please provide any additional information below. below is my console .\r\n \r\nemulator: WARNING: Unable to create sensors port: Unknown error\r\nUploading XXX_Play_2.3.apk onto device 'emulator-5554'\n\n_Original issue: http://code.google.com/p/robotium/issues/detail?id=218_", "title": "Console is misleading not taking right Apk", "type": "issue" }, { "action": "created", "author": "renas", "comment_id": 132693215, "datetime": 1440003209000, "masked_author": "username_0", "text": "_From [username_0r...@gmail.com](https://code.google.com/u/108052454046732184536/) on January 26, 2012 04:09:43_\n\nThis tracker is only for Robotium issues.\n\n**Status:** Invalid", "title": null, "type": "comment" }, { "action": "created", "author": "renas", "comment_id": 132693260, "datetime": 1440003215000, "masked_author": "username_0", "text": "_From [swatidh...@gmail.com](https://code.google.com/u/112872016745826418992/) on January 26, 2012 11:06:16_\n\nI m using Robotium to test my APK .", "title": null, "type": "comment" }, { "action": "closed", "author": "renas", "comment_id": null, "datetime": 1440003220000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
4
1,034
false
false
1,034
true
fanweiya/blog
null
157,713,461
175
null
[ { "action": "opened", "author": "fanweiya", "comment_id": null, "datetime": 1464711803000, "masked_author": "username_0", "text": "<img src=\"http://ift.tt/1sIRYxQ\"><br><b>Great Barrier Reef Near Whitsunday Islands</b><br>\nAn astronaut aboard the International Space Station used a powerful lens to photograph these three reefs in Australia&rsquo;s Great Barrier Reef on Oct. 12, 2015. Reefs are easy to spot from space because the iridescent blues of shallow lagoons contrast sharply with the dark blues of deep water.<br><br>", "title": "Great Barrier Reef Near Whitsunday Islands", "type": "issue" } ]
1
1
395
false
false
395
false
mapbox/cfn-config
mapbox
122,820,136
82
{ "number": 82, "repo": "cfn-config", "user_login": "mapbox" }
[ { "action": "opened", "author": "zmully", "comment_id": null, "datetime": 1450385274000, "masked_author": "username_0", "text": "When you've got parameters with matching, valid null values, compareParameters generates a lot of noise even though the parameter values are not changing:\r\n```\r\nRemove parameter EuWest1Info with value \r\nRemove parameter ApSoutheast1Info with value \r\nRemove parameter ApNortheast1Info with value \r\nRemove parameter UsWest1Info with value \r\nRemove parameter SaEast1Info with value \r\nRemove parameter ApSoutheast2Info with value \r\nRemove parameter EuCentral1Info with value \r\nAdd parameter UsWest1Info with value \r\nAdd parameter EuCentral1Info with value \r\nAdd parameter EuWest1Info with value \r\nAdd parameter ApNortheast1Info with value \r\nAdd parameter ApSoutheast1Info with value \r\nAdd parameter ApSoutheast2Info with value \r\nAdd parameter SaEast1Info with value \r\n```\r\n\r\n@ianshward, not sure if there is someone else who'd be better to review this.", "title": "Added logic to handle comparison of parameters with valid null values", "type": "issue" }, { "action": "created", "author": "yhahn", "comment_id": 169833760, "datetime": 1452207502000, "masked_author": "username_1", "text": "@username_0 I added unit tests for this scenario to prove your code works :+1: will merge + include in next release.", "title": null, "type": "comment" } ]
2
2
960
false
false
960
true
certbot/certbot
certbot
224,939,469
4,563
null
[ { "action": "opened", "author": "pde", "comment_id": null, "datetime": 1493335312000, "masked_author": "username_0", "text": "[This Paper](https://arxiv.org/pdf/1403.0297.pdf) offers a promising algorithm for protecting HTTPS against traffic analysis attacks. It would be an interesting research project to figure out whether we could implement this in existing Nginx or Apache configuration files, and offer it (or if not, what it would take to offer it to our users).", "title": "Offer Burst protection against traffic analysis", "type": "issue" } ]
2
3
670
false
true
344
false
mitmproxy/mitmproxy
mitmproxy
233,263,377
2,369
{ "number": 2369, "repo": "mitmproxy", "user_login": "mitmproxy" }
[ { "action": "opened", "author": "ujjwal96", "comment_id": null, "datetime": 1496428134000, "masked_author": "username_0", "text": "* [x] http1\r\n* [x] http1 tests\r\n* [x] http2\r\n* [x] http2 tests\r\n* [x] websockets \r\n* [ ] websockets tests\r\n\r\nref: https://github.com/mitmproxy/mitmproxy/issues/1764", "title": "[WIP] Request streaming", "type": "issue" }, { "action": "created", "author": "Kriechi", "comment_id": 310048790, "datetime": 1498044111000, "masked_author": "username_1", "text": "@mitmproxy/devs this is ready for review!\r\nIMO this is ready to merge, but I might have missed something important.", "title": null, "type": "comment" }, { "action": "created", "author": "Kriechi", "comment_id": 312507286, "datetime": 1499018700000, "masked_author": "username_1", "text": "@mhils the HTTP/1 retry issue should be sufficiently resolved. Do we get a final seal of approval?", "title": null, "type": "comment" } ]
2
3
378
false
false
378
false
luberda-molinet/FFImageLoading
luberda-molinet
167,519,264
273
null
[ { "action": "opened", "author": "dominik-weber", "comment_id": null, "datetime": 1469507616000, "masked_author": "username_0", "text": "When quickly adding/removing images the app crashes with a NullReference exception:\r\n\r\n```\r\n at FFImageLoading.Forms.WinUWP.CachedImageRenderer.ImageLoadingFinished(CachedImage element)\r\n at FFImageLoading.Forms.WinUWP.CachedImageRenderer.<>c__DisplayClass9_0.<UpdateSource>b__0(IScheduledWork work)\r\n at FFImageLoading.Work.ImageLoaderTaskBase.<>c__DisplayClass51_3.<ConfigureParameters>b__5()\r\n at FFImageLoading.Helpers.MainThreadDispatcher.<>c__DisplayClass3_0.<Post>b__0()\r\n--- End of stack trace from previous location where exception was thrown ---\r\n at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)\r\n at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)\r\n at FFImageLoading.Helpers.MainThreadDispatcher.<Post>d__3.MoveNext()\r\n```\r\n\r\nThe problem here might be that the view is already removed from the page once the image is loaded.\r\nYou can reproduce the issue with this code:\r\n\r\n```\r\n public App()\r\n {\r\n var page = new ContentPage();\r\n\r\n MainPage = page;\r\n\r\n Device.StartTimer(TimeSpan.FromSeconds(0.1), () =>\r\n {\r\n page.Content = new FFImageLoading.Forms.CachedImage() { Source = \"https://blog.optimizely.de/files/2014/01/test.jpg\" };\r\n return true;\r\n });\r\n }\r\n```\r\n\r\nThis code works fine on ios.", "title": "Xamarin Forms UWP app crashes when quickly adding/removing CachedImage views", "type": "issue" }, { "action": "created", "author": "daniel-luberda", "comment_id": 238458282, "datetime": 1470721010000, "masked_author": "username_1", "text": "Thank you for the info & collaboration! I'll introduce some additional checks.", "title": null, "type": "comment" }, { "action": "closed", "author": "daniel-luberda", "comment_id": null, "datetime": 1470721830000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "dominik-weber", "comment_id": 238463022, "datetime": 1470723217000, "masked_author": "username_0", "text": "Did you already upload a new build so I can check if the issue is fixed?\r\nJust fyi, I think the second null check could be removed. Casting an object should not return null.", "title": null, "type": "comment" }, { "action": "created", "author": "daniel-luberda", "comment_id": 238464410, "datetime": 1470723830000, "masked_author": "username_1", "text": "Yes, second null check can be removed, but it has so minimal impact that I'll do it someday (Please notice there's a reflection hack for InvalidateMeasure method which was mistakenly removed in some XF 2.x builds) - we'll need to remove it someday.", "title": null, "type": "comment" }, { "action": "created", "author": "dominik-weber", "comment_id": 238492733, "datetime": 1470732681000, "masked_author": "username_0", "text": "works fine, thank you man! also thanks to @CaLxCyMru for supplying the fix ;)", "title": null, "type": "comment" } ]
2
6
1,975
false
false
1,975
false
pndaproject/platform-salt
null
195,389,789
97
{ "number": 97, "repo": "platform-salt", "user_login": "pndaproject" }
[ { "action": "opened", "author": "trsmith2", "comment_id": null, "datetime": 1481668826000, "masked_author": "username_0", "text": "Testing on constrained environments has shown\r\nthat during parcel distribution hosts can become\r\nlabelled in 'bad health', causing parcel distribution\r\nto be errored. Eventually the hosts recover.", "title": "Give more time for parcels to distribute", "type": "issue" }, { "action": "created", "author": "pndaproject", "comment_id": 266888414, "datetime": 1481669675000, "masked_author": "username_1", "text": "You are still online too?!\n\nThis one must be a Vz fix speaking with Stephane earlier on the current challenges ;-)\n\nCheers\nNick", "title": null, "type": "comment" } ]
2
2
323
false
false
323
false
geosolutions-it/MapStore2
geosolutions-it
182,248,808
1,127
{ "number": 1127, "repo": "MapStore2", "user_login": "geosolutions-it" }
[ { "action": "opened", "author": "MV88", "comment_id": null, "datetime": 1476188289000, "masked_author": "username_0", "text": "Now when you click con import data the imports list is reloaded coming back to the initial state.", "title": "Fixed #1126 : click on import data reloads the imports list", "type": "issue" } ]
2
5
1,260
false
true
97
false
dexafree/MaterialList
null
55,093,053
33
null
[ { "action": "opened", "author": "stripathi669", "comment_id": null, "datetime": 1421882797000, "masked_author": "username_0", "text": "I am encoutering exception when adding BigImageButtonsCard.\r\n\r\nThe tracestack for the same is: \r\n\r\n java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String java.lang.String.toUpperCase()' on a null object reference\r\n at com.username_1.materialList.cards.view.BaseButtonsCardItemView.build(BaseButtonsCardItemView.java:37)\r\n at com.username_1.materialList.cards.view.BaseButtonsCardItemView.build(BaseButtonsCardItemView.java:15)\r\n at com.username_1.materialList.controller.MaterialListViewAdapter.getView(MaterialListViewAdapter.java:42)\r\n at com.nhaarman.listviewanimations.BaseAdapterDecorator.getView(BaseAdapterDecorator.java:125)\r\n at com.nhaarman.listviewanimations.appearance.AnimationAdapter.getView(AnimationAdapter.java:142)\r\n at android.widget.AbsListView.obtainView(AbsListView.java:2344)\r\n at android.widget.ListView.makeAndAddView(ListView.java:1864)\r\n at android.widget.ListView.fillDown(ListView.java:698)\r\n at android.widget.ListView.fillSpecific(ListView.java:1356)\r\n at android.widget.ListView.layoutChildren(ListView.java:1651)\r\n at android.widget.AbsListView.onLayout(AbsListView.java:2148)\r\n at android.view.View.layout(View.java:15596)\r\n at android.view.ViewGroup.layout(ViewGroup.java:4966)\r\n at android.support.v4.widget.SwipeRefreshLayout.onLayout(SwipeRefreshLayout.java:543)\r\n at android.view.View.layout(View.java:15596)\r\n at android.view.ViewGroup.layout(ViewGroup.java:4966)\r\n at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1703)\r\n at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1557)\r\n at android.widget.LinearLayout.onLayout(LinearLayout.java:1466)\r\n at android.view.View.layout(View.java:15596)\r\n at android.view.ViewGroup.layout(ViewGroup.java:4966)\r\n at android.support.v4.widget.DrawerLayout.onLayout(DrawerLayout.java:890)\r\n at android.view.View.layout(View.java:15596)\r\n at android.view.ViewGroup.layout(ViewGroup.java:4966)\r\n at android.widget.FrameLayout.layoutChildren(FrameLayout.java:573)\r\n at android.widget.FrameLayout.onLayout(FrameLayout.java:508)\r\n at android.view.View.layout(View.java:15596)\r\n at android.view.ViewGroup.layout(ViewGroup.java:4966)\r\n at android.widget.FrameLayout.layoutChildren(FrameLayout.java:573)\r\n at android.widget.FrameLayout.onLayout(FrameLayout.java:508)\r\n at android.view.View.layout(View.java:15596)\r\n at android.view.ViewGroup.layout(ViewGroup.java:4966)\r\n at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1703)\r\n at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1557)\r\n at android.widget.LinearLayout.onLayout(LinearLayout.java:1466)\r\n at android.view.View.layout(View.java:15596)\r\n at android.view.ViewGroup.layout(ViewGroup.java:4966)\r\n at android.widget.FrameLayout.layoutChildren(FrameLayout.java:573)\r\n at android.widget.FrameLayout.onLayout(FrameLayout.java:508)\r\n at android.view.View.layout(View.java:15596)\r\n at android.view.ViewGroup.layout(ViewGroup.java:4966)\r\n at android.widget.LinearLayout.setChildFrame(LinearLayout.java:1703)\r\n at android.widget.LinearLayout.layoutVertical(LinearLayout.java:1557)\r\n at android.widget.LinearLayout.onLayout(LinearLayout.java:1466)\r\n at android.view.View.layout(View.java:15596)\r\n at android.view.ViewGroup.layout(ViewGroup.java:4966)\r\n at android.widget.FrameLayout.layoutChildren(FrameLayout.java:573)\r\n at android.widget.FrameLayout.onLayout(FrameLayout.java:508)\r\n at android.view.View.layout(View.java:15596)\r\n at android.view.ViewGroup.layout(ViewGroup.java:4966)\r\n at android.view.ViewRootImpl.performLayout(ViewRootImpl.java:2072)\r\n at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:1829)\r\n at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1054)\r\n at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:5779)\r\n at android.view.Choreographer$CallbackRecord.run(Choreographer.java:767)\r\n at android.view.Choreographer.doCallbacks(Choreographer.java:580)\r\n at android.view.Choreographer.doFrame(Choreographer.java:550)\r\n at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:753)\r\n at android.os.Handler.handleCallback(Handler.java:739)\r\n at android.os.Handler.dispatc\r\n\r\nI am using following code for creating and placing the card:\r\n\r\n public static Card getBigImageCard( final Context mContext) {\r\n SimpleCard card = new BigImageButtonsCard(mContext);\r\n \r\n card.setDescription(\"Some Description\");\r\n card.setTitle(\"SomeTitle\");\r\n final String url = \"wwww.google.com\"\r\n // Code to get some drawable here\r\n card.setDrawable(d);\r\n\r\n ((BigImageButtonsCard) card).setDividerVisible(true);\r\n ((BigImageButtonsCard)card).setLeftButtonText(\"Open\");\r\n ((BigImageButtonsCard)card).setLeftButtonText(\"Dismiss\");\r\n\r\n ((BigImageButtonsCard)card).setOnLeftButtonPressedListener(new OnButtonPressListener() {\r\n @Override\r\n public void onButtonPressedListener(View view, Card card) {\r\n Intent urlIntent = new Intent(mContext, WebViewingActivity.class);\r\n urlIntent.putExtra(\"webUrl\", url);\r\n mContext.startActivity(urlIntent);\r\n } });\r\n\r\n\r\n card.setDismissible(true);\r\n\r\n\r\n\r\n return card;\r\n }\r\n\r\nThen to add the card:\r\n\r\n mListView.add(getBigImageCard( Activity.this );\r\n\r\nThe same code works for BigImage card (after removing the code for buttons & divider of-course.)", "title": "Error while adding BigImageButtonsCard", "type": "issue" }, { "action": "created", "author": "stripathi669", "comment_id": 71345632, "datetime": 1422148313000, "masked_author": "username_0", "text": "I found the source of error. In your material_image_with_buttons_card.xml,\r\n\r\nchange android:id=\"@id/left_text_button\"\r\nto android:id=\"@+id/left_text_button\"", "title": null, "type": "comment" }, { "action": "closed", "author": "dexafree", "comment_id": null, "datetime": 1422177412000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "dexafree", "comment_id": 71362124, "datetime": 1422177688000, "masked_author": "username_1", "text": "Fixed and uploaded to Maven Central.\r\n\r\nVersion 2.0.2 should be available in a couple of hours", "title": null, "type": "comment" } ]
2
4
6,463
false
false
6,463
true
saltstack/salt
saltstack
116,570,573
28,821
null
[ { "action": "opened", "author": "pure1-sre", "comment_id": null, "datetime": 1447341597000, "masked_author": "username_0", "text": "Is there a way to specify in /etc/salt/cloud.profiles.d/my-ec2-profile.conf that salt-cloud should not provision a public IP for an EC2 instance? I am using the below settings, but the instance still comes online with a public IP address: (AssociatePublicIpAddress may be for an Elastic IP)\r\n\r\n network_interfaces:\r\n - DeviceIndex: 0\r\n PrivateIpAddresses:\r\n - Primary: True\r\n AssociatePublicIpAddress: False\r\n\r\nIn my /etc/salt/cloud.providers.d/aws.conf I have specified the following:\r\n\r\nssh_interface: private_ips\r\n\r\nBut the above is to ask Salt to use the private ip and not public IP when connecting to the instance.", "title": "Do not provision a public ip address (not elastic IP, but interface public IP)", "type": "issue" }, { "action": "created", "author": "rallytime", "comment_id": 156161706, "datetime": 1447346716000, "masked_author": "username_1", "text": "@username_0 Can you also post the output of `salt-cloud --versions-report`? I feel like there is a way to do this, but I can't remember/find that option just now.", "title": null, "type": "comment" }, { "action": "created", "author": "pure1-sre", "comment_id": 156166589, "datetime": 1447347681000, "masked_author": "username_0", "text": "I have also tried to spin-up instances in private subnets in my VPC, but they are still getting a public IP along with a private IP.\r\n\r\n$ sudo salt-cloud --versions-report\r\nSalt Version:\r\n Salt: 2015.8.1\r\n\r\nDependency Versions:\r\n Apache Libcloud: 0.15.1\r\n Jinja2: 2.7.2\r\n M2Crypto: Not Installed\r\n Mako: 0.9.1\r\n PyYAML: 3.10\r\n PyZMQ: 14.4.0\r\n Python: 2.7.6 (default, Mar 22 2014, 22:59:56)\r\n RAET: Not Installed\r\n Tornado: 4.2.1\r\n ZMQ: 4.0.4\r\n cffi: Not Installed\r\n cherrypy: Not Installed\r\n dateutil: 2.4.2\r\n gitdb: 0.5.4\r\n gitpython: 0.3.2 RC1\r\n ioflo: Not Installed\r\n libnacl: Not Installed\r\n msgpack-pure: Not Installed\r\n msgpack-python: 0.3.0\r\n mysql-python: 1.2.3\r\n pycparser: Not Installed\r\n pycrypto: 2.6.1\r\n pygit2: Not Installed\r\n python-gnupg: Not Installed\r\n smmap: 0.8.2\r\n timelib: Not Installed\r\n\r\nSystem Versions:\r\n dist: Ubuntu 14.04 trusty\r\n machine: x86_64\r\n release: 3.13.0-48-generic\r\n system: Ubuntu 14.04 trusty", "title": null, "type": "comment" }, { "action": "created", "author": "rallytime", "comment_id": 156168647, "datetime": 1447348114000, "masked_author": "username_1", "text": "@techhat Do you remember if there is a way to do this?", "title": null, "type": "comment" }, { "action": "closed", "author": "pure1-sre", "comment_id": null, "datetime": 1447354591000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "pure1-sre", "comment_id": 156201105, "datetime": 1447354591000, "masked_author": "username_0", "text": "I think I found the solution, basically I thought I was deploying the AWS EC2 instance in a private subnet, but I was not, and that is why AWS was assigning a public IP. Once I changed the subnet-id to be one that is truly a private subnet, AWS did not assign a public IP to it. I don't think we need anything on the salt-cloud end here.", "title": null, "type": "comment" }, { "action": "created", "author": "rallytime", "comment_id": 156202564, "datetime": 1447354912000, "masked_author": "username_1", "text": "Oh, awesome! I'm glad you got it figured out! :)", "title": null, "type": "comment" } ]
2
7
2,425
false
false
2,425
true
Mirantis/solar
Mirantis
111,170,861
257
{ "number": 257, "repo": "solar", "user_login": "Mirantis" }
[ { "action": "opened", "author": "pigmej", "comment_id": null, "datetime": 1444739772000, "masked_author": "username_0", "text": "", "title": "Dynamic import bat", "type": "issue" }, { "action": "created", "author": "pigmej", "comment_id": 147702420, "datetime": 1444739790000, "masked_author": "username_0", "text": "merge #250 first I will rebase this on master after then.", "title": null, "type": "comment" }, { "action": "created", "author": "pigmej", "comment_id": 147707736, "datetime": 1444741276000, "masked_author": "username_0", "text": "Rebased", "title": null, "type": "comment" }, { "action": "created", "author": "dshulyak", "comment_id": 147708525, "datetime": 1444741508000, "masked_author": "username_1", "text": "+1", "title": null, "type": "comment" } ]
2
4
66
false
false
66
false
malcommac/SwiftDate
null
227,725,910
432
null
[ { "action": "opened", "author": "jojo91", "comment_id": null, "datetime": 1494431241000, "masked_author": "username_0", "text": "Hi,\r\nWhen I try to update my swifDate version to 4.1.2 with carthage the build fail with this error.\r\n\r\n```\r\n** CLEAN SUCCEEDED **\r\n\r\n=== BUILD TARGET SwiftDate OF PROJECT SwiftDate WITH CONFIGURATION Release ===\r\n\r\nCheck dependencies\r\nNo architectures to compile for (ARCHS=armv7k, VALID_ARCHS=arm64 armv7 armv7s x86_64 i386).\r\nwarning: no umbrella header found for target 'SwiftDate', module map will not be generated\r\n\r\n** BUILD FAILED **\r\n```", "title": "Build fail with carthage for 4.1.2 version", "type": "issue" }, { "action": "created", "author": "ladmini", "comment_id": 300673060, "datetime": 1494473510000, "masked_author": "username_1", "text": "The same error for me, any update?", "title": null, "type": "comment" }, { "action": "created", "author": "RiverbayChris", "comment_id": 301331614, "datetime": 1494787518000, "masked_author": "username_2", "text": "Same here.", "title": null, "type": "comment" }, { "action": "created", "author": "bkostjens", "comment_id": 301393909, "datetime": 1494832141000, "masked_author": "username_3", "text": "Also the same here.", "title": null, "type": "comment" }, { "action": "created", "author": "emmekappa", "comment_id": 302932541, "datetime": 1495368264000, "masked_author": "username_4", "text": "+1", "title": null, "type": "comment" }, { "action": "created", "author": "RiverbayChris", "comment_id": 307570653, "datetime": 1497107264000, "masked_author": "username_2", "text": "Anyone successful in fixing this? I tried removing the offending ARCH from the project file in 4.1.2, but then there were more Carthage errors. The last version I can successfully build with Carthage is 4.0.14.", "title": null, "type": "comment" }, { "action": "created", "author": "malcommac", "comment_id": 307576805, "datetime": 1497113386000, "masked_author": "username_5", "text": "I've tried with an empty project.\r\nFirst of all I've created the `Cartfile` file (`touch Cartfile`)\r\nThen I've added the record for SwiftDate (`github \"username_5/SwiftDate\" \"feature/4.1.5\"` - I've tried the repo currently in development but it's the same with `develop` or `master`).\r\nThen I've tried to build:\r\n\r\n```\r\ndiesel-mac:test daniele$ carthage update --platform iOS\r\n*** Please update to the latest Carthage version: 0.23.0. You currently are on 0.22.0\r\n*** Cloning SwiftDate\r\n*** Checking out SwiftDate at \"f8206f5457e773e03df1ad1f8f9587420784f145\"\r\n*** xcodebuild output can be found in /var/folders/m4/6h1cv6ds2_q18rc_6w5z22dc0000gp/T/carthage-xcodebuild.iopPUg.log\r\n*** Building scheme \"SwiftDate\" in SwiftDate.xcodeproj\r\ndiesel-mac:test daniele$ \r\n```\r\n\r\nEverything was okay.\r\nThen I've added it to my project, added `Copy Phase` for Framework and tried to run.\r\nNo problem found.\r\n\r\nCan anyone tell me the exact steps to reproduce the problem?\r\nThanks", "title": null, "type": "comment" }, { "action": "created", "author": "RiverbayChris", "comment_id": 307578749, "datetime": 1497115327000, "masked_author": "username_2", "text": "Good to go now, thanks. I was running \"carthage update SwiftDate\". Adding the \"--platform iOS\" fixed it for master.", "title": null, "type": "comment" }, { "action": "created", "author": "malcommac", "comment_id": 307584717, "datetime": 1497121971000, "masked_author": "username_5", "text": "I'll investigate on armv7k, the watchOS architecture.", "title": null, "type": "comment" }, { "action": "created", "author": "jojo91", "comment_id": 307744939, "datetime": 1497261588000, "masked_author": "username_0", "text": "I still can have this issue, it's very simple to reproduce. \r\nPut this line in your Cartfile.\r\n```github \"username_5/SwiftDate\" == 4.1.2```\r\nAnd then just do a carthage update.\r\n\r\nLike @username_2 said when you use \"--platform iOS\" it works. So this issue probably come from an other platform.", "title": null, "type": "comment" }, { "action": "closed", "author": "jojo91", "comment_id": null, "datetime": 1498227827000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
6
11
2,155
false
false
2,155
true
saltstack/salt
saltstack
106,198,842
27,091
{ "number": 27091, "repo": "salt", "user_login": "saltstack" }
[ { "action": "opened", "author": "perfinion", "comment_id": null, "datetime": 1442119712000, "masked_author": "username_0", "text": "The pre-flight checks try to change to $HOME, this can fail for multiple\r\nreasons. One such case is that /root is a protected dir under SELinux\r\nwhich the master should not have access to. The daemon should instead\r\nchange to the root dir which is the only dir that is always guaranteed\r\nto be there. The limited testing I have managed to do shows that windows\r\naccepts the '/' path too just fine so the os-specific case is not\r\nrequired either.\r\n\r\nChanging to $HOME was added in https://github.com/saltstack/salt/pull/21279\r\n\r\nGentoo-Bug: https://bugs.gentoo.org/560300", "title": "salt/master: chdir to root not homedir", "type": "issue" }, { "action": "created", "author": "cachedout", "comment_id": 140141235, "datetime": 1442249192000, "masked_author": "username_1", "text": "I'm willing to merge this for now, but it needs extensive testing across all platforms so I'd like to let it run the full test suite across additional distros and see how things go. Thanks!", "title": null, "type": "comment" }, { "action": "created", "author": "cachedout", "comment_id": 140141389, "datetime": 1442249236000, "masked_author": "username_1", "text": "@twangboy Now that this is merged, please verify that your Windows installs still operate correctly. Thanks.", "title": null, "type": "comment" } ]
2
3
867
false
false
867
false
js-cookie/js-cookie
js-cookie
110,191,968
98
null
[ { "action": "opened", "author": "garmgrey", "comment_id": null, "datetime": 1444212613000, "masked_author": "username_0", "text": "Hello. \r\nI have some issue with dublicating cookie entries.\r\nSome time, when i call \r\n```javascript\r\nCookies.set('my-cookie-name', 'value', {'path': '/'});\r\n```\r\n\r\nI am sure that I call this method only one place in my code, but in result I have:\r\n\r\n```\r\n---------------------------------------------------------------\r\n Name Value Domain Path\r\n---------------------------------------------------------------\r\n my-cookie-name 1 mydomain.com /foo/bar/\r\n my-cookie-name value mydomain.com /\r\n---------------------------------------------------------------\r\n```\r\n\r\nThis does not happen every time.", "title": "Duplicated cookie entries", "type": "issue" }, { "action": "created", "author": "FagnerMartinsBrack", "comment_id": 146189737, "datetime": 1444222865000, "masked_author": "username_1", "text": "Even though you call it once, the user could already have a cookie locally. Changing the code does not delete a cookie that was persisted earlier.\r\n\r\nAnother theory is that you might be passing an Object Literal reference in the `attributes` argument, then another code change the Object and the cookie is created with another `Path`.\r\n\r\nAnyway, it's pretty hard to figure out the problem without a reduced test case.", "title": null, "type": "comment" }, { "action": "created", "author": "gcollombet", "comment_id": 146209274, "datetime": 1444227740000, "masked_author": "username_2", "text": "I have the same problem. I call \r\n Cookies.set('my-cookie-name', 'value');\r\nfrom a single location but it create me two cookie with same name one with / and one with my page requested uri.", "title": null, "type": "comment" }, { "action": "created", "author": "garmgrey", "comment_id": 146219603, "datetime": 1444229645000, "masked_author": "username_0", "text": "@username_2 That is why I use the attribute {path: '/'}. But this does not solve the problem.\r\n\r\n@username_1 Cookie with name ```'my-cookie-name'``` sets in only one place of code.\r\nThis issue i catch on my dev machine, so it can't be a old (or wrong) cookie.\r\nBut i use it for toggle some state. i mean like this:\r\n```javascript\r\nvar state = 'on';\r\n$elem.on('click', function(e){\r\n state = state === 'on' ? 'off' : 'on';\r\n Cookies.set('my-cookie-name', state, {path: '/'});\r\n});\r\n```\r\n\r\nMay be it's wrong usage? And i need to remove old cookie before set new value?", "title": null, "type": "comment" }, { "action": "created", "author": "FagnerMartinsBrack", "comment_id": 146220149, "datetime": 1444229765000, "masked_author": "username_1", "text": "@username_0 \r\nIf you remove the cookie before setting the value it works?\r\nWhat is the output of `Cookies.set()` operation in all calls? Can you put a `console.log` there?", "title": null, "type": "comment" }, { "action": "created", "author": "garmgrey", "comment_id": 146222865, "datetime": 1444230225000, "masked_author": "username_0", "text": "@username_1 This problem occurs rarely, so it is difficult to catch. At this moment i remove cookie before set new value and do not catch the problem again. But i think it is wrong usage of ```js-cookie``` lib.\r\n\r\nDo you mean this?\r\n```javascript\r\nconsole.log(Cookies.set('my-cookie-name', state, {path: '/'}));\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "gcollombet", "comment_id": 146285138, "datetime": 1444242343000, "masked_author": "username_2", "text": "Ok sorry, in my case it was a the server part that add the wrong cookie\n(I'll do a setcookie in php... ).", "title": null, "type": "comment" }, { "action": "created", "author": "FagnerMartinsBrack", "comment_id": 146371158, "datetime": 1444262564000, "masked_author": "username_1", "text": "If you have any questions regarding js-cookie usage you can use the [`js-cookie`](http://stackoverflow.com/questions/tagged/js-cookie) tag on stackoverflow. The benefit of asking there is that it has better PageRank for Google and therefore has a greater chance to help somebody else in the future ;)\r\n\r\nIf you ask on StackOverflow please link here to increase awareness.", "title": null, "type": "comment" }, { "action": "created", "author": "garmgrey", "comment_id": 146463565, "datetime": 1444294829000, "masked_author": "username_0", "text": "@username_1 @username_2 \r\nThank you. I will write here when I find an answer...", "title": null, "type": "comment" }, { "action": "created", "author": "garmgrey", "comment_id": 146471893, "datetime": 1444296773000, "masked_author": "username_0", "text": "@username_1 [Question on StackOverflow](http://stackoverflow.com/questions/33011827/excess-record-in-cookies)", "title": null, "type": "comment" }, { "action": "created", "author": "FagnerMartinsBrack", "comment_id": 146716083, "datetime": 1444347342000, "masked_author": "username_1", "text": "I will close this for now since it doesn't seems to be any `js-cookie` internal problem.", "title": null, "type": "comment" }, { "action": "closed", "author": "FagnerMartinsBrack", "comment_id": null, "datetime": 1444347342000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
3
12
3,116
false
false
3,116
true
raoulvdberge/refinedstorage
null
164,568,092
173
{ "number": 173, "repo": "refinedstorage", "user_login": "raoulvdberge" }
[ { "action": "opened", "author": "GustoniaEagle", "comment_id": null, "datetime": 1467995471000, "masked_author": "username_0", "text": "", "title": "New textures + model", "type": "issue" }, { "action": "created", "author": "raoulvdberge", "comment_id": 231407772, "datetime": 1467995608000, "masked_author": "username_1", "text": "o m g", "title": null, "type": "comment" } ]
2
2
5
false
false
5
false
eslint/eslint
eslint
178,217,385
7,198
{ "number": 7198, "repo": "eslint", "user_login": "eslint" }
[ { "action": "opened", "author": "not-an-aardvark", "comment_id": null, "datetime": 1474418876000, "masked_author": "username_0", "text": "**What is the purpose of this pull request? (put an \"X\" next to item)**\r\n\r\n[ ] Documentation update\r\n[ ] Bug fix ([template](https://github.com/eslint/eslint/blob/master/templates/bug-report.md))\r\n[ ] New rule ([template](https://github.com/eslint/eslint/blob/master/templates/rule-proposal.md))\r\n[ ] Changes an existing rule ([template](https://github.com/eslint/eslint/blob/master/templates/rule-change-proposal.md))\r\n[x] Add autofixing to a rule\r\n[ ] Add a CLI option\r\n[ ] Add something to the core\r\n[ ] Other, please explain:\r\n\r\n<!--\r\n If the item you've checked above has a template, please paste the template questions below and answer them. (If this pull request is addressing an issue, you can just paste a link to the issue here instead.)\r\n-->\r\n\r\n\r\n<!--\r\n The following is required for all pull requests:\r\n-->\r\n\r\n**Please check each item to ensure your pull request is ready:**\r\n\r\n- [x] I've read the [pull request guide](http://eslint.org/docs/developer-guide/contributing/pull-requests)\r\n- [x] I've included tests for my change\r\n- [x] I've updated documentation for my change (if appropriate)\r\n\r\n**What changes did you make? (Give an overview)**\r\n\r\nThis adds a fixer for `strict`. The fixer removes unnecessary `'use strict';` directives. Other errors reported by the `strict` rule are not fixed, to avoid breaking any working code.\r\n\r\nSee also: #6668, #6856\r\n\r\n**Is there anything you'd like reviewers to focus on?**\r\n\r\nNothing in particular.", "title": "Update: add fixer for `strict` (fixes #6668)", "type": "issue" } ]
3
3
1,639
false
true
1,460
false
Blacklight-Design/generator-symfony-alchemy
Blacklight-Design
95,106,284
1
null
[ { "action": "opened", "author": "geevcookie", "comment_id": null, "datetime": 1436936208000, "masked_author": "username_0", "text": "As an alternative to the classic JS concatenation and uglifying, Browserify will be an optional extra.\r\n\r\nThings to look at:\r\n- Will Browserify replace existing JS tasks if selected during prompt phase or will it simply provide a new task to work along with the existing JS tasks.\r\n- Should Bower be configured if Browserify is chosen or should this become an optional extra anyway.", "title": "Browserify", "type": "issue" } ]
1
1
382
false
false
382
false
rgrempel/elm-route-hash
null
127,657,532
11
null
[ { "action": "opened", "author": "kunjee17", "comment_id": null, "datetime": 1453287504000, "masked_author": "username_0", "text": "Hi, \r\n\r\nFirst of all this is the one full fledge routing library I found. Having all the thing. Thanks for great work. Only part I feel is it will be great if there is a way to inject animation for transitioning from page to page. \r\n\r\nIt is just a case of beautification but a good to have to compete other part like react and angular.\r\n\r\nThanks for great work. :)", "title": "Provide animation or place to animate while transitioning from one page to another ", "type": "issue" }, { "action": "created", "author": "rgrempel", "comment_id": 173380043, "datetime": 1453328327000, "masked_author": "username_1", "text": "I'll think about how to do that. In principle, what a URL change generates (in this scheme) is a list of actions, so you could theoretically make those actions perform an animation ... but perhaps there is something the library can do to make that easier.", "title": null, "type": "comment" }, { "action": "created", "author": "kunjee17", "comment_id": 173441333, "datetime": 1453347784000, "masked_author": "username_0", "text": "@username_1 thanks :). Will looking forward to it. For me (while building SPA) first blocker was good url library and your library just blast that blocker. I'm back to elm. :+1:", "title": null, "type": "comment" }, { "action": "created", "author": "amitaibu", "comment_id": 173529623, "datetime": 1453372128000, "masked_author": "username_2", "text": "fyi - I have seen some work by @username_3 on [this](https://github.com/username_3/elm-transit-router) . I think he's also going to consolidate his router solution with the transition module.", "title": null, "type": "comment" }, { "action": "created", "author": "etaque", "comment_id": 173532203, "datetime": 1453372729000, "masked_author": "username_3", "text": "yes, the hard work is being done by [elm-transit](https://github.com/username_3/elm-transit) (my router is already doing transitions, but it doesn't work with hashes yet).", "title": null, "type": "comment" }, { "action": "created", "author": "kunjee17", "comment_id": 173576913, "datetime": 1453384680000, "masked_author": "username_0", "text": "@username_3 and @username_1 is it possible that we can mix match both libraries. May be end up with one or two mature routing library. Like React-Router for react.", "title": null, "type": "comment" }, { "action": "created", "author": "rgrempel", "comment_id": 226891442, "datetime": 1466200721000, "masked_author": "username_1", "text": "I thought about this a bit more, and I'm pretty sure that it is just a question of getting your `location2action` (or, now, `location2messages`) function to return some actions (or messages) that will kick off an animation.\r\n\r\nTo illustrate, I've updated one of the examples to do that ... when you click on the squares to spin them, you can then use the back / forward buttons, and the URL transition will now be animated (just like the original spin was). Here are the changes:\r\n\r\nhttps://github.com/username_1/elm-route-url/commit/1618b1685e8981f3d48ddf8ae92f0657beca1287\r\n\r\nBut, this isn't really anything that elm-route-url can facilitate, since it has no idea what it means to animate your particular state change -- you just have to return messages that actually trigger an animation, whatever that means in your context.", "title": null, "type": "comment" }, { "action": "created", "author": "megaserg", "comment_id": 228509112, "datetime": 1466827414000, "masked_author": "username_4", "text": "@username_1 - I think an interesting challenge occurs when one wants to implement a transition where e.g. one page slides out of view and a new page slides in, side-by-side. That means both pages are momentarily visible together at the same time, which means they both have to be rendered, which means they both must be in the model (I guess?), which isn't really desirable. Do you know of an elegant solution?\r\n(I understand this is quite out of scope for this issue but still relevant).", "title": null, "type": "comment" }, { "action": "created", "author": "rgrempel", "comment_id": 228583346, "datetime": 1466914291000, "masked_author": "username_1", "text": "I suppose the Elm-ish solution, as usual, is essentially to model the problem.\r\n\r\nSo, suppose you have a `Page` which represents one of several virtual pages, and you've got an `update` and `view` function that works with that `Model` -- so, the normal thing, you might say.\r\n\r\nNow, if you want to animate a transition to the next `Page`, I suppose you'll have to add something like a `Maybe AnimationState` to the `Page`. And, the `AnimationState` would be composed of something like a `Page` -- that is, the next page -- and something that tracks the animation progress. And your `update` method would need a modification to kick off the animation (and progress it). And your `view` method would need to consult the `AnimationState` to know whether to draw just one `Page` or perhaps two side-by-side (at some stage of the animation, as tracked within the `AnimationState`).\r\n\r\nOr something like that ... that's all a little vague, of course, but I think that would basically be the idea.\r\n\r\nNow, you could imagine a generic `AnimationState model` type, where, provided with the `update`, `view` et. al. functions for the `model` type, it would wrap them in some way to provide `update` and `view` functions that generically handle drawing the various stages of an animation. That seems possible to me, without thinking it through very hard -- there may well be some pitfalls that don't occur to me.", "title": null, "type": "comment" }, { "action": "closed", "author": "rgrempel", "comment_id": null, "datetime": 1468219743000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
5
10
4,015
false
false
4,015
true
FreeRDP/FreeRDP
FreeRDP
46,663,776
2,166
null
[ { "action": "opened", "author": "oelbox", "comment_id": null, "datetime": 1414091161000, "masked_author": "username_0", "text": "Connecting to a rdp-server in fullscreen renders only the first 15-20 percent of the remote desktop, pressing ctrl-alt-enter (exiting fullscreen) the entire remote desktop is rendered normally, pressing ctrl-alt-enter to enter fullscreen again result in what appears to be a transparent window, meaning it is showing my local desktop, but nothing on the desktop is clickable - so it's like a fullscreen window that is completely transparent.\r\n\r\nWhen connecting in fullscreen and getting a partial render of the desktop, doing a \"windows-key+d\" (toggle desktop), xfreerdp will render the entire screen, but exiting fullscreen, and entering fullscreen again, doing \"windows-key+d\" again will not render the window, and I'm stuck in a \"fullscreen transparent window\" until I exit fullscreen.\r\n\r\nEverything works fine if I start xfreerdp without the fullscreen switch (but going fullscreen with ctrl-alt-enter introduces the problem again).\r\n\r\nThis was not an issue in xfreerdp 1.0.2, but was first experienced with 1.1.0. I've tried with version 1.2.0-beta1, but with the same result.\r\n\r\nI've tried various bpp settings and other adjustments to see if something else was influencing this (disabling xfwm compositor etc), but this did not seem to have any effect on the issue.\r\n\r\nMy system is running Arch Linux, with xfce 4.10 on an Intel HD 3000 (xf86-video-intel version 2.99.916).\r\n\r\nCommand line to connect:\r\nxfreerdp /f /admin /u:user /p:password /network:broadband /v:server:3389 /bpp:16\r\n\r\nThis goes for connecting to a windows xp machine, a windows server 2008, a windows server 2008 R2 and also windows XP running in virtualbox and connecting to the built in virtualbox rdp-server implementation.\r\n\r\nOnce in a while though, a fullscreen connect works, but pressing ctrl-alt-enter to exit full screen, and then pressing ctrl-alt-enter to enter fullscreen will always result in the \"fullscreen transparent window\".\r\n\r\nDowngrading to freerdp 1.02 and connecting using: \"xfreerdp -0 -f -u user -p password -x b server\" fixes the issue.\r\n\r\nIf this is a known bug, I apologize for posting a duplicate issue, I could not find any other issue describing the above, but that might come down to my lacking github-search-skills.", "title": "xfreerdp fullscreen not rendering correctly or not at all", "type": "issue" }, { "action": "created", "author": "jawz101", "comment_id": 119047304, "datetime": 1436234855000, "masked_author": "username_1", "text": "remmina/freerdp have been causing me issues on Arch since I'd been using Arch for the past couple of years. Switching to Xubuntu seems to work well. I tried so many iterations of settings (disabling themes service on the Windows 7 box, disabling NLA and just using plain old security, trying different compression levels on the Arch box... nothing helps. All I can say is the RDP session hangs and I constantly have to disconnect and reconnect after every mouse click to get the screen to redraw itself.", "title": null, "type": "comment" }, { "action": "created", "author": "akallabeth", "comment_id": 381043492, "datetime": 1523602934000, "masked_author": "username_2", "text": "Fullscreen is working on `2.0.0-rc2`, create a new issue if you find something again.", "title": null, "type": "comment" }, { "action": "closed", "author": "akallabeth", "comment_id": null, "datetime": 1523602935000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
4
2,815
false
false
2,815
false
OrchardCMS/Orchard
OrchardCMS
68,214,134
3,498
null
[ { "action": "closed", "author": "sebastienros", "comment_id": null, "datetime": 1428966074000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
2
225
false
true
0
false
angular/angular.io
angular
77,502,132
118
{ "number": 118, "repo": "angular.io", "user_login": "angular" }
[ { "action": "opened", "author": "PzYon", "comment_id": null, "datetime": 1431925308000, "masked_author": "username_0", "text": "", "title": "fixed typos in bios (harp.json)", "type": "issue" }, { "action": "created", "author": "kwalrath", "comment_id": 103123356, "datetime": 1431967544000, "masked_author": "username_1", "text": "LGTM. Thanks, @username_0!", "title": null, "type": "comment" } ]
2
2
21
false
false
21
true
nepsilon/search-query-parser
null
177,413,879
7
null
[ { "action": "opened", "author": "satazor", "comment_id": null, "datetime": 1474029012000, "masked_author": "username_0", "text": "The master branch contains a fix and some improvements that I would like to have on npm. Also could you please bump this to `1.0.0`? I'm going to use this module in https://npms.io", "title": "Please release a new version", "type": "issue" }, { "action": "closed", "author": "nepsilon", "comment_id": null, "datetime": 1474030245000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "nepsilon", "comment_id": 247592497, "datetime": 1474030245000, "masked_author": "username_1", "text": "[Done](https://www.npmjs.com/package/search-query-parser)! \r\n\r\nLooking forward to use it on [npms.io](https://npms.io) 👍", "title": null, "type": "comment" }, { "action": "created", "author": "satazor", "comment_id": 247597274, "datetime": 1474031668000, "masked_author": "username_0", "text": "Ty!", "title": null, "type": "comment" } ]
2
4
303
false
false
303
false
aws/aws-sdk-java
aws
23,925,422
152
{ "number": 152, "repo": "aws-sdk-java", "user_login": "aws" }
[ { "action": "opened", "author": "kelcecil", "comment_id": null, "datetime": 1386518079000, "masked_author": "username_0", "text": "This addresses issue #89. There is a getRegion method already provided in AmazonS3Client that tries to pull the region from the superclass and defaults back to US_Standard when one is not set. Passing the result from getRegion as the region parameter in CreateBucketRequest is a simple way to implement the desired behavior.", "title": "Use getRegion to determine where a bucket should be created when using createBucket(bucketName)", "type": "issue" }, { "action": "created", "author": "hanshuo-aws", "comment_id": 94047246, "datetime": 1429295669000, "masked_author": "username_1", "text": "See #89", "title": null, "type": "comment" } ]
2
2
331
false
false
331
false
rust-lang/rfcs
rust-lang
43,716,444
313
null
[ { "action": "opened", "author": "rust-highfive", "comment_id": null, "datetime": 1411535008000, "masked_author": "username_0", "text": "Note: Much or all of the feature requested here should be covered by RFC PR #195\r\n\r\n----\r\n\r\n<a href=\"https://github.com/username_2\"><img src=\"https://avatars.githubusercontent.com/u/173127?v=2\" align=\"left\" width=\"96\" height=\"96\" hspace=\"10\"></img></a> **Issue by [username_2](https://github.com/username_2)**\r\n_Tuesday Feb 19, 2013 at 16:15 GMT_\r\n\r\n_For earlier discussion, see https://github.com/rust-lang/rust/issues/5033_\r\n\r\n_This issue was labelled with: A-servo, A-traits, A-typesystem, B-RFC, I-enhancement, P-high in the Rust repository_\r\n\r\n----\r\n\r\nRust's type system reflects many advances in the state of the art.\r\n\r\nHowever, there is one feature (offered by C++ and ML) that is not present in Rust: The ability to declare within a trait a named type (and then each impl item would be obligated to bind that name to an appropriate type for the implementation).\r\n\r\nRelated work: See [Garcia et al. 2003](http://www.osl.iu.edu/publications/prints/2003/comparing_generic_programming03.pdf), especially section 6.2, 10.2, and 10.3. Another useful reference is [Chakravarty et al 2005](http://www.cse.unsw.edu.au/~chak/papers/CKP05.html)\r\n\r\nThe Haskell community calls such a construct an \"associated type synonym.\"\r\n\r\nHere is an small example to illustrate the idea.\r\n\r\nFirst, the easy part: how such a feature would look at the level of trait and impl items:\r\n\r\n```rust\r\ntrait Graph {\r\n pub type Node; // Graphs are composed of vertices\r\n pub type Edge; // and arcs between the vertices.\r\n pub fn src(&self, edge: Edge) -> Node;\r\n pub fn tgt(&self, edge: Edge) -> Node;\r\n}\r\n\r\n\r\n// A vector of (source,target) pairs is a graph where the edges\r\n// indices into the vector\r\nimpl<T : Copy> &[(T,T)] : Graph {\r\n pub type Node = T; // Here we satisfy the obligation to provide Node\r\n pub type Edge = uint; // and Edge implementation types.\r\n pub fn src(&self, edge: Edge) -> Node { let (s,_) = self[edge]; s }\r\n pub fn tgt(&self, edge: Edge) -> Node { let (_,t) = self[edge]; t }\r\n}\r\n```\r\n\r\nIdeally one would extract the type from a trait by using a path, using a type parameter as a path component. So for example:\r\n\r\n```rust\r\ntrait IncidenceGraph : Graph {\r\n pub fn out_degree(&self, node: self::Node) -> uint;\r\n pub fn out_edges(&self, node: self::Node, it: fn(self::Edge) -> bool);\r\n}\r\n\r\nfn children<G:IncidenceGraph>(&g:G, &n: G::Node) -> ~[G::Node] {\r\n let result = ~[];\r\n for g.out_edges(n) |e| {\r\n ret.push(g.tgt(n))\r\n }\r\n ret\r\n}\r\n```\r\n\r\nNote: I am aware that one can express currently express type synonyms in much the same way that one does in Java (or C#, or Eiffel; see Garcia et al paper): by making them a type-parameter of the trait itself. Rust's type-inference system does make that workaround more palatable, but it seems natural to enable the developer to express what they mean more directly: These types are obligations of the implementation, much like the functions declared in the trait, and thus it makes sense to express them the same way.\r\n\r\n----\r\n\r\nThere are various issues to consider: e.g.:\r\n * Do we allow bounds on the type declarations in the trait,\r\n * Is there is any potential ambiguity with module names introduced by allowing traits (or rather, type parameters implementing a trait) to appear as path components in paths that are used in a type-expression context.\r\n * Are there any gotcha's or generalizations that have been uncovered by the broader PL community that we would want to address. (For example, GHC has [indexed data families](http://www.haskell.org/haskellwiki/GHC/Type_families#Associated_family_declarations), with which I am not familiar but seem to be a generalization with some potential gotchas. Caveat: I am not a Haskell programmer.)\r\n\r\nDespite the above issues, this seems like a relatively straightforward change to the language (especially since one can already encode the pattern, so adding it should not inject e..g any type soundness bugs, right?).", "title": "RFC: trait-declared associated type synonyms", "type": "issue" }, { "action": "created", "author": "quantheory", "comment_id": 69867025, "datetime": 1421209011000, "masked_author": "username_1", "text": "I sort of like this proposal, but I'm puzzled. Shouldn't something like the following be possible under the existing RFC?\r\n\r\n```rust\r\npub enum InputStep<I: InputIterator> {\r\n Cont(I::Element, I),\r\n Done(I::Leftovers),\r\n}\r\n\r\npub enum ZipInputLeftovers<L: InputIterator, R: InputIterator> {\r\n More1(L::Element, L, R::Leftovers),\r\n More2(L::Leftovers, R::Element, R),\r\n Neither(L::Leftovers, R::Leftovers),\r\n}\r\n```\r\n\r\nOf course this is more verbose than being able to inline these in the trait or impl, and you have to use names like `InputStep` in some cases, but this seems much better than making every used type a generic (input) parameter. Or am I wrong and something prevents this?", "title": null, "type": "comment" }, { "action": "created", "author": "pnkfelix", "comment_id": 70076656, "datetime": 1421323610000, "masked_author": "username_2", "text": "I'm going to close this ticket; at this point, the addition of associated items to the language has addressed the original problem that prompted me to file it back in early 2013, and any suggestions of further changes should be filed as separate tickets rather than appended here.", "title": null, "type": "comment" }, { "action": "closed", "author": "pnkfelix", "comment_id": null, "datetime": 1421323610000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
4
4,922
false
false
4,922
true
zalando/zappr
zalando
138,215,170
32
null
[ { "action": "opened", "author": "prayerslayer", "comment_id": null, "datetime": 1457020023000, "masked_author": "username_0", "text": "![image](https://cloud.githubusercontent.com/assets/878512/13499645/84aca6be-e15f-11e5-8a7d-47cee88a12ff.png)", "title": "Repo name is insufficient in list", "type": "issue" }, { "action": "closed", "author": "mfellner", "comment_id": null, "datetime": 1457029937000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
109
false
false
109
false
apache/spark
apache
83,316,630
6,547
{ "number": 6547, "repo": "spark", "user_login": "apache" }
[ { "action": "opened", "author": "liancheng", "comment_id": null, "datetime": 1433135074000, "masked_author": "username_0", "text": "This is a follow-up of PR #6493, which has been reverted in branch-1.4 because it uses Java 7 specific APIs and breaks Java 6 build. This PR replaces those APIs with equivalent Guava ones to ensure Java 6 friendliness.\r\n\r\ncc @username_1 @pwendell, this should also be back ported to branch-1.4.", "title": "[SQL] [TEST] [MINOR] Follow-up of PR #6493, use Guava API to ensure Java 6 friendliness", "type": "issue" }, { "action": "created", "author": "andrewor14", "comment_id": 107308592, "datetime": 1433135642000, "masked_author": "username_1", "text": "lgtm merging once tests pass", "title": null, "type": "comment" }, { "action": "created", "author": "liancheng", "comment_id": 107851793, "datetime": 1433232307000, "masked_author": "username_0", "text": "Addressed @zsxwing's comment, will merge this to master and branch-1.4 once Jenkins passes.", "title": null, "type": "comment" }, { "action": "created", "author": "andrewor14", "comment_id": 108136412, "datetime": 1433290043000, "masked_author": "username_1", "text": "master 1.4 thanks cheng", "title": null, "type": "comment" } ]
4
14
1,744
false
true
436
true
ember-cli/loader.js
ember-cli
222,450,917
117
{ "number": 117, "repo": "loader.js", "user_login": "ember-cli" }
[ { "action": "opened", "author": "runspired", "comment_id": null, "datetime": 1492528498000, "masked_author": "username_0", "text": "There is no `.npmignore` file excluding these, so `files: []` here is the SOT.\r\nThis might help make errors with `bower install` more obvious, as bower tends to attempt to pull from `lib/` and will not have `dist/` available to it.", "title": "Remove `lib/` from published files.", "type": "issue" }, { "action": "created", "author": "runspired", "comment_id": 294877552, "datetime": 1492528514000, "masked_author": "username_0", "text": "cc @username_2 @username_1 @Turbo87", "title": null, "type": "comment" }, { "action": "created", "author": "rwjblue", "comment_id": 294879211, "datetime": 1492528833000, "masked_author": "username_1", "text": "Now that I think about it more, I thought we actually wanted to keep these files around. So that we can allow apps to opt-in or out of instrumentation in the build (with something like ember-heimdall). This functionality was removed temporarily but I believe that \"we all agree\" that we want the functionality...", "title": null, "type": "comment" }, { "action": "created", "author": "stefanpenner", "comment_id": 294879711, "datetime": 1492528928000, "masked_author": "username_2", "text": "Didn't we produce two builds one instrumented and one not. If so, in either case we wouldn't need lib", "title": null, "type": "comment" }, { "action": "created", "author": "rwjblue", "comment_id": 294881982, "datetime": 1492529357000, "masked_author": "username_1", "text": "Hehe, I really don't recall 😝", "title": null, "type": "comment" }, { "action": "created", "author": "runspired", "comment_id": 294882978, "datetime": 1492529536000, "masked_author": "username_0", "text": "Some thoughts\r\n\r\n- once (or before) `ember-heimdall` is published, we should prebuild an instrumented and non-instrumented version if we've stopped doing so. This addon seems like a good candidate to be `static`\r\n- relying on `lib/` for this seems like it would always be problematic, as we'd have to be extra careful to never do anything that didn't require a build step\r\n- `ember-heimdall` is not published yet", "title": null, "type": "comment" }, { "action": "created", "author": "stefanpenner", "comment_id": 294920614, "datetime": 1492536769000, "masked_author": "username_2", "text": "https://github.com/ember-cli/loader.js/blob/master/build.js#L20", "title": null, "type": "comment" }, { "action": "created", "author": "stefanpenner", "comment_id": 294920789, "datetime": 1492536798000, "masked_author": "username_2", "text": "@username_1 should this be major or minor release?", "title": null, "type": "comment" }, { "action": "created", "author": "rwjblue", "comment_id": 294930945, "datetime": 1492538571000, "masked_author": "username_1", "text": "@username_2 - I think minor is fine, if folks were using `lib` they already had issues because it assumed `heimdall` global and whatnot...", "title": null, "type": "comment" }, { "action": "created", "author": "stefanpenner", "comment_id": 294962343, "datetime": 1492545672000, "masked_author": "username_2", "text": "released as v4.3.0 🎉", "title": null, "type": "comment" } ]
3
10
1,390
false
false
1,390
true
guardian/frontend
guardian
215,451,133
16,184
{ "number": 16184, "repo": "frontend", "user_login": "guardian" }
[ { "action": "opened", "author": "gustavpursche", "comment_id": null, "datetime": 1490022608000, "masked_author": "username_0", "text": "## What does this change?\r\n\r\nUpdates the hosts used to fetch polyfill.io.\r\n\r\n## What is the value of this and can you measure success?\r\n\r\nShorter response times, due to less DNS, TLS roundtrips\r\n\r\n## Does this affect other platforms - Amp, Apps, etc?\r\n\r\nNo.\r\n\r\n## Screenshots\r\n\r\nNo.\r\n\r\n## Tested in CODE?\r\n\r\nNo.", "title": "Update polyfill.io hosts", "type": "issue" }, { "action": "created", "author": "PRBuilds", "comment_id": 287791079, "datetime": 1490022950000, "masked_author": "username_1", "text": "PR build results:\n\nscreenshots\n[mobile.png](https://s3-eu-west-1.amazonaws.com/prbuilds/PR-16184/screenshots/books%252F2014%252Fmay%252F21%252Fguardian-journalists-jonathan-freedland-ghaith-abdul-ahad-win-orwell-prize-journalism/mobile.png) • [wide.png](https://s3-eu-west-1.amazonaws.com/prbuilds/PR-16184/screenshots/books%252F2014%252Fmay%252F21%252Fguardian-journalists-jonathan-freedland-ghaith-abdul-ahad-win-orwell-prize-journalism/wide.png) • [tablet.png](https://s3-eu-west-1.amazonaws.com/prbuilds/PR-16184/screenshots/books%252F2014%252Fmay%252F21%252Fguardian-journalists-jonathan-freedland-ghaith-abdul-ahad-win-orwell-prize-journalism/tablet.png) • [desktop.png](https://s3-eu-west-1.amazonaws.com/prbuilds/PR-16184/screenshots/books%252F2014%252Fmay%252F21%252Fguardian-journalists-jonathan-freedland-ghaith-abdul-ahad-win-orwell-prize-journalism/desktop.png)\n \nexceptions (0)\n[thrown-exceptions.js](https://s3-eu-west-1.amazonaws.com/prbuilds/PR-16184/thrown-exceptions.js) \n\nwebpagetest (2)\n[performanceComparisonSummary.txt](https://s3-eu-west-1.amazonaws.com/prbuilds/PR-16184/performanceComparisonSummary.txt)\n\n-automated message", "title": null, "type": "comment" } ]
3
3
1,626
false
true
1,466
false
dcos/dcos-ui
dcos
165,202,755
697
{ "number": 697, "repo": "dcos-ui", "user_login": "dcos" }
[ { "action": "opened", "author": "kennyt", "comment_id": null, "datetime": 1468365313000, "masked_author": "username_0", "text": "", "title": "Remove link tags in service form description", "type": "issue" }, { "action": "created", "author": "mesosphere-web", "comment_id": 232210081, "datetime": 1468365318000, "masked_author": "username_1", "text": "Reviewer: @philipnrmn", "title": null, "type": "comment" }, { "action": "created", "author": "jfurrow", "comment_id": 232210376, "datetime": 1468365425000, "masked_author": "username_2", "text": ":ship:", "title": null, "type": "comment" }, { "action": "created", "author": "kennyt", "comment_id": 232214066, "datetime": 1468366822000, "masked_author": "username_0", "text": "LGTM, nice one", "title": null, "type": "comment" } ]
3
4
41
false
false
41
false
silviomoreto/bootstrap-select
null
37,718,602
643
null
[ { "action": "opened", "author": "sirNemanjapro", "comment_id": null, "datetime": 1405168054000, "masked_author": "username_0", "text": "Is there a chance we could use any other type of font icon instead of the pre built Bootstrap glyphs?\n\nIf so, how would one use them? Example?", "title": "data-icon with FontAwesome (or any other)", "type": "issue" }, { "action": "created", "author": "sovtek", "comment_id": 274483116, "datetime": 1485176758000, "masked_author": "username_1", "text": "I am having this issue too. Is it possible to use font awesome with the \"data-icon\" attribute? Not trying to overload iconbase or tick icon. Trying to make individual option icons use font-awesome.", "title": null, "type": "comment" }, { "action": "created", "author": "rjmd", "comment_id": 325257416, "datetime": 1503894494000, "masked_author": "username_2", "text": "Agreed with @username_1 , I would also like to put font-awesome icons into the data-icon attribute...", "title": null, "type": "comment" }, { "action": "created", "author": "caseyjhol", "comment_id": 325470478, "datetime": 1503951923000, "masked_author": "username_3", "text": "data-icon simply creates a span element with a class that is whatever you've set data-icon to. So, if you want Font Awesome, simply set `data-icon=\"fa-heart\"`. That would result in `<span class=\"fa fa-heart\"></span>`.", "title": null, "type": "comment" }, { "action": "created", "author": "rjmd", "comment_id": 327654741, "datetime": 1504746977000, "masked_author": "username_2", "text": "Thanks @username_3, the only issue with this solution is that I want the icon to be colored depending on the item in the list.", "title": null, "type": "comment" }, { "action": "created", "author": "mikomister", "comment_id": 454053990, "datetime": 1547481146000, "masked_author": "username_4", "text": "**(Bootstrap ^4.*.*, bootstrap-select ^v1.13.2)** **I think I found a solution**. Just add the \"fa\" into data-icon attribute **before** the fa-\"your icon name\", like this: \r\n`\r\n<select class=\"selectpicker\" data-live-search=\"true\" data-iconBase=\"fa\" data-tickIcon=\"fa-check\" multiple>\r\n <option data-icon=\"fa fa-phone\" value=\"1\">One</option>\r\n <option value=\"2\">Two</option>\r\n <option value=\"3\">Three</option>\r\n </select>`", "title": null, "type": "comment" } ]
5
6
1,335
false
false
1,335
true
Vector35/binaryninja-docs
Vector35
136,184,320
167
null
[ { "action": "opened", "author": "psifertex", "comment_id": null, "datetime": 1456347455000, "masked_author": "username_0", "text": "RIP relative instructions are converted to absolute addresses during display which works well for cross references but does NOT work when when attempting to in-place edit one of the instructions as the absolute encoding will be 1) potentially wrong for ASLR binaries, and 2) a longer instruction", "title": "disassembling RIP relative instructions", "type": "issue" }, { "action": "created", "author": "psifertex", "comment_id": 212278599, "datetime": 1461133407000, "masked_author": "username_0", "text": "Fixed in dev.", "title": null, "type": "comment" }, { "action": "closed", "author": "psifertex", "comment_id": null, "datetime": 1461133407000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
308
false
false
308
false
naver/ngrinder
naver
140,138,198
90
null
[ { "action": "opened", "author": "yusufchang", "comment_id": null, "datetime": 1457689289000, "masked_author": "username_0", "text": "2016-03-11 17:15:06,337 INFO agent daemon : worker PVGN50897276A-0 started\r\n2016-03-11 17:15:36,560 INFO agent daemon : received a stop message\r\n2016-03-11 17:15:36,561 INFO agent daemon : Don't start anymore by message from controller.\r\n2016-03-11 17:15:39,289 INFO agent daemon : received a stop message\r\n2016-03-11 17:15:41,807 INFO agent daemon : received a stop message\r\n2016-03-11 17:15:41,807 INFO agent daemon : Terminating unresponsive processes by force\r\n2016-03-11 17:15:41,994 INFO agent daemon : All workers are finished\r\n2016-03-11 17:15:41,994 INFO agent daemon : communication shut down\r\n2016-03-11 17:15:41,994 INFO agent daemon : Test shuts down.\r\n2016-03-11 17:15:41,994 INFO agent controller : Send log for test_3\r\n2016-03-11 17:15:42,010 INFO agent controller : Clean up the perftest logs\r\n\r\nHi, I'm very confused about agent stop message. \r\n\r\nI just clicked start test from console, and agent received above log, test normally ran in console page and came out data report, but about 30 seconds later, agent daemon received a stop message like above log. I don't know the stop reason, can make sure no stop message sent by myself.\r\n\r\nAnywhere else meet the same problem? And any suggestion?\r\nThanks", "title": "Agent daemon received a stop message", "type": "issue" }, { "action": "created", "author": "yusufchang", "comment_id": 196619343, "datetime": 1458008574000, "masked_author": "username_0", "text": "solved", "title": null, "type": "comment" }, { "action": "closed", "author": "yusufchang", "comment_id": null, "datetime": 1458008574000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "zlatsh", "comment_id": 321142786, "datetime": 1502249415000, "masked_author": "username_1", "text": "how did you solve it? we have same problem sometimes, please share you solution, thanks", "title": null, "type": "comment" } ]
2
4
1,345
false
false
1,345
false
archiecobbs/logwarn
null
157,154,981
25
null
[ { "action": "opened", "author": "andreasstieger", "comment_id": null, "datetime": 1464337534000, "masked_author": "username_0", "text": "Please distribute bootstrapped tarballs (e.g. containing the configure script) with your releases by attaching them to the corresponding tag as a binary asset.", "title": "distribute bootstrapped tarballs.", "type": "issue" }, { "action": "created", "author": "archiecobbs", "comment_id": 222234810, "datetime": 1464377596000, "masked_author": "username_1", "text": "They are distributed, it's just not obvious where to get them.\r\n\r\nSee https://github.com/username_1/logwarn/wiki/Downloads\r\n\r\nI'll also put a link on the main README.\r\n\r\nThanks.", "title": null, "type": "comment" }, { "action": "closed", "author": "archiecobbs", "comment_id": null, "datetime": 1464377597000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
337
false
false
337
true
burtonwilliamt/carlogicapi
null
184,250,252
12
null
[ { "action": "opened", "author": "cowang4", "comment_id": null, "datetime": 1476974768000, "masked_author": "username_0", "text": "", "title": "Write Installation Guide - Windows", "type": "issue" }, { "action": "closed", "author": "sptfire127", "comment_id": null, "datetime": 1477011770000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
0
false
false
0
false
jhudson8/react-chartjs
null
131,497,279
76
null
[ { "action": "opened", "author": "matrinox", "comment_id": null, "datetime": 1454626178000, "masked_author": "username_0", "text": "Is it possible to version the decencies so this package can be used in React 13? Right now any version of react-chartjs, including versions before React 14 was even announced, require React 14.x due to react-dom requiring React 14.x", "title": "Versioning?", "type": "issue" }, { "action": "created", "author": "austinpray", "comment_id": 180138857, "datetime": 1454635105000, "masked_author": "username_1", "text": "Here is the break: https://github.com/jhudson8/react-chartjs/commit/29297915b3aa92702b982b7dfdf2103e9390a9cf \r\n\r\nUse 0.6, I suppose. I'm open to bug fixes being backported to 0.6.x if you PR: https://github.com/jhudson8/react-chartjs/tree/0.6", "title": null, "type": "comment" }, { "action": "closed", "author": "austinpray", "comment_id": null, "datetime": 1459113769000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
474
false
false
474
false
line/line-bot-sdk-python
line
208,503,049
32
null
[ { "action": "opened", "author": "fhals", "comment_id": null, "datetime": 1487351726000, "masked_author": "username_0", "text": "I'm trying to send audio message via Line. The message was successfully sent from Line app. Then I get the binary via chunking. But it's weird that the binary output doesn't give the same voice as the original one. Any idea?", "title": "Audio output is not consistent with audio input", "type": "issue" }, { "action": "created", "author": "fhals", "comment_id": 280900248, "datetime": 1487486795000, "masked_author": "username_0", "text": "I think the problem is in my encoding.", "title": null, "type": "comment" }, { "action": "closed", "author": "fhals", "comment_id": null, "datetime": 1487486795000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
1
3
262
false
false
262
false
alisw/AliPhysics
alisw
214,699,793
154
{ "number": 154, "repo": "AliPhysics", "user_login": "alisw" }
[ { "action": "opened", "author": "brinick", "comment_id": null, "datetime": 1489669990000, "masked_author": "username_0", "text": "", "title": "Stress Test 10", "type": "issue" }, { "action": "created", "author": "alibuild", "comment_id": 287052434, "datetime": 1489670013000, "masked_author": "username_1", "text": "e1006035ec45b27d432f50fd000322a406a44730: approval required: 1 of @mkrzewic (mkrzewic), @loizides (Constantinos Loizides), @jmargutt (Jacopo Margutti), @rbertens (Redmer Alexander Bertens), @jgrosseo (Jan Fiete Grosse-Oetringhaus), @qgp (Jochen Klein), @mfasDa (Markus Fasel), @aiola (Salvatore Aiola), @username_3 (Laurent Aphecetche)\n\n_Comment with `+1` to approve and allow automatic merging,or with `+test` to run tests only. **Please comment on the pull request: [click here](https://github.com/alisw/AliPhysics/pull/154) and comment at the bottom of the page.**_", "title": null, "type": "comment" }, { "action": "created", "author": "ktf", "comment_id": 287055263, "datetime": 1489670653000, "masked_author": "username_2", "text": "+test", "title": null, "type": "comment" }, { "action": "created", "author": "alibuild", "comment_id": 287055425, "datetime": 1489670692000, "masked_author": "username_1", "text": "e1006035ec45b27d432f50fd000322a406a44730: testing approved: will not be automatically merged; starting testing. If testing succeeds, merging will require further approval from 1 of @mkrzewic (mkrzewic), @loizides (Constantinos Loizides), @jmargutt (Jacopo Margutti), @rbertens (Redmer Alexander Bertens), @jgrosseo (Jan Fiete Grosse-Oetringhaus), @qgp (Jochen Klein), @mfasDa (Markus Fasel), @aiola (Salvatore Aiola), @username_3 (Laurent Aphecetche)", "title": null, "type": "comment" }, { "action": "created", "author": "alibuild", "comment_id": 287071574, "datetime": 1489673980000, "masked_author": "username_1", "text": "e1006035ec45b27d432f50fd000322a406a44730: tests OK, approval required for merging: 1 of @mkrzewic (mkrzewic), @loizides (Constantinos Loizides), @jmargutt (Jacopo Margutti), @rbertens (Redmer Alexander Bertens), @jgrosseo (Jan Fiete Grosse-Oetringhaus), @qgp (Jochen Klein), @mfasDa (Markus Fasel), @aiola (Salvatore Aiola), @username_3 (Laurent Aphecetche)\n\n_Comment with `+1` to merge. **Please comment on the pull request: [click here](https://github.com/alisw/AliPhysics/pull/154) and comment at the bottom of the page.**_", "title": null, "type": "comment" }, { "action": "created", "author": "aphecetche", "comment_id": 287089164, "datetime": 1489677257000, "masked_author": "username_3", "text": "+1", "title": null, "type": "comment" } ]
4
6
1,551
false
false
1,551
true
uber/tchannel-python
uber
172,804,258
439
{ "number": 439, "repo": "tchannel-python", "user_login": "uber" }
[ { "action": "opened", "author": "yurishkuro", "comment_id": null, "datetime": 1471985688000, "masked_author": "username_0", "text": "I ran into similar issue with jaeger-client-python, but forgot to apply it here. The published egg should not contain `crossdock` module.\r\n\r\n@abhinav", "title": "Do not publish `crossdock` module, it's for tests only", "type": "issue" }, { "action": "created", "author": "breerly", "comment_id": 241875503, "datetime": 1471985747000, "masked_author": "username_1", "text": "Aaah, good catch! :shipit:", "title": null, "type": "comment" } ]
2
2
175
false
false
175
false
18F/calc
18F
174,055,751
629
{ "number": 629, "repo": "calc", "user_login": "18F" }
[ { "action": "opened", "author": "jseppi", "comment_id": null, "datetime": 1472572098000, "masked_author": "username_0", "text": "Work In Progress.\r\n\r\nCreating a decorator to handle form submissions for canceling Data Capture flows.\r\n\r\nCloses #478\r\n\r\nTo Do:\r\n- [ ] functionality\r\n- [ ] tests\r\n- [ ] add decorator to applicable view methods\r\n- [ ] styling tweaks for making cancel buttons", "title": "[WIP] Canceling data_capture flows", "type": "issue" }, { "action": "created", "author": "jseppi", "comment_id": 243603622, "datetime": 1472596590000, "masked_author": "username_0", "text": "Ugh, I can't seem to get my test methods to do what I think they should be doing.", "title": null, "type": "comment" }, { "action": "created", "author": "jseppi", "comment_id": 243801967, "datetime": 1472657352000, "masked_author": "username_0", "text": "ready for review @username_1", "title": null, "type": "comment" }, { "action": "created", "author": "jseppi", "comment_id": 243802851, "datetime": 1472657519000, "masked_author": "username_0", "text": "The problem I was having with tests was that I was trying to raise exceptions in the decorator, but those exceptions are not really catchable in a straightforward way. It seems that throwing decorator exceptions is not a great practice. Instead of checking arguments, I think we're covered by normal Django behaviors. For example, f a view name isn't found, then Django will through an exception somewhere else when it tries to do the reverse lookup, so I think that's ok.", "title": null, "type": "comment" }, { "action": "created", "author": "toolness", "comment_id": 243856804, "datetime": 1472668159000, "masked_author": "username_1", "text": "This looks good, feel free to merge it!", "title": null, "type": "comment" }, { "action": "created", "author": "jseppi", "comment_id": 243882899, "datetime": 1472673725000, "masked_author": "username_0", "text": "womp womp, travis failed with error `Cannot download \"https://github.com/sass/node-sass/releases/download/v3.8.0/linux-x64-47_binding.node\":`\r\n\r\nResubmitted the job", "title": null, "type": "comment" }, { "action": "created", "author": "jseppi", "comment_id": 243888585, "datetime": 1472674905000, "masked_author": "username_0", "text": "Lol, and now codeclimate is apparently stalled. Happy Wednesday!", "title": null, "type": "comment" }, { "action": "created", "author": "jseppi", "comment_id": 243895970, "datetime": 1472676420000, "masked_author": "username_0", "text": "Um, something is wrong with codeclimate. It's been running for nearly hour yet hasn't even finished checking out the code according to its status page. Given that it had a green light before the merge of #641, and #641 had its own green light, I am just going to merge this PR.\r\n\r\n<img width=\"934\" alt=\"screen shot 2016-08-31 at 3 46 43 pm\" src=\"https://cloud.githubusercontent.com/assets/697848/18145769/26174e1c-6f92-11e6-8b1d-61da06bb3c5f.png\">", "title": null, "type": "comment" } ]
2
8
1,550
false
false
1,550
true
NixOS/nixpkgs
NixOS
182,758,559
19,508
{ "number": 19508, "repo": "nixpkgs", "user_login": "NixOS" }
[ { "action": "opened", "author": "peterhoeg", "comment_id": null, "datetime": 1476356373000, "masked_author": "username_0", "text": "###### Motivation for this change\r\n\r\nAlso includes a basic nixos module.\r\n\r\nThis is ridiculously painful due to how dependencies are handled (or I'm missing something completely).\r\n\r\nThe basic dependencies for the application itself are declared up front, but each sub-module has a ```REQUIREMENTS``` array where other python packages are listed. homeassistant will then try to load those dependencies if the module is activated and if failing to do so, will fall back to using pip to install them.\r\n\r\nI honestly don't know what the best way to deal with this is. It's a rabbit hole of dependencies that reminds me of .rpm hell in the old RH days. Additionally, these sub modules will sometimes require specific versions which means multiple versions now need to be maintained and the maintenance cost just shoots up.\r\n\r\nAny thoughts @fridh?\r\n\r\n###### Things done\r\n\r\n- [X] Tested using sandboxing\r\n ([nix.useSandbox](http://nixos.org/nixos/manual/options.html#opt-nix.useSandbox) on NixOS,\r\n or option `build-use-sandbox` in [`nix.conf`](http://nixos.org/nix/manual/#sec-conf-file)\r\n on non-NixOS)\r\n- Built on platform(s)\r\n - [X] NixOS\r\n - [ ] OS X\r\n - [ ] Linux\r\n- [ ] Tested compilation of all pkgs that depend on this change using `nix-shell -p nox --run \"nox-review wip\"`\r\n- [X] Tested execution of all binary files (usually in `./result/bin/`)\r\n- [X] Fits [CONTRIBUTING.md](https://github.com/NixOS/nixpkgs/blob/master/.github/CONTRIBUTING.md).\r\n\r\n---", "title": "homeassistant: [WIP] init at 0.30.2", "type": "issue" }, { "action": "created", "author": "schneefux", "comment_id": 253486670, "datetime": 1476357876000, "masked_author": "username_1", "text": "[requirements-all.txt](https://github.com/home-assistant/home-assistant/blob/dev/requirements_all.txt) includes all the packages you would possibly need. The dynamic `pip` installation is merely for convenience so you don't have to install packages you don't use.", "title": null, "type": "comment" }, { "action": "created", "author": "FRidh", "comment_id": 253487451, "datetime": 1476358132000, "masked_author": "username_2", "text": "Lots of dependencies -> lots of work. That's just how it is right now. Outside of Nixpkgs you could use `pypi2nix`.", "title": null, "type": "comment" }, { "action": "created", "author": "peterhoeg", "comment_id": 253551657, "datetime": 1476373194000, "masked_author": "username_0", "text": "first of all, thank you @fridh for all the feedback, much appreciated!\r\n\r\nThis is a WIP as I wasn't sure if my approach was correct, so I will get all the items cleaned up you mentioned. All tests will be enabled of course, I just wanted to see if I could get this thing up and running first.\r\n\r\nBut it offhand seems like there should be a better way. Coming from ruby where the combination of ```bundler``` and ```bundix``` makes it *super* easy, packaging a complex python app seems extremely work intensive.", "title": null, "type": "comment" }, { "action": "created", "author": "FRidh", "comment_id": 253554692, "datetime": 1476373819000, "masked_author": "username_2", "text": "@username_0 you're welcome. \r\n\r\nThere should indeed be a better way, but unfortunately upstream doesn't provide any. Python packaging is quite a mess. People can put whatever code they want in `setup.py`. Therefore, the only way to find out what relations packages have, is to actually build them. This is the approach `pypi2nix` takes. But with extension types you need to override the results, and fixing test suites is still something you need to do yourself (if you're interested in the tests, that is).\r\n\r\nAs soon as Hydra allows network access during evaluation time, I will further work on https://github.com/NixOS/nixpkgs/pull/16005, which at least reduces the amount of work the packaging requires.", "title": null, "type": "comment" }, { "action": "created", "author": "FRidh", "comment_id": 253557234, "datetime": 1476374339000, "masked_author": "username_2", "text": "(hmm, but that should actually work now since https://github.com/NixOS/nix/commit/06bbfb6004942bfcddd930e746ee7a2bfe5c3872)", "title": null, "type": "comment" }, { "action": "created", "author": "peterhoeg", "comment_id": 253763808, "datetime": 1476440611000, "masked_author": "username_0", "text": "So for the time being, what would you recommend for packaging home assistant?\r\n\r\nThe way I see it, we can do one of the following:\r\n\r\n1) Package the bare minimum (ie the server without any modules and its requirements). Then let it download via PIP as it launches.\r\n\r\n2) Item 1 + how ever many additional modules I can be bothered to manually write expressions for.\r\n\r\n3) Use pypi2nix on the ```requirements_all.txt``` file and use it as an external source.\r\n\r\n4) Wait for a more elegant solution.\r\n\r\n\r\n2 seems a bit pointless as there will be modules that require PIP anyway and there is not much difference between having 70% and 97% of the packages dynamically installed.\r\n\r\n3 requires additional work on the part of the person using home assistant which doesn't seem like a nice solution.\r\n\r\nThat really only leaves us with option 1.", "title": null, "type": "comment" }, { "action": "created", "author": "FRidh", "comment_id": 253777991, "datetime": 1476445498000, "masked_author": "username_2", "text": "This won't work because it cannot write in the store. You would have to specify another directory to install the modules, however, the Nix Python won't be able to find those modules.\r\n\r\n\r\nI suggest for now that you create a new repo in which you define the module, and where you create the expressions with `pypi2nix`. If one wants to use `homeassistant`, they can clone the repo, and import it. There are other modules like that, e.g. [musnix](https://github.com/musnix/musnix). This saves you a lot of time, while keeping it fairly straightforward for others to use your module. Not everything needs to be in Nixpkgs.", "title": null, "type": "comment" }, { "action": "created", "author": "peterhoeg", "comment_id": 254254422, "datetime": 1476720757000, "masked_author": "username_0", "text": "@fridh assuming the home-assistant binary installs using ```--user```, shouldn't both python modules in the store and local user modules be available?\r\n\r\nIn any case, thanks to @garbas, ```pypi2nix``` is now able to generate the expressions for home-assistant, so I will be sticking that in a separate repository and move the nixos bits there too in the same way as musnix. \r\n\r\nWould you (the collective nix(os) maintainers be open to moving that repository under the main NixOS github organization if we handle changes similarly to nixpkgs (ie, only trusted project members can merge)? That should enable us to ship modules that cannot make it into the main repository but still be of the same high standard.", "title": null, "type": "comment" }, { "action": "created", "author": "FRidh", "comment_id": 255042938, "datetime": 1476952350000, "masked_author": "username_2", "text": "I think at some point it might make sense to put such repo's together under one umbrella.", "title": null, "type": "comment" }, { "action": "created", "author": "peterhoeg", "comment_id": 255046465, "datetime": 1476953280000, "masked_author": "username_0", "text": "For anyone else stumbling over this issue, @garbas has created a dedicated repos for python packages generated using pypi2nix which is where I'll be submitting the home-assistant stuff. https://github.com/garbas/nixpkgs-python\r\n\r\n@username_2, once again thank you for taking the time to explain things.", "title": null, "type": "comment" } ]
4
12
5,910
false
true
5,738
true
composer/composer
composer
17,458,591
2,135
null
[ { "action": "opened", "author": "boldtrn", "comment_id": null, "datetime": 1375285146000, "masked_author": "username_0", "text": "I wonder if it's possible to pass arguments to scripts that are called from the `composer.json`?\n\nE.G.\n\n```\n\"scripts\" : {\n \"post-update-cmd\" : [\n \"Mopa\\\\Bundle\\\\BootstrapBundle\\\\Composer\\\\ScriptHandler::postInstallSymlinkTwitterBootstrap\"\n ]\n}\n```\n\nNow I want to pass the argument `--no-symlink` to the script. But it doesn't work by adding `--no-symlink`.", "title": "Passing arguments to scripts", "type": "issue" }, { "action": "created", "author": "simonbergmann", "comment_id": 260742536, "datetime": 1479238394000, "masked_author": "username_1", "text": "@username_0 if you want to pass the argument --no-symlink to a script you can do this:\r\ncomposer post-update-cmd -- --no-symlink\r\nmore info here: https://getcomposer.org/doc/articles/scripts.md", "title": null, "type": "comment" }, { "action": "created", "author": "FGM", "comment_id": 283290372, "datetime": 1488360807000, "masked_author": "username_2", "text": "Creative use of xargs in the script definition might help, by echoing the flags you want and having the script command be \"xargs original_command\"", "title": null, "type": "comment" }, { "action": "created", "author": "pmgouveia", "comment_id": 310414028, "datetime": 1498145101000, "masked_author": "username_3", "text": "@username_2 can you elaborate? thanks! 👍", "title": null, "type": "comment" }, { "action": "created", "author": "olivertappin", "comment_id": 490409601, "datetime": 1557306335000, "masked_author": "username_4", "text": "This still seems to be an issue in the latest version of Composer (v1.8.5)", "title": null, "type": "comment" } ]
5
5
824
false
false
824
true
Microsoft/RTVS
Microsoft
181,539,192
2,449
{ "number": 2449, "repo": "RTVS", "user_login": "Microsoft" }
[ { "action": "opened", "author": "huguesv", "comment_id": null, "datetime": 1475792060000, "masked_author": "username_0", "text": "Fixes https://github.com/Microsoft/RTVS/issues/2409\r\n\r\nFile looks like this now:\r\n```\r\n# Application settings file.\r\n# File content was generated on 10/6/2016 3:09:07 PM.\r\n\r\nsettings <- new.env()\r\n\r\nsettings$name1 <- 'value1'\r\n\r\nsettings$name2 <- 'value2'\r\n\r\n```\r\n\r\nAnd it can import settings from v0.5 or older. Once you save, it will rewrite it in new format.\r\n\r\nSo if you source the settings file, you access them via `settings$name1`. That's not exactly what is mentioned in the bug though, which says you should be able to access them via `settings:::name1`. Not sure if that was a mistake of if there's a way to achieve that.", "title": "Store settings in an environment.", "type": "issue" }, { "action": "created", "author": "MikhailArkhipov", "comment_id": 252111347, "datetime": 1475794585000, "masked_author": "username_1", "text": "👍", "title": null, "type": "comment" }, { "action": "created", "author": "huguesv", "comment_id": 252156367, "datetime": 1475818152000, "masked_author": "username_0", "text": "Added a fix for #2420.\r\n\r\nAll values are escaped/unescaped when saving/writing to Settings.R, which means the UI is slightly annoying to use when newlines are present, but user can always edit those directly in Settings.R. The benefit is that the user doesn't need to worry about generating invalid strings, there's no need to know they are stored in R code as opposed XML or whatever.\r\n\r\nFYI `FromRStringLiteral` was not used before. I made changes to that one and `ToRStringLiteral` so that you can round-trip values that have characters that need escaping.", "title": null, "type": "comment" }, { "action": "created", "author": "MikhailArkhipov", "comment_id": 252269477, "datetime": 1475851020000, "masked_author": "username_1", "text": "👍", "title": null, "type": "comment" }, { "action": "created", "author": "huguesv", "comment_id": 254323090, "datetime": 1476735946000, "masked_author": "username_0", "text": "Added parsing of hex and octal escape sequence.", "title": null, "type": "comment" }, { "action": "created", "author": "int19h", "comment_id": 254649850, "datetime": 1476827402000, "masked_author": "username_2", "text": "👍", "title": null, "type": "comment" } ]
3
6
1,242
false
false
1,242
false
garnaat/kappa
null
189,850,124
94
null
[ { "action": "opened", "author": "jarv", "comment_id": null, "datetime": 1479331500000, "masked_author": "username_0", "text": "I'm sharing some code between several lambda functions. Instead of creating a module and installing it in each `_src` directory I am finding it easier to symlink to the common code like so:\r\n\r\n```\r\nfunc1/_src/common -> ../../common\r\nfunc2/_src/common -> ../../common\r\n```\r\n\r\nIn order to make this work for the zipfile creation I need to change `os.walk(lambda_dir)` to `os.walk(lambda_dir, followlinks=True)` in `function.py`.\r\n\r\nWould you open open to a PR to make this configurable or is there a better way to share code between lambda functions?", "title": "Following symlinks", "type": "issue" }, { "action": "created", "author": "josegonzalez", "comment_id": 261379138, "datetime": 1479419039000, "masked_author": "username_1", "text": "Sure go for it.", "title": null, "type": "comment" } ]
2
2
563
false
false
563
false
ocombe/ocLazyLoad
null
175,082,303
345
null
[ { "action": "opened", "author": "liasrose", "comment_id": null, "datetime": 1473085544000, "masked_author": "username_0", "text": "Hi everyone,\r\n\r\nwhile implementing oclazyload to the component router tutorial [https://docs.angularjs.org/guide/component-router](url), I came across the following problem:\r\n\r\n`this.gotoHeroes = function () {\r\nvar heroId = this.hero && this.hero.id;\r\n this.$router.navigate(['HeroList', {id: heroId}]);};`\r\n\r\n(this is a function for a Button that simply goes back in the path)\r\n\r\nproduces the Error: angular.js:13236 TypeError: Cannot read property 'navigate' of undefined\r\n\r\nDebugging showed that the router is the same router as in the app.js / hero.component, but it seems like it can't fall back to the path it knew before. What is interessting, since it worked perfectly without implementing lazy loading. \r\nIs there any coincidence?\r\n\r\nBest regards\r\nusername_0", "title": "Going back in the path doesn't work with oclazyload?", "type": "issue" }, { "action": "created", "author": "djKooks", "comment_id": 244862015, "datetime": 1473143781000, "masked_author": "username_1", "text": "@username_0 it is hard to know with this information because there are no comment about how lazy load has been implemented on your code. Could you show us more detail?", "title": null, "type": "comment" }, { "action": "created", "author": "liasrose", "comment_id": 244883563, "datetime": 1473150443000, "masked_author": "username_0", "text": "I implemented lazy loading like this in the app.js:\r\n\r\n`(function () {\r\n var app = angular.module('app', ['oc.lazyLoad', 'ngComponentRouter']);\r\n\r\n app.config(function ($locationProvider) {\r\n $locationProvider.html5Mode(true);\r\n });\r\n\r\n app.value('$routerRootComponent', 'app');\r\n\r\n\r\n app.component('app', {\r\n template: [\r\n '<a ng-link=\"[\\'Home\\']\">Home</a> |',\r\n '<a ng-link=\"[\\'Heroes\\']\">Heroes</a> |',\r\n '<a ng-link=\"[\\'CrisisCenter\\']\">Crisis Center</a>',\r\n '<hr>',\r\n '<ng-outlet></ng-outlet>'\r\n ].join('\\n'),\r\n controller: ['$router', '$ocLazyLoad', function ($router, $ocLazyLoad) {\r\n $router.config([\r\n {path: '/', name: 'Home', component: 'home', usaAsDefault: true},\r\n\r\n //Heroes Route\r\n {\r\n path: '/heroes/...',\r\n name: 'Heroes',\r\n loader: function () {\r\n // lazy load Heroes\r\n return $ocLazyLoad.load('/heroes/heroes.js')\r\n .then(function () {\r\n return 'heroes';\r\n });\r\n }\r\n },`\r\n\r\nLazy loading functions perfect, also loading to the \"subroute\", the heroList and heroDetail (both components of heroes, in this example everything is in one file)\r\n\r\n`$routeConfig: [\r\n {path: '/', name: 'HeroList', component: 'heroList', useAsDefault: true},\r\n {path: '/:id', name: 'HeroDetail', component: 'heroDetail'}\r\n ]`\r\n\r\nthe only thing that isn't working, is going back from HeroDetail to HeroList via the router (see code in my first comment above). I can also go back just using window.history.back(), so there is no urgent help needed, I was just curious why its not working anymore after implementing lazyloading.\r\n\r\nBest regards\r\nusername_0", "title": null, "type": "comment" }, { "action": "created", "author": "djKooks", "comment_id": 246238895, "datetime": 1473653124000, "masked_author": "username_1", "text": "@username_0 I am implementing this based on ui-router. It also does not load again when it moves to parent path because it is already loaded. Is your router correctly setup 'HeroList' and 'HeroDetail' as parent-children relation? \r\nI will try on ngComponentRouter too to see this goes well.", "title": null, "type": "comment" } ]
2
4
3,156
false
false
3,156
true
wangding/SeleniumIDEDoc
null
190,270,824
7
null
[ { "action": "opened", "author": "gaomengyao", "comment_id": null, "datetime": 1479460709000, "masked_author": "username_0", "text": "制作测试案例--录制:你会经常需要把 click 命令改为 # clickAndWait,来确保您的测试用例(**不**)会暂停,直到新页面加载完成。", "title": "【bug】表达错误", "type": "issue" }, { "action": "created", "author": "wangding", "comment_id": 261502301, "datetime": 1479465834000, "masked_author": "username_1", "text": "原文是什么?修改的结果是什么呢?", "title": null, "type": "comment" } ]
2
2
91
false
false
91
false
cmgmyr/laravel-messenger
null
190,280,554
180
null
[ { "action": "opened", "author": "jrleonr", "comment_id": null, "datetime": 1479463559000, "masked_author": "username_0", "text": "In the MessageControllers we have this:\r\n\r\n```php\r\n// show current user in list if not a current participant\r\n// $users = User::whereNotIn('id', $thread->participantsUserIds())->get();\r\n\r\n// don't show the current user in list\r\n$userId = Auth::user()->id;\r\n$users = User::whereNotIn('id', $thread->participantsUserIds($userId))->get();\r\n```\r\n\r\nThat will show all the users in the database except those on the participants table. This confuse me a bit. How do you don't show yourself in the participants list, if when you send your id, it's added twice. Something is not completely right but don't know what!! is the example not updated or the code itself?\r\n\r\nThanks!", "title": "Removing and showing participants list", "type": "issue" }, { "action": "created", "author": "cmgmyr", "comment_id": 266117819, "datetime": 1481316102000, "masked_author": "username_1", "text": "Hi @username_0,\r\nIf you take a look at the `update` method on the controller you'll see:\r\n\r\n```php\r\n$participant = Participant::firstOrCreate(\r\n [\r\n 'thread_id' => $thread->id,\r\n 'user_id' => Auth::user()->id,\r\n ]\r\n);\r\n$participant->last_read = new Carbon;\r\n$participant->save();\r\n```\r\n\r\nThe `firstOrCreate` will just grab the current user as a participant, if the current user is a new participant, then it will get added. It will not be duplicated in the database. Make sense? Feel free to reply to this thread if you have any more questions.", "title": null, "type": "comment" }, { "action": "closed", "author": "cmgmyr", "comment_id": null, "datetime": 1481316102000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
1,229
false
false
1,229
true
Ayuget/Redface
null
168,520,488
149
null
[ { "action": "opened", "author": "Ayuget", "comment_id": null, "datetime": 1469975536000, "masked_author": "username_0", "text": "depuis le dernière version, quand on est dans un sujet et qu'on rafraîchit ça ne rafraîchit que la page en cours. \nSi une nouvelle page est apparue on ne le sait pas.\n\n \n\nObligé de revenir à la liste des sujets et de la rafraîchir pour que la nouvelle page soit disponible", "title": "Nouvelles pages non détectées lors d'un rafraîchissement", "type": "issue" }, { "action": "created", "author": "nbonnec", "comment_id": 243831438, "datetime": 1472663041000, "masked_author": "username_1", "text": "Le problème vient de là : https://github.com/username_0/Redface/blob/master/app/src/main/java/com/ayuget/redface/ui/fragment/TopicFragment.java#L327-L333\r\n\r\nLe soft considère que ce n'est pas le même topic.", "title": null, "type": "comment" }, { "action": "created", "author": "Ayuget", "comment_id": 246135182, "datetime": 1473538613000, "masked_author": "username_0", "text": "Ouep bien vu !\n\nBizarre je n'ai plus les notifications lors de tes commentaires sur les issues, désolé du délai de réponse :)", "title": null, "type": "comment" }, { "action": "created", "author": "nbonnec", "comment_id": 247078611, "datetime": 1473871829000, "masked_author": "username_1", "text": "Oui c'est bien ce que je me disais, pas de problèmes :D", "title": null, "type": "comment" }, { "action": "closed", "author": "Ayuget", "comment_id": null, "datetime": 1476431965000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
5
654
false
false
654
true
pycontribs/jenkinsapi
pycontribs
227,656,206
551
null
[ { "action": "opened", "author": "tuukkamustonen", "comment_id": null, "datetime": 1494417660000, "masked_author": "username_0", "text": "##### ISSUE TYPE\r\n\r\nFeature Idea\r\n\r\n##### SUMMARY\r\n\r\nI need to use both `KrbRequester` and `CrumbRequester` at the same time, and current implementation doesn't support that.\r\n\r\nSo, I need to create a class that combines features from both. Something else would be nice, but I don't have suggestion how to implement it, really. The maintainer(s) are probably already aware of this issue, and have some idea?", "title": "Allow using multiple requesters at the same time", "type": "issue" }, { "action": "created", "author": "lechat", "comment_id": 312673706, "datetime": 1499095165000, "masked_author": "username_1", "text": "I am, maintainer, not using Kerberos and not using crumbs, so I have no place to test such requester... Please submit pull request for your combined class, we will review code and accept it.", "title": null, "type": "comment" } ]
3
5
793
false
true
597
false
dart-lang/pub-dartlang-dart
dart-lang
275,994,246
620
null
[ { "action": "opened", "author": "mit-mit", "comment_id": null, "datetime": 1511342241000, "masked_author": "username_0", "text": "The individual package pages show a tag for the package type, e.g. 'FLUTTER' here:\r\nhttps://pub.dartlang.org/experimental/packages/url_launcher#-readme-tab-\r\n\r\nFor flutter packages this currently links to https://pub.dartlang.org/flutter/packages. I think it should link to https://pub.dartlang.org/experimental/flutter.", "title": "Flutter tag links to incorrect page", "type": "issue" }, { "action": "created", "author": "mit-mit", "comment_id": 346289985, "datetime": 1511342250000, "masked_author": "username_0", "text": "cc @username_1", "title": null, "type": "comment" }, { "action": "created", "author": "isoos", "comment_id": 346295662, "datetime": 1511343561000, "masked_author": "username_1", "text": "This is fixed in code, but not deployed yet.", "title": null, "type": "comment" }, { "action": "created", "author": "mit-mit", "comment_id": 346298769, "datetime": 1511344236000, "masked_author": "username_0", "text": "Great, thanks", "title": null, "type": "comment" }, { "action": "created", "author": "kevmoo", "comment_id": 346494755, "datetime": 1511391287000, "masked_author": "username_2", "text": "Deployed!", "title": null, "type": "comment" }, { "action": "closed", "author": "kevmoo", "comment_id": null, "datetime": 1511391288000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
6
395
false
false
395
true
SumoLogic/elasticsearch-client
SumoLogic
210,286,519
105
null
[ { "action": "opened", "author": "logicbomb", "comment_id": null, "datetime": 1488086317000, "masked_author": "username_0", "text": "You should include the supported elastic search version numbers to the readme file. I spent too much time on this only to find it doesn't support the version of ES I'm using.", "title": "Add supported ES version to readme", "type": "issue" }, { "action": "created", "author": "rcoh", "comment_id": 282541804, "datetime": 1488098741000, "masked_author": "username_1", "text": "Good point, sorry about that. I've updated the README", "title": null, "type": "comment" }, { "action": "closed", "author": "rcoh", "comment_id": null, "datetime": 1488098742000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
228
false
false
228
false
sindresorhus/file-type
null
115,700,268
41
{ "number": 41, "repo": "file-type", "user_login": "sindresorhus" }
[ { "action": "opened", "author": "alexanderlperez", "comment_id": null, "datetime": 1446939921000, "masked_author": "username_0", "text": "Types added: xpi, cab, deb, ar, tz, tlz", "title": "Added handful of compressed file types", "type": "issue" }, { "action": "created", "author": "sindresorhus", "comment_id": 154801312, "datetime": 1446978529000, "masked_author": "username_1", "text": "Thanks :)", "title": null, "type": "comment" }, { "action": "created", "author": "alexanderlperez", "comment_id": 154887204, "datetime": 1447026274000, "masked_author": "username_0", "text": "Love what you do, totally welcome. #22", "title": null, "type": "comment" } ]
2
3
87
false
false
87
false
NuGetPackageExplorer/NuGetPackageExplorer
NuGetPackageExplorer
251,547,554
222
null
[ { "action": "opened", "author": "bouyeijiang", "comment_id": null, "datetime": 1503289944000, "masked_author": "username_0", "text": "Hi! Thanks for reporting this feature/bug/question! \r\n\r\nPlease keep / fill in the relevant info from this template so that we can help you as best as possible.\r\n\r\n**Type** (choose one):\r\n\r\n- Bug\r\n- Feature request\r\n- Question\r\n\r\n**NPE version**: (e.g. 3.12) (see Help -> about)\r\n\r\n**Installed from**: ClickOnce / chocolatey.org / Zip on CodePlex / Windows Store\r\n\r\nIn case of a BUG:\r\n\r\n- What is the current result?\r\n- What is the expected result?\r\n- Please post full exception details in case of an Exception (message, stacktrace, inner exceptions)\r\n- Are there any work arrounds? yes/no\r\n- Is there a version in which it did worked? \r\n- Is there a package on Nuget.org which shows the bug?\r\n\r\nin case of a FEATURE REQUEST:\r\n \r\n - Why do we need it?\r\n - Please provide an use case.", "title": "can't push package", "type": "issue" }, { "action": "closed", "author": "bouyeijiang", "comment_id": null, "datetime": 1503290845000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "reopened", "author": "bouyeijiang", "comment_id": null, "datetime": 1503290927000, "masked_author": "username_0", "text": "Hi! Thanks for reporting this feature/bug/question! \r\n\r\nPlease keep / fill in the relevant info from this template so that we can help you as best as possible.\r\n\r\n**Type** (choose one):\r\n\r\n- Bug\r\n- Feature request\r\n- Question\r\n\r\n**NPE version**: (e.g. 3.12) (see Help -> about)\r\n\r\n**Installed from**: ClickOnce / chocolatey.org / Zip on CodePlex / Windows Store\r\n\r\nIn case of a BUG:\r\n\r\n- What is the current result?\r\n- What is the expected result?\r\n- Please post full exception details in case of an Exception (message, stacktrace, inner exceptions)\r\n- Are there any work arrounds? yes/no\r\n- Is there a version in which it did worked? \r\n- Is there a package on Nuget.org which shows the bug?\r\n\r\nin case of a FEATURE REQUEST:\r\n \r\n - Why do we need it?\r\n - Please provide an use case.", "title": "how to i remove packages from version?", "type": "issue" }, { "action": "created", "author": "tiesont", "comment_id": 323650289, "datetime": 1503293657000, "masked_author": "username_1", "text": "It would help if you actually filled in the issue template. It's not exactly clear what you are asking.", "title": null, "type": "comment" }, { "action": "created", "author": "304NotModified", "comment_id": 333814170, "datetime": 1507030134000, "masked_author": "username_2", "text": "Closing for now, will reopen if the provided info is provided", "title": null, "type": "comment" }, { "action": "closed", "author": "304NotModified", "comment_id": null, "datetime": 1507030136000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
6
1,728
false
false
1,728
false
mozilla/pdf.js
mozilla
187,738,227
7,788
null
[ { "action": "opened", "author": "rkni9ht", "comment_id": null, "datetime": 1478531862000, "masked_author": "username_0", "text": "Link to PDF file (or attach file here):\r\n[font-bug.pdf](https://github.com/mozilla/pdf.js/files/575695/font-bug.pdf)\r\nTried with multiple files, writing number in bottom right corner with reportlab in python using following code:\r\n```\r\nc.setFillColorRGB(255, 0, 0)\r\nc.setFont(\"Helvetica\", 12)\r\nc.drawString(width - 50, 10, text)\r\n```\r\n\r\nConfiguration:\r\n- Web browser and its version: Firefox 49.0.2\r\n\r\nSteps to reproduce the problem:\r\n1. open the pdf file in the browser\r\n\r\nWhat is the expected behavior? (add screenshot)\r\nExpected to see bates number in bottom right. \r\n![capture](https://cloud.githubusercontent.com/assets/15227621/20062765/d40345b8-a4fc-11e6-98d5-0fcdff919d1d.JPG)\r\n\r\nWhat went wrong? (add screenshot)\r\nIt doesn't load the text and prints to console:\r\n```\r\nWarning: fontRef not availablepdf.worker.js:2298:5\r\nWarning: Error during font loading: Font F1 is not availablepdf.js:277:5\r\nWarning: fontRef not available\r\n```", "title": "fontRef Error when drawing string with ReportLab", "type": "issue" }, { "action": "created", "author": "timvandermeij", "comment_id": 766094259, "datetime": 1611414826000, "masked_author": "username_1", "text": "Closing since this one is fixed now.", "title": null, "type": "comment" }, { "action": "closed", "author": "timvandermeij", "comment_id": null, "datetime": 1611414826000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
974
false
false
974
false
urbit/docs
urbit
263,636,603
208
null
[ { "action": "opened", "author": "joshuareagan", "comment_id": null, "datetime": 1507377358000, "masked_author": "username_0", "text": "\"A Hoon expression is called a twig. A twig is an AST node: the noun that the Hoon compiler makes when it parses a source expression.\"\r\n\r\nThis quotation is from twig.md. It's really puzzling. On the one hand, a \"twig\" is a Hoon expression, and Hoon expressions live in the source file. On the other hand, a \"twig\" is a node in a noun produced by the Hoon compiler when it's fed a source file.\r\n\r\nI object to using the same word for both the input and the output of the compiler. Basically I'm following up on @belisarius222 's point in this thread:\r\n\r\nhttps://github.com/urbit/docs/pull/205#issuecomment-334600935\r\n\r\nIf we want to talk about what the compiler does, even in this document, that's fine. I'm sure we could work out something that could be quite helpful. (I want to learn more about the compiler!) But we need to clarify our concepts because this sort of ambiguity leads to a lot of \"double vision\" for beginners. (\"Does term X mean y or z? Or is Urbit somehow so radical that y = z?\")\r\n\r\nI'm calling for a decision about what to do with the word \"twig\". It seems like its true definition is the latter one: it's an AST node in a noun produced by the compiler. The word \"expression\" is well-worn but perfectly fine for describing the things we have in source files.\r\n\r\nOf course I may be confused, in which case I'm happy to be corrected.\r\n\r\nI recommend other ambiguities be noted in this issue, if there are any.", "title": "Documentation ambiguity", "type": "issue" }, { "action": "closed", "author": "joshuareagan", "comment_id": null, "datetime": 1507398560000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "reopened", "author": "joshuareagan", "comment_id": null, "datetime": 1507398566000, "masked_author": "username_0", "text": "\"A Hoon expression is called a twig. A twig is an AST node: the noun that the Hoon compiler makes when it parses a source expression.\"\r\n\r\nThis quotation is from twig.md. It's really puzzling. On the one hand, a \"twig\" is a Hoon expression, and Hoon expressions live in the source file. On the other hand, a \"twig\" is a node in a noun produced by the Hoon compiler when it's fed a source file.\r\n\r\nI object to using the same word for both the input and the output of the compiler. Basically I'm following up on @belisarius222 's point in this thread:\r\n\r\nhttps://github.com/urbit/docs/pull/205#issuecomment-334600935\r\n\r\nIf we want to talk about what the compiler does, even in this document, that's fine. I'm sure we could work out something that could be quite helpful. (I want to learn more about the compiler!) But we need to clarify our concepts because this sort of ambiguity leads to a lot of \"double vision\" for beginners. (\"Does term X mean y or z? Or is Urbit somehow so radical that y = z?\")\r\n\r\nI'm calling for a decision about what to do with the word \"twig\". It seems like its true definition is the latter one: it's an AST node in a noun produced by the compiler. The word \"expression\" is well-worn but perfectly fine for describing the things we have in source files.\r\n\r\nOf course I may be confused, in which case I'm happy to be corrected.\r\n\r\nI recommend other ambiguities be noted in this issue, if there are any.", "title": "Documentation ambiguity", "type": "issue" }, { "action": "created", "author": "cgyarvin", "comment_id": 334954374, "datetime": 1507398956000, "masked_author": "username_1", "text": "Yes, “expression” for source and “twig” for node are fine.\n\nSent from my iPhone\n\n>", "title": null, "type": "comment" }, { "action": "created", "author": "joshuareagan", "comment_id": 334978828, "datetime": 1507430418000, "masked_author": "username_0", "text": "Huh, that was easy...\r\n\r\nNext question: upon making the change above, how to clarify the names of sub-expressions? Some runes have certain sub-expressions that must evaluate to molds; the rest can evaluate to anything. The current docs call the former \"moss\" and the latter \"seed\". These are also said to be aliases for \"twigs\". In hoon.hoon it looks like everything is just called a \"twig\", so \"moss\" and \"seed\" seem to be docs-only vocabulary. Right now they're treated in a weird way in the rune docs, like aliases of ++twig mold within hoon.hoon. Of course they aren't really, so we're free to reserve these concepts for just the subexpressions if we want to.\r\n\r\nI'm not really sure how much is gained by these names. Is there a possibility of conserving some weirdness points by eliminating them? It seems simpler and clearer to call normal sub-expressions (which can be anything) either just \"subexpressions\" or \"expression child/children\". Perhaps a special name is warranted for children that must evaluate to molds, in which case inertia and tradition may suffice for keeping the name \"moss\". But it's not a particularly intuitive name...", "title": null, "type": "comment" }, { "action": "created", "author": "joshuareagan", "comment_id": 334979795, "datetime": 1507432222000, "masked_author": "username_0", "text": "Or maybe we can speak in terms of \"moldy\" and \"woody\" subexpressions, dropping \"moss\" and \"seed\"...", "title": null, "type": "comment" }, { "action": "created", "author": "joshuareagan", "comment_id": 334979817, "datetime": 1507432257000, "masked_author": "username_0", "text": "I think my preference is simply to say \"subexpression\" but call the special ones \"moldy\".", "title": null, "type": "comment" }, { "action": "created", "author": "cgyarvin", "comment_id": 334979997, "datetime": 1507432603000, "masked_author": "username_1", "text": "I have a better idea: “value” and “pattern” modes.\n\nWe’ve essentially gone from one mode and two syntaxes, to two modes (parsing contexts) and one syntax.\n\nSent from my iPhone\n\n>", "title": null, "type": "comment" }, { "action": "created", "author": "joshuareagan", "comment_id": 334980157, "datetime": 1507432856000, "masked_author": "username_0", "text": "\"value\" and \"pattern\" sound good. What do you mean by \"mode\"?\r\n\r\n\"The regular, tall form of a `?:` Hoon expression start with the rune `?:` followed by a `gap`, and then three \"value\" ____s, each of which is separated from its neighbors by a `gap`.\"\r\n\r\nWe can fill in the blank with \"subexpression\" but maybe that's a mouthful.", "title": null, "type": "comment" }, { "action": "created", "author": "joshuareagan", "comment_id": 334980211, "datetime": 1507432940000, "masked_author": "username_0", "text": "Wait, I understand \"mode\" now. Sorry about the delay.", "title": null, "type": "comment" }, { "action": "created", "author": "joshuareagan", "comment_id": 335414229, "datetime": 1507627433000, "masked_author": "username_0", "text": "Just to make sure I understand the proposal: \"We have but one syntax, and two modes for parsing it. The value mode happens when the compiler takes the source and makes an AST of tagged unions. The pattern mode happens when the AST is parsed thereafter...\"\r\n\r\nI hate to play the same note over and over, but I'm not sure \"one syntax, two modes\" is the right way to go. Because, strictly speaking, there really *isn't* one syntax. The source file has `gap`s between subexpressions, and the AST product of the compiler doesn't. This probably sounds pedantic, but it really isn't. Of course there is an extremely tight semantic relationship between the two \"modes\", but mixing semantics and syntax in the documentation seems like a bad idea. We're giving people a brand new network of concepts, which means they can't lean as heavily on experience and intuition to figure out what we're saying. We have to make up for it by being really clear and precise in the docs.\r\n\r\nSyntax is about the physically detectable symbols in front of the coder. We should stick to that.", "title": null, "type": "comment" }, { "action": "created", "author": "joshuareagan", "comment_id": 350544485, "datetime": 1512908501000, "masked_author": "username_0", "text": "I deleted my old comments which were basically misunderstandings. I like the value/pattern distinction for expressions. With latest updates to Hoon and upcoming doc revisions, I'm happy.", "title": null, "type": "comment" }, { "action": "closed", "author": "joshuareagan", "comment_id": null, "datetime": 1512908502000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" } ]
2
13
6,122
false
false
6,122
false
swagger-api/swagger-codegen
swagger-api
196,976,304
4,446
null
[ { "action": "opened", "author": "gdurand", "comment_id": null, "datetime": 1482337953000, "masked_author": "username_0", "text": "##### Description\r\n\r\nIn a Model class constructor, if a parameter of type enum is optional, it is defaulted to null, which is illegal for enums.\r\n\r\n##### Swagger-codegen version\r\n\r\nmaster\r\n\r\n##### Suggest a Fix\r\n\r\nPerhaps default it to 0, but it is a valid enum value so it's no better, unless enums are generated starting with value 1.", "title": "[csharp] Optional enum parameters in method declarations should not be = null", "type": "issue" }, { "action": "created", "author": "jimschubert", "comment_id": 269262694, "datetime": 1482808005000, "masked_author": "username_1", "text": "This should already be addressed and fixed by #4145. @username_0 would you want to test my PR against your expectations?", "title": null, "type": "comment" }, { "action": "created", "author": "gdurand", "comment_id": 270079104, "datetime": 1483436865000, "masked_author": "username_0", "text": "Your PR fixes the compilation issue.", "title": null, "type": "comment" }, { "action": "created", "author": "wing328", "comment_id": 270086757, "datetime": 1483439547000, "masked_author": "username_2", "text": "@username_0 thanks for testing the PR, which has been merged into master.\r\n\r\nThanks @username_1 for the fix.", "title": null, "type": "comment" }, { "action": "closed", "author": "wing328", "comment_id": null, "datetime": 1483441658000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
5
595
false
false
595
true
tompave/fun_with_flags_ui
null
238,513,657
1
{ "number": 1, "repo": "fun_with_flags_ui", "user_login": "tompave" }
[ { "action": "opened", "author": "Gazler", "comment_id": null, "datetime": 1498476355000, "masked_author": "username_0", "text": "Instead of having actors displayed in the format:\r\n\r\n * user:1\r\n * user:2\r\n * user:404\r\n * country:uk\r\n\r\nAliases allow a function to be called with the flag, which could fetch\r\nthe users names from the database and transform them into:\r\n\r\n * User Name 1\r\n * User Name 2\r\n * user:404\r\n * United Kingdom\r\n\r\nThis is achieved with the following (optional) config:\r\n\r\n config :fun_with_flags_ui, :flag_page,\r\n alias_fn: &MyApp.Feature.flag_alias/1\r\n\r\nThe function expects a `%FunWithFlags.Flag{}` struct, and returns a\r\n`%FunWithFlags.Flag{}` struct.\r\n\r\nAn example (inefficient) implementation of the\r\n`MyApp.Feature.flag_alias/1` function could be:\r\n\r\n def flag_alias(flag) do\r\n gates = Enum.map(flag.gates, &get_gate_aliases/1)\r\n %{flag | gates: gates}\r\n end\r\n\r\n defp get_gate_aliases(%{for: \"user:\" <> id} = gate) do\r\n case MyApp.Repo.get(MyApp.User, id) do\r\n nil -> gate\r\n user -> %{gate | for: {\"account:\" <> id, user.name}}\r\n end\r\n end\r\n defp get_gate_aliases(%{for: \"country:uk\"} = gate) do\r\n %{gate | for: {\"country:uk\", \"United Kingdom\"}}\r\n end\r\n defp get_gate_aliases(gate), do: gate\r\n\r\nIf the `for` is a 2-tuple, in the format `{:id, :display_name}` then the\r\n`:id` will be used for all form actions (such as enable/disable) and the\r\n`:display_name` field will be used when actually displaying the actor\r\nrow.\r\n\r\nI chose to use a 2-tuple as it doesn't require any modification of the existing structs. One downside is that it does violate the typespec at https://github.com/username_1/fun_with_flags/blob/master/lib/fun_with_flags/gate.ex#L6", "title": "Allow aliases for actors on the flag page", "type": "issue" }, { "action": "created", "author": "tompave", "comment_id": 311223813, "datetime": 1498525599000, "masked_author": "username_1", "text": "Hello, and thank you for the PR!\r\n\r\nI understand the feature, but I'm not too sure about including it into the library.\r\n\r\nFeature toggles are mainly a tool for developers, and creating flags and gates – programmatically or through the web GUI – requires to know about the expected structure of actor IDs and which flag names will be referenced in code. Since users of the dashboard need to _think_ about the actual underlying IDs, I fear that displaying actors with prettified labels instead of the actual values would create confusion.\r\n\r\nThis is especially important because creating new actors will still require to enter the _actual ID values_ in the form input. Requiring to input values with a certain format and then displaying the same saved values with a different format would makes the UI harder to understand. Displaying the actual IDs serves also the purpose of providing examples of which kind of values are valid and already in use, which would be lost with this change.\r\n\r\nAlso, the actor ID formats are really up to the applications, so I'm not even sure about the default implementation for `alias_fn`. I used a colon in the examples because it's a common separator, but `user(52)`, `user-42` or even `userI_AM_BATMAN42` are all as valid formats as `user:42`.\r\n\r\nIn light of the above, I would discourage the introduction of this change.\r\n----\r\n\r\nIf you want to keep pursuing this functionality in you fork, however, I have a few recommendations:\r\n\r\n1. maybe display the prettified alias, but do so in a new column and keep the raw values in the screen.\r\n2. at the moment this PR is changing the internal shape of `%Flag{}` and `%Gate{}` structs when they're loaded, with the consequence that the rest of the library needs to be aware that they could be either vanilla structs or transformed structs. This is less than ideal because those structs are private (nothing outside `FunWithFlags` should modify them), and the rest of the library should safely rely on them having a certain structure. The proof that is makes things more complicated is that you had to sprinkle extra functions here and there to handle the potentially different structs. What if instead you leave everything as it is, and just add a `generate_label(gate)` function to be invoked only when you need to display the alias?\r\n3. doing what I suggested in the previous point also protect you from further changes in this library, to some extent. Try to keep the coupling to the internal details to a minimum.\r\n4. It might be easier to just use a `fn` instead of a `{Module, :function}` tuple. As long as the arity it fixed, it's more portable.\r\n\r\nI hope it makes sense!", "title": null, "type": "comment" }, { "action": "created", "author": "Gazler", "comment_id": 311278498, "datetime": 1498549090000, "masked_author": "username_0", "text": "This works fine when using Mix, but doesn't work with a release, the reference to the function will cause a syntax error in sys.config.", "title": null, "type": "comment" }, { "action": "created", "author": "tompave", "comment_id": 311287631, "datetime": 1498551557000, "masked_author": "username_1", "text": "I understand, but that then requires the developer to write a good aggregate query instead of an inefficient one.", "title": null, "type": "comment" } ]
2
4
4,518
false
false
4,518
true
RubyMoney/money-rails
RubyMoney
216,842,678
477
null
[ { "action": "opened", "author": "vikks", "comment_id": null, "datetime": 1490373878000, "masked_author": "username_0", "text": "", "title": "unknown attribute error when used with jsonb attributes", "type": "issue" }, { "action": "created", "author": "antstorm", "comment_id": 289125834, "datetime": 1490384790000, "masked_author": "username_1", "text": "@username_0 can you point to the file/line that throws the error?", "title": null, "type": "comment" }, { "action": "created", "author": "vikks", "comment_id": 289182073, "datetime": 1490408635000, "masked_author": "username_0", "text": "##### StackTrace\r\n\r\n```ruby\r\n (0.2ms) BEGIN\r\n (0.1ms) ROLLBACK\r\nCompleted 500 Internal Server Error in 66ms (ActiveRecord: 10.8ms)\r\n\r\nActiveModel::MissingAttributeError (can't write unknown attribute `price_fils`):\r\n \r\napp/controllers/products_controller.rb:32:in `update'\r\n Rendering /Users/vikas/.rvm/gems/ruby-2.3.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout\r\n Rendering /Users/vikas/.rvm/gems/ruby-2.3.0/gems/actionpack-5.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb\r\n(...)\r\n```\r\n##### in products_controller.rb\r\n\r\n```ruby\r\ndef update \r\n @product = Product.find params[:id]\r\n @product.update product_params\r\nend\r\n\r\n# params = {\"product\"=>{\"price\"=>\"100\"}, \"commit\"=>\"Update\", \"id\"=>\"13\"}\r\ndef product_params\r\n params.require(:product).permit!\r\nend\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "antstorm", "comment_id": 289268869, "datetime": 1490520806000, "masked_author": "username_1", "text": "@username_0 thanks, I'll have a closer look", "title": null, "type": "comment" }, { "action": "created", "author": "antstorm", "comment_id": 291119727, "datetime": 1491219845000, "masked_author": "username_1", "text": "@username_0 it seems like this behaviour is not supported, because `money-rails` uses `write_attribute` when modifying values (not the setter). You can still use the gem, but you'll need to modify your setter to something like:\r\n\r\n```ruby\r\ndef price=(new_value)\r\n properties[:price_cents] = Money.new(new_value).fractional\r\nend\r\n```\r\n\r\nHope that helps.", "title": null, "type": "comment" }, { "action": "created", "author": "swrobel", "comment_id": 363288076, "datetime": 1517883405000, "masked_author": "username_2", "text": "Alternatively, it seems you can do the following:\r\n\r\n```ruby\r\nclass Product < ApplicationRecord\r\n # properties is a jsonb column in postgreql\r\n store_accessor :properties, :price_cents\r\n monetize :price_cents, disable_validation: true\r\n validates :price, money: { greater_than_or_equal_to: 0 }\r\nend\r\n```\r\n\r\nSince bizarrely, the subunit (_cents column) setter is only overwritten with `write_attribute` [when validations are enabled](https://github.com/RubyMoney/money-rails/blob/v1.10.0/lib/money-rails/active_record/monetizable.rb#L130).", "title": null, "type": "comment" }, { "action": "created", "author": "antstorm", "comment_id": 363899090, "datetime": 1518035141000, "masked_author": "username_1", "text": "@username_2 good point, I guess we can override it anyways", "title": null, "type": "comment" }, { "action": "closed", "author": "semmons99", "comment_id": null, "datetime": 1614549795000, "masked_author": "username_3", "text": "", "title": null, "type": "issue" } ]
4
8
1,910
false
false
1,910
true
rhblind/django-gcharts
null
107,267,042
11
null
[ { "action": "opened", "author": "flurischt", "comment_id": null, "datetime": 1442606091000, "masked_author": "username_0", "text": "I'm currently on 1.7. Running ```manage.py check``` yields the following warning:\r\n```\r\n(vipris)~/D/g/z ❯❯❯ python manage.py check \r\n../venv/lib/python2.7/site-packages/gcharts/__init__.py:42: RemovedInDjango18Warning: `GChartsManager.get_query_set` method should be renamed `get_queryset`.\r\n```", "title": "Django 1.8 compatibility - get_query_set should be renamed", "type": "issue" }, { "action": "created", "author": "rhblind", "comment_id": 141555632, "datetime": 1442607440000, "masked_author": "username_1", "text": "Hi, thanks for reporting.\r\nThis library is in desperate need for some care and love, and I have it on my list. I'll try to make some time for updating to 1.8 compatibility and hopefully python 3.x as well.", "title": null, "type": "comment" } ]
2
2
500
false
false
500
false
pingcap/tidb
pingcap
147,716,572
1,088
{ "number": 1088, "repo": "tidb", "user_login": "pingcap" }
[ { "action": "opened", "author": "zimulala", "comment_id": null, "datetime": 1460460244000, "masked_author": "username_0", "text": "fix issue #1071", "title": "*: Fix issue #1071", "type": "issue" }, { "action": "created", "author": "coocood", "comment_id": 209805298, "datetime": 1460619092000, "masked_author": "username_1", "text": "LGTM", "title": null, "type": "comment" }, { "action": "created", "author": "shenli", "comment_id": 209835095, "datetime": 1460624026000, "masked_author": "username_2", "text": "LGTM", "title": null, "type": "comment" } ]
3
3
23
false
false
23
false
shivamdixit/WebGoatPHP
null
169,466,116
47
null
[ { "action": "opened", "author": "nhajiyani", "comment_id": null, "datetime": 1470342487000, "masked_author": "username_0", "text": "Hi,\r\nThis is not an issue per se with your repo, I am wondering whats happening with the webgoat project now that it is down.\r\n\r\nThanks.", "title": "http://webgoatphp.com/ is down", "type": "issue" }, { "action": "created", "author": "abiusx", "comment_id": 237675818, "datetime": 1470343044000, "masked_author": "username_1", "text": "Hmm…\nI hosted the website personally. Now that I’m no longer partaking in OWASP, we need volunteers to do that.\n-A\n\n>", "title": null, "type": "comment" }, { "action": "created", "author": "shivamdixit", "comment_id": 242309088, "datetime": 1472111862000, "masked_author": "username_2", "text": "Hi @username_0,\r\n\r\nWe will be bringing the website back up soon. You need to host the application locally till then. \r\n\r\nThanks!", "title": null, "type": "comment" }, { "action": "closed", "author": "shivamdixit", "comment_id": null, "datetime": 1472111871000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
4
380
false
false
380
true
opencv/opencv
opencv
126,731,096
5,972
{ "number": 5972, "repo": "opencv", "user_login": "opencv" }
[ { "action": "opened", "author": "varunagrawal", "comment_id": null, "datetime": 1452800227000, "masked_author": "username_0", "text": "When the ChamferMatcher object is deconstructed, it tries deleting the templates attached to it during the `matching` function. The templates are already deleted by the Template deconstructor though, and thus an error. Hence I have commented out the delete operation in the Template deconstructor.", "title": "Fix for missing templates when ChamferMatcher is deconstructed.", "type": "issue" }, { "action": "created", "author": "mshabunin", "comment_id": 231404469, "datetime": 1467994910000, "masked_author": "username_1", "text": "@username_0 , this solution can not be accepted because it will create memory leak. The `Matching` class creates templates in the `addTemplateFromImage` method and since it owns them - it should delete them. More code should be rewritten to correctly handle memory allocations in this algorithm.\r\n\r\nIf you have an advanced fix please create new PR, because this one is broken.", "title": null, "type": "comment" } ]
2
2
675
false
false
675
true
ManageIQ/manageiq
ManageIQ
65,214,601
2,426
{ "number": 2426, "repo": "manageiq", "user_login": "ManageIQ" }
[ { "action": "opened", "author": "romanblanco", "comment_id": null, "datetime": 1427722740000, "masked_author": "username_0", "text": "Parent issue: #2389\r\nShould be reviewed after #2425 got merged", "title": "Added missing semicolons, var's; using dot notation", "type": "issue" }, { "action": "created", "author": "martinpovolny", "comment_id": 95582976, "datetime": 1429795568000, "masked_author": "username_1", "text": "No further notes.", "title": null, "type": "comment" }, { "action": "created", "author": "martinpovolny", "comment_id": 96656890, "datetime": 1430142324000, "masked_author": "username_1", "text": "@username_0 : great, thx for the re-checking. I'd merge this right after we for a branch for the release.", "title": null, "type": "comment" } ]
3
10
1,823
false
true
185
true
calcinai/xero-php
null
104,439,029
86
null
[ { "action": "opened", "author": "FLamparski", "comment_id": null, "datetime": 1441186466000, "masked_author": "username_0", "text": "We all know that reading the source code is the best way to learn about a particular system, and the code is quite readable. However I think many developers would appreciate a separate documentation, or at least more examples like how to make a more complex query etc.\r\n\r\nI can help with that but I'll defer to you whether we use Sphinx + ReadTheDocs or PHPDoc + GitHub Pages, or something else entirely.", "title": "Better documentation needed", "type": "issue" }, { "action": "created", "author": "calcinai", "comment_id": 137201831, "datetime": 1441218734000, "masked_author": "username_1", "text": "I've used Sphinx, but like the idea of the doc being in the code, since it probably won't be too verbose anyway. I think that way it's more likely it stays up-to-date.", "title": null, "type": "comment" }, { "action": "created", "author": "FLamparski", "comment_id": 137230010, "datetime": 1441224738000, "masked_author": "username_0", "text": "I'm tinkering with adding some docs to the code on my fork, will PR you soon. I see you're already generating PHPDoc comments for the models, that's cool!", "title": null, "type": "comment" }, { "action": "created", "author": "ultradox", "comment_id": 306747265, "datetime": 1496829109000, "masked_author": "username_2", "text": "More examples and documentation would be much appreciated. The readability of the source code is a function of one's level of expertise, and I'm struggling. I don't understand how to harness return data, as described here https://community.xero.com/developer/discussion/51339152/\r\n\r\nAny pointers or assistance would be much appreciated.", "title": null, "type": "comment" }, { "action": "created", "author": "calcinai", "comment_id": 306747878, "datetime": 1496829259000, "masked_author": "username_1", "text": "@username_2 it's definitely something that needs doing, especially now that Xero are recommending this library. Unfortunately I just don't have the time to write it up at the moment - part of me also didn't want to do it until the 2.0 branch is out (a looooong time coming).", "title": null, "type": "comment" }, { "action": "created", "author": "calcinai", "comment_id": 306750654, "datetime": 1496829985000, "masked_author": "username_1", "text": "@username_2 In answer to your question on the Xero forum, look at the usage [here](https://github.com/username_1/xero-php#usage) for the basic idea - you'll get contact objects in there that will have all the methods available.", "title": null, "type": "comment" }, { "action": "created", "author": "ultradox", "comment_id": 306752062, "datetime": 1496830370000, "masked_author": "username_2", "text": "Thanks for the advice on the Xero forum, I'll try it out.", "title": null, "type": "comment" } ]
3
7
1,615
false
false
1,615
true
pantsbuild/pants
pantsbuild
256,466,308
4,858
{ "number": 4858, "repo": "pants", "user_login": "pantsbuild" }
[ { "action": "opened", "author": "mateor", "comment_id": null, "datetime": 1504991455000, "masked_author": "username_0", "text": "requests[security] has a dependency on pyopenssl, which is currently\r\ntriggering a depreaction due to an OpenSSL.rand call.\r\n\r\npyopenssl has fixed this issue in code, but is waiting for a maintainer\r\nto return from vacation and cut a release.\r\n\r\nIn the meantime, the release cannot be completed with the current\r\ndep due to the non-zero it raises.\r\n\r\n .7/site-packages/urllib3/contrib/pyopenssl.py:46: DeprecationWarning: OpenSSL.rand is deprecated - you should use os.urandom instead\r\n import OpenSSL.SSL\r\n **** Failed to install cryptography-2.0.3 (caused by: NonZeroExit(\"received exit code 1 during execution of\r\n\r\nThis was a CI-fix around ssl handshakes, and since the CI is currently having its own\r\nissues, I figured we could unlock the release while we wait.\r\n\r\nIf this commit lands, it should be short-term and be undone once the\r\npyopenssl can be released.\r\n\r\nReferences: #4856\r\n\r\n### Problem\r\n\r\n(_explain the context of the problem and why you're making this change. include\r\nreferences to all relevant github issues._)\r\n\r\n### Solution\r\n\r\n(_describe the modifications you've made._)\r\n\r\n### Result\r\n\r\n(_describe how your changes affect the end-user behavior of the system. this section is\r\noptional, and should generally be summarized in the title of the pull request._)", "title": "Downgrade to vanilla requests.", "type": "issue" }, { "action": "created", "author": "mateor", "comment_id": 328303701, "datetime": 1504991483000, "masked_author": "username_0", "text": "Lets see what the CI says, and if promising, I will pull in reviewers.", "title": null, "type": "comment" }, { "action": "created", "author": "mateor", "comment_id": 328308336, "datetime": 1504997781000, "masked_author": "username_0", "text": "Hmmm. This is failing an interpreter selection test for pex integration. No mention of it in the issues that I saw, but seems unrelated to the change in this patch: https://travis-ci.org/pantsbuild/pants/jobs/273705291#L1128", "title": null, "type": "comment" }, { "action": "created", "author": "mateor", "comment_id": 328791184, "datetime": 1505207193000, "masked_author": "username_0", "text": "Okay, according to [here](https://travis-ci.org/pantsbuild/pants/jobs/273473403), this CI failure is indeed a preexisting issue. So I will not feel compelled to block the release.\r\n\r\nMerging this and will put out the release after work on Tuesday", "title": null, "type": "comment" } ]
1
4
1,831
false
false
1,831
false
ionic-team/ionic-cli
ionic-team
78,944,386
432
null
[ { "action": "opened", "author": "l-ll", "comment_id": null, "datetime": 1432206045000, "masked_author": "username_0", "text": "after install ionic with `sudo npm install ionic -g` in mac,\ncan't run ionic command.\nalso can't find ionic in /usr/lcoal/bin/ \nPlease help me :sob:", "title": "ionic: command not found", "type": "issue" }, { "action": "created", "author": "XKushal", "comment_id": 462004811, "datetime": 1549678836000, "masked_author": "username_1", "text": "same issue. were u able to figure out?", "title": null, "type": "comment" }, { "action": "created", "author": "XKushal", "comment_id": 462004859, "datetime": 1549678870000, "masked_author": "username_1", "text": "same issue. were u able to figure out?", "title": null, "type": "comment" }, { "action": "created", "author": "Sachinbekre", "comment_id": 519486132, "datetime": 1565265106000, "masked_author": "username_2", "text": "same issue\r\n-bash: ionic: command not found", "title": null, "type": "comment" }, { "action": "created", "author": "abarkhuysen", "comment_id": 542510230, "datetime": 1571200749000, "masked_author": "username_3", "text": "same issue\r\n-bash: ionic: command not found", "title": null, "type": "comment" } ]
4
5
312
false
false
312
false
Blazemeter/taurus
Blazemeter
213,226,824
511
{ "number": 511, "repo": "taurus", "user_login": "Blazemeter" }
[ { "action": "opened", "author": "greyfenrir", "comment_id": null, "datetime": 1489113594000, "masked_author": "username_0", "text": "", "title": "add support of lists to json body", "type": "issue" }, { "action": "created", "author": "undera", "comment_id": 285694894, "datetime": 1489159043000, "masked_author": "username_1", "text": "Unit test to cover this case?", "title": null, "type": "comment" } ]
3
3
29
false
true
29
false
felixfbecker/vscode-php-intellisense
null
226,744,998
118
null
[ { "action": "opened", "author": "rogierverbrugge", "comment_id": null, "datetime": 1494053334000, "masked_author": "username_0", "text": "When I use __construct() to setup dependency injection the protected property that I set won't be available through $this.\r\n\r\nIt works when I use it directly\r\n![With helper](http://imgur.com/MONrGYh.png)\r\n\r\nBut not when it's a property\r\n![No helper](http://i.imgur.com/ND03kqe.png)\r\n\r\nAny idea how that's possible?", "title": "Setting protected properties in __construct", "type": "issue" }, { "action": "created", "author": "jens1o", "comment_id": 299620295, "datetime": 1494053442000, "masked_author": "username_1", "text": "What's your doc comment for the property? It relies on it", "title": null, "type": "comment" }, { "action": "created", "author": "rogierverbrugge", "comment_id": 299620649, "datetime": 1494053956000, "masked_author": "username_0", "text": "Thank you! Had to change it to AuthService instead of App\\Services\\AuthService.", "title": null, "type": "comment" }, { "action": "closed", "author": "rogierverbrugge", "comment_id": null, "datetime": 1494053956000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "felixfbecker", "comment_id": 299629534, "datetime": 1494065154000, "masked_author": "username_2", "text": "Fully qualified names must start with a leading backslash, otherwise they are resolved relative to the current namespace.", "title": null, "type": "comment" } ]
3
5
571
false
false
571
false
nilenso/reviews
nilenso
66,926,865
3
{ "number": 3, "repo": "reviews", "user_login": "nilenso" }
[ { "action": "opened", "author": "gja", "comment_id": null, "datetime": 1428423331000, "masked_author": "username_0", "text": "", "title": "Increase the height of the text box", "type": "issue" }, { "action": "created", "author": "timothyandrew", "comment_id": 90822507, "datetime": 1428475885000, "masked_author": "username_1", "text": "Thanks! :+1:", "title": null, "type": "comment" } ]
2
2
12
false
false
12
false
cookpad/expeditor
cookpad
223,731,597
27
{ "number": 27, "repo": "expeditor", "user_login": "cookpad" }
[ { "action": "opened", "author": "taiki45", "comment_id": null, "datetime": 1493020167000, "masked_author": "username_0", "text": "User should be able to select whether use or not:\r\nhttps://github.com/ruby-concurrency/concurrent-ruby/blob/v1.0.5/README.md#note-for-gem-developers\r\n\r\n@cookpad/dev-infra Any thoughts?", "title": "We should not depend on this in a gemspec", "type": "issue" }, { "action": "created", "author": "taiki45", "comment_id": 296573070, "datetime": 1493022196000, "masked_author": "username_0", "text": "Tests are fragile now... retried.", "title": null, "type": "comment" } ]
1
2
217
false
false
217
false
thephpleague/omnipay-authorizenet
thephpleague
60,204,763
18
{ "number": 18, "repo": "omnipay-authorizenet", "user_login": "thephpleague" }
[ { "action": "opened", "author": "judgej", "comment_id": null, "datetime": 1425732014000, "masked_author": "username_0", "text": "I hope the test coverage is enough. See what you think.\r\n\r\nThe DPM and SIM callback hash checks are supposed to work the same way. However, I am not convinced the SIM version does the right thing. In the callback, the hash should be against the shared secret and login ID, supplied by the merchant site, and the transaction reference and amount, supplied by the gateway in the callback POST data.That is how I have set up the DPM hash check. The SIM hash check looks at the amount supplied by the merchant site rather than in the POST data (which is arguiably fine as a check, *but* will product the wrong and less useful exception if that check fails), and the transaction id supplied by the merchant site. That second one is most definitely wrong - it should be the transaction reference, and that is only known for the first time in the callback as it is supplied as POST data (x_trans_id).\r\n\r\nI don't want to break sites already using SIM that have probably got a workaround in place, so the DPM hash is coded differently, and is used differently.", "title": "DPM support for Authorize.Net", "type": "issue" }, { "action": "created", "author": "judgej", "comment_id": 101429159, "datetime": 1431466696000, "masked_author": "username_0", "text": "I'm not sure where we left this. Is it still waiting for something from me? It's been in production for me for a few months, with over $300k in approved transactions, so I'm confident that it's working, though that doesn't mean I have not missed out some test coverage.", "title": null, "type": "comment" }, { "action": "created", "author": "kayladnls", "comment_id": 101429409, "datetime": 1431466772000, "masked_author": "username_1", "text": ":+1: Thank you @username_0", "title": null, "type": "comment" }, { "action": "created", "author": "judgej", "comment_id": 101430208, "datetime": 1431467009000, "masked_author": "username_0", "text": "Well, I'm not going to be able to sleep tonight now. Thanks :-)", "title": null, "type": "comment" }, { "action": "created", "author": "kayladnls", "comment_id": 101434430, "datetime": 1431467845000, "masked_author": "username_1", "text": "but... why?", "title": null, "type": "comment" }, { "action": "created", "author": "judgej", "comment_id": 101435316, "datetime": 1431468115000, "masked_author": "username_0", "text": "Just new code hitting the big, wide world. They grow up so fast, but always come back crying when they fall over.", "title": null, "type": "comment" } ]
2
6
1,529
false
false
1,529
true
ampedandwired/html-webpack-plugin
null
199,746,038
541
null
[ { "action": "opened", "author": "PeachScript", "comment_id": null, "datetime": 1484031183000, "masked_author": "username_0", "text": "Hello, I got an error `fullTemplatePath` when I passing loader query parameters like the following code:\r\n\r\n```js\r\nnew HtmlWebpackPlugin({\r\n filename: 'index.html',\r\n template: '!!html!swig?raw=true!./src/tmpl/index.html'\r\n```\r\n\r\nThen I got an error `fullTemplatePath`:\r\n```\r\n!!html!/Absolute/path/to/context/swig?raw=true!./src/tmpl/index.swig\r\n```\r\n\r\nSo the `Child compilation` certainly failed, I read the source code and debug it, I think this problem caused by regexp in the `getFullTemplatePath` function, because the current regexp no deal with loader query parameters, it will match the `swig` substring and resolve it as a file path, is that right?", "title": "Template path resolving error if passing loader query parameters", "type": "issue" }, { "action": "created", "author": "PeachScript", "comment_id": 271502083, "datetime": 1484031979000, "masked_author": "username_0", "text": "I created a pull request to fix it, please review it.\r\n\r\nAnd this PR has been tested locally against Node.js v4, v5, v6, v7, but I don't know why the `travis-ci` failed...", "title": null, "type": "comment" }, { "action": "closed", "author": "PeachScript", "comment_id": null, "datetime": 1485712950000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "PeachScript", "comment_id": 275932796, "datetime": 1485712950000, "masked_author": "username_0", "text": "PR has been merged, close this issue now.", "title": null, "type": "comment" } ]
1
4
871
false
false
871
false
neoziro/primus-cluster
null
31,348,913
3
null
[ { "action": "opened", "author": "rodincave", "comment_id": null, "datetime": 1397239125000, "masked_author": "username_0", "text": "Hi,\r\n\r\nI am wondering if there is possibility to use this plugin to send 1-to-1 messages from one user1 on server1 to user2 on server2 ?\r\nI installed the plugin with redis-rooms and redis-emitter. I saw how to broadcast a message to an entier room, but is there a way to send it to only one specific socket in a room ?\r\n\r\nThanks", "title": "Send a message to a specific user on an other instance", "type": "issue" }, { "action": "created", "author": "SeyZ", "comment_id": 70428496, "datetime": 1421618647000, "masked_author": "username_1", "text": ":+1: for this feature request", "title": null, "type": "comment" }, { "action": "created", "author": "davidlondono", "comment_id": 93584951, "datetime": 1429136199000, "masked_author": "username_2", "text": "I thought I could send a event to a spark by using\r\n```\r\n primus.spark(sparkId)\r\n```\r\nbut it only return a spark if exist on that cluster", "title": null, "type": "comment" }, { "action": "created", "author": "PedroMD", "comment_id": 210440520, "datetime": 1460722230000, "masked_author": "username_3", "text": "@neoziro, I know this issue is closed, but did you really end up adding support for this as you've previously mentioned?", "title": null, "type": "comment" } ]
4
4
614
false
false
614
false
aws/aws-sdk-php-laravel
aws
127,434,180
94
null
[ { "action": "opened", "author": "sulthanallaudeen", "comment_id": null, "datetime": 1453206184000, "masked_author": "username_0", "text": "I am using US Standard\r\n\r\nAnd here's my Code\r\n\r\n$s3 = AWS::get('s3');\r\n$s3->putObject(array(\r\n 'Bucket' => 'Mybucketname',\r\n 'Body' => Input::get('name'),\r\n));\r\n\r\nWhile i am trying to upload, it is giving me the error", "title": "Issue while uploading in US Region", "type": "issue" }, { "action": "created", "author": "jeremeamia", "comment_id": 172893492, "datetime": 1453218415000, "masked_author": "username_1", "text": "What does your config look like?", "title": null, "type": "comment" }, { "action": "created", "author": "sulthanallaudeen", "comment_id": 173183317, "datetime": 1453291131000, "masked_author": "username_0", "text": "here is my config look like\r\n\r\n<?php\r\n\r\nreturn [\r\n 'credentials' => [\r\n 'key' => 'yy',\r\n 'secret' => 'xx',\r\n ],\r\n 'region' => 'us-east-1',\r\n 'version' => 'latest',\r\n\r\n // You can override settings for specific services\r\n 'Ses' => [\r\n 'region' => 'us-east-1',\r\n ],\r\n];\r\n\r\nMy Location is US Standard", "title": null, "type": "comment" }, { "action": "created", "author": "sulthanallaudeen", "comment_id": 173219544, "datetime": 1453299935000, "masked_author": "username_0", "text": "Also this is my code\r\n\r\n$s3->putObject(array(\r\n 'Bucket' => 'greenhoppingbucket',\r\n 'Key' => '1231',\r\n 'Body' => Input::get('name'),\r\n));\r\n\r\nIn the bucket i can find a file named as 1231 is created by my real file.. is not getting stored, which i had as 'body' .. \r\nWhat might be the issue.. help pls", "title": null, "type": "comment" }, { "action": "created", "author": "jeskew", "comment_id": 173299067, "datetime": 1453311657000, "masked_author": "username_2", "text": "@username_0 So you're no longer getting the \"Please send all future requests to this endpoint\" error, but an empty object is created in your bucket?", "title": null, "type": "comment" }, { "action": "created", "author": "sulthanallaudeen", "comment_id": 173306598, "datetime": 1453312999000, "masked_author": "username_0", "text": "Yes in my bucket an empty object is created always", "title": null, "type": "comment" }, { "action": "created", "author": "sulthanallaudeen", "comment_id": 173307223, "datetime": 1453313066000, "masked_author": "username_0", "text": "$s3 = App::make('aws')->get('s3');\r\n$s3->putObject(array(\r\n 'Bucket' => 'greenhoppingbucket',\r\n 'Key' => 'somevalue',\r\n 'Body' => Input::get('name'),\r\n 'SourceFile' => Input::get('name'),\r\n));\r\n\r\nIn the above code, the output is , i am getting 'somevalue' as object created in bucket. but the files is not stored in the bucket.", "title": null, "type": "comment" }, { "action": "created", "author": "jeremeamia", "comment_id": 173318438, "datetime": 1453314987000, "masked_author": "username_1", "text": "What is the value of `Input::get('name')`? You must be sending an empty string to S3.\r\n\r\nAlso, you shouldn't be using both `Body` and `SourceFile`.", "title": null, "type": "comment" }, { "action": "created", "author": "sulthanallaudeen", "comment_id": 173319351, "datetime": 1453315169000, "masked_author": "username_0", "text": "In the jquery request i am getting the image by \r\n\r\nvar files = document.getElementById (\"upload\").files;\r\nvar file = files[0];\r\n$.ajax({\r\n method: \"POST\",\r\n url: \"imageUpload\",\r\n data: {\r\n 'name': file.name,\r\n 'type': file.type,\r\n }\r\n })\r\n .done(function(msg) {\r\n\r\nAnd inside the controller i am getting it by \r\n\r\nInput::get('name');\r\n\r\nnote : if i return `Input::get('name')` inside my controller, i can see the image's name over there..", "title": null, "type": "comment" }, { "action": "created", "author": "jeskew", "comment_id": 173396639, "datetime": 1453331839000, "masked_author": "username_2", "text": "So `Input::get('name')` is a file path on the server?", "title": null, "type": "comment" }, { "action": "created", "author": "jeskew", "comment_id": 179985815, "datetime": 1454610694000, "masked_author": "username_2", "text": "Based on the information available, it sounds like you're sending the file name to the server. You'll need to send the entire file unless the path being sent is on the server, not the client.\r\n\r\nPlease feel free to reopen if you have any questions or concerns.", "title": null, "type": "comment" }, { "action": "closed", "author": "jeskew", "comment_id": null, "datetime": 1454610695000, "masked_author": "username_2", "text": "", "title": null, "type": "issue" } ]
3
12
2,502
false
false
2,502
true
doctimjones/docker-c9-workstation
null
207,575,122
2
{ "number": 2, "repo": "docker-c9-workstation", "user_login": "doctimjones" }
[ { "action": "opened", "author": "boblannon", "comment_id": null, "datetime": 1487091613000, "masked_author": "username_0", "text": "", "title": "change localhost url in \"easiest way\" section", "type": "issue" }, { "action": "created", "author": "doctimjones", "comment_id": 279777184, "datetime": 1487093574000, "masked_author": "username_1", "text": "👍", "title": null, "type": "comment" } ]
2
2
1
false
false
1
false
vuejs/cn.vuejs.org
vuejs
122,906,648
86
null
[ { "action": "opened", "author": "qiansen1386", "comment_id": null, "datetime": 1450428618000, "masked_author": "username_0", "text": "![q -20151218164900](https://cloud.githubusercontent.com/assets/1759658/11892917/5100fc6e-a5a7-11e5-88e8-00867a8d8c8e.png)\r\n![q -20151218164908](https://cloud.githubusercontent.com/assets/1759658/11892918/5102a190-a5a7-11e5-95ad-652c8b852e13.png)\r\n![q -20151218164920](https://cloud.githubusercontent.com/assets/1759658/11892916/50ffc8da-a5a7-11e5-8cf1-08793d1f0d54.png)", "title": "为什么只有中文的首页还是推1.0.10。。。", "type": "issue" }, { "action": "closed", "author": "yyx990803", "comment_id": null, "datetime": 1450466049000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "yyx990803", "comment_id": 165874237, "datetime": 1450466049000, "masked_author": "username_1", "text": "已更新", "title": null, "type": "comment" }, { "action": "created", "author": "qiansen1386", "comment_id": 165935639, "datetime": 1450490767000, "masked_author": "username_0", "text": "感谢大牛!:joy:", "title": null, "type": "comment" } ]
2
4
383
false
false
383
false
docker/docker-py
docker
132,379,393
930
{ "number": 930, "repo": "docker-py", "user_login": "docker" }
[ { "action": "opened", "author": "speedplane", "comment_id": null, "datetime": 1455012815000, "masked_author": "username_0", "text": "Seems like a straightforward improvement to gzip our tarballs before sending them. For me, it greatly improved performance (reduced my own docker image from 120MB to 40MB).\r\n\r\nSigned-off-by: Michael Sander <michael.sander@docketalarm.com", "title": "Use gzip to compress tar balls before sending.", "type": "issue" }, { "action": "created", "author": "GordonTheTurtle", "comment_id": 181797737, "datetime": 1455012818000, "masked_author": "username_1", "text": "Please sign your commits following these rules:\nhttps://github.com/docker/docker/blob/master/CONTRIBUTING.md#sign-your-work\nThe easiest way to do this is to amend the last commit:\n~~~console\n$ git clone -b \"patch-1\" git@github.com:username_0/docker-py.git somewhere\n$ cd somewhere\n$ git rebase -i HEAD~2\neditor opens\nchange each 'pick' to 'edit'\nsave the file and quit\n$ git commit --amend -s --no-edit\n$ git rebase --continue # and repeat the amend for each commit\n$ git push -f\n~~~\n\nAmmending updates the existing PR. You **DO NOT** need to open a new one.", "title": null, "type": "comment" }, { "action": "created", "author": "speedplane", "comment_id": 181803233, "datetime": 1455013672000, "masked_author": "username_0", "text": "Also, FYI, I caught this while experiencing pain with Docker on Google's managed VM.\r\nhttps://code.google.com/p/google-cloud-sdk/issues/detail?id=456", "title": null, "type": "comment" }, { "action": "created", "author": "shin-", "comment_id": 200488803, "datetime": 1458758416000, "masked_author": "username_2", "text": "Closing via #1008", "title": null, "type": "comment" } ]
3
4
961
false
false
961
true
knsv/mermaid
null
201,797,026
461
null
[ { "action": "opened", "author": "XiaoZYang", "comment_id": null, "datetime": 1484815735000, "masked_author": "username_0", "text": "I install `mermaid` with command `$ npm install mermaid -g` . When I run it with command `mermaid $ftest_ile` I got this error:\r\n![2017-01-19 4 48 25 pm](https://cloud.githubusercontent.com/assets/8848479/22099638/227ce9da-de67-11e6-8f0a-c07682636225.png)\r\n\r\nThen I try `npm install phantomjs` and it works.\r\nNow, I am wondering it is a bug or wrong configuration in `package.js`(I found **\"phantomjs\":\"^2.1.3\"** in `package.js`).\r\nTHX!", "title": "Phantomjs Dependency", "type": "issue" }, { "action": "created", "author": "tylerlong", "comment_id": 372690745, "datetime": 1520952366000, "masked_author": "username_1", "text": "We do not use PhantomJS any more. Ref: https://github.com/mermaidjs/mermaid.cli", "title": null, "type": "comment" }, { "action": "closed", "author": "tylerlong", "comment_id": null, "datetime": 1520952366000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
3
515
false
false
515
false
trill-lang/LLVMSwift
trill-lang
203,464,680
51
null
[ { "action": "opened", "author": "CodaFi", "comment_id": null, "datetime": 1485458745000, "masked_author": "username_0", "text": "This is a formatted list of APIs we do not yet wrap.\r\n\r\n- [ ] LLVMAShr\r\n- [ ] LLVMAbortProcessAction\r\n- [ ] LLVMAdd\r\n- [ ] LLVMAddAlias\r\n- [ ] LLVMAddAlwaysInlinerPass\r\n- [ ] LLVMAddAnalysisPasses\r\n- [ ] LLVMAddArgumentPromotionPass\r\n- [ ] LLVMAddAttribute\r\n- [ ] LLVMAddAttributeAtIndex\r\n- [ ] LLVMAddBBVectorizePass\r\n- [ ] LLVMAddCallSiteAttribute\r\n- [ ] LLVMAddClause\r\n- [ ] LLVMAddConstantMergePass\r\n- [ ] LLVMAddDeadArgEliminationPass\r\n- [ ] LLVMAddDestination\r\n- [ ] LLVMAddFunctionAttr\r\n- [ ] LLVMAddFunctionAttrsPass\r\n- [ ] LLVMAddFunctionInliningPass\r\n- [ ] LLVMAddGlobalDCEPass\r\n- [ ] LLVMAddGlobalInAddressSpace\r\n- [ ] LLVMAddGlobalMapping\r\n- [ ] LLVMAddGlobalOptimizerPass\r\n- [ ] LLVMAddIPConstantPropagationPass\r\n- [ ] LLVMAddIPSCCPPass\r\n- [ ] LLVMAddInstrAttribute\r\n- [ ] LLVMAddInternalizePass\r\n- [ ] LLVMAddLoopVectorizePass\r\n- [ ] LLVMAddModule\r\n- [ ] LLVMAddNamedMetadataOperand\r\n- [ ] LLVMAddPruneEHPass\r\n- [ ] LLVMAddSLPVectorizePass\r\n- [ ] LLVMAddScalarReplAggregatesPassWithThreshold\r\n- [ ] LLVMAddStripDeadPrototypesPass\r\n- [ ] LLVMAddStripSymbolsPass\r\n- [ ] LLVMAddSymbol\r\n- [ ] LLVMAddTargetDependentFunctionAttr\r\n- [ ] LLVMAddTargetLibraryInfo\r\n- [ ] LLVMAddrSpaceCast\r\n- [ ] LLVMAlignment\r\n- [ ] LLVMAlloca\r\n- [ ] LLVMAlwaysInlineAttribute\r\n- [ ] LLVMAnalysis\r\n- [ ] LLVMAnd\r\n- [ ] LLVMAnyRegCallConv\r\n- [ ] LLVMAppendingLinkage\r\n- [ ] LLVMArgumentValueKind\r\n- [ ] LLVMAtomicCmpXchg\r\n- [ ] LLVMAtomicOrdering\r\n- [ ] LLVMAtomicOrderingAcquire\r\n- [ ] LLVMAtomicOrderingAcquireRelease\r\n- [ ] LLVMAtomicOrderingMonotonic\r\n- [ ] LLVMAtomicOrderingNotAtomic\r\n- [ ] LLVMAtomicOrderingRelease\r\n- [ ] LLVMAtomicOrderingSequentiallyConsistent\r\n- [ ] LLVMAtomicOrderingUnordered\r\n- [ ] LLVMAtomicRMW\r\n- [ ] LLVMAtomicRMWBinOp\r\n- [ ] LLVMAtomicRMWBinOpAdd\r\n- [ ] LLVMAtomicRMWBinOpAnd\r\n- [ ] LLVMAtomicRMWBinOpMax\r\n- [ ] LLVMAtomicRMWBinOpMin\r\n- [ ] LLVMAtomicRMWBinOpNand\r\n- [ ] LLVMAtomicRMWBinOpOr\r\n- [ ] LLVMAtomicRMWBinOpSub\r\n- [ ] LLVMAtomicRMWBinOpUMax\r\n- [ ] LLVMAtomicRMWBinOpUMin\r\n- [ ] LLVMAtomicRMWBinOpXchg\r\n- [ ] LLVMAtomicRMWBinOpXor\r\n- [ ] LLVMAttribute\r\n- [ ] LLVMAttributeFunctionIndex\r\n- [ ] LLVMAttributeIndex\r\n- [ ] LLVMAttributeRef\r\n- [ ] LLVMAttributeReturnIndex\r\n- [ ] LLVMAvailableExternallyLinkage\r\n- [ ] LLVMBasicBlockAsValue\r\n- [ ] LLVMBasicBlockValueKind\r\n- [ ] LLVMBitCast\r\n- [ ] LLVMBitReader\r\n- [ ] LLVMBitWriter\r\n- [ ] LLVMBlockAddress\r\n- [ ] LLVMBlockAddressValueKind\r\n- [ ] LLVMBr\r\n- [ ] LLVMBuildAddrSpaceCast\r\n- [ ] LLVMBuildAggregateRet\r\n- [ ] LLVMBuildArrayAlloca\r\n- [ ] LLVMBuildArrayMalloc\r\n- [ ] LLVMBuildAtomicCmpXchg\r\n- [ ] LLVMBuildAtomicRMW\r\n- [ ] LLVMBuildBinOp\r\n- [ ] LLVMBuildCast\r\n- [ ] LLVMBuildExactSDiv\r\n- [ ] LLVMBuildExtractElement\r\n- [ ] LLVMBuildExtractValue\r\n- [ ] LLVMBuildFPCast\r\n- [ ] LLVMBuildFPExt\r\n- [ ] LLVMBuildFPTrunc\r\n- [ ] LLVMBuildFence\r\n- [ ] LLVMBuildFree\r\n- [ ] LLVMBuildIndirectBr\r\n- [ ] LLVMBuildIntCast\r\n- [ ] LLVMBuildInvoke\r\n- [ ] LLVMBuildLandingPad\r\n- [ ] LLVMBuildMalloc\r\n- [ ] LLVMBuildNUWSub\r\n- [ ] LLVMBuildPointerCast\r\n- [ ] LLVMBuildPtrDiff\r\n- [ ] LLVMBuildPtrToInt\r\n- [ ] LLVMBuildResume\r\n- [ ] LLVMBuildSExtOrBitCast\r\n- [ ] LLVMBuildSelect\r\n- [ ] LLVMBuildShuffleVector\r\n- [ ] LLVMBuildVAArg\r\n- [ ] LLVMBuildZExtOrBitCast\r\n- [ ] LLVMByValAttribute\r\n- [ ] LLVMC\r\n- [ ] LLVMCAnalysis\r\n- [ ] LLVMCBitReader\r\n- [ ] LLVMCBitWriter\r\n- [ ] LLVMCCallConv\r\n- [ ] LLVMCCore\r\n- [ ] LLVMCCoreContext\r\n- [ ] LLVMCCoreInstructionBuilder\r\n- [ ] LLVMCCoreMemoryBuffers\r\n- [ ] LLVMCCoreModule\r\n- [ ] LLVMCCoreModuleProvider\r\n- [ ] LLVMCCorePassManagers\r\n- [ ] LLVMCCorePassRegistry\r\n- [ ] LLVMCCoreThreading\r\n- [ ] LLVMCCoreType\r\n- [ ] LLVMCCoreTypeFloat\r\n- [ ] LLVMCCoreTypeFunction\r\n- [ ] LLVMCCoreTypeInt\r\n- [ ] LLVMCCoreTypeOther\r\n- [ ] LLVMCCoreTypeSequential\r\n- [ ] LLVMCCoreTypeStruct\r\n- [ ] LLVMCCoreTypes\r\n- [ ] LLVMCCoreValueBasicBlock\r\n- [ ] LLVMCCoreValueConstant\r\n- [ ] LLVMCCoreValueConstantComposite\r\n- [ ] LLVMCCoreValueConstantExpressions\r\n- [ ] LLVMCCoreValueConstantGlobals\r\n- [ ] LLVMCCoreValueConstantScalar\r\n- [ ] LLVMCCoreValueFunction\r\n- [ ] LLVMCCoreValueFunctionParameters\r\n- [ ] LLVMCCoreValueGeneral\r\n- [ ] LLVMCCoreValueInstruction\r\n- [ ] LLVMCCoreValueInstructionAlloca\r\n- [ ] LLVMCCoreValueInstructionCall\r\n- [ ] LLVMCCoreValueInstructionExtractValue\r\n- [ ] LLVMCCoreValueInstructionGetElementPointer\r\n- [ ] LLVMCCoreValueInstructionInsertValue\r\n- [ ] LLVMCCoreValueInstructionPHINode\r\n- [ ] LLVMCCoreValueInstructionTerminator\r\n- [ ] LLVMCCoreValueMetadata\r\n- [ ] LLVMCCoreValueUser\r\n- [ ] LLVMCCoreValueUses\r\n- [ ] LLVMCCoreValueWithAlignment\r\n- [ ] LLVMCCoreValues\r\n- [ ] LLVMCDisassembler\r\n- [ ] LLVMCExecutionEngine\r\n- [ ] LLVMCInitialization\r\n- [ ] LLVMCLTO\r\n- [ ] LLVMCLinkTimeOptimizer\r\n- [ ] LLVMCObject\r\n- [ ] LLVMCSupportTypes\r\n- [ ] LLVMCTLTO\r\n- [ ] LLVMCTLTO_CACHING\r\n- [ ] LLVMCTarget\r\n- [ ] LLVMCTransforms\r\n- [ ] LLVMCTransformsIPO\r\n- [ ] LLVMCTransformsPassManagerBuilder\r\n- [ ] LLVMCTransformsScalar\r\n- [ ] LLVMCTransformsVectorize\r\n- [ ] LLVMCall\r\n- [ ] LLVMCallConv\r\n- [ ] LLVMCatchPad\r\n- [ ] LLVMCatchRet\r\n- [ ] LLVMCatchSwitch\r\n- [ ] LLVMCleanupPad\r\n- [ ] LLVMCleanupRet\r\n- [ ] LLVMCloneModule\r\n- [ ] LLVMColdAttribute\r\n- [ ] LLVMColdCallConv\r\n- [ ] LLVMCommonLinkage\r\n- [ ] LLVMConstAShr\r\n- [ ] LLVMConstAdd\r\n- [ ] LLVMConstAddrSpaceCast\r\n- [ ] LLVMConstAnd\r\n- [ ] LLVMConstBitCast\r\n- [ ] LLVMConstExactSDiv\r\n- [ ] LLVMConstExtractElement\r\n- [ ] LLVMConstExtractValue\r\n- [ ] LLVMConstFAdd\r\n- [ ] LLVMConstFCmp\r\n- [ ] LLVMConstFDiv\r\n- [ ] LLVMConstFMul\r\n- [ ] LLVMConstFNeg\r\n- [ ] LLVMConstFPCast\r\n- [ ] LLVMConstFPExt\r\n- [ ] LLVMConstFPToSI\r\n- [ ] LLVMConstFPToUI\r\n- [ ] LLVMConstFPTrunc\r\n- [ ] LLVMConstFRem\r\n- [ ] LLVMConstFSub\r\n- [ ] LLVMConstICmp\r\n- [ ] LLVMConstInBoundsGEP\r\n- [ ] LLVMConstInlineAsm\r\n- [ ] LLVMConstInsertElement\r\n- [ ] LLVMConstInsertValue\r\n- [ ] LLVMConstIntCast\r\n- [ ] LLVMConstIntGetSExtValue\r\n- [ ] LLVMConstIntGetZExtValue\r\n- [ ] LLVMConstIntOfArbitraryPrecision\r\n- [ ] LLVMConstIntOfString\r\n- [ ] LLVMConstIntOfStringAndSize\r\n- [ ] LLVMConstIntToPtr\r\n- [ ] LLVMConstLShr\r\n- [ ] LLVMConstMul\r\n- [ ] LLVMConstNSWAdd\r\n- [ ] LLVMConstNSWMul\r\n- [ ] LLVMConstNSWNeg\r\n- [ ] LLVMConstNSWSub\r\n- [ ] LLVMConstNUWAdd\r\n- [ ] LLVMConstNUWMul\r\n- [ ] LLVMConstNUWNeg\r\n- [ ] LLVMConstNUWSub\r\n- [ ] LLVMConstNamedStruct\r\n- [ ] LLVMConstNeg\r\n- [ ] LLVMConstNot\r\n- [ ] LLVMConstOr\r\n- [ ] LLVMConstPointerCast\r\n- [ ] LLVMConstPtrToInt\r\n- [ ] LLVMConstRealGetDouble\r\n- [ ] LLVMConstRealOfString\r\n- [ ] LLVMConstRealOfStringAndSize\r\n- [ ] LLVMConstSDiv\r\n- [ ] LLVMConstSExt\r\n- [ ] LLVMConstSExtOrBitCast\r\n- [ ] LLVMConstSIToFP\r\n- [ ] LLVMConstSRem\r\n- [ ] LLVMConstSelect\r\n- [ ] LLVMConstShl\r\n- [ ] LLVMConstShuffleVector\r\n- [ ] LLVMConstStringInContext\r\n- [ ] LLVMConstStructInContext\r\n- [ ] LLVMConstSub\r\n- [ ] LLVMConstTrunc\r\n- [ ] LLVMConstTruncOrBitCast\r\n- [ ] LLVMConstUDiv\r\n- [ ] LLVMConstUIToFP\r\n- [ ] LLVMConstURem\r\n- [ ] LLVMConstVector\r\n- [ ] LLVMConstXor\r\n- [ ] LLVMConstZExt\r\n- [ ] LLVMConstZExtOrBitCast\r\n- [ ] LLVMConstantAggregateZeroValueKind\r\n- [ ] LLVMConstantArrayValueKind\r\n- [ ] LLVMConstantDataArrayValueKind\r\n- [ ] LLVMConstantDataVectorValueKind\r\n- [ ] LLVMConstantExprValueKind\r\n- [ ] LLVMConstantFPValueKind\r\n- [ ] LLVMConstantIntValueKind\r\n- [ ] LLVMConstantPointerNullValueKind\r\n- [ ] LLVMConstantStructValueKind\r\n- [ ] LLVMConstantTokenNoneValueKind\r\n- [ ] LLVMConstantVectorValueKind\r\n- [ ] LLVMContext\r\n- [ ] LLVMContextCreate\r\n- [ ] LLVMContextDispose\r\n- [ ] LLVMContextGetDiagnosticContext\r\n- [ ] LLVMContextGetDiagnosticHandler\r\n- [ ] LLVMContextSetDiagnosticHandler\r\n- [ ] LLVMContextSetYieldCallback\r\n- [ ] LLVMConvergentAttribute\r\n- [ ] LLVMCore\r\n- [ ] LLVMCoreValueConstantGlobalAlias\r\n- [ ] LLVMCoreValueConstantGlobalVariable\r\n- [ ] LLVMCountBasicBlocks\r\n- [ ] LLVMCountParams\r\n- [ ] LLVMCountStructElementTypes\r\n- [ ] LLVMCreateBuilder\r\n- [ ] LLVMCreateDisasm\r\n- [ ] LLVMCreateDisasmCPU\r\n- [ ] LLVMCreateDisasmCPUFeatures\r\n- [ ] LLVMCreateEnumAttribute\r\n- [ ] LLVMCreateFunctionPassManager\r\n- [ ] LLVMCreateGenericValueOfFloat\r\n- [ ] LLVMCreateGenericValueOfInt\r\n- [ ] LLVMCreateGenericValueOfPointer\r\n- [ ] LLVMCreateInterpreterForModule\r\n- [ ] LLVMCreateJITCompilerForModule\r\n- [ ] LLVMCreateMCJITCompilerForModule\r\n- [ ] LLVMCreateMemoryBufferWithContentsOfFile\r\n- [ ] LLVMCreateMemoryBufferWithMemoryRange\r\n- [ ] LLVMCreateMemoryBufferWithMemoryRangeCopy\r\n- [ ] LLVMCreateMemoryBufferWithSTDIN\r\n- [ ] LLVMCreateMessage\r\n- [ ] LLVMCreateModuleProviderForExistingModule\r\n- [ ] LLVMCreateObjectFile\r\n- [ ] LLVMCreatePassManager\r\n- [ ] LLVMCreateSimpleMCJITMemoryManager\r\n- [ ] LLVMCreateStringAttribute\r\n- [ ] LLVMCreateTargetData\r\n- [ ] LLVMDLLExportLinkage\r\n- [ ] LLVMDLLExportStorageClass\r\n- [ ] LLVMDLLImportLinkage\r\n- [ ] LLVMDLLImportStorageClass\r\n- [ ] LLVMDLLStorageClass\r\n- [ ] LLVMDSError\r\n- [ ] LLVMDSNote\r\n- [ ] LLVMDSRemark\r\n- [ ] LLVMDSWarning\r\n- [ ] LLVMDefaultStorageClass\r\n- [ ] LLVMDefaultVisibility\r\n- [ ] LLVMDiagnosticHandler\r\n- [ ] LLVMDiagnosticInfoRef\r\n- [ ] LLVMDiagnosticSeverity\r\n- [ ] LLVMDisasmContextRef\r\n- [ ] LLVMDisasmDispose\r\n- [ ] LLVMDisasmInstruction\r\n- [ ] LLVMDisassembler_Option_AsmPrinterVariant\r\n- [ ] LLVMDisassembler_Option_PrintImmHex\r\n- [ ] LLVMDisassembler_Option_PrintLatency\r\n- [ ] LLVMDisassembler_Option_SetInstrComments\r\n- [ ] LLVMDisassembler_Option_UseMarkup\r\n- [ ] LLVMDisassembler_ReferenceType_DeMangled_Name\r\n- [ ] LLVMDisassembler_ReferenceType_InOut_None\r\n- [ ] LLVMDisassembler_ReferenceType_In_ARM64_ADDXri\r\n- [ ] LLVMDisassembler_ReferenceType_In_ARM64_ADR\r\n- [ ] LLVMDisassembler_ReferenceType_In_ARM64_ADRP\r\n- [ ] LLVMDisassembler_ReferenceType_In_ARM64_LDRXl\r\n- [ ] LLVMDisassembler_ReferenceType_In_ARM64_LDRXui\r\n- [ ] LLVMDisassembler_ReferenceType_In_Branch\r\n- [ ] LLVMDisassembler_ReferenceType_In_PCrel_Load\r\n- [ ] LLVMDisassembler_ReferenceType_Out_LitPool_CstrAddr\r\n- [ ] LLVMDisassembler_ReferenceType_Out_LitPool_SymAddr\r\n- [ ] LLVMDisassembler_ReferenceType_Out_Objc_CFString_Ref\r\n- [ ] LLVMDisassembler_ReferenceType_Out_Objc_Class_Ref\r\n- [ ] LLVMDisassembler_ReferenceType_Out_Objc_Message\r\n- [ ] LLVMDisassembler_ReferenceType_Out_Objc_Message_Ref\r\n- [ ] LLVMDisassembler_ReferenceType_Out_Objc_Selector_Ref\r\n- [ ] LLVMDisassembler_ReferenceType_Out_SymbolStub\r\n- [ ] LLVMDisassembler_VariantKind_ARM64_GOTPAGE\r\n- [ ] LLVMDisassembler_VariantKind_ARM64_GOTPAGEOFF\r\n- [ ] LLVMDisassembler_VariantKind_ARM64_PAGE\r\n- [ ] LLVMDisassembler_VariantKind_ARM64_PAGEOFF\r\n- [ ] LLVMDisassembler_VariantKind_ARM64_TLVOFF\r\n- [ ] LLVMDisassembler_VariantKind_ARM64_TLVP\r\n- [ ] LLVMDisassembler_VariantKind_ARM_HI16\r\n- [ ] LLVMDisassembler_VariantKind_ARM_LO16\r\n- [ ] LLVMDisassembler_VariantKind_None\r\n- [ ] LLVMDisposeExecutionEngine\r\n- [ ] LLVMDisposeGenericValue\r\n- [ ] LLVMDisposeMCJITMemoryManager\r\n- [ ] LLVMDisposeMemoryBuffer\r\n- [ ] LLVMDisposeModuleProvider\r\n- [ ] LLVMDisposeObjectFile\r\n- [ ] LLVMDisposePassManager\r\n- [ ] LLVMDisposeRelocationIterator\r\n- [ ] LLVMDisposeSectionIterator\r\n- [ ] LLVMDisposeSymbolIterator\r\n- [ ] LLVMDoubleTypeInContext\r\n- [ ] LLVMEnablePrettyStackTrace\r\n- [ ] LLVMExecutionEngine\r\n- [ ] LLVMExternalLinkage\r\n- [ ] LLVMExternalWeakLinkage\r\n- [ ] LLVMExtractElement\r\n- [ ] LLVMExtractValue\r\n- [ ] LLVMFAdd\r\n- [ ] LLVMFCmp\r\n- [ ] LLVMFDiv\r\n- [ ] LLVMFMul\r\n- [ ] LLVMFP128TypeInContext\r\n- [ ] LLVMFPExt\r\n- [ ] LLVMFPToSI\r\n- [ ] LLVMFPToUI\r\n- [ ] LLVMFPTrunc\r\n- [ ] LLVMFRem\r\n- [ ] LLVMFSub\r\n- [ ] LLVMFastCallConv\r\n- [ ] LLVMFatalErrorHandler\r\n- [ ] LLVMFence\r\n- [ ] LLVMFinalizeFunctionPassManager\r\n- [ ] LLVMFindFunction\r\n- [ ] LLVMFloatTypeInContext\r\n- [ ] LLVMFreeMachineCodeForFunction\r\n- [ ] LLVMFunctionValueKind\r\n- [ ] LLVMGeneralDynamicTLSModel\r\n- [ ] LLVMGenericValueIntWidth\r\n- [ ] LLVMGenericValueRef\r\n- [ ] LLVMGenericValueToFloat\r\n- [ ] LLVMGenericValueToInt\r\n- [ ] LLVMGenericValueToPointer\r\n- [ ] LLVMGetAllocatedType\r\n- [ ] LLVMGetAsString\r\n- [ ] LLVMGetAttribute\r\n- [ ] LLVMGetAttributeCountAtIndex\r\n- [ ] LLVMGetAttributesAtIndex\r\n- [ ] LLVMGetBasicBlockName\r\n- [ ] LLVMGetBasicBlockTerminator\r\n- [ ] LLVMGetBasicBlocks\r\n- [ ] LLVMGetBitcodeModule\r\n- [ ] LLVMGetBitcodeModule2\r\n- [ ] LLVMGetBitcodeModuleInContext\r\n- [ ] LLVMGetBitcodeModuleInContext2\r\n- [ ] LLVMGetBufferSize\r\n- [ ] LLVMGetBufferStart\r\n- [ ] LLVMGetCallSiteAttributeCount\r\n- [ ] LLVMGetCallSiteAttributes\r\n- [ ] LLVMGetCallSiteEnumAttribute\r\n- [ ] LLVMGetCallSiteStringAttribute\r\n- [ ] LLVMGetCalledValue\r\n- [ ] LLVMGetClause\r\n- [ ] LLVMGetCmpXchgFailureOrdering\r\n- [ ] LLVMGetCmpXchgSuccessOrdering\r\n- [ ] LLVMGetCondition\r\n- [ ] LLVMGetConstOpcode\r\n- [ ] LLVMGetCurrentDebugLocation\r\n- [ ] LLVMGetDLLStorageClass\r\n- [ ] LLVMGetDataLayout\r\n- [ ] LLVMGetDataLayoutStr\r\n- [ ] LLVMGetDiagInfoDescription\r\n- [ ] LLVMGetDiagInfoSeverity\r\n- [ ] LLVMGetElementAsConstant\r\n- [ ] LLVMGetElementPtr\r\n- [ ] LLVMGetEnumAttributeAtIndex\r\n- [ ] LLVMGetEnumAttributeKind\r\n- [ ] LLVMGetEnumAttributeKindForName\r\n- [ ] LLVMGetEnumAttributeValue\r\n- [ ] LLVMGetExecutionEngineTargetData\r\n- [ ] LLVMGetExecutionEngineTargetMachine\r\n- [ ] LLVMGetFCmpPredicate\r\n- [ ] LLVMGetFirstFunction\r\n- [ ] LLVMGetFirstGlobal\r\n- [ ] LLVMGetFirstTarget\r\n- [ ] LLVMGetFirstUse\r\n- [ ] LLVMGetFunctionAddress\r\n- [ ] LLVMGetFunctionAttr\r\n- [ ] LLVMGetFunctionCallConv\r\n- [ ] LLVMGetGC\r\n- [ ] LLVMGetGlobalParent\r\n- [ ] LLVMGetGlobalPassRegistry\r\n- [ ] LLVMGetGlobalValueAddress\r\n- [ ] LLVMGetICmpPredicate\r\n- [ ] LLVMGetIndices\r\n- [ ] LLVMGetInstructionCallConv\r\n- [ ] LLVMGetInstructionParent\r\n- [ ] LLVMGetIntrinsicID\r\n- [ ] LLVMGetLastEnumAttributeKind\r\n- [ ] LLVMGetLastFunction\r\n- [ ] LLVMGetLastGlobal\r\n- [ ] LLVMGetLinkage\r\n- [ ] LLVMGetMDKindID\r\n- [ ] LLVMGetMDKindIDInContext\r\n- [ ] LLVMGetMDNodeNumOperands\r\n- [ ] LLVMGetMDNodeOperands\r\n- [ ] LLVMGetMDString\r\n- [ ] LLVMGetMetadata\r\n- [ ] LLVMGetModuleIdentifier\r\n- [ ] LLVMGetNamedGlobal\r\n- [ ] LLVMGetNamedMetadataNumOperands\r\n- [ ] LLVMGetNamedMetadataOperands\r\n- [ ] LLVMGetNextFunction\r\n- [ ] LLVMGetNextGlobal\r\n- [ ] LLVMGetNextTarget\r\n- [ ] LLVMGetNormalDest\r\n- [ ] LLVMGetNumArgOperands\r\n- [ ] LLVMGetNumClauses\r\n- [ ] LLVMGetNumIndices\r\n- [ ] LLVMGetNumOperands\r\n- [ ] LLVMGetNumSuccessors\r\n- [ ] LLVMGetOperand\r\n- [ ] LLVMGetOperandUse\r\n- [ ] LLVMGetOrdering\r\n- [ ] LLVMGetParamParent\r\n- [ ] LLVMGetParams\r\n- [ ] LLVMGetPersonalityFn\r\n- [ ] LLVMGetPointerToGlobal\r\n- [ ] LLVMGetPreviousBasicBlock\r\n- [ ] LLVMGetPreviousFunction\r\n- [ ] LLVMGetPreviousGlobal\r\n- [ ] LLVMGetRelocationOffset\r\n- [ ] LLVMGetRelocationSymbol\r\n- [ ] LLVMGetRelocationType\r\n- [ ] LLVMGetRelocationTypeName\r\n- [ ] LLVMGetRelocationValueString\r\n- [ ] LLVMGetRelocations\r\n- [ ] LLVMGetSection\r\n- [ ] LLVMGetSectionAddress\r\n- [ ] LLVMGetSectionContainsSymbol\r\n- [ ] LLVMGetSectionContents\r\n- [ ] LLVMGetSectionName\r\n- [ ] LLVMGetSectionSize\r\n- [ ] LLVMGetSections\r\n- [ ] LLVMGetStringAttributeAtIndex\r\n- [ ] LLVMGetStringAttributeKind\r\n- [ ] LLVMGetStringAttributeValue\r\n- [ ] LLVMGetStructElementTypes\r\n- [ ] LLVMGetStructName\r\n- [ ] LLVMGetSuccessor\r\n- [ ] LLVMGetSwitchDefaultDest\r\n- [ ] LLVMGetSymbolAddress\r\n- [ ] LLVMGetSymbolName\r\n- [ ] LLVMGetSymbolSize\r\n- [ ] LLVMGetSymbols\r\n- [ ] LLVMGetTarget\r\n- [ ] LLVMGetTargetDescription\r\n- [ ] LLVMGetTargetFromName\r\n- [ ] LLVMGetTargetMachineCPU\r\n- [ ] LLVMGetTargetMachineFeatureString\r\n- [ ] LLVMGetTargetMachineTarget\r\n- [ ] LLVMGetTargetMachineTriple\r\n- [ ] LLVMGetTargetName\r\n- [ ] LLVMGetThreadLocalMode\r\n- [ ] LLVMGetTypeContext\r\n- [ ] LLVMGetUnwindDest\r\n- [ ] LLVMGetValueKind\r\n- [ ] LLVMGetVisibility\r\n- [ ] LLVMGetVolatile\r\n- [ ] LLVMGhostLinkage\r\n- [ ] LLVMGlobalAliasValueKind\r\n- [ ] LLVMGlobalIFuncValueKind\r\n- [ ] LLVMGlobalVariableValueKind\r\n- [ ] LLVMHalfTypeInContext\r\n- [ ] LLVMHasMetadata\r\n- [ ] LLVMHasPersonalityFn\r\n- [ ] LLVMHasUnnamedAddr\r\n- [ ] LLVMHiddenVisibility\r\n- [ ] LLVMICmp\r\n- [ ] LLVMIPO\r\n- [ ] LLVMInAllocaAttribute\r\n- [ ] LLVMInRegAttribute\r\n- [ ] LLVMIndirectBr\r\n- [ ] LLVMInitialExecTLSModel\r\n- [ ] LLVMInitialize\r\n- [ ] LLVMInitializeAnalysis\r\n- [ ] LLVMInitializeCodeGen\r\n- [ ] LLVMInitializeCore\r\n- [ ] LLVMInitializeIPA\r\n- [ ] LLVMInitializeIPO\r\n- [ ] LLVMInitializeInstCombine\r\n- [ ] LLVMInitializeInstrumentation\r\n- [ ] LLVMInitializeMCJITCompilerOptions\r\n- [ ] LLVMInitializeNativeAsmParser\r\n- [ ] LLVMInitializeNativeAsmPrinter\r\n- [ ] LLVMInitializeNativeDisassembler\r\n- [ ] LLVMInitializeNativeTarget\r\n- [ ] LLVMInitializeNativeTargetAsmParser\r\n- [ ] LLVMInitializeNativeTargetAsmPrinter\r\n- [ ] LLVMInitializeNativeTargetDisassembler\r\n- [ ] LLVMInitializeObjCARCOpts\r\n- [ ] LLVMInitializeScalarOpts\r\n- [ ] LLVMInitializeTarget\r\n- [ ] LLVMInitializeTransformUtils\r\n- [ ] LLVMInitializeVectorization\r\n- [ ] LLVMInlineAsmValueKind\r\n- [ ] LLVMInlineHintAttribute\r\n- [ ] LLVMInsertBasicBlock\r\n- [ ] LLVMInsertBasicBlockInContext\r\n- [ ] LLVMInsertElement\r\n- [ ] LLVMInsertValue\r\n- [ ] LLVMInstallFatalErrorHandler\r\n- [ ] LLVMInstructionClone\r\n- [ ] LLVMInstructionEraseFromParent\r\n- [ ] LLVMInstructionRemoveFromParent\r\n- [ ] LLVMInstructionValueKind\r\n- [ ] LLVMInt128Type\r\n- [ ] LLVMInt128TypeInContext\r\n- [ ] LLVMInt16Type\r\n- [ ] LLVMInt16TypeInContext\r\n- [ ] LLVMInt1Type\r\n- [ ] LLVMInt1TypeInContext\r\n- [ ] LLVMInt32Type\r\n- [ ] LLVMInt32TypeInContext\r\n- [ ] LLVMInt64Type\r\n- [ ] LLVMInt64TypeInContext\r\n- [ ] LLVMInt8Type\r\n- [ ] LLVMInt8TypeInContext\r\n- [ ] LLVMIntToPtr\r\n- [ ] LLVMIntTypeInContext\r\n- [ ] LLVMInternalLinkage\r\n- [ ] LLVMInvoke\r\n- [ ] LLVMIsA\r\n- [ ] LLVMIsAMDNode\r\n- [ ] LLVMIsAMDString\r\n- [ ] LLVMIsAtomicSingleThread\r\n- [ ] LLVMIsCleanup\r\n- [ ] LLVMIsConditional\r\n- [ ] LLVMIsConstantString\r\n- [ ] LLVMIsDeclaration\r\n- [ ] LLVMIsEnumAttribute\r\n- [ ] LLVMIsInBounds\r\n- [ ] LLVMIsMultithreaded\r\n- [ ] LLVMIsNull\r\n- [ ] LLVMIsOpaqueStruct\r\n- [ ] LLVMIsPackedStruct\r\n- [ ] LLVMIsRelocationIteratorAtEnd\r\n- [ ] LLVMIsSectionIteratorAtEnd\r\n- [ ] LLVMIsStringAttribute\r\n- [ ] LLVMIsSymbolIteratorAtEnd\r\n- [ ] LLVMIsTailCall\r\n- [ ] LLVMJumpTableAttribute\r\n- [ ] LLVMLShr\r\n- [ ] LLVMLabelTypeInContext\r\n- [ ] LLVMLandingPad\r\n- [ ] LLVMLandingPadCatch\r\n- [ ] LLVMLandingPadClauseTy\r\n- [ ] LLVMLandingPadFilter\r\n- [ ] LLVMLinkInInterpreter\r\n- [ ] LLVMLinkInMCJIT\r\n- [ ] LLVMLinkModules2\r\n- [ ] LLVMLinkOnceAnyLinkage\r\n- [ ] LLVMLinkOnceODRAutoHideLinkage\r\n- [ ] LLVMLinkOnceODRLinkage\r\n- [ ] LLVMLinkage\r\n- [ ] LLVMLinkerDestroySource\r\n- [ ] LLVMLinkerMode\r\n- [ ] LLVMLinkerPreserveSource_Removed\r\n- [ ] LLVMLinkerPrivateLinkage\r\n- [ ] LLVMLinkerPrivateWeakLinkage\r\n- [ ] LLVMLoad\r\n- [ ] LLVMLoadLibraryPermanently\r\n- [ ] LLVMLocalDynamicTLSModel\r\n- [ ] LLVMLocalExecTLSModel\r\n- [ ] LLVMMCJITCompilerOptions\r\n- [ ] LLVMMCJITMemoryManagerRef\r\n- [ ] LLVMMDNode\r\n- [ ] LLVMMDNodeInContext\r\n- [ ] LLVMMDString\r\n- [ ] LLVMMDStringInContext\r\n- [ ] LLVMMemoryBufferRef\r\n- [ ] LLVMMemoryDefValueKind\r\n- [ ] LLVMMemoryManagerAllocateCodeSectionCallback\r\n- [ ] LLVMMemoryManagerAllocateDataSectionCallback\r\n- [ ] LLVMMemoryManagerDestroyCallback\r\n- [ ] LLVMMemoryManagerFinalizeMemoryCallback\r\n- [ ] LLVMMemoryPhiValueKind\r\n- [ ] LLVMMemoryUseValueKind\r\n- [ ] LLVMMetadataAsValueValueKind\r\n- [ ] LLVMModuleProviderRef\r\n- [ ] LLVMMoveToContainingSection\r\n- [ ] LLVMMoveToNextRelocation\r\n- [ ] LLVMMoveToNextSection\r\n- [ ] LLVMMoveToNextSymbol\r\n- [ ] LLVMMul\r\n- [ ] LLVMNakedAttribute\r\n- [ ] LLVMNestAttribute\r\n- [ ] LLVMNoAliasAttribute\r\n- [ ] LLVMNoCaptureAttribute\r\n- [ ] LLVMNoImplicitFloatAttribute\r\n- [ ] LLVMNoInlineAttribute\r\n- [ ] LLVMNoRedZoneAttribute\r\n- [ ] LLVMNoReturnAttribute\r\n- [ ] LLVMNoUnwindAttribute\r\n- [ ] LLVMNonLazyBind\r\n- [ ] LLVMNonNullAttribute\r\n- [ ] LLVMNotThreadLocal\r\n- [ ] LLVMObject\r\n- [ ] LLVMObjectFileRef\r\n- [ ] LLVMOpInfo1\r\n- [ ] LLVMOpInfoCallback\r\n- [ ] LLVMOpInfoSymbol1\r\n- [ ] LLVMOpaqueAttributeRef\r\n- [ ] LLVMOpaqueBasicBlock\r\n- [ ] LLVMOpaqueBuilder\r\n- [ ] LLVMOpaqueContext\r\n- [ ] LLVMOpaqueDiagnosticInfo\r\n- [ ] LLVMOpaqueExecutionEngine\r\n- [ ] LLVMOpaqueGenericValue\r\n- [ ] LLVMOpaqueLTOCodeGenerator\r\n- [ ] LLVMOpaqueLTOModule\r\n- [ ] LLVMOpaqueMCJITMemoryManager\r\n- [ ] LLVMOpaqueMemoryBuffer\r\n- [ ] LLVMOpaqueModule\r\n- [ ] LLVMOpaqueModuleProvider\r\n- [ ] LLVMOpaqueObjectFile\r\n- [ ] LLVMOpaquePassManager\r\n- [ ] LLVMOpaquePassManagerBuilder\r\n- [ ] LLVMOpaquePassRegistry\r\n- [ ] LLVMOpaqueRelocationIterator\r\n- [ ] LLVMOpaqueSectionIterator\r\n- [ ] LLVMOpaqueSymbolIterator\r\n- [ ] LLVMOpaqueTargetData\r\n- [ ] LLVMOpaqueTargetLibraryInfotData\r\n- [ ] LLVMOpaqueTargetMachine\r\n- [ ] LLVMOpaqueThinLTOCodeGenerator\r\n- [ ] LLVMOpaqueType\r\n- [ ] LLVMOpaqueUse\r\n- [ ] LLVMOpaqueValue\r\n- [ ] LLVMOpcode\r\n- [ ] LLVMOptimizeForSizeAttribute\r\n- [ ] LLVMOptimizeNoneAttribute\r\n- [ ] LLVMOr\r\n- [ ] LLVMOrcAddEagerlyCompiledIR\r\n- [ ] LLVMOrcAddLazilyCompiledIR\r\n- [ ] LLVMOrcAddObjectFile\r\n- [ ] LLVMOrcCreateIndirectStub\r\n- [ ] LLVMOrcCreateInstance\r\n- [ ] LLVMOrcCreateLazyCompileCallback\r\n- [ ] LLVMOrcDisposeInstance\r\n- [ ] LLVMOrcDisposeMangledSymbol\r\n- [ ] LLVMOrcErrGeneric\r\n- [ ] LLVMOrcErrSuccess\r\n- [ ] LLVMOrcErrorCode\r\n- [ ] LLVMOrcGetErrorMsg\r\n- [ ] LLVMOrcGetMangledSymbol\r\n- [ ] LLVMOrcGetSymbolAddress\r\n- [ ] LLVMOrcJIT\r\n- [ ] LLVMOrcJITStackRef\r\n- [ ] LLVMOrcLazyCompileCallbackFn\r\n- [ ] LLVMOrcModuleHandle\r\n- [ ] LLVMOrcOpaqueJITStack\r\n- [ ] LLVMOrcRemoveModule\r\n- [ ] LLVMOrcSetIndirectStubPointer\r\n- [ ] LLVMOrcSymbolResolverFn\r\n- [ ] LLVMOrcTargetAddress\r\n- [ ] LLVMPHI\r\n- [ ] LLVMPPCFP128TypeInContext\r\n- [ ] LLVMParseBitcode\r\n- [ ] LLVMParseBitcode2\r\n- [ ] LLVMParseBitcodeInContext\r\n- [ ] LLVMParseBitcodeInContext2\r\n- [ ] LLVMParseCommandLineOptions\r\n- [ ] LLVMParseIRInContext\r\n- [ ] LLVMPassManagerBuilderCreate\r\n- [ ] LLVMPassManagerBuilderDispose\r\n- [ ] LLVMPassManagerBuilderPopulateFunctionPassManager\r\n- [ ] LLVMPassManagerBuilderPopulateLTOPassManager\r\n- [ ] LLVMPassManagerBuilderPopulateModulePassManager\r\n- [ ] LLVMPassManagerBuilderRef\r\n- [ ] LLVMPassManagerBuilderSetDisableSimplifyLibCalls\r\n- [ ] LLVMPassManagerBuilderSetDisableUnitAtATime\r\n- [ ] LLVMPassManagerBuilderSetDisableUnrollLoops\r\n- [ ] LLVMPassManagerBuilderSetOptLevel\r\n- [ ] LLVMPassManagerBuilderSetSizeLevel\r\n- [ ] LLVMPassManagerBuilderUseInlinerWithThreshold\r\n- [ ] LLVMPassRegistryRef\r\n- [ ] LLVMPrintMessageAction\r\n- [ ] LLVMPrintModuleToString\r\n- [ ] LLVMPrintTypeToString\r\n- [ ] LLVMPrintValueToString\r\n- [ ] LLVMPrivateLinkage\r\n- [ ] LLVMProtectedVisibility\r\n- [ ] LLVMPtrToInt\r\n- [ ] LLVMReadNoneAttribute\r\n- [ ] LLVMReadOnlyAttribute\r\n- [ ] LLVMRecompileAndRelinkFunction\r\n- [ ] LLVMRelocationIteratorRef\r\n- [ ] LLVMRemoveAttribute\r\n- [ ] LLVMRemoveCallSiteEnumAttribute\r\n- [ ] LLVMRemoveCallSiteStringAttribute\r\n- [ ] LLVMRemoveEnumAttributeAtIndex\r\n- [ ] LLVMRemoveFunctionAttr\r\n- [ ] LLVMRemoveInstrAttribute\r\n- [ ] LLVMRemoveModule\r\n- [ ] LLVMRemoveStringAttributeAtIndex\r\n- [ ] LLVMResetFatalErrorHandler\r\n- [ ] LLVMResume\r\n- [ ] LLVMRet\r\n- [ ] LLVMReturnsTwice\r\n- [ ] LLVMRunPassManager\r\n- [ ] LLVMRunStaticConstructors\r\n- [ ] LLVMRunStaticDestructors\r\n- [ ] LLVMSDiv\r\n- [ ] LLVMSExt\r\n- [ ] LLVMSExtAttribute\r\n- [ ] LLVMSIToFP\r\n- [ ] LLVMSRem\r\n- [ ] LLVMSafeStackAttribute\r\n- [ ] LLVMSanitizeAddressAttribute\r\n- [ ] LLVMScalarOpts\r\n- [ ] LLVMSearchForAddressOfSymbol\r\n- [ ] LLVMSectionIteratorRef\r\n- [ ] LLVMSelect\r\n- [ ] LLVMSetAtomicSingleThread\r\n- [ ] LLVMSetCleanup\r\n- [ ] LLVMSetCmpXchgFailureOrdering\r\n- [ ] LLVMSetCmpXchgSuccessOrdering\r\n- [ ] LLVMSetCondition\r\n- [ ] LLVMSetCurrentDebugLocation\r\n- [ ] LLVMSetDLLStorageClass\r\n- [ ] LLVMSetDataLayout\r\n- [ ] LLVMSetDisasmOptions\r\n- [ ] LLVMSetFunctionCallConv\r\n- [ ] LLVMSetGC\r\n- [ ] LLVMSetInstDebugLocation\r\n- [ ] LLVMSetInstrParamAlignment\r\n- [ ] LLVMSetInstructionCallConv\r\n- [ ] LLVMSetIsInBounds\r\n- [ ] LLVMSetLinkage\r\n- [ ] LLVMSetMetadata\r\n- [ ] LLVMSetModuleDataLayout\r\n- [ ] LLVMSetModuleIdentifier\r\n- [ ] LLVMSetModuleInlineAsm\r\n- [ ] LLVMSetNormalDest\r\n- [ ] LLVMSetOperand\r\n- [ ] LLVMSetOrdering\r\n- [ ] LLVMSetParamAlignment\r\n- [ ] LLVMSetPersonalityFn\r\n- [ ] LLVMSetSection\r\n- [ ] LLVMSetSuccessor\r\n- [ ] LLVMSetTailCall\r\n- [ ] LLVMSetTarget\r\n- [ ] LLVMSetTargetMachineAsmVerbosity\r\n- [ ] LLVMSetThreadLocalMode\r\n- [ ] LLVMSetUnnamedAddr\r\n- [ ] LLVMSetUnwindDest\r\n- [ ] LLVMSetVisibility\r\n- [ ] LLVMSetVolatile\r\n- [ ] LLVMShl\r\n- [ ] LLVMShuffleVector\r\n- [ ] LLVMShutdown\r\n- [ ] LLVMStackAlignment\r\n- [ ] LLVMStackProtectAttribute\r\n- [ ] LLVMStackProtectReqAttribute\r\n- [ ] LLVMStackProtectStrongAttribute\r\n- [ ] LLVMStartMultithreaded\r\n- [ ] LLVMStopMultithreaded\r\n- [ ] LLVMStore\r\n- [ ] LLVMStructGetTypeAtIndex\r\n- [ ] LLVMStructRetAttribute\r\n- [ ] LLVMStructTypeInContext\r\n- [ ] LLVMSub\r\n- [ ] LLVMSwiftErrorAttribute\r\n- [ ] LLVMSwiftSelfAttribute\r\n- [ ] LLVMSwitch\r\n- [ ] LLVMSymbolIteratorRef\r\n- [ ] LLVMSymbolLookupCallback\r\n- [ ] LLVMTarget\r\n- [ ] LLVMTargetHasAsmBackend\r\n- [ ] LLVMTargetHasJIT\r\n- [ ] LLVMTargetHasTargetMachine\r\n- [ ] LLVMTargetLibraryInfoRef\r\n- [ ] LLVMTargetMachineEmitToMemoryBuffer\r\n- [ ] LLVMThreadLocalMode\r\n- [ ] LLVMTrunc\r\n- [ ] LLVMTypeIsSized\r\n- [ ] LLVMTypeKind\r\n- [ ] LLVMUDiv\r\n- [ ] LLVMUIToFP\r\n- [ ] LLVMURem\r\n- [ ] LLVMUWTable\r\n- [ ] LLVMUndefValueValueKind\r\n- [ ] LLVMUnreachable\r\n- [ ] LLVMUserOp1\r\n- [ ] LLVMUserOp2\r\n- [ ] LLVMVAArg\r\n- [ ] LLVMValueAsBasicBlock\r\n- [ ] LLVMValueIsBasicBlock\r\n- [ ] LLVMValueKind\r\n- [ ] LLVMValueRefs\r\n- [ ] LLVMVectorize\r\n- [ ] LLVMVerifierFailureAction\r\n- [ ] LLVMVerifyFunction\r\n- [ ] LLVMViewFunctionCFG\r\n- [ ] LLVMViewFunctionCFGOnly\r\n- [ ] LLVMVisibility\r\n- [ ] LLVMVoidTypeInContext\r\n- [ ] LLVMWeakAnyLinkage\r\n- [ ] LLVMWeakODRLinkage\r\n- [ ] LLVMWebKitJSCallConv\r\n- [ ] LLVMWriteBitcodeToFD\r\n- [ ] LLVMWriteBitcodeToFileHandle\r\n- [ ] LLVMWriteBitcodeToMemoryBuffer\r\n- [ ] LLVMX86FP80TypeInContext\r\n- [ ] LLVMX86FastcallCallConv\r\n- [ ] LLVMX86MMXTypeInContext\r\n- [ ] LLVMX86StdcallCallConv\r\n- [ ] LLVMXor\r\n- [ ] LLVMYieldCallback\r\n- [ ] LLVMZExt\r\n- [ ] LLVMZExtAttribute\r\n- [ ] LLVM_ASM_PARSER\r\n- [ ] LLVM_ASM_PRINTER\r\n- [ ] LLVM_C_ANALYSIS_H\r\n- [ ] LLVM_C_BITREADER_H\r\n- [ ] LLVM_C_BITWRITER_H\r\n- [ ] LLVM_C_CORE_H\r\n- [ ] LLVM_C_DISASSEMBLER_H\r\n- [ ] LLVM_C_ERROR_HANDLING_H\r\n- [ ] LLVM_C_EXECUTIONENGINE_H\r\n- [ ] LLVM_C_INITIALIZATION_H\r\n- [ ] LLVM_C_IRREADER_H\r\n- [ ] LLVM_C_LINKER_H\r\n- [ ] LLVM_C_LINKTIMEOPTIMIZER_H\r\n- [ ] LLVM_C_LTO_H\r\n- [ ] LLVM_C_OBJECT_H\r\n- [ ] LLVM_C_ORCBINDINGS_H\r\n- [ ] LLVM_C_SUPPORT_H\r\n- [ ] LLVM_C_TARGETMACHINE_H\r\n- [ ] LLVM_C_TARGET_H\r\n- [ ] LLVM_C_TRANSFORMS_IPO_H\r\n- [ ] LLVM_C_TRANSFORMS_PASSMANAGERBUILDER_H\r\n- [ ] LLVM_C_TRANSFORMS_SCALAR_H\r\n- [ ] LLVM_C_TRANSFORMS_VECTORIZE_H\r\n- [ ] LLVM_C_TYPES_H\r\n- [ ] LLVM_DECLARE_VALUE_CAST\r\n- [ ] LLVM_DISASSEMBLER\r\n- [ ] LLVM_ENABLE_THREADS\r\n- [ ] LLVM_FOR_EACH_VALUE_SUBCLASS\r\n- [ ] LLVM_LTO_ASM_FAILURE\r\n- [ ] LLVM_LTO_MODULE_MERGE_FAILURE\r\n- [ ] LLVM_LTO_NO_TARGET\r\n- [ ] LLVM_LTO_NO_WORK\r\n- [ ] LLVM_LTO_NULL_OBJECT\r\n- [ ] LLVM_LTO_OPT_SUCCESS\r\n- [ ] LLVM_LTO_READ_FAILURE\r\n- [ ] LLVM_LTO_READ_SUCCESS\r\n- [ ] LLVM_LTO_UNKNOWN\r\n- [ ] LLVM_LTO_WRITE_FAILURE\r\n- [ ] LLVM_NATIVE_ASMPARSER\r\n- [ ] LLVM_NATIVE_ASMPRINTER\r\n- [ ] LLVM_NATIVE_DISASSEMBLER\r\n- [ ] LLVM_NATIVE_TARGET\r\n- [ ] LLVM_NATIVE_TARGETINFO\r\n- [ ] LLVM_NATIVE_TARGETMC\r\n- [ ] LLVM_TARGET", "title": "Missing Functionality in LLVMSwift", "type": "issue" }, { "action": "created", "author": "harlanhaskins", "comment_id": 275488117, "datetime": 1485459086000, "masked_author": "username_1", "text": "Thank you!!", "title": null, "type": "comment" }, { "action": "created", "author": "blacktop", "comment_id": 613677896, "datetime": 1586897886000, "masked_author": "username_2", "text": "+1 for Disassembly API coverage 🙏", "title": null, "type": "comment" } ]
3
3
26,959
false
false
26,959
false
ssllabs/ssllabs-scan
ssllabs
48,278,028
19
null
[ { "action": "opened", "author": "andrepereiradasilva", "comment_id": null, "datetime": 1415634307000, "masked_author": "username_0", "text": "The api results doesn't return some information that is in the online version.\r\nI detected this ones:\r\n- Chain certificates: [Signature Algorithm (ex: for SHA1 warnings) | Key ]\r\n- PCI compliant\r\n- FIPS-ready", "title": "Missing data from online version?", "type": "issue" }, { "action": "created", "author": "andrepereiradasilva", "comment_id": 68862452, "datetime": 1420549469000, "masked_author": "username_0", "text": "Don't know if you know, but ENISA plublished a new recommendations report. They divided their old report in two:\r\n\r\n**Study on cryptographic protocols**\r\nhttp://www.enisa.europa.eu/activities/identity-and-trust/library/deliverables/study-on-cryptographic-protocols\r\n\r\n**Algorithms, key size and parameters report 2014**\r\nhttp://www.enisa.europa.eu/activities/identity-and-trust/library/deliverables/algorithms-key-size-and-parameters-report-2014", "title": null, "type": "comment" }, { "action": "created", "author": "ivanr", "comment_id": 83998237, "datetime": 1426853811000, "masked_author": "username_1", "text": "Done in 1.16.1, now running on dev.ssllabs.com. New fields are: sigAlg, notBefore, notAfter, keyAlg, keyStrength, keySize.", "title": null, "type": "comment" }, { "action": "closed", "author": "ivanr", "comment_id": null, "datetime": 1426853811000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
4
775
false
false
775
false
auth0/passport-linkedin-oauth2
auth0
67,663,211
29
null
[ { "action": "opened", "author": "boris-petrov1214", "comment_id": null, "datetime": 1428693537000, "masked_author": "username_0", "text": "", "title": "linkedin announced the breaking change in their developer program, will that affect the library?", "type": "issue" }, { "action": "created", "author": "xeroxoid", "comment_id": 101832967, "datetime": 1431555115000, "masked_author": "username_1", "text": "It seems that it has...", "title": null, "type": "comment" }, { "action": "created", "author": "xeroxoid", "comment_id": 101842122, "datetime": 1431558019000, "masked_author": "username_1", "text": "So to get your app to work you have to limit your scope to the now allowed permissions. i.e.:\r\n\r\n````javascript\r\n ...\r\n linkedinStrategy = new LinkedInStrategy({\r\n clientID: config.linkedin.clientID,\r\n clientSecret: config.linkedin.clientSecret,\r\n callbackURL: config.linkedin.callbackURL,\r\n scope: ['r_basicprofile', 'w_share', 'r_emailaddress' ],\r\n passReqToCallback: true\r\n },...\r\n ...\r\n````\r\n\r\nSo no more leeching on them profiles :)", "title": null, "type": "comment" }, { "action": "created", "author": "sidonaldson", "comment_id": 102366185, "datetime": 1431686674000, "masked_author": "username_2", "text": "Yup, so \"r_contactinfo\" is now allowed only for authorised partners. I guess they want you to still use linkedin ;)", "title": null, "type": "comment" }, { "action": "created", "author": "chewedon", "comment_id": 126941924, "datetime": 1438451487000, "masked_author": "username_3", "text": "I'm using Sailsjs. \r\n\r\nThe call to: \r\n\r\n login: function(req, res) {\t\t\r\n\t\tpassport.authenticate('linkedin', function(err, user, info) {\r\n\t\t\t// The request will be redirected to LinkedIn for authentication, so this \r\n \t\t // function will not be called. \r\n\t\t});\r\n }\r\n\r\nDoes not redirect the user to the Linkedin login prompt for the user to enter email and password, could it be related to Linkedin's server changes or am I using this library in a wrong way ?\r\n\r\nAt the moment, my browser just hangs there, spinning and never completing the request for an access token.", "title": null, "type": "comment" } ]
4
5
1,189
false
false
1,189
false
srmeier/KnightOnline
null
219,376,119
42
null
[ { "action": "opened", "author": "Demircivi", "comment_id": null, "datetime": 1491338426000, "masked_author": "username_0", "text": "You were able to switch between pages by using mouse wheel in Item buy page of any NPC in 1299.", "title": "Navigating with mouse wheel in NPC items", "type": "issue" }, { "action": "closed", "author": "twostars", "comment_id": null, "datetime": 1495235249000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "twostars", "comment_id": 302830263, "datetime": 1495235249000, "masked_author": "username_1", "text": "This issue was moved to ApexKO/OpenKO#42", "title": null, "type": "comment" }, { "action": "reopened", "author": "twostars", "comment_id": null, "datetime": 1504483645000, "masked_author": "username_1", "text": "You were able to switch between pages by using mouse wheel in Item buy page of any NPC in 1299.", "title": "Navigating with mouse wheel in NPC items", "type": "issue" } ]
2
4
230
false
false
230
false
opentable/oc
opentable
217,268,119
423
{ "number": 423, "repo": "oc", "user_login": "opentable" }
[ { "action": "opened", "author": "nickbalestra", "comment_id": null, "datetime": 1490625593000, "masked_author": "username_0", "text": "- [x] CLi dev configure with `oc-template-jade` and `oc-template-handlebars` by default\r\n- [x] `getTemplate()` helper for the repository to leverage on template.getInfo() API\r\n- [x] add templates to contextObj\r\n\r\n@matteofigus did I miss anything? (Still WIP)", "title": "[WIP][GPT-517] Exposing registry supported templates via context", "type": "issue" }, { "action": "created", "author": "nickbalestra", "comment_id": 289484558, "datetime": 1490627586000, "masked_author": "username_0", "text": "Want to add some tests for this", "title": null, "type": "comment" }, { "action": "created", "author": "nickbalestra", "comment_id": 290123829, "datetime": 1490800759000, "masked_author": "username_0", "text": "@matteofigus Added some test, and some error handling. Also removed the need to define core-templates in the conf (next will need to see how to extend this dinamically for dev).", "title": null, "type": "comment" } ]
1
3
467
false
false
467
false
Microsoft/vscode
Microsoft
172,334,733
10,764
null
[ { "action": "opened", "author": "yesmar", "comment_id": null, "datetime": 1471805173000, "masked_author": "username_0", "text": "- VSCode Version: 1.4.0\r\n- OS Version: OS X 10.11.6, Ubuntu Linux 16.04.1 and Windows 10\r\n\r\nSteps to Reproduce:\r\n\r\n1. Open up a new terminal window\r\n2. Invoke VSCode thusly: `code -g :` or `code -g :9`\r\n\r\nIf you invoke VSCode from the command line with the `-g` switch but pass in bogus data (specifically, a `:` by itself or with a line number), VSCode will fail with an uncaught exception:\r\n\r\n![screen shot 2016-08-21 at 10 53 20 am](https://cloud.githubusercontent.com/assets/721/17839122/a7fabec0-6793-11e6-8e54-6bcb7553bbd7.png)\r\n\r\nThe exception is the same regardless of OS, which is expected.\r\n\r\nPassing `-g` with no argument will cause VSCode to open normally, as will passing in `-g file`, `-g file:` or `-g file:9`.\r\n\r\nRecommended behavior for `-g :` and `-g :9` is to act is if `-g` were passed alone. That is, open up a new buffer, but don't try to do any parsing or take anything for granted.", "title": "Bogus user input on the command line shouldn't result in an uncaught exception", "type": "issue" }, { "action": "closed", "author": "joaomoreno", "comment_id": null, "datetime": 1471859777000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
2
906
false
false
906
false
fortunejs/fortune
fortunejs
168,035,567
229
null
[ { "action": "opened", "author": "0x8890", "comment_id": null, "datetime": 1469692721000, "masked_author": "username_0", "text": "this limits the space allowed to the system memory. use disk instead.", "title": "Do not use memory in IndexedDB adapter", "type": "issue" }, { "action": "created", "author": "0x8890", "comment_id": 239406947, "datetime": 1470995563000, "masked_author": "username_0", "text": "Giving this more thought, actually I think that it would be useful to replace Buffer types with IDs so that they can be de-referenced. Then this Buffer collection would not be loaded in memory, but instead would be accessed like any other collection. This memory optimizing behavior should be opt-in because it changes how data is accessed.\r\n\r\nAlso, the IndexedDB adapter should implement LRU like the memory adapter does, otherwise it would result in records being lost but still on disk.", "title": null, "type": "comment" }, { "action": "closed", "author": "0x8890", "comment_id": null, "datetime": 1476202029000, "masked_author": "username_0", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "0x8890", "comment_id": 252963609, "datetime": 1476202029000, "masked_author": "username_0", "text": "Actually I think this might not be a good idea since it's too complicated and won't matter unless storing lots of data.", "title": null, "type": "comment" } ]
1
4
677
false
false
677
false
alexhultman/libvc
null
140,860,375
4
{ "number": 4, "repo": "libvc", "user_login": "alexhultman" }
[ { "action": "opened", "author": "minzmann", "comment_id": null, "datetime": 1458011946000, "masked_author": "username_0", "text": "", "title": "Fixed small typo", "type": "issue" }, { "action": "created", "author": "alexhultman", "comment_id": 196635427, "datetime": 1458012112000, "masked_author": "username_1", "text": "Lol. Thanks", "title": null, "type": "comment" } ]
2
2
11
false
false
11
false
rails/rails
rails
53,857,071
18,421
{ "number": 18421, "repo": "rails", "user_login": "rails" }
[ { "action": "opened", "author": "txus", "comment_id": null, "datetime": 1420801658000, "masked_author": "username_0", "text": "Strong parameters included `Rack::Test::UploadedFile` as a permitted scalar in 91d1ac0, adding an implicit dependency on `rack/test`. This commit makes that explicit so that cherry-picking on Rails modules (for instance using rails-api) doesn't break strong parameters.", "title": "Add missing require \"rack/test\"", "type": "issue" }, { "action": "created", "author": "rafaelfranca", "comment_id": 69363734, "datetime": 1420822881000, "masked_author": "username_1", "text": "Not sure if it is a good idea to add a test library as runtime dependency of strong parameters. But if we will do this can we require only upload_file?", "title": null, "type": "comment" }, { "action": "created", "author": "carlosantoniodasilva", "comment_id": 69512166, "datetime": 1421011403000, "masked_author": "username_2", "text": "/cc @username_3", "title": null, "type": "comment" }, { "action": "created", "author": "txus", "comment_id": 69538857, "datetime": 1421050403000, "masked_author": "username_0", "text": "@username_1 I know, I cringed at that too. However rack-test *is* already a runtime dependency of strong parameters (introduced in 91d1ac0), albeit implicit -- I'm just making it explicit.", "title": null, "type": "comment" }, { "action": "created", "author": "fxn", "comment_id": 69717896, "datetime": 1421141725000, "masked_author": "username_3", "text": "First a point about the need of an explicit require, which is the motivation for the PR.\r\n\r\nThe Rails code base is big, and we use Ruby autoloading to avoid repeating requires where we feel it pays off. Contract is that any client code should load the main file of a Rails component, you can't just cherry-pick a random file from a Rails library. The entry point of every Rails library declares autoloads among other things. See for example [*active_record.rb*](https://github.com/rails/rails/blob/master/activerecord/lib/active_record.rb).\r\n\r\nIn that line, every Rails component is also responsible for loading [*active_support/rails.rb*](https://github.com/rails/rails/blob/master/activesupport/lib/active_support/rails.rb), and thus no internal file is supposed to explicitly load any of those ones. You can freely use `blank?` for example, no need to put an explicit require for it (and it would be against project rules to do so).\r\n\r\nSo, in that sense, I am :-1: on the explicit require.\r\n\r\nAnother debate is whether `rack/test` should be loaded as a side-effect of the current autoload in Action Dispatch. That should not happen. Why do we have that autoload in a so [prominent place](https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch.rb#L31-L33)? Could we move it closer to something that is only evaluated in a test environment perhaps? (Note that `defined?(Rack::Test)` returns true because there's an autoload, so we cannot conditionally add the class.)", "title": null, "type": "comment" }, { "action": "created", "author": "Ferdy89", "comment_id": 172732199, "datetime": 1453176701000, "masked_author": "username_4", "text": "This was already implemented here https://github.com/rails/rails/pull/22475 so that makes this issue stale", "title": null, "type": "comment" }, { "action": "created", "author": "arthurnn", "comment_id": 175672904, "datetime": 1453907119000, "masked_author": "username_5", "text": "indeed this was done on https://github.com/rails/rails/pull/22475. Thanks @username_4 for noticing.\r\n\r\n@username_6 have you saw this discussion before doing that? thoughts? cc @matthewd", "title": null, "type": "comment" }, { "action": "created", "author": "claudiob", "comment_id": 175733797, "datetime": 1453912688000, "masked_author": "username_6", "text": "No thoughts about it, whatever works :wink:", "title": null, "type": "comment" } ]
7
8
2,434
false
false
2,434
true
funkia/turbine
funkia
231,911,897
56
null
[ { "action": "opened", "author": "dmitriz", "comment_id": null, "datetime": 1496023249000, "masked_author": "username_0", "text": "Motivated by the discussion in https://github.com/uzujs/uzu/issues/6#issuecomment-304519136,\r\nmaybe taking out the local Storage here as external parameter would make the data flow more explicit:\r\nhttps://github.com/funkia/turbine/blob/master/examples/todo/src/TodoApp.ts#L69\r\n\r\nSomehow I feel it does not really belong to the main app but comes from outside.\r\n\r\nIt might be interesting to compare with the implementation here:\r\nhttps://github.com/briancavalier/most-todomvc/blob/master/src/index.js#L75", "title": "Take the localStorage out as parameter?", "type": "issue" } ]
1
1
503
false
false
503
false
ruby-rdf/rdf-spec
ruby-rdf
134,149,488
58
{ "number": 58, "repo": "rdf-spec", "user_login": "ruby-rdf" }
[ { "action": "opened", "author": "no-reply", "comment_id": null, "datetime": 1455672614000, "masked_author": "username_0", "text": "Repositories that do not support :atomic_write don't need to implement atomic delete/insert operations.\n\nCorresponds to https://github.com/ruby-rdf/rdf/pull/279.", "title": "Only test atomic #delete_insert for :atomic_write", "type": "issue" } ]
2
2
462
false
true
161
false
goaop/framework
goaop
141,150,765
261
null
[ { "action": "opened", "author": "DavertMik", "comment_id": null, "datetime": 1458093771000, "masked_author": "username_0", "text": "Looks like current have big issues with parsing php code with \"::class\" in it. \r\n\r\nCode to reproduce:\r\n\r\n```php\r\n<?php\r\nrequire_once 'vendor/autoload.php';\r\n\r\n$string = \"<?php\r\nreturn [\r\n 'user' => User::class\r\n];\r\n\";\r\n\r\nerror_reporting(-1);\r\nini_set('display_errors', 'On');\r\nerror_reporting(E_ALL);\r\n$broker = new \\TokenReflection\\Broker(new \\TokenReflection\\Broker\\Backend\\Memory());\r\n$broker->processString($string, 'reflection_test.php');\r\necho \"done\";\r\n\r\n```\r\n\r\nInstalled packages:\r\n\r\n```\r\n➜ AspectMock git:(master) ✗ composer show\r\nYou are running composer with xdebug enabled. This has a major impact on runtime performance. See https://getcomposer.org/xdebug\r\nandrewsville/php-token-reflection 1.4.0 Library emulating the PHP internal reflection using just the tokenized source code.\r\ncodeception/base 2.1.5 BDD-style testing framework\r\ncodeception/specify 0.4.3 BDD code blocks for PHPUnit and Codeception\r\ncodeception/verify 0.3.0 BDD assertion library for PHPUnit\r\ndoctrine/annotations v1.2.7 Docblock Annotations Parser\r\ndoctrine/instantiator 1.0.5 A small, lightweight utility to instantiate objects in PHP without invoking their constructors\r\ndoctrine/lexer v1.0.1 Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.\r\ngoaop/framework 1.0.2 Framework for aspect-oriented programming in PHP.\r\nguzzlehttp/psr7 1.2.3 PSR-7 message implementation\r\njakubledl/dissect v1.0.1 Lexing and parsing in pure PHP\r\nmyclabs/deep-copy 1.5.0 Create deep copies (clones) of your objects\r\nphpdocumentor/reflection-docblock 2.0.4 \r\nphpspec/prophecy v1.6.0 Highly opinionated mocking framework for PHP 5.3+\r\nphpunit/php-code-coverage 2.2.4 Library that provides collection, processing, and rendering functionality for PHP code coverage information.\r\nphpunit/php-file-iterator 1.4.1 FilterIterator implementation that filters files based on a list of suffixes.\r\nphpunit/php-text-template 1.2.1 Simple template engine.\r\nphpunit/php-timer 1.0.7 Utility class for timing\r\nphpunit/php-token-stream 1.4.8 Wrapper around PHP's tokenizer extension.\r\nphpunit/phpunit 4.8.24 The PHP Unit Testing framework.\r\nphpunit/phpunit-mock-objects 2.3.8 Mock Object library for PHPUnit\r\npsr/http-message 1.0 Common interface for HTTP messages\r\nsebastian/comparator 1.2.0 Provides the functionality to compare PHP values for equality\r\nsebastian/diff 1.4.1 Diff implementation\r\nsebastian/environment 1.3.5 Provides functionality to handle HHVM/PHP environments\r\nsebastian/exporter 1.2.1 Provides the functionality to export PHP variables for visualization\r\nsebastian/global-state 1.1.1 Snapshotting of global state\r\nsebastian/recursion-context 1.0.2 Provides functionality to recursively process PHP variables\r\nsebastian/version 1.0.6 Library that helps with managing the version number of Git-hosted PHP projects\r\nsymfony/browser-kit v3.0.3 Symfony BrowserKit Component\r\nsymfony/console v3.0.3 Symfony Console Component\r\nsymfony/css-selector v3.0.3 Symfony CssSelector Component\r\nsymfony/dom-crawler v3.0.3 Symfony DomCrawler Component\r\nsymfony/event-dispatcher v3.0.3 Symfony EventDispatcher Component\r\nsymfony/finder v3.0.3 Symfony Finder Component\r\nsymfony/polyfill-mbstring v1.1.1 Symfony polyfill for the Mbstring extension\r\nsymfony/yaml v3.0.3 Symfony Yaml Component\r\n\r\n```", "title": "::class issues", "type": "issue" }, { "action": "created", "author": "DavertMik", "comment_id": 197115623, "datetime": 1458094549000, "masked_author": "username_0", "text": "However, this code works:\r\n\r\n```php\r\nclass UserModel {\r\n public function getClass() {\r\n\r\n return User::class();\r\n}\r\n}\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "DavertMik", "comment_id": 197116417, "datetime": 1458094793000, "masked_author": "username_0", "text": "I know that's the issue of tokenizer and not of Go AOP itself, but as php-tokenizer is deprecated I'm not sure what to do next. Should I try to patch it and send a PR or use one of the works like `kornrunner/php-token-reflection`? Or just switch to PHP-Parser and Go AOP v2?", "title": null, "type": "comment" }, { "action": "created", "author": "lisachenko", "comment_id": 197358708, "datetime": 1458139097000, "masked_author": "username_1", "text": "I think the best option here is to drop 1.x version of framework and give a try for 2.x-dev, it relies on `nikic/PHP-Parser` and can be considered more reliable and supported. As a bonus, you will get a support for PHP5.6 and PHP7 syntax.", "title": null, "type": "comment" }, { "action": "created", "author": "DavertMik", "comment_id": 197385552, "datetime": 1458142423000, "masked_author": "username_0", "text": "Yeah, I managed to overcome this issue by not loading this exact file. \r\nOk, can you create a tag got 2.0 branch so I could try it on my project?", "title": null, "type": "comment" }, { "action": "created", "author": "lisachenko", "comment_id": 197422718, "datetime": 1458147382000, "masked_author": "username_1", "text": "Yes, will do it this evening", "title": null, "type": "comment" }, { "action": "created", "author": "lisachenko", "comment_id": 201244757, "datetime": 1458904986000, "masked_author": "username_1", "text": "This issue related only to the 1.x branch and already fixed in the master. Closing it.", "title": null, "type": "comment" }, { "action": "closed", "author": "lisachenko", "comment_id": null, "datetime": 1458904987000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" } ]
2
8
4,677
false
false
4,677
false
irods/irods
irods
201,014,425
3,442
null
[ { "action": "opened", "author": "vincent-legoll", "comment_id": null, "datetime": 1484571905000, "masked_author": "username_0", "text": "Hello,\r\n\r\nI'm new to irods, I installed the icommands on a fresh centos 7 VM,\r\nfollowing https://packages.irods.org recipe:\r\n```\r\nrpm --import https://packages.irods.org/irods-signing-key.asc\r\nwget -qO - https://packages.irods.org/renci-irods.yum.repo > /etc/yum.repos.d/renci-irods.yum.repo\r\nyum -y install irods-icommands\r\n```\r\n\r\nThen I iinit'ed my given credentials, and tested it works OK:\r\n```\r\n$ ils /\r\n/:\r\n C- /FRGRID\r\n$ imkdir test\r\n$ ils\r\n/FRGRID/home/vlegoll:\r\n C- /FRGRID/home/vlegoll/test\r\n[vince@vl-irods-test ~]$ ils -A\r\n/FRGRID/home/vlegoll:\r\n ACL - vlegoll#FRGRID:own \r\n Inheritance - Disabled\r\n C- /FRGRID/home/vlegoll/test\r\n```\r\n\r\nBut when trying to get more tested, I stumbled upon that error:\r\n```\r\n$ iput test.txt\r\nremote addresses: 134.158.239.52 ERROR: putUtil: put error for /FRGRID/home/vlegoll/test.txt, status = -321000 status = -321000 USER_NO_RESC_INPUT_ERR\r\nLevel 0: DEBUG: execMicroService3: error when executing microservice\r\nline 172, col 26, rule base core\r\nacSetRescSchemeForCreate {msiSetDefaultResc(\"demoResc\",\"null\"); }\r\n```\r\n\r\nIs this meant to be understandable ? What am I missing ?\r\n\r\nThe iRods service I'm connecting to is a 3.X (I think) whereas the client I installed is (probably) 4.2.X.\r\n\r\nIs there nothing to give meaningful error messages in case the backwards compatibility has been broken between those versions ?", "title": "iput cryptic error message", "type": "issue" }, { "action": "created", "author": "trel", "comment_id": 272870258, "datetime": 1484575699000, "masked_author": "username_1", "text": "Hi Vincent,\r\n\r\nBackwards compatibility has been a top goal, but mostly focused on server-to-server compatibility across a Federation of two differently versioned Zones. If you're connecting to a 3.x Zone, it will be instructive to see whether the 3.x iCommands connect without any trouble. You can confirm that the server is of a certain version with `imiscsvrinfo`.\r\n\r\nThe USER_NO_RESC_INPUT_ERR error itself suggests a possible misconfiguration on the server side - can you confirm that there is (not) a storage resource named `demoResc` in the Zone? If the goal is to get files to land on a differently named resource by default, then the server needs to update the target of the `acSetRescSchemeForCreate` rule in `core.re`.\r\n\r\nIf you know the name of the storage resource you'd like files to land on, you can also try to put files there directly with:\r\n```\r\n$ iput -R <resc_name> test.txt\r\n```", "title": null, "type": "comment" }, { "action": "created", "author": "vincent-legoll", "comment_id": 272876035, "datetime": 1484577108000, "masked_author": "username_0", "text": "How would I do that ?\r\n\r\nBut following your suggestion about ```iput -R```, I think something is not fully configured on my side, because I got ```irodsDefResource``` from my irods administrator, that I didn't know how to use. And using it with -R made it work OK.\r\n\r\nAnd now with a bit of guessworks, I put it in \"irods_default_resource\" in .irods/irods_environment.json, and all is working properly client 4.2.X, servers on 3.3.1 !\r\n\r\nNow the question remains about the cryptic error message...\r\n\r\nMaybe adding a warning could help a bit:\r\n\"No resource specified, using default: 'demoResc'\"", "title": null, "type": "comment" }, { "action": "closed", "author": "trel", "comment_id": null, "datetime": 1508380486000, "masked_author": "username_1", "text": "", "title": null, "type": "issue" }, { "action": "created", "author": "vincent-legoll", "comment_id": 337826243, "datetime": 1508399039000, "masked_author": "username_0", "text": "@username_1 the doc fix LGTM, thanks", "title": null, "type": "comment" } ]
2
5
2,905
false
false
2,905
true