source
stringclasses
1 value
text
stringlengths
152
659k
filtering_features
stringlengths
402
437
source_other
stringlengths
440
819k
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: CLI version 1.0.1 doesn't support listing builds from a 0.8.9 server username_0: ``` $ curl -H 'Authorization: Bearer xyz' http://127.0.0.1:8000/api/repos/$user/$repo/builds | jq .[0] { "id": 4784, "number": 420, "parent": 0, "event": "push", "status": "success", "error": "", "enqueued_at": 1542628820, "created_at": 1542628820, "started_at": 1542628820, "finished_at": 1542628957, "deploy_to": "", "commit": "6fde9b4148ad25e0457028c571d21fa106139153", "branch": "master", [...] $ drone build ls --event=push --limit=1 $user/$repo Build #420 Status: success Event: push Commit: Branch: Ref: refs/heads/master Author: <author> Message: message title extra message ``` As one can see, the `commit` and `branch` fields are now ignored. The culprit seems to be 8ab39ea77b568b9083411f10bab33fb001f58968. If the CLI versions 1.x aren't supposed to work with the current stable version of the server, 0.8.x, the releases should be clearly marked as such. <issue_comment>username_0: Even better; if this is by design, the 1.x CLI should just error if it encounters a 0.x server. <issue_comment>username_0: Closed with no reply?
{'fraction_non_alphanumeric': 0.1299342105263158, 'fraction_numerical': 0.109375, 'mean_word_length': 4.028925619834711, 'pattern_counts': {'":': 13, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 1, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '578044', 'n_tokens_mistral': 528, 'n_tokens_neox': 435, 'n_words': 137}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Has Sonos Update 8 broken this? username_0: When ever I try to follow the instructions page or use the curl command I get a 400 bad request error. Has the recent update to Sonos broken command? <issue_comment>username_1: Yes, seeing the same error. PLAY:5: Living Room Version: 8.0 (build 371245270) Hardware Version: 1.13.1.8-1 <issue_comment>username_1: Okay, I think I've got it working. Short answer: try changing the SID to 253 (instead of 255) in the CURL string. Not sure why, but perhaps 255 is already registered on our systems? I did a little digging and the CURL request is posting the "right answers" to this form: http://[SONOS IP ADDRESS]:1400/customsd.htm (Here's a [filled out version of it](https://imgur.com/5WDvmFh).) Hopefully this helps anyone who encounters this issue... <issue_comment>username_2: So I tried both 255 and 253, both gave me a internal server error (500) when the form was submitted. Filled out with same info as in your picture above @username_1 <issue_comment>username_3: Both 255 and 253 give me a 400 Bad Request error, not 500 🤔 <issue_comment>username_1: Hmm, wish I could be of more help. Try SIDs ranging from 240-253, maybe one will work. Hopefully the project owner can provide more info/an update. <issue_comment>username_4: I tried SIDs from 240-253 so if the project owner would be able to provide an update it would be much appreciated. I am a first time Sonos owner and would love to get this working. <issue_comment>username_3: @username_4 The official tool should be updated, but this is how I got it to work in the meantime: 1. Follow the official instructions to get your Sonos IP address 2. Go to http://[Sonos IP]:1400/customsd.htm in your web browser 3. Fill out the form using @username_1's example, but make the SID something other than 255 (I used 253) https://imgur.com/5WDvmFh 4. When you're done, click "Submit" and you should see the success response! From there, you can follow the official instructions on adding the Overcast service to your Sonos. <issue_comment>username_5: I just ran into this myself. It looks like 8.0 has added some additional security measures around that `/customsd.htm` setup page which breaks the automatic configuration. @username_3's instructions should work as a fallback. But I'm trying to see if there's another way around it. Otherwise we'll just have to update the instructions to tell people what fields to copy. <issue_comment>username_6: Just adding on here that I setup this solution tonight using the steps from @username_1 and @username_3 - 255 and 253 failed, but 250 was success response (for me/my system). <issue_comment>username_7: @username_5: I loaded the page and grabbed the `csrfToken` out of the source then added that to the args in the curl command and it worked. Should be pretty easy to automate. <issue_comment>username_8: For anyone looking for something to copy & paste into the form: - Endpoint URL: http://overcast-sonos.herokuapp.com/smapi.php - Secure Endpoint URL: https://overcast-sonos.herokuapp.com/smapi.php - Polling interval (seconds): 30 - Strings Table - Version: 1 - Uri: http://overcast-sonos.herokuapp.com/strings.xml - Presentation map (optional): - Version: 1 - Uri: http://overcast-sonos.herokuapp.com/pmap.xml That said, I tried both submitting the form with 250 through 250, and using the curl command with a (fresh each time) csrfToken, and got 400 Bad Request no matter what. <issue_comment>username_9: @username_8 or anyone else figure this out? I figured it might have to do with the URIs themselves. <issue_comment>username_10: They've added a cross site request forgery token. Attached script solves the problem - my sonos units are registered in local dns but if you just change the list of den library, etc, for the IPs of your units it should work. `#!/bin/ksh for sonos in kitchen livingroom den library sewingroom office ; do uri="http://${sonos}:1400/customsd" echo echo Working $sonos unit echo ....getting CSRF token... curl --connect-timeout 5 --max-time 10 -o /tmp/fo.$$.out "$uri.htm" if [ $? -gt 0 ] ; then echo FAIL for $sonos continue fi sed -e 's/^.*csrfToken" value="//' -e 's/".*$//' /tmp/fo.$$.out |& read -p CSRF rm /tmp/fo.$$.out echo ... token $CSRF curl \ --connect-timeout 5 \ --max-time 10 \ --data-urlencode 'sid=255' \ --data-urlencode 'csrfToken='"$CSRF" \ --data-urlencode 'name=Overcast' \ --data-urlencode 'uri=http://overcast-sonos.herokuapp.com/smapi.php' \ --data-urlencode 'secureUri=https://overcast-sonos.herokuapp.com/smapi.php' \ --data-urlencode 'pollInterval=30' \ --data-urlencode 'authType=UserId' \ --data-urlencode 'stringsVersion=1' \ --data-urlencode 'stringsUri=http://overcast-sonos.herokuapp.com/strings.xml' \ --data-urlencode 'presentationMapVersion=1' \ --data-urlencode 'presentationMapUri=http://overcast-sonos.herokuapp.com/pmap.xml' \ --data-urlencode 'containerType=MService' \ --data-urlencode 'caps=trFavorites' \ --data-urlencode 'caps=alFavorites' \ --data-urlencode 'caps=logging' \ --data-urlencode 'caps=playbackLogging' \ --data-urlencode 'caps=extendedMD' \ "$uri" echo echo next? read done ` <issue_comment>username_11: Got this to work an hour ago without the script. Used SID 243 and the values in username_4's image. OSX 10.13.3 Sonos Controller for Mac 8.4 Google Chrome 65.0.3325.162 I only have a single room Sonos system (Sonos 1)<issue_closed> <issue_comment>username_5: While it's no longer a magical setup experience, the setup instructions have now been updated for manually filling out the custom service web form. https://github.com/username_5/overcast-sonos#setup <issue_comment>username_9: Works great. Thank you!
{'fraction_non_alphanumeric': 0.09224965706447188, 'fraction_numerical': 0.03017832647462277, 'mean_word_length': 3.86488740617181, 'pattern_counts': {'":': 0, '<': 19, '<?xml version=': 0, '>': 19, 'https://': 5, 'lorem ipsum': 0, 'www.': 0, 'xml': 4}, 'pii_count': 1, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '22911547', 'n_tokens_mistral': 1978, 'n_tokens_neox': 1760, 'n_words': 744}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: remove double quotes and add "artifact" property in yaml username_0: <issue_comment>username_1: Docs Build status updates of commit _[474df51](https://github.com/MicrosoftDocs/java-sandbox/commits/474df512b7867cc0f8ad8deb756182969119278c)_: ### :warning: Validation status: warnings File | Status | Preview URL | Details ---- | ------ | ----------- | ------- [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.AggregatePartnerOperations.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.AggregatePartnerOperations.yml) | :warning:Warning | | [Details](#user-content-fef4fc49-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.AuthenticationToken.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.AuthenticationToken.yml) | :warning:Warning | | [Details](#user-content-220df238-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.BasePartnerComponent.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.BasePartnerComponent.yml) | :warning:Warning | | [Details](#user-content-24c1a3f1-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.BasePartnerComponentString.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.BasePartnerComponentString.yml) | :warning:Warning | | [Details](#user-content-407939fa-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IAadLoginHandler.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IAadLoginHandler.yml) | :warning:Warning | | [Details](#user-content-d7bc840e-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IAggregatePartner.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IAggregatePartner.yml) | :warning:Warning | | [Details](#user-content-2c488f95-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IPartner.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IPartner.yml) | :warning:Warning | | [Details](#user-content-1972f5d3-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IPartnerComponent.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IPartnerComponent.yml) | :warning:Warning | | [Details](#user-content-d8a9828b-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IPartnerComponentString.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IPartnerComponentString.yml) | :warning:Warning | | [Details](#user-content-886018a4-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IPartnerCredentials.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IPartnerCredentials.yml) | :warning:Warning | | [Details](#user-content-e60648e0-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.PartnerOperations.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.PartnerOperations.yml) | :warning:Warning | | [Details](#user-content-7f3eeb16-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.PartnerService.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.PartnerService.yml) | :warning:Warning | | [Details](#user-content-8242e334-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.domains.DomainCollectionOperations.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.domains.DomainCollectionOperations.yml) | :warning:Warning | | [Details](#user-content-752cefc2-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.domains.DomainOperations.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.domains.DomainOperations.yml) | :warning:Warning | | [Details](#user-content-520389e4-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.domains.IDomain.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.domains.IDomain.yml) | :warning:Warning | | [Details](#user-content-50c784de-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.domains.IDomainCollection.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.domains.IDomainCollection.yml) | :warning:Warning | | [Details](#user-content-4eb12125-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.domains.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.domains.yml) | :warning:Warning | | [Details](#user-content-80454969-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.FieldFilter.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.FieldFilter.yml) | :warning:Warning | | [Details](#user-content-a8d7ebd1-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.FieldFilterOperation.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.FieldFilterOperation.yml) | :warning:Warning | | [Details](#user-content-4499e4f6-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.FieldType.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.FieldType.yml) | :warning:Warning | | [Details](#user-content-2d89eba9-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.IFilterExpressionGenerator.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.IFilterExpressionGenerator.yml) | :warning:Warning | | [Details](#user-content-b2fb7efd-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.SimpleFieldFilter.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.SimpleFieldFilter.yml) | :warning:Warning | | [Details](#user-content-1c8fabc5-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.models.query.filters.yml) | :warning:Warning | | [Details](#user-content-5b95f014-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.HttpStatusCode.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.HttpStatusCode.yml) | :warning:Warning | | [Details](#user-content-2e33870e-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.IPartnerServiceClient.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.IPartnerServiceClient.yml) | :warning:Warning | | [Details](#user-content-88e2ea57-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.PartnerServiceClient.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.PartnerServiceClient.yml) | :warning:Warning | | [Details](#user-content-dfe1b381-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.PartnerServiceRetryStrategy.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.PartnerServiceRetryStrategy.yml) | :warning:Warning | | [Details](#user-content-4f700e02-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.yml) | :warning:Warning | | [Details](#user-content-c9712af7-87cc404d) [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.yml) | :warning:Warning | | [Details](#user-content-7de81ff7-87cc404d) <a id="fef4fc49-87cc404d"></a> ### [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.AggregatePartnerOperations.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.AggregatePartnerOperations.yml) - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` <a id="220df238-87cc404d"></a> ### [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.AuthenticationToken.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.AuthenticationToken.yml) - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` <a id="24c1a3f1-87cc404d"></a> ### [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.BasePartnerComponent.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.BasePartnerComponent.yml) - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` <a id="407939fa-87cc404d"></a> ### [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.BasePartnerComponentString.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.BasePartnerComponentString.yml) - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` <a id="d7bc840e-87cc404d"></a> ### [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IAadLoginHandler.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IAadLoginHandler.yml) - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` <a id="2c488f95-87cc404d"></a> ### [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IAggregatePartner.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IAggregatePartner.yml) - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` <a id="1972f5d3-87cc404d"></a> ### [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IPartner.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.IPartner.yml) - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` [Truncated] <a id="4f700e02-87cc404d"></a> ### [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.PartnerServiceRetryStrategy.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.PartnerServiceRetryStrategy.yml) - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` <a id="c9712af7-87cc404d"></a> ### [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.network.yml) - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` <a id="7de81ff7-87cc404d"></a> ### [javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.yml](https://github.com/MicrosoftDocs/java-sandbox/blob/anmeng-198934/javadocs/docs-ref-autogen/com.microsoft.store.partnercenter.yml) - **[Warning]** `````Can't find output file for java-sandbox/breadcrumb/toc.json````` For more details, please refer to the [build report](https://opbuildstorageprod.blob.core.windows.net/report/2020%5C4%5C29%5C5ab2d34f-5c15-a2c0-5462-7a7bd2e94516%5CPullRequest%5C202004290926448572-5%5Cworkflow_report.html?sv=2016-05-31&sr=b&sig=1suQTPk%2FNfz95ca7YKVQ18Vl9km7imUA4VyAQYJxruY%3D&st=2020-04-29T09%3A23%3A37Z&se=2020-05-30T09%3A28%3A37Z&sp=r). **Note:** If you changed an existing file name or deleted a file, broken links in other files to the deleted or renamed file are listed only in the full build report.
{'fraction_non_alphanumeric': 0.17110166721150702, 'fraction_numerical': 0.05021248774109186, 'mean_word_length': 6.171120487576184, 'pattern_counts': {'":': 0, '<': 23, '<?xml version=': 0, '>': 23, 'https://': 41, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '13670815', 'n_tokens_mistral': 6304, 'n_tokens_neox': 5427, 'n_words': 396}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [DDPB-4058] Make our cookie opt in/opt out options fully compliant with GDS standards username_0: Make our cookie opt in/opt out options fully compliant with GDS standards <issue_comment>username_0: Awesome! Yeah I'm all for tests across the board both backend/frontend and hopefully we can get closer to that goal the more we modernise our stack as it should allow us to write tests in an easier more readable format :)
{'fraction_non_alphanumeric': 0.041758241758241756, 'fraction_numerical': 0.013186813186813187, 'mean_word_length': 5.2465753424657535, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '15707409', 'n_tokens_mistral': 118, 'n_tokens_neox': 111, 'n_words': 68}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Docs + Travis CI updates - supersede #165, #166 username_0: We have quite similar PR #165 and #166 but I think neither of them is perfect. I've done all changes once again here and couple of other changes: - updated Travis CI configuration - removed HHVM builds - added PHP 7.2 builds - removed composer self-update - simplify install process - set composer output width to 120 chars - removed IRC and Slack notifications - renamed `CONDUCT.md` to `CODE_OF_CONDUCT.md` (as github expects this file name) - updated `CONTRIBUTING.md` - added `test` directory in phpcs configuration - updated testing dependencies in `composer.json` - added `keywords` and `support` in `composer.json` - bumped `aura/di` dependency to `3.4`, as previous version throws some deprecation notices on PHP 7.2 <issue_comment>username_1: Merged into release-3.0.0. Thanx @username_0.
{'fraction_non_alphanumeric': 0.07717391304347826, 'fraction_numerical': 0.029347826086956522, 'mean_word_length': 3.873015873015873, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '4343277', 'n_tokens_mistral': 299, 'n_tokens_neox': 266, 'n_words': 116}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Commit ae4b0dc32 Breaks TestDNSResolution against 'make check' with LwIP username_0: Previously, all DNS testing was disabled when building for LwIP; however, this had the downside of precluding validating changes to DNS functionality. Because of the way LwIP works, DNS testing for LwIP cannot work without a format test framework like "Happy" or some other manual networking configuration due to its need to talk to a TUN device and to bridge the hosts network interface. For TestDNSResolution, we should probably: * **Build:** Always * **Test:** -- LwIP, w/o Happy: **No** -- LwIP, w/ Happy: **Yes** (Need Driver) -- Sockets, w/o Happy: **Yes** -- Sockets, w/ Happy: **Yes** <issue_comment>username_0: At this point, commit 13c5774b5dcfbc1df79c0bd1ae1c0e4a9798bc4f addresses ensuring the TestWoble is always built but only run when building against BSD sockets. Commit 04364c1993c0399b86dafc285775f17607068538 addresses ensuring basic, non-LwIP-based unit and functional tests are run. Remaining open is determining how to run TestDNSResolution in an LwIP environment, likely with Happy. <issue_comment>username_0: @username_1, can this now be closed? <issue_comment>username_1: Yes Grant. Inet DNS resolution test for both default linux and Lwip are in master, both tests passed.<issue_closed>
{'fraction_non_alphanumeric': 0.06888888888888889, 'fraction_numerical': 0.04518518518518518, 'mean_word_length': 5.140909090909091, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '8610968', 'n_tokens_mistral': 437, 'n_tokens_neox': 398, 'n_words': 176}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Ensure email header is full-width username_0: Android email clients are reluctant to make the black ‘GOV.UK’ header bar full-width. This commit adds some inline CSS to persuade them. As suggested by: http://stackoverflow.com/questions/25630139/100-width-tables-dont-work-in-gmail-android Also makes some fixes for the email header not being full-width on Outlook. And removes the footer because it’s causing more problems than it’s solving for now. ![87744_053703](https://cloud.githubusercontent.com/assets/355079/15321179/c1c5292e-1c2c-11e6-9325-39d0ee8a9aea.png) <issue_comment>username_0: Demo’d the EOA results to Pete.
{'fraction_non_alphanumeric': 0.08469539375928678, 'fraction_numerical': 0.08469539375928678, 'mean_word_length': 4.760683760683761, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '28834462', 'n_tokens_mistral': 256, 'n_tokens_neox': 216, 'n_words': 68}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: i3 crashes with a certain number of open windows username_0: steps to reproduce: 1. switch to stacked mode 2. open as many terminals as needed to reach the end of the monitor 3. open another terminal 4. crash used version: i3 version 4.11-129-gc490a60 (2015-11-30, branch "next") © 2009 <NAME> and contributors [2015-12-02.txt](https://github.com/i3/i3/files/50289/2015-12-02.txt) <issue_comment>username_1: This could be the cairo move. I'll take a look at it. <issue_comment>username_2: The logfile you attached only contains one terminal being opened and covers a session that seems to be one minute long. Was it capped because you uploaded it into this issue? Can you use the way outlined in http://i3wm.org/docs/debugging.html please? Also, can you provide a backtrace of the crash? <issue_comment>username_3: Closing SHM log "/i3-log-2456" [Inferior 1 (process 2456) exited with code 01] (gdb) (gdb) (gdb) Exiting due to signal. libi3/draw_util.c: 38 void draw_util_surface_init(xcb_connection_t *conn, surface_t *surface, xcb_drawable_t drawable, 39 xcb_visualtype_t *visual, int width, int height) { 40 surface->id = drawable; 41 surface->visual_type = ((visual == NULL) ? visual_type : visual); 42 surface->width = width; 43 surface->height = height; 44 45 surface->gc = xcb_generate_id(conn); 46 xcb_void_cookie_t gc_cookie = xcb_create_gc_checked(conn, surface->gc, surface->id, 0, NULL); 47 48 xcb_generic_error_t *error = xcb_request_check(conn, gc_cookie); 49 if (error != NULL) { 50 ELOG("Could not create graphical context. Error code: %d\n", error->error_code); 51 exit(EXIT_FAILURE); 52 } <issue_comment>username_1: Yeah, so it is the move to cairo. It's probably some condition about some width being less than zero or something. I'll look into it. <issue_comment>username_1: @username_0 @username_2 I've pushed a PR to fix this. Please note that containers you open "beyond visibility" might be broken afterwards because their frame windows are opened with a zero height. I've verified that this was the case before the cairo move already, so it's not a regression. <issue_comment>username_0: @username_1 just applied your changes and tried to reproduce the crash. so far no crash.<issue_closed>
{'fraction_non_alphanumeric': 0.08312342569269521, 'fraction_numerical': 0.044920235096557515, 'mean_word_length': 3.8141414141414143, 'pattern_counts': {'":': 0, '<': 10, '<?xml version=': 0, '>': 18, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '2184951', 'n_tokens_mistral': 806, 'n_tokens_neox': 718, 'n_words': 293}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [UI] Cluster view mode - list of tables with State missing translation keys support before rendering in UI username_0: <!-- Please search for existing issues first, then read https://rancher.com/docs/rancher/v2.x/en/contributing/#bugs-issues-or-questions to see what we expect in an issue For security issues, please email <EMAIL> instead of posting a public issue in GitHub. You may (but are not required to) use the GPG key located on Keybase. --> Version: master-head (v2.3) (8/15/19) **What kind of request is this (question/bug/enhancement/feature request):** Enhancement **Steps to reproduce (least amount of steps as possible):** - Navigate to: Tools -> Alerts Tools -> Snapshots Tools -> Catalogs Tools -> Notifiers Storage -> Persistent Volumes Storage -> Storage Classes Projects/Namespaces Nodes - See the table at the bottom that include a State column, use the "SHIFT+L" shortcut to display the translation keys in the page. **Result:** - To see that State values have no translation key. Sample issues in the Global view: Cluster states translation keys issue: https://github.com/rancher/rancher/issues/22199 Catalogs states translation keys issue: https://github.com/rancher/rancher/issues/22205 **Environment information** - rancher v2.3 head-master - single install<issue_closed>
{'fraction_non_alphanumeric': 0.08751793400286945, 'fraction_numerical': 0.015064562410329985, 'mean_word_length': 3.7128378378378377, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 11, 'https://': 3, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '19586057', 'n_tokens_mistral': 429, 'n_tokens_neox': 380, 'n_words': 162}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [chore] Update zuul config to test more browsers username_0: Wanted to test this, so hopefully saucelabs will kick off on a PR. But this should fix #28 if merged. /cc @username_1 in case it won't run the tests for a PR. <issue_comment>username_1: @username_0 Thanks :) Saucelabs indeeds runs PRs. Sorry for ne being clear enough here though. The tests run in these browsers, it's just that they fail. My current guess is a missing Promise polyfill, but simply adding one didn't fix things either :/ <issue_comment>username_0: Aha! So I'm watching the build on Travis, and the two that are failing are IE10 and IE11. ``` - waiting: <internet explorer 11 on Windows 2012 R2> - waiting: <internet explorer 10 on Windows 2012> ``` It seems like the iphone tests actually run on OS X, which seems unusual, so ¯\_(ツ)_/¯ Maybe adding the promise polyfill fixed it on iphone but not on IE? How does pouchdb handle them? <issue_comment>username_2: fyi there is a new major zuul version out, maybe that'll help somehow? <issue_comment>username_2: let's close this for now, we'll look into it later
{'fraction_non_alphanumeric': 0.06502636203866433, 'fraction_numerical': 0.022847100175746926, 'mean_word_length': 4.372641509433962, 'pattern_counts': {'":': 0, '<': 8, '<?xml version=': 0, '>': 8, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '12206907', 'n_tokens_mistral': 358, 'n_tokens_neox': 326, 'n_words': 177}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Update the case design for version 5 username_0: Hello, The casing design shown in this repository (as well as in the guides displayed by the Android app as a matter of fact, that is beyond the scope of this issue though) is still for PSLab version 4, meaning it is physically incompatible with both the V5 boards themselves and the laser-cut case design from the pslab-case repository. It would be nice to have a newer version available as well. The link below shows my take on adapting the V4 design for version 5. This has been done the low-tech way (_i.e._ I have loaded the original SVG into Inkscape, cloned and deleted boxes with labels as needed to match the new layout, then measured the headers on my V5.1 with a ruler and scaled/transposed everything to size) so if you normally generate your design programmatically you might want to redo it - but having printed this design for my newly crafted case, it looks like a near-perfect fit. https://github.com/username_0/pslab-hardware/blob/casediagram_v5/docs/images/pslabV5design.svg
{'fraction_non_alphanumeric': 0.03867403314917127, 'fraction_numerical': 0.010128913443830571, 'mean_word_length': 4.328431372549019, 'pattern_counts': {'":': 0, '<': 2, '<?xml version=': 0, '>': 2, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '27549611', 'n_tokens_mistral': 285, 'n_tokens_neox': 269, 'n_words': 169}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Consider providing link to NDC Conference talk username_0: https://vimeo.com/131757761 The NDC Conference talk on Acquire provides great context and info. You might consider adding a link to it, either in the github website field or in the readme. <issue_comment>username_1: Very good idea - done!<issue_closed>
{'fraction_non_alphanumeric': 0.05965909090909091, 'fraction_numerical': 0.03125, 'mean_word_length': 5.086206896551724, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '9402341', 'n_tokens_mistral': 106, 'n_tokens_neox': 96, 'n_words': 44}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: feat(styling): introduce new header style username_0: <issue_comment>username_1: :tada: This PR is included in version 1.10.0 :tada: The release is available on [GitHub release](https://github.com/bitcoinvault/explorer/releases/tag/v1.10.0) Your **[semantic-release](https://github.com/semantic-release/semantic-release)** bot :package::rocket:
{'fraction_non_alphanumeric': 0.14136125654450263, 'fraction_numerical': 0.02617801047120419, 'mean_word_length': 6.509803921568627, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '19338743', 'n_tokens_mistral': 132, 'n_tokens_neox': 125, 'n_words': 28}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Add CryptoMoonSwap (BEP20) username_0: Adding info for BEP20 token 'CryptoMoonSwap'. PR created by <a href="https://assets.trustwallet.com">TW Assets Management</a> <issue_comment>username_0: hi there, how can i fix this issue as it says low token circulation no. of holder but we have holder 2,562 how can i fix this thanks. <issue_comment>username_0: hi there, how can i fix this issue as it says low token circulation no. of holder but we have more than 2500 holder how can we fix this red X showing warning ? can i make a payment with to proceed or i should wait for that red X disappear ? please advise me thanks
{'fraction_non_alphanumeric': 0.05731523378582202, 'fraction_numerical': 0.02262443438914027, 'mean_word_length': 4.354838709677419, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '13604476', 'n_tokens_mistral': 206, 'n_tokens_neox': 188, 'n_words': 102}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [1.10.2]Item conduits randomly turning off username_0: #### Issue Description: Item conduits randomly stop extracting after working fine for hours. #### What happens: Item conduits, after working fine for hours, stop extracting. I then have to break them, place them again, and set them to always on. #### What you expected to happen: Item conduits to stay on, hence the extraction setting 'always on' #### Steps to reproduce: 1. Place an item conduit 2. Set it to extract from an inventory with items in it, always on 3. Wait a while 4. The item conduit will have stopped extracting automatically ____ #### Affected Versions (Do *not* use "latest"): - EnderIO: 3.0.1.138 - EnderCore: 0.4.1.60 - Minecraft: 1.10.2 - Forge: 12.18.2.2125 #### Your most recent log file where the issue was present: http://pastebin.com/kUSb6krv <issue_comment>username_1: Looking at your logfile, I see 2 issues: 1. RF Tools Dimensions and the McJty compat library don't seem to match in version 2. You game is overloaded and has to skip time to keep up. Please use one of the profiling tools available to see what's lagging the game---this looks like something we get reported for months but only as the final crash when the game gets so slow it stops completely. And those crash logs don't have any data on what's slowing the game down... <issue_comment>username_0: 1. I may have found the error in the mod version mismatch; rftoolsdim & rftools is for version 1.11 while mcjty compat is not. I downgraded rftools & rftoolsdim to 1.10. That may have fixed that issue, but as for the other problem: 2. I am a complete newb so i dont completely understand the result of the tickprofiler. I profiled for 30 seconds in all dimensions. For the results I do understand, the TPS was 19.997, which seems to indicate why the conduits work for so long but after a while they need to skip ticks. As for the specifics, i cant make out what the results mean. I did see some things in there like the enderio farming station, the mekanism digital miner (which was off at the time), and some animals. <issue_comment>username_0: Also, if Minecraft is overloaded why does everything else in my world work correctly? The only thing not running properly (or at all for that matter) are the extraction conduits. <issue_comment>username_2: Having the same problem, although it seems to happen every time I restart the server. I then have to go break the insert side of the item conduit and place it again. My McJty mods definitely all match the Compat library and McJtyLib. I just updated them in a batch with the first release versions, nor are there messages indicating they are not in sync. The server is not at all overloaded except one single message right after it completes the startup sequence. Perhaps that blip causes it on restart. Would be hard to catch it with Sampler since the startup sampling stops right before, and it's over before I could do anything. There are no other overloaded messages. <issue_comment>username_0: I now have reached the point where my world no longer loads, with enderio 'doUpdate' scattered all over the report. <issue_comment>username_0: I can confirm that that is my problem, except substitute 'on server restart' to 'world load'. <issue_comment>username_0: So... nothing? Well i guess modded minecraft has to wait. <issue_comment>username_3: I am also having the same issue, item conduits will randomly stop extracting and basically jam up my whole system. I can break a random conduit on the line that isn't even connected to an inventory and extracting will resume. <issue_comment>username_1: I haven't been able to reproduce this so far. As this only happens in long running instances, I will need to set up a debugging version that can give me data without being restarted all the time and let that run for a couple of hours. Weekend type stuff... <issue_comment>username_2: Alright, thanks Henry. <3 <issue_comment>username_0: You're awesome Henry! <issue_comment>username_4: This is happening also to me, I'm using Direwolf20's 1.10.2 pack only one of my garden's conduits won't work at all now (as of this morning), I removed the whole line (15 conduits) and replaced, still won't empty the Farming station, only thing connected in line with them are the energy conduits, not seen this happen before in all the years been using enderio conduits <issue_comment>username_5: Experiencing the same issue on the DW20 1.10.2 pack, version 1.1.4. I haven't modified the pack in any way, just downloaded/installed using the curse launcher. As others are reporting item conduits stop extracting after working perfectly okay, and require to be broken and replaced. Some additional info which doesn't perfectly match other reports: * I rarely get to play for more than an hour or two and I seem to encounter this every time I play, so I'm not sure "long running" is a criteria for this occurring. * In one spot where I have an item conduit extracting from a farming station, when it stops extracting if I remove the conduit with a yeta wrench it completely vanishes (does not go into my inventory, does not fall to the ground anywhere nearby, might be glitching through blocks). This has reproduced 3 or 4 times. * For the same instance I've taken to breaking/replacing a conduit one down the line and that breaks normally (I get the item conduit in my inventory) and replacing it still seems to fix the issue. * In a different spot where I just encountered the issue, when I tried to right-click the conduit with a cobweb to see where it should route to, the cobweb placed in the world. I broke it and tried again with string and again the string placed in the world. Happened twice more with the string before I broke and replaced the conduit then it all started working again. <issue_comment>username_1: for reference: https://www.reddit.com/r/feedthebeast/comments/5m8q0y/dw20_110_having_to_breakreplace_refined_storage/ <issue_comment>username_6: likely related to #3943 ? <issue_comment>username_7: Can confirm, the issue is occurring when the chunk they're in is unloaded, either through traveling far enough away to unload it if no chunkloader is used, or upon server/ssp restart. Breaking and replacing a piece of conduit resets the network to work again. Occurs with both item and fluid conduits. <issue_comment>username_8: We are having the same issue as explained by @username_7 . Our server restarts ever 12h. We load the chunk with FTB Utilities. Pack: [ALL the mods - expert] <issue_comment>username_9: i personally only see the problem when something is exported via item counduit to a chest, not in other circumstances. So: build a system with at least 2 or 3 types of conduits on oh which is item conduit and export to a chest. You will see the issue on chunc reset on the server, probably not on single player if the chuncs are loaded. <issue_comment>username_1: One word: All this "me too"-ing (not just here) isn't really helpful unless it is a "me too on the current Ender IO version". I can "me too" any fixed bug if I use an Ender IO version from before it was fixed. There were a couple of massive changes to conduits, block ticking, chunk loading avoidance, etc. at the end of December. So unless I either experience this myself (which would be ideal because I could then simply attach a debugger and see what's happening) or get a solid report of it happening with a current version, I am going to assume it was fixed with those changes. <issue_comment>username_10: I still have the same issue on Direwolf 20's 1.10 pack (Version 1.4.1). EnderIO Version: 1.10.2-3.1.156 EnderCore Version: 1.10.2-0.4.1.64-beta I have a somewhat long conduit line (about 20 blocks). with multiple extraction and insertion points, criss crossing with a ender io power line. The problem occurs after a few hours (sometimes even less then an hour) and is fixed by replacing an arbitrary item conduit in the line. I cant confirm that is related to chunk loading, since it happened to me while i was only a few blocks around and the complete area of the conduit line is chunkloaded as well. Do you need any more info on this? <issue_comment>username_6: Several words: @username_1 can you not close and lock the bug if it's fixed... If not I'm going to assume your assumptions on whether or not the bug was fixed are irrelevant. <issue_comment>username_1: @username_10 you are 13 versions behind on Ender IO but do include the important Endercore change. Still, 157, 158, 160, 162 and 164 changed things with conduits. @username_6 Did you miss some words or mistyped some letters? That doesn't really make sense to me. <issue_comment>username_10: @username_1 well i was on the release version (stable). i updated to **164** and could reproduce the same error. i will try to make a minimal world save on a flatworld to try and reproduce the error. <issue_comment>username_1: that would be great. The only way I could reproduce it was on a server where I didn't have low level access. <issue_comment>username_10: Can you generally not have low level access when it is on a server? Because i think it is not reproducible on single player. <issue_comment>username_11: I've been following this issue for a bit, and am still experiencing the issue as well using the direwolf20 1.10 (1.6.1) pack. In fact, having just watched the video uploaded this morning: you can observe him having the same problem at 5:51, where his refined storage system has no empowered seeds because the empowerer hooked up with EnderIO item conduits was unloaded when he previously harvesting Ender Draconium in The End; therefore stopping the refined storage system from auto-crafting the empowered seeds. https://youtu.be/rnJjYyPkYtE?t=5m51s I observe the same issue on my multiplayer server, with the exception that I usually have to break a block on the item conduit, and replace it in order to get things crafting again. Or, restarting the server will usually suffice as well. Admittedly I'm new to debugging anything Minecraft, but I'm willing to help get whatever further info I can. <issue_comment>username_12: More (hopefully useful) info: I was able to stop this problem by using an IC2 chunkloader to load the entire network. The Extra Utils 2 Chunk Loading Ward did NOT solve this problem for some reason. <issue_comment>username_13: Yeah, it seems chunkloading is a "solution" but not all chunkloaders are equal. I experienced this bug even when the network was loaded using FTButil chunk loading. Experienced other odd behavior too. But since switching to loading using Persistent Bits, this and the other issues have not happened.<issue_closed>
{'fraction_non_alphanumeric': 0.0450366793574148, 'fraction_numerical': 0.01782895347757452, 'mean_word_length': 4.336967294350843, 'pattern_counts': {'":': 0, '<': 32, '<?xml version=': 0, '>': 31, 'https://': 2, 'lorem ipsum': 0, 'www.': 1, 'xml': 0}, 'pii_count': 4, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 1, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '27881361', 'n_tokens_mistral': 2923, 'n_tokens_neox': 2707, 'n_words': 1726}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Add skeleton generation support username_0: Something along the lines of `grus init` or `grus create` to be able to create a new repository with a `grus.toml` file and basic files to act as a skeleton hello world. Maybe provide a default theme as well.<issue_closed>
{'fraction_non_alphanumeric': 0.05647840531561462, 'fraction_numerical': 0.0033222591362126247, 'mean_word_length': 5.291666666666667, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '28759892', 'n_tokens_mistral': 81, 'n_tokens_neox': 77, 'n_words': 45}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Only able to see stat size of file, not able to see parsed size username_0: ** #### Technical info * Webpack Bundle Analyzer version: "webpack-bundle-analyzer": "^2.9.0", * Webpack version: "webpack": "^3.0.0", * Node.js version: v8.6.0 * npm/yarn version: 5.5.1 * OS: Ubuntu 14.04 LTS #### Debug info How do you use this module? As CLI utility or as plugin? First I created stats.json using `./node_modules/.bin/webpack --profile --json > stats.json` then using `./node_modules/.bin/webpack-bundle-analyzer stats.json` generated Tree Map then in generated Tree Map only **stat** option is there If CLI, what command was used? (e.g. `webpack-bundle-analyzer -O path/to/stats.json`) If plugin, what options were provided? (e.g. `new BundleAnalyzerPlugin({ analyzerMode: 'disabled', generateStatsFile: true })`) ``` new BundleAnalyzerPlugin({ analyzerMode: 'static', reportFilename: '../../webpack-analyser/index.html', statsFilename: './webpack-analyser/data/stats.json', defaultSizes: 'parsed' })); ``` What other Webpack plugins were used? It would be nice to also attach webpack stats file. It can be generated using these options: stats.json generated using `./node_modules/.bin/webpack --profile --json > stats.json` ``` `stats.json` will be created in Webpack bundle output directory. <issue_comment>username_1: Hmm sounds like webpack-bundle-analyzer has trouble parsing your bundled code. Are you able to zip your bundles and your stats.json, and upload it here? If you don't want to publicly paste your code here, feel free to send it to me via email. My email address is visible in my GitHub profile: https://github.com/username_1 <issue_comment>username_0: is it possible to generate stats.json containing size of file as parsed size or minified file size. <issue_comment>username_1: Unfortunately no. `webpack-bundle-analyzer` calculates the parsed and minified file sizes by reading your bundled source files, and that is one of its main purposes. <issue_comment>username_1: So I'll close this issue now.<issue_closed> <issue_comment>username_2: Having the same issue: I can see only stat sizes. Any receipt? webpack v3.10.0 webpack-bundle-analyzer v2.11.0 <issue_comment>username_3: @username_2 could you paste console output here? <issue_comment>username_1: @username_2 better yet, please open a new issue and paste the console output as asked by @username_3 above. Replying to closed issues makes it very difficult to track and help resolve.
{'fraction_non_alphanumeric': 0.09553398058252427, 'fraction_numerical': 0.013980582524271845, 'mean_word_length': 4.090909090909091, 'pattern_counts': {'":': 2, '<': 10, '<?xml version=': 0, '>': 12, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '7927917', 'n_tokens_mistral': 780, 'n_tokens_neox': 738, 'n_words': 311}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: DropoutWrapper in rnn_cell username_0: DropoutWrapper in rnn_cell do not have a state for training or testing. Although the keep_prob can be passed as a tensor conditioned on training/testing, would it be possible to add a state argument like in tf.nn.dropout? <issue_comment>username_1: Thanks for your interest @username_0 ! This is a question best asked on stackoverflow, where we monitor all issues with the tag `tensorflow`. We keep this channel for actual tensorflow bugs.<issue_closed>
{'fraction_non_alphanumeric': 0.044859813084112146, 'fraction_numerical': 0.005607476635514018, 'mean_word_length': 5.160919540229885, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '29508646', 'n_tokens_mistral': 144, 'n_tokens_neox': 138, 'n_words': 72}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: --quiet should report Spago errors username_0: When using the `--quiet` flag, Spago doesn't report errors related to Spago (though `purs` compiler errors are still emitted). For example, if you create a fresh Spago project with `spago init` and then delete the `console` dependency and run the below, you get an error: ```sh λ spago build [info] Build succeeded. [error] Some of your project files import modules from packages that are not in the direct dependencies of your project. To fix this error add the following packages to the list of dependencies in your config: - console You may add these dependencies by running the following command: spago install console ``` However, if you run with `--quiet`, you don't get any errors: ```sh λ spago --quiet build ``` In most cases this probably isn't an issue -- you'll still get compiler errors emitted, which is surely the most common source of Spago halting -- but it becomes an issue if you for example run: ```sh λ spago --quiet test ``` ...because the tests won't be executed and if there's no compiler error then it's unclear why not. In this case it would be nice to see that Spago has halted because of the missing dependencies. <issue_comment>username_0: On second thought, if `--quiet` is needed for workflows where you really don't want _any_ Spago output leaking through, then I understand why logging would just be disabled in general and we can close this. <issue_comment>username_1: I tend to concur with this, but I think this raises the question: should we quiet ALL output when the flag is passed? (i.e. also the one coming from external programs that we call, such as `purs`)
{'fraction_non_alphanumeric': 0.06086956521739131, 'fraction_numerical': 0.0017391304347826088, 'mean_word_length': 3.9173789173789175, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '18309337', 'n_tokens_mistral': 469, 'n_tokens_neox': 430, 'n_words': 273}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: HARKinterpolation.py username_0: On line 787 in HARKinterpolation, I got an error message when trying to run it. When I changed "xrange" to "range" it went through. <issue_comment>username_1: Can you copy-paste the error message for xrange? This doesn't come up on my computers. <issue_comment>username_1: PS: My first / only guess is that you're using Python 3 rather than Python 2. If the error message is something to the effect that there is no function called xrange, then it's probably Python 3. <issue_comment>username_0: Yes, that's true. I am now in the process of installing python 2 instead.<issue_closed>
{'fraction_non_alphanumeric': 0.06125574272588055, 'fraction_numerical': 0.016845329249617153, 'mean_word_length': 5.055555555555555, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '25981693', 'n_tokens_mistral': 190, 'n_tokens_neox': 179, 'n_words': 95}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Clear scanner flags when auto approval is confirmed username_0: Fixes https://github.com/mozilla/addons-server/issues/14284 --- I *think* this is enough but this is new to me (and that's why I have to fix this issue 1 week later 😞). I don't know "how" but could we clear the queue? Maybe we could run a migration that sets `needs_human_review_by_mad=False` on all entries? <issue_comment>username_0: @username_1 WDYT? <issue_comment>username_1: Yeah, we could even reset by deleting all `VersionScannerFlags` ? <issue_comment>username_0: Yep.
{'fraction_non_alphanumeric': 0.08404802744425385, 'fraction_numerical': 0.018867924528301886, 'mean_word_length': 5.212765957446808, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '1161148', 'n_tokens_mistral': 193, 'n_tokens_neox': 174, 'n_words': 73}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Add support for ALC269VB layout-id 76 username_0: <issue_comment>username_1: @username_0 Hello. For what device this resources for? Could you specify laptop model? <issue_comment>username_0: Well actually it is quite rare, but it is amazing with hackintosh. It may represent a variety of laptops because it's actually a kind of ODM Model. Its model is ENZ C16B. It's my wish that it could be included in the official AppleALC because this model is currently quite popular in the Hackintosh Community of China. However I'll fully understand if you wouldn't like to. <issue_comment>username_1: Merged. Thanks
{'fraction_non_alphanumeric': 0.04821150855365474, 'fraction_numerical': 0.01866251944012442, 'mean_word_length': 5.313725490196078, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '10757041', 'n_tokens_mistral': 181, 'n_tokens_neox': 170, 'n_words': 92}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: compatibility with React Native username_0: We have a sails backend that we currently use with an angular.js frontend and sails.io.js without any issues. Now we're trying to integrate the sails backend with a react native mobile app but we're having issues with sockets/sails.io. Is there currently a way to make sails.io.js work with React Native ? (If you've got it to work please provide the library versions you're using) We tested using sails.io 0.11.5 , socket.io 1.2.1, react-native 0.30 against a sails 0.11.4 backend Thanks !
{'fraction_non_alphanumeric': 0.061511423550087874, 'fraction_numerical': 0.026362038664323375, 'mean_word_length': 4.377358490566038, 'pattern_counts': {'":': 0, '<': 2, '<?xml version=': 0, '>': 2, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '11182157', 'n_tokens_mistral': 167, 'n_tokens_neox': 148, 'n_words': 84}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: no map with 'use_nav_sat = true' username_0: Hello, The 3D-SLAM (Livox Horizon LiDAR, 90° HFOV) works fine with 'use_nav_sat = false' (starts generating map) ... ![Screenshot from 2021-06-28 13-56-52](https://user-images.githubusercontent.com/11735886/123696971-a9a9cb00-d85c-11eb-8a91-a231a67e3c3d.png) ...but does nothing with 'use_nav_sat = true' (empty map). I'm using ublox f9p cm-precise GPS (RTK) data @ 5 Hz. Cartographer seem to get the first RTK position: [ INFO] [1624910382.882780944, 1624903792.750821826]: I0628 21:59:42.000000 28388 sensor_bridge.cc:88] Using NavSatFix. Setting ecef_to_local_frame with lat = 52.2674, long = 8.60921. I can see the changing RTK positions with 'rostopic echo /fix'. ![Screenshot from 2021-06-28 22-04-07](https://user-images.githubusercontent.com/11735886/123697078-c8a85d00-d85c-11eb-9367-4abf3650e6c6.png) However, no map is generated (empty map). Any ideas? :-) Thanks! <issue_comment>username_0: Got it working (https://www.youtube.com/watch?v=4t9IMHhMD-Q). However somehow the 'base_link' is 'ahead' of the LiDAR data after some time... <issue_comment>username_0: This issue can be closed - solved it by reducing 'voxel_filter_size' and 'submaps.num_range_data' :-)
{'fraction_non_alphanumeric': 0.11953125, 'fraction_numerical': 0.14296875, 'mean_word_length': 4.521551724137931, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 3, 'lorem ipsum': 0, 'www.': 1, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '29544283', 'n_tokens_mistral': 606, 'n_tokens_neox': 486, 'n_words': 125}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [Lang] Let rescale_index support SNode as input parameter username_0: Related issue = this pr basically let `ti.rescale_index` support `SNode` as input parameter. The reason is that sometimes an `SNode` might not have '**placed**' a `Field` but we want to rescale the cell index based on the `SNode` anyway. See the [example](https://github.com/username_0/taichi_elements/blob/8c4a16cc0bfb45a667ec0d62e248c445bcea53e2/engine/mpm_solver.py#L321) from the **Taichi_elements**. We need to rescale the index from `pid(ti.root.pointer.pointer.dynamic)` to `block(ti.root.pointer.pointer)`. But `block` did not have a cell placed beneath (but we still need to rescale according to `block`). <!-- Thank you for your contribution! If it is your first time contributing to Taichi, please read our Contributor Guidelines: https://docs.taichi.graphics/docs/lang/articles/contribution/contributor_guide - Please always prepend your PR title with tags such as [CUDA], [Lang], [Doc], [Example]. For a complete list of valid PR tags, please check out https://github.com/taichi-dev/taichi/blob/master/misc/prtags.json. - Use upper-case tags (e.g., [Metal]) for PRs that change public APIs. Otherwise, please use lower-case tags (e.g., [metal]). - More details: https://docs.taichi.graphics/docs/lang/articles/contribution/contributor_guide#pr-title-format-and-tags - Please fill in the issue number that this PR relates to. - If your PR fixes the issue **completely**, use the `close` or `fixes` prefix so that GitHub automatically closes the issue when the PR is merged. For example, Related issue = close #2345 - If the PR does not belong to any existing issue, free to leave it blank. --> <issue_comment>username_0: /format <issue_comment>username_1: /format
{'fraction_non_alphanumeric': 0.10088202866593164, 'fraction_numerical': 0.018191841234840134, 'mean_word_length': 4.417910447761194, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 4, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '9907150', 'n_tokens_mistral': 579, 'n_tokens_neox': 538, 'n_words': 210}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Testing `form_with` and Rails Versions username_0: [This issue is for discussion and to record information that may be useful to future maintainers.] This PR adds a new helper bootstrap_form_with to support the Rails 5.1 form_with helper (Issue #326). Support for `bootstrap_form_with` was added by PR #369. The code changes to the helpers to support `bootstrap_form_with` were not extensive, but testing was a challenge. `form_with` adds to the variety of expected outputs that tests have to handle. A couple of varieties of testing approaches were proposed in early versions of PR #369, and in #346, but all were deemed too complicated, or had too much duplication. In the end #369 includes a few tests to check specific `form_with` related functionality, but otherwise testing is left to `form_for` and `form_tag`. If, as was announced originally, `form_with` will eventually replace `form_for` and `form_tag`, we'll have to update our tests. Originally, I thought it would be best to provide a complete suite of `form_with` tests now, while one has their head in the problem. However, with Rails 5.2 on the horizon, I would propose that we do not increase test coverage for `form_with` until at least Rails 5.2, and then basically ignore testing of Rails 5.1 beyond what we currently have. This will eliminate one dimension of test variability. Also, my experience trying to use `form_with` in Rails 5.1 was sufficiently painful that I think we would be doing people a favour by encouraging them to switch to Rails 5.2 if they want to use `form_with`. Eventually, we'll have to do all testing against `form_with`, but hopefully by then a number of the other variations in test will no longer be needed, because those versions are no longer supported. So testing should be easier at that time. For the record, here are some examples of the differences in output that have accumulated over time (not just due to #369): * Prior to Rails 5, HTML tags were output in alphabetical order. After, they weren't * Some helpers starting with Rails 5 produced more output, e.g. an empty hidden input on file tags (The genesis of `assert_equivalent_xml` is found in #273 and #278, which specifically addressed these first two issues.) * Rails 5.1. stopped generating default DOM ids in the form helpers, and stopped putting the new_... HTML class on forms. There may be other differences that I've forgotten already * Rails 5.2 returns to putting default DOM ids, but still doesn't put the HTML class on forms * `form_with` does submits via unobtrusive Javascript, so `form` tags are marked with `data-remote="true"`. (https://m.patrikonrails.com/rails-5-1s-form-with-vs-old-form-helpers-3a5f72a8c78a is an easy-to-read summary of differences between `form_for` and `form_with`.) <issue_comment>username_1: Is this the place to discuss testing approach? Here's how test suite could be written to be simple and manageable. There's absolutely no difference between Rails 5.0, 5.1 and 5.2 as far as `ActionView::Helpers::FormBuilder` is concerned. The only difference is how it's being initialized by view helpers like `form_for` or `form_with`. So all tests that test builder methods like `text_field` should do it directly via an instance of builder, not via html generated by `form_for` view helpers. Then you can create a separate test file that tests view helpers only. Something like assertion of output for: ```ruby bootstrap_form_for @record do |form| form.text_field :foo end ``` Output of that may differ between Rails versions. However you do not test every builder method like that as you're effectively triplicating test suite for no reason. <issue_comment>username_2: Option "size" in form.text_field isn't working for bootstrap_form_with. <code><%= form.text_field :name, size: 20 %></code> Do you recommend another way to define the size of text_field? <issue_comment>username_0: @username_2 thanks very much for the feedback. We need to hear from users to make `bootstrap_form` better. Sorry for my delay in responding. I'm having trouble reproducing your issue, but I have one guess as to what might be happening: Bootstrap expands input fields to the full width of the enclosing element. Depending on the HTML that you have around your text fields, that might account for why they both look like they have the same width. Bootstrap puts a `width: 100%` in the `form-control` class, which is the class that styles the form input fields with the Bootstrap look and feel. You could try putting `, style: "width: auto;"` after the size in each of your fields. (I tried adding the Bootstrap class `w-auto` to the fields, but that didn't seem to work. Maybe you can figure out why `w-auto` didn't work.) Let me know if this helps! And thanks again for your feedback. <issue_comment>username_2: After your sugestion, <code>style: "width: auto;"</code>, text_field are respecting the option <code>size: 20</code> and fields are not using the width from <code>form-control</code> class. So, problem was solved. Thanks for your attention and congratulions for this gem.
{'fraction_non_alphanumeric': 0.05886909372579396, 'fraction_numerical': 0.013555383423702556, 'mean_word_length': 4.500532481363153, 'pattern_counts': {'":': 0, '<': 15, '<?xml version=': 0, '>': 15, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 1}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '21347033', 'n_tokens_mistral': 1420, 'n_tokens_neox': 1309, 'n_words': 784}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: in the dartium repl, can't use private vars from other libraries username_0: at a breakpoint in library A, i want to be able to use private vars from library B. i can see them, taunting me inside the console output. e.g. i type foo and hit enter at the repl and it shows me the foo object and i can inspect its various parts by clicking on the triangle flippies. one of foo's fields is \_bar, which happens to be a List. ok, what's in that List? well, i can see it toString'ed, but i want to probe deeper, e.g. i might want to test &quot;foo._bar[0] is Baz&quot;. i can try to click around, but i can't see anything \_inside_ the List. maybe the data is hidden beyond some c++ barrier - who knows? but even if not, i shouldn't have to navigate through the implementation details of List. i just want to do stuff like foo._bar[0], which currently is forbidden. &lt;rant&gt; this seems silly. if these things are so private, why show them to me in the first place? and i'm at the debugger. i don't need to be nannied. give me the power, i accept the consequences. this seems to serve no purpose but slow down my debugging. &lt;/rant&gt; btw, this is similar to bug 13811, but i think different in that that bug i don't think was asking for an escalation of privilege inside the debugger. chrome 36.0.1985.97 (Developer Build 280598) <issue_comment>username_1: +1 <issue_comment>username_2: +1 <issue_comment>username_3: +1<issue_closed>
{'fraction_non_alphanumeric': 0.06368563685636856, 'fraction_numerical': 0.01964769647696477, 'mean_word_length': 4.182456140350877, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 1, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '14544540', 'n_tokens_mistral': 461, 'n_tokens_neox': 429, 'n_words': 250}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Send membership renewal emails 30 days before expiration username_0: **Is your feature request related to a problem? Please describe.** Members need to know when we'd like them to renew their memberships. **Describe the solution you'd like** We have an email for this already, so we just need to create a rake task and code it can call to send the emails. `ActivityNotifier` handles much of logic for the other emails we send out.<issue_closed>
{'fraction_non_alphanumeric': 0.05371900826446281, 'fraction_numerical': 0.006198347107438017, 'mean_word_length': 4.843373493975903, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '28824403', 'n_tokens_mistral': 123, 'n_tokens_neox': 116, 'n_words': 74}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Fix for Spanish Translation + Add mspanish variant username_0: So this is my attempt on fixing the current version + adding the mspanish (Mexican Spanish) variant as by default it falls back to English Draft because: 1. A few game modes/match settings are still on English as I'm not really sure what kind of translation would be the adequate 2. I need feedback from other Spanish people so this can increase in quality and be "readable" 3. Spanish and Mexican Spanish are not usually the same so in my opinion I can't just re-use the same modism for the other Por lo que si alguien habla Español, estoy abierto a sugerencias en este hilo para mejorar la traducción ^^ (O si no, la terminaré yó eventualmente/or else i'll finish it by myself eventually) <issue_comment>username_0: Well, imho it's finished and ready to merge <issue_comment>username_0: @BobTheBob9 pls merge :'v <issue_comment>username_0: Done @abarichello
{'fraction_non_alphanumeric': 0.04446742502585315, 'fraction_numerical': 0.008273009307135471, 'mean_word_length': 4.796407185628743, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '11163447', 'n_tokens_mistral': 279, 'n_tokens_neox': 264, 'n_words': 148}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: TYPO: grammar username_0: <issue_comment>username_1: +1 for "gerund invasion." <issue_comment>username_2: Hey @username_0 (and @username_1) - if you find more typos while working through the CZI workshop prep, let's just open one long-lived PR that accretes these fixes. Thanks! <issue_comment>username_1: Good thinkin'! Sounds good :)
{'fraction_non_alphanumeric': 0.0913978494623656, 'fraction_numerical': 0.01881720430107527, 'mean_word_length': 6.46, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '19557059', 'n_tokens_mistral': 121, 'n_tokens_neox': 115, 'n_words': 42}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [WIP] Add support for `currentColor` username_0: - Introduced `SvgTheme` used when parsing an SVG picture. Includes `colorFilter` and [`currentColor`](https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#currentcolor_keyword) at the moment. - Added `currentColor` to `SvgPicture`. The property is then passed to `SvgParserState` in an `SvgTheme`. - Added `currentColor` when parsing an SVG element style in `parseStyle` (along with `parseStroke` and `parseFill`). <issue_comment>username_0: Hey @dnfield, I have made the following updates if you could take a look: - The currentColor property is now supplied only to the root SVG element. - Picture providers initialization was moved from constructors to `didChangeDependencies` (when `SvgTheme` from context changes) and `didUpdateWidget` (when widget's`PictureProviderMetadata` changes).
{'fraction_non_alphanumeric': 0.09142212189616253, 'fraction_numerical': 0.002257336343115124, 'mean_word_length': 5.9296875, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '19399676', 'n_tokens_mistral': 254, 'n_tokens_neox': 244, 'n_words': 97}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Installation on extensions.gnome.org not working username_0: Hi, I've tried to install your extension by pressing the button on [GNOME Extensions Website](https://extensions.gnome.org/extension/1268/gnomesome/) and it immediately jumps back to "OFF". Any idea? Regards, Varakh <issue_comment>username_1: On what platform/gnome version are you attempting to install the extension? 1. Can you test if the manual installation (from source of gitlab) works? 2. Can you provide the log output (e. g. journalctl) when you try to enable the extension? <issue_comment>username_0: Hi, I'm on ArchLinux, latest GNOME stable release with chromium enabled gnome shell extension to install extensions by visiting the website. I made a small screencast, so you can see the behaviour yourself: [https://paste.hoth.one/vCa6q/](https://paste.hoth.one/vCa6q/) I don't see an error in the log, but here it is: `Aug 11 15:11:25 ziost org.gnome.Shell.desktop[564]: Archive: /tmp/575M4Y.shell-extension.zip Aug 11 15:11:25 ziost org.gnome.Shell.desktop[564]: inflating: /home/alexander/.local/share/gnome-shell/extensions/gnomesome@<EMAIL>/extension.js Aug 11 15:11:25 ziost org.gnome.Shell.desktop[564]: inflating: /home/alexander/.local/share/gnome-shell/extensions/<EMAIL>@<EMAIL>/convenience.js Aug 11 15:11:25 ziost org.gnome.Shell.desktop[564]: inflating: /home/alexander/.local/share/gnome-shell/extensions/<EMAIL>@<EMAIL>/menubutton.js Aug 11 15:11:25 ziost org.gnome.Shell.desktop[564]: inflating: /home/alexander/.local/share/gnome-shell/extensions/gnomesome@chwick.github.com/schemas/gschemas.compiled Aug 11 15:11:25 ziost org.gnome.Shell.desktop[564]: inflating: /home/alexander/.local/share/gnome-shell/extensions/gnomesome@chwick.github.com/manager.js Aug 11 15:11:25 ziost org.gnome.Shell.desktop[564]: inflating: /home/alexander/.local/share/gnome-shell/extensions/gnomesome@ch<EMAIL>.github.com/schemas/org.gnome.shell.extensions.gnomesome.keybindings.gschema.xml Aug 11 15:11:25 ziost org.gnome.Shell.desktop[564]: inflating: /home/alexander/.local/share/gnome-shell/extensions/gnomesome@chwick.github.com/schemas/org.gnome.shell.extensions.gnomesome.gschema.xml Aug 11 15:11:25 ziost org.gnome.Shell.desktop[564]: extracting: /home/alexander/.local/share/gnome-shell/extensions/gnomesome@chwick.github.com/metadata.json` I will later try to install it manually. <issue_comment>username_1: I can confirm this on a Fedora 26 Virtual Machine. I will fix this asap! <issue_comment>username_1: Fixed with the current version of the extension on the gnome extensions page.<issue_closed>
{'fraction_non_alphanumeric': 0.11461856444945509, 'fraction_numerical': 0.04434423149192033, 'mean_word_length': 4.9552572706935125, 'pattern_counts': {'":': 0, '<': 13, '<?xml version=': 0, '>': 13, 'https://': 3, 'lorem ipsum': 0, 'www.': 0, 'xml': 2}, 'pii_count': 4, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '13751172', 'n_tokens_mistral': 1002, 'n_tokens_neox': 851, 'n_words': 223}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Changing coordinate values in the Coordinates panel doesn't work if the user first generates a plot of muscle moment arms username_0: Reported by @jryong ### Steps to reproduce - open arm26.osim - Tools -> Plot... - Y-Quantity... -> moment arm -> r_shoulder_elev - Muscles... -> select all shown - X-Quantity... -> r_shoulder_elev - click Add - close Plotter - go to Coordinates panel and move slider ### Expected result Joint angle shown in Visualizer changes as Coordinate slider moves. ### Actual result Model in Visualizer does not move. ### Environment and GUI version OpenSim-1e476f28-2018-06-13-win64.exe from Dropbox <issue_comment>username_1: Tested in latest build and can't reproduce. <issue_comment>username_2: Tested on W10 71c8c385, can't reproduce <issue_comment>username_3: Tested on Mac OpenSim 3d029e5-2018-08-15, can't reproduce.<issue_closed>
{'fraction_non_alphanumeric': 0.0891304347826087, 'fraction_numerical': 0.04673913043478261, 'mean_word_length': 4.005434782608695, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 11, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '15082711', 'n_tokens_mistral': 323, 'n_tokens_neox': 280, 'n_words': 103}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Pickaxe of a miner quest problem username_0: when you need to get the amethyst from the sabley in the sableye outside skadi (smaller road) they don't drop it at all. I have tried to kill multiple sableyes (15+) and it didn't drop. (PJ also said he had 4 people with the same issue going to him)<issue_closed> <issue_comment>username_1: Fixed drop problem
{'fraction_non_alphanumeric': 0.05612244897959184, 'fraction_numerical': 0.012755102040816327, 'mean_word_length': 4.954545454545454, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '24465638', 'n_tokens_mistral': 122, 'n_tokens_neox': 114, 'n_words': 61}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Update OptaPlanner logo with PaternFly color username_0: The color is #D2D2D2 from https://www.patternfly.org/v4/design-guidelines/styles/colors#color-palette and matches the color of navigation bar links. <issue_comment>username_0: @username_1 I've updated PR description and included screenshots of all proposals that we have. Let's discuss the file name later and now focus on the color. Proposals: - Alpha) Status quo (original logo). - Beta) Official logo for dark backgrounds. - Gamma) Modified logo using a shade of grey from PF palette. My comments: - -1 for Alpha (status quo). Looks bad. We have an alternative logo for such situations. - +1 for Beta proposal. Looks nice. A bit too flashy in my opinion, attracting too much attention. I admit this is a matter of taste. - +1.5 for Gamma proposal. I find it a bit nicer than Beta. @username_1 Your thoughts on Beta vs. Gamma? I can go with either of them. <issue_comment>username_1: Agreed that Beta is better than alpha. Let's do that discussion on Gamma with Jason and James. Sending mail now :) <issue_comment>username_0: ## Current state (alpha) ![Selection_006](https://user-images.githubusercontent.com/673386/80967562-dad46a00-8e16-11ea-814c-242500ced8a7.png) Give :+1: here to vote for this option. <issue_comment>username_0: ## This PR proposal (gamma) ![Selection_008](https://user-images.githubusercontent.com/673386/80967510-c6906d00-8e16-11ea-8013-a482396b2a42.png) Modification of the alternative OptaPlanner logo for dark backgrounds. This variant uses a shade of grey that matches navigation links' color. Give :+1: here to vote for this option. <issue_comment>username_0: ## Alternative solution (beta) ![Selection_007](https://user-images.githubusercontent.com/673386/80967580-e6279580-8e16-11ea-8ad8-4996bb8fbe36.png) Give :+1: here to **vote for this option**. <issue_comment>username_0: ## This PR proposal (gamma) ![Selection_008](https://user-images.githubusercontent.com/673386/80967510-c6906d00-8e16-11ea-8013-a482396b2a42.png) Modification of the alternative OptaPlanner logo for dark backgrounds. This variant uses a shade of grey from **PatternFly** color palette that matches navigation links' color. Give :+1: here to **vote for this option**. <issue_comment>username_2: @username_0 if you decide to go with "Beta" option, is it possible to change the color of PF navigation links to white, so that the color of the logo and the links matches? <issue_comment>username_0: @username_2 No. I'd rather keep the defaults. I think it's fine the way it is and that PatternFly have decided not to use white for a reason. <issue_comment>username_0: Proposal beta won. Going with the original, unmodified OptaPlanner logo variant for dark background from https://design.jboss.org/blip/images/optaplanner/optaplanner_logo_dk_200px.png (white color). @username_1 please review the file name. I used the file from design.jboss.org without modifying it and I'm OK with keeping it like that. Advantages: - No modification => it's clear that also the file content doesn't differ from the original. - Underscores => it's easier to read. Disadvantages: - `dk` => not super clear that it means "for dark backgrounds". <issue_comment>username_0: Jenkins failure: Trying to pull repository docker.io/cypress/included ... /usr/bin/docker-current: toomanyrequests: You have reached your pull rate limit. You may increase the limit by authenticating and upgrading: https://www.docker.com/increase-rate-limit.
{'fraction_non_alphanumeric': 0.08415147265077139, 'fraction_numerical': 0.05273492286115007, 'mean_word_length': 4.598116169544741, 'pattern_counts': {'":': 0, '<': 12, '<?xml version=': 0, '>': 15, 'https://': 7, 'lorem ipsum': 0, 'www.': 2, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '30942026', 'n_tokens_mistral': 1193, 'n_tokens_neox': 1058, 'n_words': 423}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Create new span if paren span is missing username_0: This library currently, only passes active span from parent thread to submitted runnable/callable. If there is no parent span it does nothing. We should consider creating a new span if there is no parent span. <issue_comment>username_1: Not sure - I think the role of this library is just to propagate the trace context, not to assume that a span should exist. If the application wants some form of bounding scope/span, then they should ensure it is created through other instrumentations or explicitly by the application itself. <issue_comment>username_0: Executors are usually used for time-consuming tasks, therefore having a span which wraps the whole invocation helps you to understand latency problems. Not even saying that In some situations, there won't be parent span (e.g. no servlet environment) in this situation this library does not bring you any value. A specific use case is Executor instrumentation in Spring. It can be used without web package. Creating a span should be optional. It would be a boolean flag in executor constructor whether to create a span or not. <issue_comment>username_2: fixed via https://github.com/opentracing-contrib/java-concurrent/pull/13 can be closed now<issue_closed>
{'fraction_non_alphanumeric': 0.03966437833714721, 'fraction_numerical': 0.004576659038901602, 'mean_word_length': 4.779735682819383, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '18252179', 'n_tokens_mistral': 314, 'n_tokens_neox': 302, 'n_words': 191}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: error reporting username_0: Hi @username_1, I am currently "cleaning" error handling in the scripts.. Is there a reason why you use within `homology_intaRNA.pl` sometimes an explicit error file `err.log` via ERRORLOG and sometimes `die` which writes to STDERR? If not, I would like to unify both towards `die` for an early abortion with according exit status, while the latter can be used upstream in the calling script to check whether all went fine or something was aborted.. That way, we can have a clean exit with reasonable error message anywhere within the scripting-mess.. ;) Thanks for feedback, Martin <issue_comment>username_1: Hi @username_0 , the reason would be *historic*. Originally `homology_intaRNA.pl` was the "master" script. I never thought about/had time to clean this up. `err.log` is intended to catch and report errors in the scripts running hierarchically below `CopraRNA2.pl` so a somewhat useful error message can be provided. Having said that, the parts where `die` is invoked usually do not happen but the errors that print into the `err.log` sometimes do. Best, Patrick <issue_comment>username_0: even more reason to trigger a `die` rather than printing to a specific log file, since the err.log typically does not exit the script such that intermediate failures cause a lot of downstream errors due to missing files etc... what do you think? <issue_comment>username_1: I'll leave that decision in your hands. Thanks!
{'fraction_non_alphanumeric': 0.054376657824933686, 'fraction_numerical': 0.004641909814323607, 'mean_word_length': 4.487272727272727, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '27124241', 'n_tokens_mistral': 401, 'n_tokens_neox': 376, 'n_words': 223}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Adding the json for Internet Explorer 11 Webdriver 3.8.0 username_0: Thank you a bunch for creating scoop - this has been a great tool to keep both the Chrome and Firefox webdrivers updated across our team and jenkins. I noticed that you were missing the internet explorer webdriver though, so here is my json to install it. Thanks again, Zach <issue_comment>username_1: @username_0 can you add a line feed to the end of the file? Our CI requires it. Thanks. <issue_comment>username_2: Or run `.\bin\formatjson.ps1 .\bucket\ie11webdriver.json` <issue_comment>username_0: whoops - just saw your last message. Give me a few minutes.
{'fraction_non_alphanumeric': 0.05794947994056464, 'fraction_numerical': 0.019316493313521546, 'mean_word_length': 4.435483870967742, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '10977417', 'n_tokens_mistral': 201, 'n_tokens_neox': 187, 'n_words': 96}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [BitMEX] orderBookL2 feed bugs out at 12:00 UTC username_0: Has anyone been having problems with book building off BitMEX's orderBookL2 feed recently? Just after 12:00 UTC (which is the funding time) on 9th May, 11th May and 14th May (today), the exchange started sending book updates that refer to non-existent order/level ids. For example, just 2 hours ago (14th May at 12:00:40 UTC) I got a book update for id 8791580900 that tried to amend the size of the order. However, the last message received with this specific id was a **delete** message at 11:24:24 UTC, so the fact the exchange is sending an amend message after a delete doesn't make sense. <issue_comment>username_1: @username_0 have you tried comparing it with what REST api returns? <issue_comment>username_2: This bug is several months old - needs testing and validating to see if it still bug. It is likely it was a server side bug that may have been fixed by now.
{'fraction_non_alphanumeric': 0.049281314168377825, 'fraction_numerical': 0.045174537987679675, 'mean_word_length': 4.603448275862069, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '22859330', 'n_tokens_mistral': 295, 'n_tokens_neox': 257, 'n_words': 158}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Cannot install version 0.1.1-0.0.1; dependencies don't seem to work username_0: Attempting to install version 0.1.1-0.0.1 in a [conda](http://conda.pydata.org) virtual environment throws a bunch of errors. I think there's a problem in the `setup.py` in terms of the dependencies required for this package. Example ======= Create a conda virtual environment and attempt to install version 0.1.1-0.0.1 from github. ``` $ cd test $ conda create -p ./env anaconda $ source activate ./env/ $ pip install git+git://github.com/username_0/refmanage.git@0.1.1-0.0.1#egg=refmanage Downloading/unpacking refmanage from git+git://github.com/username_0/refmanage.git@0.1.1-0.0.1 Cloning git://github.com/username_0/refmanage.git (to 0.1.1-0.0.1) to /private/var/folders/qs/jhzvfv7x41v8p_6y91p044ww0000gn/T/pip_build_username_0/refmanage Running setup.py (path:/private/var/folders/qs/jhzvfv7x41v8p_6y91p044ww0000gn/T/pip_build_username_0/refmanage/setup.py) egg_info for package refmanage Traceback (most recent call last): File "<string>", line 17, in <module> File "/private/var/folders/qs/jhzvfv7x41v8p_6y91p044ww0000gn/T/pip_build_username_0/refmanage/setup.py", line 3, in <module> import refmanage File "refmanage/__init__.py", line 11, in <module> from fs_utils import * File "refmanage/fs_utils.py", line 4, in <module> import pathlib2 as pathlib ImportError: No module named pathlib2 Complete output from command python setup.py egg_info: Traceback (most recent call last): File "<string>", line 17, in <module> File "/private/var/folders/qs/jhzvfv7x41v8p_6y91p044ww0000gn/T/pip_build_username_0/refmanage/setup.py", line 3, in <module> import refmanage File "refmanage/__init__.py", line 11, in <module> from fs_utils import * File "refmanage/fs_utils.py", line 4, in <module> import pathlib2 as pathlib ImportError: No module named pathlib2 ---------------------------------------- Cleaning up... Command python setup.py egg_info failed with error code 1 in /private/var/folders/qs/jhzvfv7x41v8p_6y91p044ww0000gn/T/pip_build_username_0/refmanage Storing debug log for failure in /Users/username_0/.pip/pip.log ``` <issue_comment>username_0: Diagnosis ========= The problem occurs in `setup.py` on line 3 introduced at 640eb27d227747711da8a29785501b7b8465f4f4. The problem is that `setup.py` attempts to import `refmanage`. However, `refmanage` depends on `pybtex` and `pathlib2`, either of which may not be installed on the user's system. If they aren't installed, something like the above error occurs. Apparently, importing the `refmanage` package in `setup.py` can cause a race condition and is considered bad ([source](http://stackoverflow.com/questions/2058802/how-can-i-get-the-version-defined-in-setup-py-setuptools-in-my-package/2073599#2073599)). Solution ======== According to the above [suggestion on stackoverflow](http://stackoverflow.com/questions/2058802/how-can-i-get-the-version-defined-in-setup-py-setuptools-in-my-package/2073599#2073599), the way to handle the version information is to abstract it into a file, similar to what I've done. The difference with the SO solution is to use the `execfile` command to import the verion information into the `setup.py` namespace. So the solution is to use the `execfile` construction in `setup.py`. Misc ==== For what its worth, here's the contents of `pip.log` from the failed install: ``` ------------------------------------------------------------ /Users/username_0/Desktop/test/env/bin/pip run on Sat Mar 7 19:03:11 2015 Downloading/unpacking refmanageclear from git+git://github.com/username_0/refmanage.git@0.1.1-0.0.1 Cloning git://github.com/username_0/refmanage.git (to 0.1.1-0.0.1) to /private/var/folders/qs/jhzvfv7x41v8p_6y91p044ww0000gn/T/pip_build_username_0/refmanageclear Found command 'git' at '/usr/local/bin/git' Running command /usr/local/bin/git clone -q git://github.com/username_0/refmanage.git /private/var/folders/qs/jhzvfv7x41v8p_6y91p044ww0000gn/T/pip_build_username_0/refmanageclear Cleaning up... Operation cancelled by user Exception information: Traceback (most recent call last): File "/Users/username_0/Desktop/test/env/lib/python2.7/site-packages/pip/basecommand.py", line 122, in main status = self.run(options, args) File "/Users/username_0/Desktop/test/env/lib/python2.7/site-packages/pip/commands/install.py", line 278, in run requirement_set.prepare_files(finder, force_root_egg_info=self.bundle, bundle=self.bundle) File "/Users/username_0/Desktop/test/env/lib/python2.7/site-packages/pip/req.py", line 1197, in prepare_files do_download, File "/Users/username_0/Desktop/test/env/lib/python2.7/site-packages/pip/req.py", line 1360, in unpack_url unpack_vcs_link(link, loc, only_download) File "/Users/username_0/Desktop/test/env/lib/python2.7/site-packages/pip/download.py", line 344, in unpack_vcs_link vcs_backend.unpack(location) File "/Users/username_0/Desktop/test/env/lib/python2.7/site-packages/pip/vcs/__init__.py", line 240, in unpack self.obtain(location) File "/Users/username_0/Desktop/test/env/lib/python2.7/site-packages/pip/vcs/git.py", line 111, in obtain call_subprocess([self.cmd, 'clone', '-q', url, dest]) File "/Users/username_0/Desktop/test/env/lib/python2.7/site-packages/pip/util.py", line 687, in call_subprocess returned_stdout, returned_stderr = proc.communicate() File "/Users/username_0/Desktop/test/env/lib/python2.7/subprocess.py", line 796, in communicate self.wait() File "/Users/username_0/Desktop/test/env/lib/python2.7/subprocess.py", line 1376, in wait pid, sts = _eintr_retry_call(os.waitpid, self.pid, 0) File "/Users/username_0/Desktop/test/env/lib/python2.7/subprocess.py", line 476, in _eintr_retry_call return func(*args) KeyboardInterrupt ```<issue_closed>
{'fraction_non_alphanumeric': 0.13254615000831532, 'fraction_numerical': 0.055712622650923, 'mean_word_length': 3.735433070866142, 'pattern_counts': {'":': 0, '<': 14, '<?xml version=': 0, '>': 14, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 5, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '3175794', 'n_tokens_mistral': 2326, 'n_tokens_neox': 2035, 'n_words': 480}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: `crypto_stream_chacha20_ietf_xor_ic()` always uses the zero-filled array key. username_0: The function `crypto_stream_chacha20_ietf_xor_ic()` ignores the key parameter, always treat the key parameter as zero-filled array. This bug could lead to serious security vulnerabilities, so quick action is necessary. I tried to fix it by myself but I have no idea what the cause is. [`wrapper/symbols/crypto_stream_chacha20_ietf_xor_ic.json`](https://github.com/username_1/libsodium.js/blob/master/wrapper/symbols/crypto_stream_chacha20_ietf_xor_ic.json) looked fine for me. ### Minimal bug reproduction using Node.js ```js // libsodium-wrappers-sumo v0.7.6 const sodium = require('libsodium-wrappers-sumo') main() async function main() { await sodium.ready // NOTE: Whatever key you choose, result will be the same as using the zero key const key = sodium.crypto_stream_chacha20_keygen() // const key = new Uint8Array(32) // const key = Uint8Array.from('01234567890123456789012345678901', c => c.charCodeAt()) // const key = Uint8Array.from('yoloswagyoloswagyoloswagyoloswag', c => c.charCodeAt()) const result = sodium.crypto_stream_chacha20_ietf_xor_ic( new Uint8Array(64), Uint8Array.from('Hello,world!', c => c.charCodeAt()), 0, key) console.log(result) } ``` ### Minimal bug reproduction in browser ```html <!doctype html> <html> <head><meta charset="UTF-8"></head> <body> <script src="https://cdn.jsdelivr.net/gh/username_1/libsodium.js@0.7.6/dist/browsers-sumo/sodium.js"></script> <script> main() async function main() { await sodium.ready // NOTE: Whatever key you choose, result will be the same as using the zero key const key = sodium.crypto_stream_chacha20_keygen() // const key = new Uint8Array(32) // const key = Uint8Array.from('01234567890123456789012345678901', c => c.charCodeAt()) // const key = Uint8Array.from('yoloswagyoloswagyoloswagyoloswag', c => c.charCodeAt()) const result = sodium.crypto_stream_chacha20_ietf_xor_ic( new Uint8Array(64), Uint8Array.from('Hello,world!', c => c.charCodeAt()), 0, key) console.log(result) } </script> </body> </html> ```<issue_closed> <issue_comment>username_0: @username_1 This issue is still reproduced in version 0.7.7. Can you reopen this issue? ![image](https://user-images.githubusercontent.com/4435445/89322483-3ab10a00-d6bf-11ea-9d3f-bb32dfcc4123.png) <issue_comment>username_1: Sorry, I can't see what's on that picture. The fix is correct, but the packages published to npm may be identical to the previous version. New packages have been published. Creating these npm packages is currently very tedious, due to the multiple packages and their dependencies. You know JavaScript way better than I do, so your help at that purpose would be welcome! <issue_comment>username_0: I've just confirmed that this issue has been fixed in version 0.7.8! Thanks for your work. "Yarn Workspace" or "Lerna" seems to help in such situations. I'll try to contribute if I have time to spare.
{'fraction_non_alphanumeric': 0.10723431498079386, 'fraction_numerical': 0.04833546734955186, 'mean_word_length': 4.199667221297837, 'pattern_counts': {'":': 0, '<': 18, '<?xml version=': 0, '>': 24, 'https://': 3, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '2809476', 'n_tokens_mistral': 1170, 'n_tokens_neox': 1026, 'n_words': 303}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: deps: update nix to 0.20.2 username_0: Enforces use of a version of nix which contains a patch for RUSTSEC-2021-0119. Fixes #58 <issue_comment>username_1: @username_0 the ci failed caused by 41ed4a9224c2d8f390278bb2f1397c9bddf0b111 has no commit body <issue_comment>username_1: @username_0 I have fixed the missing of commit-body already.
{'fraction_non_alphanumeric': 0.0610079575596817, 'fraction_numerical': 0.11671087533156499, 'mean_word_length': 5.872727272727273, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '3310845', 'n_tokens_mistral': 156, 'n_tokens_neox': 135, 'n_words': 44}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Unclosed file object in setup.py username_0: The `read` function in `setup.py` is implemented as such: ``` def read(fname): try: return open(os.path.join(os.path.dirname(__file__), fname)).read() except IOError: return '' ``` This function creates a file object via an `open` call, but then does not close it. One should not depend on garbage collection to clean up resources. See the [Python docs](https://docs.python.org/3/reference/datamodel.html#object.__del__) for details. Changing the function like so fixes this issue: ``` def read(fname): try: with open(os.path.join(os.path.dirname(__file__), fname)) as f: return f.read() except IOError: return '' ``` Alternatively, you can switch over to using `setuptools`' [declarative config](https://setuptools.pypa.io/en/latest/userguide/declarative_config.html), which can handle this for you. <issue_comment>username_1: Thanks for the suggestions. I think I'll go with the simpler one.<issue_closed>
{'fraction_non_alphanumeric': 0.1105904404873477, 'fraction_numerical': 0.0028116213683223993, 'mean_word_length': 3.643478260869565, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '5173778', 'n_tokens_mistral': 328, 'n_tokens_neox': 318, 'n_words': 108}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: adding ignores username_0: for vscode config dir and binaries <issue_comment>username_0: @username_1 hrm, maybe it's coming from somewhere else? [this](https://stackoverflow.com/questions/31878901/should-i-add-the-visual-studio-2015-vs-folder-to-source-control) and [this](https://social.msdn.microsoft.com/Forums/en-US/1ea61876-d755-40e5-996f-0159fea46b10/vs-folder) indicate that it's a VS 2015 config dir. ![i have no idea](https://user-images.githubusercontent.com/70865/42958049-4d815c08-8b39-11e8-8710-987f93281515.jpeg) anyway, are you open to adding while I figure out wtf is going on with my vscode install? <issue_comment>username_1: Sure
{'fraction_non_alphanumeric': 0.11756168359941944, 'fraction_numerical': 0.1204644412191582, 'mean_word_length': 5.509433962264151, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 3, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '7823360', 'n_tokens_mistral': 298, 'n_tokens_neox': 244, 'n_words': 54}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: admin/update-czi-to-ome-xslt-submodule username_0: ## Description Simple submodule update ## Pull request recommendations: - [x] Name your pull request _your-development-type/short-description_. Ex: _feature/read-tiff-files_ - [x] Link to any relevant issue in the PR description. Ex: _Resolves [gh-<number>], adds tiff file format support_ See: https://github.com/AllenCellModeling/czi-to-ome-xslt/pull/20 - [ ] Provide relevant tests for your feature or bug fix. - [ ] Provide or update documentation for any feature added by your pull request. Thanks for contributing!
{'fraction_non_alphanumeric': 0.09775641025641026, 'fraction_numerical': 0.004807692307692308, 'mean_word_length': 4.122950819672131, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '28795691', 'n_tokens_mistral': 197, 'n_tokens_neox': 184, 'n_words': 62}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: RCON connection failed username_0: ``` G:\Steam\steamapps\common\GarrysMod\_TOOLS\Map Thumbnail Generator>Source-Map-Thumbnails.exe INFO[0000] PreProcessor not enabled Handler= INFO[0000] Starting game Game=EntropyZero INFO[0000] PostProcessor not enabled Handler= INFO[0000] Populated 17 maps DEBU[0042] RCON connection failed. Retrying in 10s DEBU[0054] RCON connection failed. Retrying in 10s DEBU[0066] RCON connection failed. Retrying in 10s DEBU[0078] RCON connection failed. Retrying in 10s DEBU[0090] RCON connection failed. Retrying in 10s DEBU[0102] RCON connection failed. Retrying in 10s DEBU[0114] RCON connection failed. Retrying in 10s DEBU[0126] RCON connection failed. Retrying in 10s DEBU[0138] RCON connection failed. Retrying in 10s DEBU[0150] RCON connection failed. Retrying in 10s DEBU[0162] RCON connection failed. Retrying in 10s DEBU[0174] RCON connection failed. Retrying in 10s DEBU[0187] RCON connection failed. Retrying in 10s DEBU[0199] RCON connection failed. Retrying in 10s ``` ![image](https://user-images.githubusercontent.com/3318223/80715500-b7e44600-8af6-11ea-9e3c-42c0f9663d75.png)
{'fraction_non_alphanumeric': 0.07587859424920128, 'fraction_numerical': 0.1110223642172524, 'mean_word_length': 3.8378378378378377, 'pattern_counts': {'":': 0, '<': 2, '<?xml version=': 0, '>': 3, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 1, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '5760846', 'n_tokens_mistral': 516, 'n_tokens_neox': 432, 'n_words': 125}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [Bug Report][2.5.0] V-DataTable: shift key logic for multiple selection - if last selected entry is no more selected, don't do multiple selection username_0: ### Environment **Vuetify Version:** 2.5.0 **Vue Version:** 2.6.11 **Browsers:** Firefox 88.0 **OS:** Ubuntu undefined ### Steps to reproduce 1. Click on first row (row is selected) 2. Click again on first row (row is not selected) 3. Press shift and click on third row ### Expected Behavior Only third row should be selected ### Actual Behavior First row is selected again, and second and third row also selected ### Reproduction Link <a href="https://codepen.io/username_0/pen/BaWQrRR" target="_blank">https://codepen.io/username_0/pen/BaWQrRR</a> ### Other comments I will send a PR to fix that <!-- generated by vuetify-issue-helper. DO NOT REMOVE --><issue_closed>
{'fraction_non_alphanumeric': 0.11758118701007839, 'fraction_numerical': 0.02127659574468085, 'mean_word_length': 3.966666666666667, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '6489560', 'n_tokens_mistral': 300, 'n_tokens_neox': 274, 'n_words': 109}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Don't package unnecessary files in npm pack username_0: ### SUMMARY I noticed that the bundle size for `bottleneck` is larger than I'd expect, since (by default) it is packing everything. I took a stab at limiting this only to files that are necessary. ### DETAILS - Pack `lib/*`, along with `*.(js|ejs|ts)`. You might be able to restrict this even further, but at least this keeps the `src` and `test` folders out of the distributed package, which is the main goal. <issue_comment>username_1: I tried your build in my recent CRA project but saw no difference in bundle size according to source-map-explorer, bottleneck is still 48k: <img width="921" alt="Screen Shot 2020-05-22 at 10 26 25 PM" src="https://user-images.githubusercontent.com/175864/82719812-f72c2f80-9c7b-11ea-8a8d-c40f1747caaa.png"> I don't understand why there appears to be 15k in redis support libraries when I am not using redis. Am I missing something? <issue_comment>username_0: Ah, thanks for testing it out! The change I'm suggesting will only lower the cost of the npm published package (for example, a server app that uses bottleneck as a dependency). It won't affect the size of the pre-bundled .js files that would be used in a browser app. (As far as the redis files go, there are several .js files generated - like light.js - one of those alternate bundles might be available that would not contain the redis utils.) <issue_comment>username_1: Ahh, I was wondering if I was seeing all that because I am using bottleneck in a client app. I just need something to prevent client from queuing more than 4 API calls per second to an API, maybe there is something else I should try? I will check out the light.js option, though. <issue_comment>username_2: Up
{'fraction_non_alphanumeric': 0.06417410714285714, 'fraction_numerical': 0.03236607142857143, 'mean_word_length': 4.320474777448071, 'pattern_counts': {'":': 0, '<': 7, '<?xml version=': 0, '>': 7, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '13542011', 'n_tokens_mistral': 548, 'n_tokens_neox': 494, 'n_words': 273}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Write ATS for TG requirement 52 username_0: The mandatory LAYERS parameter lists the map layer(s) to be returned by this GetMap request. The value of the LAYERS parameter shall be a comma-separated list of one or more valid INSPIRE harmonized layer names.<issue_closed>
{'fraction_non_alphanumeric': 0.04276315789473684, 'fraction_numerical': 0.009868421052631578, 'mean_word_length': 5.630434782608695, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '8925578', 'n_tokens_mistral': 83, 'n_tokens_neox': 77, 'n_words': 43}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Setup Chrome Extension Boilerplate username_0: - Find a boilerplate that is acceptable - Setup the React project that will build into the Chrome Extension - Typescript - Webpack - Build scripts (build Chrome extension zip for store)
{'fraction_non_alphanumeric': 0.045936395759717315, 'fraction_numerical': 0.0035335689045936395, 'mean_word_length': 3.8135593220338984, 'pattern_counts': {'":': 0, '<': 2, '<?xml version=': 0, '>': 2, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '20968810', 'n_tokens_mistral': 74, 'n_tokens_neox': 67, 'n_words': 33}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Add typescript declaration to DefinitelyTyped repo username_0: I've created a pull request to add typescript declarations to the [DefinitelyTyped repo](https://github.com/DefinitelyTyped/DefinitelyTyped/pull/54221/commits/75b464d453f06c08c13e04402b1e5372cbe25484). Let me know if you see anything wrong with the type declaration. Thanks!
{'fraction_non_alphanumeric': 0.06417112299465241, 'fraction_numerical': 0.09358288770053476, 'mean_word_length': 6.9787234042553195, 'pattern_counts': {'":': 0, '<': 2, '<?xml version=': 0, '>': 2, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '16456806', 'n_tokens_mistral': 129, 'n_tokens_neox': 111, 'n_words': 34}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Typings bug from rc20 to rc21 username_0: This is happening with a lot of components. <issue_comment>username_1: @username_0, when you say "This is happening with a lot of components", is it all components, or particular ones? <issue_comment>username_1: Since the core team doesn't have any great epereince with TypeScript, suggestions are welcomed. Maybe in `src/index.d.ts` / `es/index.d.ts` we need to alter this: ```ts // Component base definition export interface BvComponent extends Vue { // Simple catch-all to allow any prop/type [key: string]: any } ``` to this ```ts // Component base definition export class BvComponent extends Vue { // Simple catch-all to allow any prop/type [key: string]: any } ``` <issue_comment>username_1: or possibly: ```ts // Component base definition export class BvComponent implements Vue { // Simple catch-all to allow any prop/type [key: string]: any } ``` <issue_comment>username_0: Sorry for answering this late. I'll try whenever I can but can't promiss too much. <issue_comment>username_1: I looked at another project that is similar, and they did the above changing `interface` to `class` for their component base declaration. ```ts // Component base definition export class BvComponent extends Vue { // Simple catch-all to allow any prop/type [key: string]: any } ``` <issue_comment>username_2: I have the same problem, and it seems the change from `interface` to `class` does the trick. <issue_comment>username_1: @username_2 thanks for helping out! will adjust the PR accordingly. <issue_comment>username_3: I confirm both fixes, the change to `class BvComponent` and the added type argument for `BvPlugin`. <issue_comment>username_1: Other than those two issues, does all else appear to work OK re types? <issue_comment>username_2: i only tested with the modal component, but so far i have not encountered other issues 👍<issue_closed> <issue_comment>username_1: Fix will be available in v2.0.0-rc.22 when released. <issue_comment>username_4: Here are all the ones I've imported that were fixed by changing BvComponent to a class and adding `<BvConfigOptions>` to the end of `export interface BvPlugin extends PluginObject`: ```ts import Badge from 'bootstrap-vue/es/components/badge'; import Button from 'bootstrap-vue/es/components/button'; import ButtonGroup from 'bootstrap-vue/es/components/button-group'; import Carousel from 'bootstrap-vue/es/components/carousel'; import Collapse from 'bootstrap-vue/es/components/collapse'; import Dropdown from 'bootstrap-vue/es/components/dropdown'; import Form from 'bootstrap-vue/es/components/form'; import FormInput from 'bootstrap-vue/es/components/form-input'; import FormCheckbox from 'bootstrap-vue/es/components/form-checkbox'; import FormGroup from 'bootstrap-vue/es/components/form-group'; import FormRadio from 'bootstrap-vue/es/components/form-radio'; import FormTextarea from 'bootstrap-vue/es/components/form-textarea'; import Image from 'bootstrap-vue/es/components/image'; import InputGroup from 'bootstrap-vue/es/components/input-group'; import Link from 'bootstrap-vue/es/components/link'; import Modal from 'bootstrap-vue/es/components/modal'; import Nav from 'bootstrap-vue/es/components/nav'; import NavBar from 'bootstrap-vue/es/components/navbar'; Vue.use(Badge); Vue.use(Button); Vue.use(ButtonGroup); Vue.use(Carousel); Vue.use(Collapse); Vue.use(Dropdown); Vue.use(Form); Vue.use(FormCheckbox); Vue.use(FormInput); Vue.use(FormGroup); Vue.use(FormRadio); Vue.use(FormTextarea); Vue.use(Image); Vue.use(InputGroup); Vue.use(Link); Vue.use(Modal); Vue.use(Nav); Vue.use(NavBar); ``` <issue_comment>username_5: Those imports appear deprecated in the docs. Though I do not know what the tree-shaking equiv would be without them. https://bootstrap-vue.js.org/docs/components/table/#comp-ref-b-table-events <issue_comment>username_1: In release 2.0.0-rc.22 (coming out today hopefully), the above import methods will still work (for now, but have been deprecated in favour of a new simpler approach). The new method for importing will be just simply: ```js import { // Plugin imports ModalPlugin, LinkPlugin, NavbarPlugin, // Directive plugin imports VBTooltipPlugin, // Individual component imports BButton, BAlert, // Directive imports (if not using the directive's plugin VBScrollspy } from 'bootstrap-vue' Vue.use(ModalPlugin) Vue.use(LinkPlugin) Vue.use(NavbarPlugin) Vue.use(VBTooltipPlugin) Vue.component('b-button', BButton) Vue.directive('b-scrollspy', VBScrollspy) ``` Your bundler will either choose the ESM module entryoint (`"module": "esm/index.js"`) which is tree shakeable, or the commonjs entrypoint ("main": "dist/bootstrap-vue.common.js") which is not tree shakeable. The `es/` build (which is actually a bunch of smaller commonjs bundles) will still be around, but we plan on deprecating that build as it is a pain to keep typed) The nice thing about this is that the types will automatically be picked up as everything is now a top-level named export. <issue_comment>username_5: ok, yeah I just did a test and the Plugin version was coming in at 367KB but the default export version was 180KB on the parts I was using. I'll check my setup. Thanks for the tip. <issue_comment>username_1: The plugin will include a bit more than just the components. Making sure your imports are all in a single statement (with the new shorter format coming net release) will provide for better bundle sizes. <issue_comment>username_1: v2.0.0-rc.22 has been released.
{'fraction_non_alphanumeric': 0.09471830985915493, 'fraction_numerical': 0.007922535211267605, 'mean_word_length': 4.537037037037037, 'pattern_counts': {'":': 2, '<': 21, '<?xml version=': 0, '>': 21, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '14902278', 'n_tokens_mistral': 1723, 'n_tokens_neox': 1696, 'n_words': 636}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [HELP] Data restore if TB instace has internal problems username_0: Hi, I 've got a problem with the tb gateway in a sense that, if my TB instance is for example down or there is an internal problem with the database will the gateway send all of its data or just some snippet when it detects the TB instance is down? I 've had a situation where our TB instance was ok but its wasn't saving any data to Cassandra DB, and the gateway didn't send any data back to the instace after i restarted TB and Cassandra instace. - TB Instance OS: Ubuntu 18.04 LTS - TB Message Queue: Kafka - TB Instance DB: Hybrid Postgresql/Cassandra - Gateway OS: Ubuntu Server 20.04 - - Thingsboard IoT Gateway version: 2.5.5.2 - Python version: 3.8.5<issue_closed> <issue_comment>username_1: Hi @username_0 , The gateway checks response from ThingsBoard MQTT transport service after data sending. And if the gateway receives acknowledge message, we think that the data was transferred successfully. The gateway is not responsible for data saving in the ThingsBoard database. I can only suggest to try the newest version of ThingsBoard and if the issue appears again - please let us know by creating the issue on ThingsBoard repository or by email.
{'fraction_non_alphanumeric': 0.0397196261682243, 'fraction_numerical': 0.014018691588785047, 'mean_word_length': 4.0, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 1, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '13172737', 'n_tokens_mistral': 364, 'n_tokens_neox': 315, 'n_words': 201}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Failed: Error: Insufficient balance. You may need to wrap Ether. username_0: Hey, I'm trying to implement the SDK for a custom implementation but when I try to add a bid to an asset using `createBuyOrder` I get this message: Failed: Error: Insufficient balance. You may need to wrap Ether. I definitely have enough ETH and WETH in my wallet to make the transaction. Is there something i'm missing here? Just following the documentation. This is the sample of my call: ``` const buyOrder = await seaport.createBuyOrder({ asset: { tokenId: asset.tokenId, tokenAddress: asset.tokenAddress, schemaName: asset.schemaName }, startAmount: 0.51, accountAddress: accountAddress[0], }); <issue_comment>username_1: Hi @username_0, I fixed this error by giving the token contract address to the createBuyOrder method. ``` if (process.env.NODE_ENV === 'production') { const address = '0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2'; // WETH contract address on mainnet } else { const address = '0xc778417e063141139fce010982780140aa0cd5ab'; // WETH contract address on rinkeby } const buyOrder = await seaport.createBuyOrder({ asset: { tokenId: asset.tokenId, tokenAddress: asset.tokenAddress, schemaName: asset.schemaName }, startAmount: 0.51, accountAddress: accountAddress[0], paymentTokenAddress: address }); ``` You can also retrieve available paymentTokenAddress with `const tokens = (await seaport.api.getPaymentTokens()).tokens;` getPaymentTokens() allows you to filter the response with a query parameter `const tokens = (await seaport.api.getPaymentTokens({ symbol: 'WETH' })).tokens;` I hope this will help you ! <issue_comment>username_2: You need to wrap your ETH to wETH first. If you are using Rinkeby network, use uniswap or send your ETH directly to the wETH contract address. You can find out the wETH contract address by searching in the Rinkeby explorer. But here it is, for you :) https://rinkeby.etherscan.io/address/0xc778417E063141139Fce010982780140Aa0cD5Ab <issue_comment>username_3: Hello, are you still having issues with this?
{'fraction_non_alphanumeric': 0.0757847533632287, 'fraction_numerical': 0.04304932735426009, 'mean_word_length': 3.8185745140388767, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '26597769', 'n_tokens_mistral': 732, 'n_tokens_neox': 658, 'n_words': 243}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: yield in comprehension check should allow the outermost comprehension username_0: ```python def capybara(y): [x for x in (yield y)] # pyright: "yield" not allowed inside a list comprehension ``` As of https://bugs.python.org/issue10544, yielding inside a comprehension is deprecated, but the outermost iterable is evaluated in the enclosing scope, not in the comprehension's scope, and yielding there is fine. <issue_comment>username_1: Thanks for the bug report. This will be addressed in the next release. It occurs to me that we need more code samples in the world that use `capybara` as an identifier name. :) <issue_comment>username_0: I got into the habit of naming my test functions "capybara" for some reason :) I am finding these bugs by looking at the pyanalyze test suite in VSCode and it's full of capybaras, so you might see some more. <issue_comment>username_1: This is addressed in pyright 1.1.210, which I just published. It will also be included in the next release of pylance.<issue_closed>
{'fraction_non_alphanumeric': 0.061611374407582936, 'fraction_numerical': 0.013270142180094787, 'mean_word_length': 4.770491803278689, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '15541580', 'n_tokens_mistral': 301, 'n_tokens_neox': 277, 'n_words': 153}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Revert "Set lambda Access-Control-Origin to Environment Variables" username_0: Reverts clemsonMakerspace/unified-makerspace#77 This put the cloudfront domain as the lambda's API endpoint env var, not the API endpoint. Will need to revisit where we are pulling this value from <img width="866" alt="Screen Shot 2022-03-14 at 12 20 56 AM" src="https://user-images.githubusercontent.com/54962363/158105289-8d1b54df-477f-4184-b653-fb819159a7f1.png"> <issue_comment>username_0: Hey Kellen, I believe what we are looking to do here is have that value be the domain name that the browser is hitting e.g. `https://visit.cumaker.space`. CORS is our server's way of telling the client "this is the allowed domain that requests can come from." Our customers are hitting the dns alias `https://visit.cumaker.space` and `https://beta-visit.cumaker.space` to make requests to our server, and therefore we want our server to tell the client "only allow requests to come from this domain: <stage-specific-domain>" <issue_comment>username_1: I might be misunderstanding how this works, but isn't the domain "https://beta-visit.cumaker.space" an alternate domain that points to the primary domain "https://d3jh19seg4qmka.cloudfront.net"? So should either one work? I had it originally set to work with the domain and stage, so that it would use "https://beta-visit.cumaker.space" if in the beta stage, but Owen had pointed out this could be an issue for testing in development because every dev account would be testing on the same domain. I also don't think there is a "https://dev-visit.cumaker.space" for the dev stacks. <issue_comment>username_2: Oh I didn't think of this when I spoke to you earlier today @username_1. But I'm pretty sure the preflight domain has to be _exactly_ the same as the one that's being used to hit the backend. So we should probably use just the domain when with a officially deployed site (Beta and Prod) and then default to use the CloudFront one when there's no domain (ie. in Dev-*). Probably don't want both there (our dns domain and cf provided domain) just to be explicit with what should be hitting the api. I would have thought that the CloudFront Distribution domain_name token would have changed to the domain we provide, but I guess it doesn't. <issue_comment>username_2: Also just had a random thought: I think there's a way to setup the CORS header for the whole gateway instead of having to do it for every lambda. Not sure if we plan on using the gateway for anything else in the future though, where we wouldn't want that header. <issue_comment>username_1: Yeah that makes sense @username_2 with the using the cloudfront domain for the dev accounts and the specific ones for the deployed ones, but does the cloudfront domain used for the dev accounts ever hit the backend? Or does it use a similar domain right now like "Dev-visit.cumaker.space"?
{'fraction_non_alphanumeric': 0.059145299145299146, 'fraction_numerical': 0.023931623931623933, 'mean_word_length': 4.626923076923077, 'pattern_counts': {'":': 0, '<': 9, '<?xml version=': 0, '>': 9, 'https://': 8, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '20920741', 'n_tokens_mistral': 822, 'n_tokens_neox': 754, 'n_words': 435}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Remove tunnel when annotated not to manage username_0: close #16 <!-- All PRs raised must follow the contribution guide including --> <!--raising an issue to propose changes. --> - [x] I have raised an issue to propose this change. ## Description The operator will remove an existing tunnel if the load balancer is annotated with `dev.inlets.manage: false` ## How Has This Been Tested? <!--- Please describe in detail how you tested your changes. --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> 1. Create a new loadblancer service ``` kubectl run nginx-1 --image=nginx --port=80 --restart=Always kubectl expose deployment nginx-1 --port=80 --type=LoadBalancer ``` 2. Check that a new tunnels was created ``` kubectl get tunnels ``` 3. Annotate the loadbalancer with `dev.inlets.manage=false` 4. Check that the tunnel was deleted and the exit node deprovisioned ## How are existing users impacted? What migration steps/scripts do we need? ## Checklist: I have: - [ ] updated the documentation and/or roadmap (if required) - [x] read the [CONTRIBUTION](https://github.com/inlets/inlets/blob/master/CONTRIBUTING.md) guide - [x] signed-off my commits with `git commit -s` - [ ] added unit tests <issue_comment>username_1: Thank you @username_0 💪
{'fraction_non_alphanumeric': 0.10478199718706048, 'fraction_numerical': 0.010548523206751054, 'mean_word_length': 3.5608974358974357, 'pattern_counts': {'":': 0, '<': 8, '<?xml version=': 0, '>': 8, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '21591447', 'n_tokens_mistral': 435, 'n_tokens_neox': 407, 'n_words': 179}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Can't navigate to a CustomUserContol from the main XAML file in WPF username_0: _This issue has been moved from [a ticket on Developer Community](https://developercommunity.visualstudio.com/t/Cant-navigate-to-a-CustomUserContol-fro/1424271)._ --- [regression] If I rename my custom UserControl to a different one, in main XAML file, than F12 on the new user control will redirect me to the old one. ## Example: `<local: customUserControl /> rename to <local: otherUserControl />` **F12** on the __otherUserControl__ will open __customUserControl__ Also, reference counter, the one above the method or property, doesn't get updated until I recompile the project. --- ### Original Comments #### Feedback Bot on 5/16/2021, 06:33 PM: <p>We have directed your feedback to the appropriate engineering team for further evaluation. The team will review the feedback and notify you about the next steps.</p> --- ### Original Solutions (no solutions)<issue_closed>
{'fraction_non_alphanumeric': 0.08691308691308691, 'fraction_numerical': 0.022977022977022976, 'mean_word_length': 4.693181818181818, 'pattern_counts': {'":': 0, '<': 7, '<?xml version=': 0, '>': 7, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 1, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '29604930', 'n_tokens_mistral': 304, 'n_tokens_neox': 275, 'n_words': 124}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Update gen_smtp to 1.1.1 username_0: Using `gen_smtp` in release 1.1.0 raises errors when sending emails after a STARTTLS since the socket suddenly started to receive a list instead of binary data - see also [this commit](https://github.com/gen-smtp/gen_smtp/commit/f157a572d3ea11bc223c0e72c3e037532842c6c6), e.g. I have this problem when sending emails via AWS SES. Using `gen_smtp` in release 1.1.1 fixes this problem. Closes #187<issue_closed>
{'fraction_non_alphanumeric': 0.07835051546391752, 'fraction_numerical': 0.08247422680412371, 'mean_word_length': 5.0, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '14603278', 'n_tokens_mistral': 187, 'n_tokens_neox': 162, 'n_words': 57}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: refactor empty test on CredentialCollection username_0: Refactor the login scanner validation of CredentialCollection to be an empty? evaluation in the class. .empty? will now evaluate if the currently configured CredentialCollection would return any credentials when called for .each ## Verification List the steps needed to make sure this thing works - [x] Travis build passed - [x] Start `msfconsole` - [x] retest https://github.com/rapid7/metasploit-framework/pull/7876 - [x] validate execution of other various login scanners <issue_comment>username_1: I retested #7876 and #7680 and I found no issues. I will land this in a bit. <issue_comment>username_1: # Release Notes This refactors the credential validation of an empty CredentialCollection object.
{'fraction_non_alphanumeric': 0.059113300492610835, 'fraction_numerical': 0.019704433497536946, 'mean_word_length': 4.76595744680851, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '22035343', 'n_tokens_mistral': 237, 'n_tokens_neox': 213, 'n_words': 99}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: ng/typecheck: make sure fallthrough isn't allowed in type-switch username_0: `fallthrough` in type-switch isn't allowed as per the Go specs.<issue_closed> <issue_comment>username_1: I think you closed this one too early? <issue_comment>username_0: I wanted to create another issue with the more refined problem of 'fallthrough' position. But invisible forgot to do so. I'll do this when in front of a real keyboard (currently commuting to Marseille to give a 2 days tutorial about Go to CNRS engineers :)) <issue_comment>username_1: sgtm. have fun at CNRS!
{'fraction_non_alphanumeric': 0.06418918918918919, 'fraction_numerical': 0.008445945945945946, 'mean_word_length': 5.588888888888889, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '23403152', 'n_tokens_mistral': 171, 'n_tokens_neox': 161, 'n_words': 81}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Sergeyd/plugin system username_0: Historically android had two packages android and android native. This is the first step for depreciation of android-native. The plugin system allows abstract logic of work with SQLite out of the logic of work with database implementation. As an icing on the cake, it adds the implementation of SqliteCipher plugin. <issue_comment>username_1: Woah great thanks! you're awesome! I'll check this out someday! <issue_comment>username_0: @username_2 I rebased the PR to fix conflicts. <issue_comment>username_0: @username_2, is there something I could do to move it to master? <issue_comment>username_2: I just got back from being away for a while this summer. I will take a look at all outstanding stuff in this repo in the next few weeks. Apologies for delay... <issue_comment>username_2: apologies for not getting to this PR yet...too busy at work ...hopefully very soon... <issue_comment>username_0: Any news here? :) <issue_comment>username_3: Comments from owner of Cordova-sqlite-storage that this project was based on: +1 for additional abstraction to make it easier to change Android sqlite implementation -1 for the following items: - additional steps needed to add plugin to react-native application - bundling of sqlcipher Bundling of sqlcipher leads to important legal export requirements described at: https://discuss.zetetic.net/t/export-requirements-for-applications-using-sqlcipher/47 <issue_comment>username_0: @username_3, we are not bundling the sqlitecipher. In react-native you are bundling something only in case you are using it. So, as long as you don't perform that additional step - you are legally fine, as your release bundle doesn't have sqlitecipher. That was the point of the abstraction layer - if people don't need to have an encryption they don't need to do anything extra. If they want to - there is one extra step to take in order to make it work. <issue_comment>username_3: @username_0 I think I get it now. SQLCipher for Android is only included if the extra package is added. SQLCipher is already supported for iOS if SQLCIPHER is defined ref: <https://github.com/username_2/react-native-sqlite-storage/issues/40#issuecomment-319670177>. I am still wondering how the needed encryption provider (probably CommonCrypto in case of iOS) would be linked (dynamic), should not be linked unless explicitly required by the app developer. I am starting to warm to the idea of the separate sqlite provider for Android to improve the modularity and make it easier for the app developer to only add the parts actually needed. It would be ideal to have pluggable sqlite provider for both iOS and Android. Assuming we would only need the sqlite provider for Android, I would personally favor calling it something like "sqlite-provider-android" or "react-native-sqlite-provider-android". <issue_comment>username_0: So far, the best way I see is to have two different podfiles for different configurations. But I'm not an iOS developer and might miss some ways. <issue_comment>username_0: @username_2 any plans to release it? I could move all the plugins related stuff under my personal repositories with appropriative licensing to minimize structural changes to the project if you want. <issue_comment>username_0: Closed in favor of Plugin System V2.
{'fraction_non_alphanumeric': 0.0486646884272997, 'fraction_numerical': 0.010385756676557863, 'mean_word_length': 4.752559726962457, 'pattern_counts': {'":': 0, '<': 15, '<?xml version=': 0, '>': 15, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '18319772', 'n_tokens_mistral': 877, 'n_tokens_neox': 827, 'n_words': 474}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: style: Add row numbering for report view print format username_0: Add serial number to the print records of report view. **Before** ![Screenshot 2021-07-28 at 2 01 48 PM](https://user-images.githubusercontent.com/36557/127291520-127533b7-b9f6-455a-92af-c5ef245a5a69.png) **After** ![Screenshot 2021-07-28 at 2 06 24 PM](https://user-images.githubusercontent.com/36557/127291559-7b89fd86-e63b-4fe0-bcc8-8060afde3ab0.png) <issue_comment>username_0: @Mergifyio backport version-13-hotfix <issue_comment>username_1: @username_0 can we make this configurable? This might not be needed everywhere and by everyone. <issue_comment>username_0: Looks like this was the default behaviour and got removed sometime back. We do even support custom print formats, incase users need cusomization.
{'fraction_non_alphanumeric': 0.09245742092457421, 'fraction_numerical': 0.1192214111922141, 'mean_word_length': 5.637096774193548, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '22871062', 'n_tokens_mistral': 330, 'n_tokens_neox': 274, 'n_words': 81}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [BUG] Switching tasks doesn't update dependencies username_0: **Describe the bug** If two tasks are switched, their new numbers aren't updated in the dependencies of other tasks. **To Reproduce** Steps to reproduce the behavior: 1. Add two tasks by executing twice `pueue add -- sleep 60`, they have ids 1 and 2 2. Then create a third task that depends on these two, `pueue add -a 1 2 -- sleep 60`, with id 3 3. Then create a fourth task again, `pueue add -- sleep 60` 4. Switch the final task with one of the initial tasks `pueue switch 1 4` 5. Task 3 will depend on the newly added task rather than the initial task it depended on **Expected behavior** It depends on how you view the switch command, if it's supposed to help you correct mistakes in tasks then the current behaviour could be expected, but the way I see it (and it is described in documentation) is to reorder tasks. In that case, it would make more sense for it to switch dependencies as well. <issue_comment>username_1: Nice find :D This should actually be an easy fix, but it's probably good to write a proper test for this as well. We will have to iterate over all tasks and check if any of these tasks use the affected tasks as a dependency. The code for this is completely isolated in `daemon/network/message_handler/switch.rs`. Examples for tests can be found the `clean.rs` in the same directory. Feel free to go ahead and fix this yourself :) Just ping me, so I know what's going on. Otherwise, I'll do this as soon as I find some time to do so. <issue_comment>username_1: FYI I started working on this <issue_comment>username_1: Fixed in 8b50c55d916f7c5348d0dbcad243a7bea25c3122<issue_closed>
{'fraction_non_alphanumeric': 0.0530565167243368, 'fraction_numerical': 0.02710495963091119, 'mean_word_length': 4.028985507246377, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '5407000', 'n_tokens_mistral': 522, 'n_tokens_neox': 477, 'n_words': 285}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Add CI badge to README username_0: <issue_comment>username_0: @username_3 @username_1 @username_2 please review <issue_comment>username_1: @username_3 @username_2 is GitHub Actions the "official" CI now? <issue_comment>username_2: Not yet, I don't think. We don't have total feature parity (read: macOS build steps). We know it's at least feasible (see: https://github.com/target/lorri/pull/402), but once https://github.com/target/lorri/pull/411 is deemed satisfactory (and thus merged), it should be possible to come back and add macOS and get *that* merged -- unless anybody has any objections to the way that comes about. <issue_comment>username_3: I have never understood the idea behind these, but I won’t block merging the badge. <issue_comment>username_0: @username_3 I look at the build badge in particular and badges of other code quality tooling as indicators of project health <issue_comment>username_3: Let’s add a static image to a green badge then :)
{'fraction_non_alphanumeric': 0.07592407592407592, 'fraction_numerical': 0.01898101898101898, 'mean_word_length': 5.549019607843137, 'pattern_counts': {'":': 0, '<': 8, '<?xml version=': 0, '>': 8, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '10662279', 'n_tokens_mistral': 298, 'n_tokens_neox': 275, 'n_words': 130}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: when I visit a profile of someone in a room and return to the room again it be such as I have leave the room and and join it again username_0: Hi when I visit a profile of someone in a room and return to the room again it be such as I have leave the room and and join it again. And Sometimes I just can't raise my hand up And I suggest you add home page icon in the rooms too. Thx, and sorry cuz of my English 😅 <issue_comment>username_1: Hi Homepage icon isn't needed indeed because you have access to the rooms on the left side. Raisehand wouldn't work in rooms where it's disabled.<issue_closed>
{'fraction_non_alphanumeric': 0.032507739938080496, 'fraction_numerical': 0.0030959752321981426, 'mean_word_length': 3.7925925925925927, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '6511879', 'n_tokens_mistral': 180, 'n_tokens_neox': 172, 'n_words': 118}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Non-zero offset value causing wall issues username_0: Hey there! I'm the lead developer of Arkenforge. We've recently added in UVTT export into our software, but we've found that when importing into Foundry, the default offset value of 0.1 tends to sets a lot of our wall coordinates to either x = 0 or y = 0, or both. Setting the offset value to 0 solves this issue. It seems to only occur where wall sections are particularly dense, so I'm guessing it's some kind of calculation issue with distances being so small. A sample UVTT file that shows this issue can be found here: https://www.dropbox.com/s/gufucsmhtrab5wy/Into_the_Depths3.uvtt?dl=0<issue_closed>
{'fraction_non_alphanumeric': 0.05374823196605375, 'fraction_numerical': 0.01272984441301273, 'mean_word_length': 4.363636363636363, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 1, 'lorem ipsum': 0, 'www.': 1, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '15199733', 'n_tokens_mistral': 211, 'n_tokens_neox': 190, 'n_words': 104}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Issue with Goodreads provider username_0: I'm running into an `InvalidArgumentException` on the callback after authenticating with the Goodreads provider - `Invalid request. Missing OAuth verifier.`. Taking a look at the code that triggers this in `SocialiteProviders\Manager\OAuth1\AbstractProvider` it looks like `hasNecessaryVerifier()` is failing. ```php if (! $this->hasNecessaryVerifier()) { throw new \InvalidArgumentException('Invalid request. Missing OAuth verifier.'); } ``` The method it calls checks for the existence of two query string parameters in the request. ```php protected function hasNecessaryVerifier() { return $this->request->has('oauth_token') && $this->request->has('oauth_verifier'); } ``` Taking a look at [the Goodreads API documentation](https://www.goodreads.com/api/documentation) under "callbacks" it indicates that the request will be given two query string parameters - `oauth_token` and `authorize`. I'm wondering if this is a change in Goodread's API that has broken this, or does this library not work for their flow. Not sure if their implementation fully follows the OAuth spec or not. It looks as though the Goodreads provider was added to this repo in October 2016 and you'd assume it worked then. Is there something that I'm doing wrong? <issue_comment>username_0: No - I wasn't sure if I was alone in experiencing this issue or not, but ended up removing Goodreads from our feature list. <issue_comment>username_1: I just had this issue. I guess no solution? <issue_comment>username_0: Rather than close the issue I'd probably argue that the Goodreads provider be removed if it isn't working. <issue_comment>username_2: I think we should fix it, will look into this soon. PRs welcome :) <issue_comment>username_0: Granted I looked into this over two years ago - but I got absolutely nowhere. The Goodreads documentation was poor, and I found other people seemed to having the same issue with their API generally (not just with the Socialite provider) so I'm inclined to believe it's more of an issue on their end that they're not interested in resolving. <issue_comment>username_2: I'll see if we can hack around it, seems like a useful provider to have :) <issue_comment>username_2: Otherwise, I agree, we should deprecate the provider.<issue_closed> <issue_comment>username_0: Wow, good stuff! 🔥
{'fraction_non_alphanumeric': 0.0691225165562914, 'fraction_numerical': 0.005794701986754967, 'mean_word_length': 4.8951219512195125, 'pattern_counts': {'":': 0, '<': 11, '<?xml version=': 0, '>': 16, 'https://': 1, 'lorem ipsum': 0, 'www.': 1, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '313076', 'n_tokens_mistral': 660, 'n_tokens_neox': 613, 'n_words': 320}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Could not install the app on the device after Expo detach username_0: After Expo Detach, I cannot run a project in Android Studio 2.3 in Windows 10: If I try to run it in Android Studio, the app does not work, I am asked if I have an Expo app. If I try to run it from command line C:\Users\username_0\Desktop\demoapp>react-native run-android Scanning folders for symlinks in C:\Users\username_0\Desktop\demoapp\node _modules (47ms) Starting JS server... Building and installing the app on the device (cd android && gradlew.bat install Debug)... Could not install the app on the device, read the error above for details. Make sure you have an Android emulator running or a device connected and have set up your Android development environment: https://facebook.github.io/react-native/docs/android-setup.html After two hours of debugging, all the answers here are still confusing as an answer. Please explain clearly the steps, as in (although the order below does not work): 1) detach 2) open in Android Studio the detached project 3) open in Expo XDE on desktop the detached project 4) run react-native run-android in command line Thanks <issue_comment>username_1: Hi @username_0! Did you follow the instructions here? https://docs.expo.io/versions/latest/guusername_5s/expokit.html#setting-up-your-project <issue_comment>username_2: Hi @username_1 , Please correct me if i'm wrong. My understanding is - I have to publish my expo app (detached) before building an APK file. Once my client downloads and installs my app, the app has to load data (js, assets, etc.) from CDN (where given from published). If yes, is there a way to build app with bundled assets and js at the start? Thank you in advance and sorry for my bad english. Cheers! <issue_comment>username_3: @username_2 Your understanding is correct. There are two configurations you can do in your app.json to bundle assets in your binary (https://docs.expo.io/versions/latest/guusername_5s/configuration.html#assetbundlepatterns) and to load your JS quicker (on iOS) (https://docs.expo.io/versions/latest/guusername_5s/configuration.html#loadjsinbackgroundexperimental) <issue_comment>username_2: Hi @username_3 thanks so much for your information. I will try to build it again today. <issue_comment>username_4: I have detached the application code from Expo and then import the android folder in my android studio then in terminal I run command exp start after running command when I run the code from android studio my application works fine , but when I try to run the same code using react-native run-android it displays me error and did not run application, Anybody out there did this before, I am scratching my head on this from past 8 hours, Any suggestion will be Appreciated !!! <issue_comment>username_5: If you have a detached project, you should continue using `exp start` while building your project in Android Studio or a similar tool. If you want to use `react-native run-android` and other tools, that's a different path with bare React Native that doesn't currently support Expo APIs. <issue_comment>username_6: I'm facing issue setting up ExpoKit project on Windows 10 as well. Not sure whether if it's a SDK issue or not, I'm on SDK 29. On a susername_5 note, I think the setup guusername_5 [here](https://docs.expo.io/versions/latest/guusername_5s/expokit.html#setting-up-your-project) is more biased towards MacOS or Linux, there's no clear direction on how to setup on Windows 10. (especially on the adb part) <issue_comment>username_7: I've also problems installing my app on the simulator after `exp detach`. I'm using iOS and Xcode and can in fact build and install the app via Xcode. But then I get the following error: <img width="526" alt="bildschirmfoto 2018-11-07 um 16 02 00" src="https://user-images.githubusercontent.com/39464035/48147698-34a6b300-e2b8-11e8-9d67-2e8d3b8e825f.png"> I'm serving the JS server correctly via `expo start`, but get the error anyway. @username_1 @username_5 Do you've any username_5a, what's wrong here? <issue_comment>username_8: If you have a detached project you have to follow these steps: 1)open android folder in android studio, Sync gradle file and install all dependencies 2)go to the project directory run command ```expo start``` 3)start App via play button in android studio<issue_closed>
{'fraction_non_alphanumeric': 0.061932849364791286, 'fraction_numerical': 0.022459165154264972, 'mean_word_length': 4.602287166454892, 'pattern_counts': {'":': 0, '<': 13, '<?xml version=': 0, '>': 14, 'https://': 6, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 1, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '10000680', 'n_tokens_mistral': 1286, 'n_tokens_neox': 1201, 'n_words': 618}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: [Bug] Contract Trapped Issue due to Ordering of Struct username_0: Currently in https://gist.github.com/username_0/504745cc62539ae5f6388491448ae19b if you try to invoke get_entry two times you will get Contract Trapped. So if you follow println you will see following image giving some false indication like vector.len() cannot be called https://pasteboard.co/JyPBED9.png But the error was due to ordering of field which I thought wouldn't matter in Rust and its normal in Rust code. But if we use this struct it doesn't give Contract Trapped Error. ``` #[ink(storage)] pub struct Charity { // User can play only once and added to pool with one submission. HashMap is perfect fit here. // users_vec so that we can choose it easily when we draw it users: HashMap<User, Balance>, users_vec: Vec<User>, // The collected money is sent to predefined address. Which is the one who calls the contract first time collector: AccountId, // Total amount collected till now so we don't have to iterate over users to know it. // Just for optimization amount_collected: Balance, // Winners List winners: Vec<User>, countdown: Option<Timestamp>, } ``` I would like to thank Robin from Discord for figuring out ordering issue. I had already wasted like 24 hour and if he weren't there i bet I wouldn't have found for another 24 hour :) Thanks to him. <issue_comment>username_1: Thanks for the bug report! We are working on a fix. :) <issue_comment>username_2: Thanks for the report! This is the minimal contract to reproduce the bug: ```rust #![cfg_attr(not(feature = "std"), no_std)] use ink_lang as ink; #[ink::contract] mod bug { use ink_storage::collections::Vec; #[ink(storage)] pub struct Bug { countdown: Option<u32>, winners: Vec<u32>, } impl Bug { #[ink(constructor)] pub fn new() -> Self { Self { countdown: None, winners: Vec::new(), } } #[ink(message)] pub fn bug(&mut self) -> Result<(), ()> { ink_env::debug_println("get len"); // on the second call of `bug()` we panic here at the `len()` lookup. // the error is `ExtError::KeyNotFound`. if self.winners.len() == 2 { ink_env::debug_println("gotten len"); return Err(()); } ink_env::debug_println("is_none?"); if self.countdown.is_none() { ink_env::debug_println("setting countdown"); self.countdown = Some(13); } ink_env::debug_println("end"); Ok(()) } } } ```<issue_closed> <issue_comment>username_0: Thanks :) <issue_comment>username_1: Will be included in the next ink 3.0-rc3 release.
{'fraction_non_alphanumeric': 0.09354194407456724, 'fraction_numerical': 0.014980026631158456, 'mean_word_length': 2.2104700854700856, 'pattern_counts': {'":': 0, '<': 14, '<?xml version=': 0, '>': 16, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '22922677', 'n_tokens_mistral': 890, 'n_tokens_neox': 808, 'n_words': 318}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: IE minimizes when opening a modal username_0: #### Problem: It's a very specific bug that happens : * in IE (11) * only 1 tab open * app in an iframe (in my case) When clicking on a button that opens a modal, the browser minimizes. #### Example & screenshots: It's a bit hard to give a simple example but if really needed, I'll try to do it. Here is how I analyzed this bug: 1. The only [stackoverflow post ](https://stackoverflow.com/q/3586139) I've found mentions an issue when calling `activeElement.blur()` or `document.body.blur()`. 1. I looked in my code and I didn't find anything like that. 1. I looked in my dependencies code and I found [this line](https://github.com/username_1/vue-js-modal/blob/13499d37d2a8e528c7fbff3b9fa768a471550196/src/Modal.vue#L449). 1. I tried a quick fix adding the condition `document.activeElement.nodeName !== 'BODY'` and it worked. It seems there is no problem with the keypress events (as mention in the comment). I can make a PR, if you agree with this fix. I have checked stackoverflow for solutions and 100% sure that issue not in my code. <issue_comment>username_1: lol, IE does not stop surprising me. Sure, please feel free to create PR if it fixes this issue. <issue_comment>username_0: Thanks for your quick reply @username_1 ! Actually I noticed this bug doesn't happen the first time I open the page containing the modal. I think the problem is that a "toggle" event listener is added every time the component is mounted (in `beforeMount()`) but never removed (in `beforeDestroy()`). So`toggle()` is called many times with the same parameters. The first time the `activeElement` is the button to open the modal, but after `blur()` the `activeElement` becomes the body and the magic of IE happens 🌈 As you can see in https://github.com/username_1/vue-js-modal/pull/299, my solution to remove the event listener is to use named events. If you have a better idea, let me know and I'll update my PR. <issue_comment>username_1: Tbh I am quite happy with your approach 👍 , I will just need to check if it possibly could break other functionality.<issue_closed>
{'fraction_non_alphanumeric': 0.07575757575757576, 'fraction_numerical': 0.026170798898071626, 'mean_word_length': 4.139150943396227, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 3, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '13040720', 'n_tokens_mistral': 663, 'n_tokens_neox': 610, 'n_words': 325}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Custom code-splitting for page bundles? username_0: I noticed, [per issue #567](https://github.com/nuxt/nuxt.js/issues/567) that Nuxt.js currently does not provide customization of the code-splitting functionality. My situation is the opposite of @OlzhasAlexandrov: I have only 2 routes, but one of them is a dynamic nested route. The top level serves half a dozen pages, and the second level breaks out into a total of about 100 pages, and the bundle ends up being more than 1 MB. I would dearly love to find an elegant solution for splitting the bundles by actual page rendered. I'm a newbie to webpack, so although @rvanson's [gist](https://gist.github.com/rvanzon/6028e884f6735c41125fb2d140143102) sheds some light, I'm not sure where to look for a solution. <issue_comment>username_1: @username_0 so have you tried @rvanzon gist? <issue_comment>username_0: @username_1 That gist doesn't answer my need, because I'm not trying to limit the **number** of chunks, I'm trying to limit the **size** of the bundle (which would increase the number of chunks) produced by my dynamic nested route: ``` pages/texts/_book/_chapter.vue ``` The one other webpack variation I tried just now was [AggressiveSplittingPlugin](https://github.com/webpack/webpack/tree/master/examples/http2-aggressive-splitting), but Nuxt choked on it, and the documentation didn't give any hope of it being a real solution for my problem anyway. I tried loading each chapter's data asynchronously, which completely eliminated the bundle size problem, but then of course the SSR failed to generate the code necessary for static hosting. Although I haven't tried it yet, I'm guessing I could achieve my optimization goal by destructuring the route into the 100 or so individual pages, but that seems like an awful waste of duplicate code, violating DRY. Also, that option doesn't bode well for a much larger project in the works. Sure, I could use a preprocessor to build out my .vue route tree before running Nuxt, but it would seem so much simpler if I didn't have to.<issue_closed> <issue_comment>username_0: It turns out I was using an outdated method of [generating the dynamic routes](https://nuxtjs.org/api/configuration-generate#routes), so none of those routes were being rendered, causing the site to break when accessing those pages statically. Now bundles sizes are nice and small, and data quietly loads asynchronously as it should. :-) <issue_comment>username_1: @username_0 nice. What do you mean by 'outdated'? How did you end up? <issue_comment>username_0: @username_1 When I jumped on board Nuxt in February, the way to generate dynamic routes [was with the `routeParams` property](https://github.com/nuxt/docs/blob/cd80de09cf4dca51f8299341b8ffacfa2744134f/en/api/configuration-generate.md). Just recently I updated to 0.10.7, and was blissfully unaware of the change to the `routes` property. I'm glad the API is nearing stability. ;-)
{'fraction_non_alphanumeric': 0.06579389056730446, 'fraction_numerical': 0.025847599865726753, 'mean_word_length': 4.877712031558185, 'pattern_counts': {'":': 0, '<': 8, '<?xml version=': 0, '>': 8, 'https://': 5, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '2087260', 'n_tokens_mistral': 869, 'n_tokens_neox': 787, 'n_words': 410}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Frequency detection documentation is confusing. username_0: I just had a look at the frequency detection code to find out what its purpose is. Reading the documentation is not very enlightening: `Detects if a points occurs multiple times within a defined time range` Reading the code, doesn't really help either: - It takes multiple time series as arguments, but only looks at the first one. - It uses the `List<Long> currentWindow` as a counter (just the size, contents irrelevant). - It seems to subdivide a timeseries into chunks just smaller than `windowSize` minutes in duration and returns true if a chunk has at least `windowThreshold` more observations than its predecessor. <issue_comment>username_1: I agree - the documentation at this point is poor... The frequency detector splits a time series into windows, counts the data points, and checks if the delta between two consecutive windows is above a predefined threshold. <issue_comment>username_1: Also see #42 and #60<issue_closed>
{'fraction_non_alphanumeric': 0.04702495201535509, 'fraction_numerical': 0.0067178502879078695, 'mean_word_length': 4.826815642458101, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '3010478', 'n_tokens_mistral': 255, 'n_tokens_neox': 242, 'n_words': 150}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: 🛑 Ibertenis is down username_0: In [`cf2b405`](https://github.com/Webdeporte/statuspage/commit/cf2b40513aedfb2c978157546a2f696b604d6ea9 ), Ibertenis (http://ibertenis.com) was **down**: - HTTP code: 503 - Response time: 290 ms <issue_comment>username_0: **Resolved:** Ibertenis is back up in [`ff13afb`](https://github.com/Webdeporte/statuspage/commit/ff13afb7f614d38e1915f4a9a82447354cc730c6 ).<issue_closed>
{'fraction_non_alphanumeric': 0.13963963963963963, 'fraction_numerical': 0.1463963963963964, 'mean_word_length': 7.7254901960784315, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '1412608', 'n_tokens_mistral': 216, 'n_tokens_neox': 181, 'n_words': 28}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: forbidden user username_0: Running v1 branch on a new cluster. commit b0100844e143c57c1e4cf3bc458e144b573165ac Launch command ``` DEPLOY_IMAGE=quay.io/dgoodwin/hive:baremetal-demo make deploy ``` ``` time="2019-12-12T21:50:03Z" level=error msg="error deleting object" controller=hive error="customresourcedefinitions.apiextensions.k8s.io \"dnsendpoints.hive.openshift.io\" is forbidden: User \"system:serviceaccount:hive:hive-operator\" cannot delete resource \"customresourcedefinitions\" in API group \"apiextensions.k8s.io\" at the cluster scope" object=/dnsendpoints.hive.openshift.io time="2019-12-12T21:50:03Z" level=error msg="could not delete DNSEndpoint CRD" controller=hive error="error deleting object: customresourcedefinitions.apiextensions.k8s.io \"dnsendpoints.hive.openshift.io\" is forbidden: User \"system:serviceaccount:hive:hive-operator\" cannot delete resource \"customresourcedefinitions\" in API group \"apiextensions.k8s.io\" at the cluster scope" time="2019-12-12T21:50:03Z" level=error msg="error deploying Hive" controller=hive error="error deleting object: customresourcedefinitions.apiextensions.k8s.io \"dnsendpoints.hive.openshift.io\" is forbidden: User \"system:serviceaccount:hive:hive-operator\" cannot delete resource \"customresourcedefinitions\" in API group \"apiextensions.k8s.io\" at the cluster scope" ``` @dgoodwin<issue_closed> <issue_comment>username_0: Running v1 branch on a new cluster. commit b0100844e143c57c1e4cf3bc458e144b573165ac Launch command ``` DEPLOY_IMAGE=quay.io/dgoodwin/hive:baremetal-demo make deploy ``` ``` time="2019-12-12T21:50:03Z" level=error msg="error deleting object" controller=hive error="customresourcedefinitions.apiextensions.k8s.io \"dnsendpoints.hive.openshift.io\" is forbidden: User \"system:serviceaccount:hive:hive-operator\" cannot delete resource \"customresourcedefinitions\" in API group \"apiextensions.k8s.io\" at the cluster scope" object=/dnsendpoints.hive.openshift.io time="2019-12-12T21:50:03Z" level=error msg="could not delete DNSEndpoint CRD" controller=hive error="error deleting object: customresourcedefinitions.apiextensions.k8s.io \"dnsendpoints.hive.openshift.io\" is forbidden: User \"system:serviceaccount:hive:hive-operator\" cannot delete resource \"customresourcedefinitions\" in API group \"apiextensions.k8s.io\" at the cluster scope" time="2019-12-12T21:50:03Z" level=error msg="error deploying Hive" controller=hive error="error deleting object: customresourcedefinitions.apiextensions.k8s.io \"dnsendpoints.hive.openshift.io\" is forbidden: User \"system:serviceaccount:hive:hive-operator\" cannot delete resource \"customresourcedefinitions\" in API group \"apiextensions.k8s.io\" at the cluster scope" ``` @dgoodwin <issue_comment>username_1: Ah, [this](https://github.com/openshift/hive/commit/c708359354e65f9a228e6f571837355de587b9f7#diff-b49a37d93398f251fc1b8f0c45fd4005) commit to remove the DNSEndpoint CRD broke this. <issue_comment>username_1: The hive-operator role specifically does not have permission to delete CRDs.
{'fraction_non_alphanumeric': 0.11335902376364804, 'fraction_numerical': 0.06647398843930635, 'mean_word_length': 6.653562653562654, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '2589412', 'n_tokens_mistral': 1197, 'n_tokens_neox': 1031, 'n_words': 226}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Appimage is broken username_0: Downloading the targz and running it works perfectly, but the appimage crashes on running. Looks like its incorrectly packaged. ``` ➜ Downloads ./Wombat_v0.2.0_Linux_x86_64.AppImage (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.558: Theme parsing error: gtk.css:94:21: '-gtk-outline-radius' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.558: Theme parsing error: gtk.css:95:28: '-gtk-secondary-caret-color' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.558: Theme parsing error: gtk.css:112:20: '-gtk-icon-effect' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.558: Theme parsing error: gtk.css:148:20: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:156:2: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:168:21: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:214:13: 'caret-color' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:222:8: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:224:10: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:258:18: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.559: Theme parsing error: gtk.css:261:20: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:278:12: 'min-height' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:279:11: 'min-width' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:295:20: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:314:20: '-gtk-icon-effect' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:331:20: '-gtk-icon-effect' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:347:46: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:354:48: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:363:78: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:373:35: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:379:37: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:386:39: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:392:13: 'min-width' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:414:11: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:430:11: 'min-width' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:431:12: 'min-height' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:440:18: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.562: Theme parsing error: gtk.css:446:13: 'min-width' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:454:20: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:466:20: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:471:13: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:489:20: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:501:18: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:511:20: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:527:20: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:529:27: Missing name of pseudo-class (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:550:20: '-gtk-icon-shadow' is not a valid property name (Wombat_v0.2.0_Linux_x86_64.AppImage:9998): Gtk-WARNING **: 09:31:01.563: Theme parsing error: gtk.css:559:20: '-gtk-icon-shadow' is not a valid property name [Truncated] rsi 0x0 rbp 0x0 rsp 0x7fff56c6c720 r8 0x0 r9 0xfc r10 0x190a190 r11 0x0 r12 0x3 r13 0x7fff56c6c760 r14 0x7febe01d0670 r15 0x0 rip 0x7febe01ce937 rflags 0x202 cs 0x33 fs 0x0 gs 0x0 ``` BTW, Wombat is great, thanks for making it. <issue_comment>username_1: Thanks for reporting. I noticed this same error on my Manjaro distro; I thought it was just me. What distro are you using? Will dig into this; I have to admit that I'm not sure what is happening as the AppImage is built from the same linux binary. It also makes the download 50MB larger! 😱 The dynamic linking in the AppImages is a blackbox for me. <issue_comment>username_0: Fedora 32 I think this is happening because the appimage wants GtkWebkit2 bundled inside it. The regular binary uses the system's gtkwebkit so it works fine.<issue_closed> <issue_comment>username_1: After many attempts, I'm giving up on AppImage's for now. Seems Flatpak might be a better option for the future. Closing this issue, as the standalone linux build does work. If you really really want an AppImage please feel free to re-open.
{'fraction_non_alphanumeric': 0.1293327853130566, 'fraction_numerical': 0.14221126181668722, 'mean_word_length': 4.743509047993705, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 3, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '7448608', 'n_tokens_mistral': 3655, 'n_tokens_neox': 2921, 'n_words': 699}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Unable to remove product from non-Agricraft seed username_0: AgriCraft-1.7.10-1.4.0-alpha-8-1.7.10 MineTweaker3-1.7.10-3.0.9C My pack contains both Harvestcraft and Witchery. The garlic plant from harvestcraft has both kinds of garlic listed as products. I attempted to remove the witchery garlic from the harvestcraft plant and received an error stating that it was not a valid seed. This is the code line I used: CropProduct.remove(<harvestcraft:garlicseedItem>, <witchery:garlic>); The function is imported properly (I use it earlier in the script and it works). <issue_comment>username_1: Yes it only works for my crops.<issue_closed> <issue_comment>username_1: Oh okay I see what you mean now. This is because apparently garlic from witchery is also listed as "cropGarlic" in the ore dictionary. This is why my code is pickign it up as a valid fruit as well. <issue_comment>username_0: I wasn't aware that it used oredictionary. I thought it was just using individual items.
{'fraction_non_alphanumeric': 0.06025267249757046, 'fraction_numerical': 0.023323615160349854, 'mean_word_length': 4.537634408602151, 'pattern_counts': {'":': 0, '<': 8, '<?xml version=': 0, '>': 8, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '2857721', 'n_tokens_mistral': 311, 'n_tokens_neox': 301, 'n_words': 142}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Jetty SNI Integration / please provide better informations username_0: I'm using a JETTY-keystore with two self signed certificates: CN localhost and CN mac42 CERTs are added to the System-KeyStore (I'm on Mac) https://localhost:8443/ - works in Chrome https://mac42:8443/ - fails Now I delete the Cert for "localhost" from Jettys keystore, restart it and now https://mac42:8443/ - works I don't know if it's bug or if my config is wrong??? This instruction http://www.eclipse.org/jetty/documentation/current/configuring-ssl.html#_configuring_sni has only a few lines and it looks like if SNI should work out of the box - but it dosen't BTW: ExtendedSSlContextFactory - dosen't exist at all... On Jetty 9.3 thats how I configure SslContextFactory: ```java public SslContextFactory getContextFactory() throws FileNotFoundException { final SslContextFactory sslContextFactory = new SslContextFactory(); sslContextFactory.setKeyStorePath(getAbsolutePath()); // Wurde mit /Volumes/Daten/DevLocal/DevJava/WebApp.Core/EmbeddedServer/bin/genobf generiert sslContextFactory.setKeyStorePassword(getPassword()); sslContextFactory.setKeyManagerPassword(getPassword()); return sslContextFactory; } ``` <issue_comment>username_1: the hostname "localhost" has all sorts of special meaning to browsers/ssl/tls and https clients, don't do testing with that particular name. consider setting up more hostnames in your `/etc/hosts` for your own machine (eg: "myaltmac") to create/test SNI with. <issue_comment>username_1: Also consider setting up logging (of your choice), with the named logger `org.eclipse.jetty.util.ssl` set to DEBUG level. That should provide you more information on what jetty is doing. If you don't see mentions of `SniX509ExtendedKeyManager` then you haven't setup your keystore with an appropriate SNI capable certificate. You should see logging messages with the phrase `SNI matching for` indicating that SNI logic is being performed. <issue_comment>username_0: OK - Thanks, I'll try that <issue_comment>username_1: Closing due to lack of updates<issue_closed>
{'fraction_non_alphanumeric': 0.07266121707538602, 'fraction_numerical': 0.012715712988192553, 'mean_word_length': 4.321256038647343, 'pattern_counts': {'":': 0, '<': 7, '<?xml version=': 0, '>': 7, 'https://': 3, 'lorem ipsum': 0, 'www.': 1, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '8381771', 'n_tokens_mistral': 656, 'n_tokens_neox': 596, 'n_words': 242}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Content fragment does not use container helper username_0: **Is this a BUG REPORT or FEATURE REQUEST?**: Refactor request **What happened**: All fragments except content fragment make use of the container helper. **What you expected to happen**: All built-in fragments being based on the same structure.<issue_closed>
{'fraction_non_alphanumeric': 0.07479224376731301, 'fraction_numerical': 0.002770083102493075, 'mean_word_length': 5.241379310344827, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '17316402', 'n_tokens_mistral': 95, 'n_tokens_neox': 90, 'n_words': 46}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Gui Control shaking when linked to mesh username_0: - Bug repro on [playground](http://www.babylonjs-playground.com/#9WUJN#36): - Expected result: When using the mousewheel to zoom in or out, the gui control element that is linked to a mesh, should move smoothly with the linked mesh. - Current result: Zooming in or out makes the gui control element shake a little bit. This also seems to happen when the linked mesh is moving, although I couldn't reproduce this all the time, maybe it's related to the camera angle. <issue_comment>username_1: Will check it tomorrow<issue_closed>
{'fraction_non_alphanumeric': 0.06310679611650485, 'fraction_numerical': 0.008090614886731391, 'mean_word_length': 4.951923076923077, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 0, 'lorem ipsum': 0, 'www.': 1, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '25112199', 'n_tokens_mistral': 168, 'n_tokens_neox': 164, 'n_words': 87}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Job scratch (home) directories should be completely clean username_0: Currently there are some HTCondor files visible as well as a PROMINENCE log and json file. Checks: - [ ] Singularity jobs run successfully - [ ] udocker jobs run successfully - [ ] Input files work - [ ] Artifacts work - [ ] Output file uploads work - [ ] Output directory uploads work - [ ] Singularity multi-node MPI jobs work - [ ] udocker multi-node MPI jobs work
{'fraction_non_alphanumeric': 0.07453416149068323, 'fraction_numerical': 0.002070393374741201, 'mean_word_length': 3.6538461538461537, 'pattern_counts': {'":': 0, '<': 2, '<?xml version=': 0, '>': 2, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '30577418', 'n_tokens_mistral': 141, 'n_tokens_neox': 137, 'n_words': 58}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: "Where to be posted?" cannot load username_0: I couldn't get "Where to be posted?" to load. "Select an approver" loads just fine but "Where to be posted?" will get stuck at the loading state. I tried to add another "channels:read" scope but it still doesn't work. Any thoughts? <issue_comment>username_1: I have this issue as well. Can't seem to figure it out. <issue_comment>username_2: Any idea what part I would edit so that it doesn't pull all users for approval and instead just one person or all admins for approval? <issue_comment>username_3: 👋 Sorry for the late reply! If no channels are loaded, the bot may not have been added in any channels. Invite bots to the channels by `/invite @approval-bot` (or whatever the name of your bot) first. Then you should see all the channels the bot has the right to post. Now I realize this may not be the perfect scenario (and not so intuitive), but hopefully, you can improve your version for a better bot with better UX. <issue_comment>username_3: Also, make sure you have set the *Options load URL* under Interactive Components > Message Menus. This is where a custom dropdown list is loaded. <issue_comment>username_4: I have the same issue and i followed what @username_3 give us. When I click on the dropdown menu I have this error in my console: `(node:17476) UnhandledPromiseRejectionWarning: TypeError: Cannot read property 'next_cursor' of undefined at Object.findAuthedChannels (/root/template-announcement-approvals/src/channels.js:28:25) at processTicksAndRejections (internal/process/task_queues.js:85:5) at async /root/template-announcement-approvals/src/index.js:174:23 (node:17476) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 6)` <issue_comment>username_5: @username_0 I tried this repo today and it works fine. If you're not still experiencing the problem feel free to close this issue 😃
{'fraction_non_alphanumeric': 0.06187529747739172, 'fraction_numerical': 0.015230842455973346, 'mean_word_length': 4.855153203342619, 'pattern_counts': {'":': 0, '<': 8, '<?xml version=': 0, '>': 9, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '5471755', 'n_tokens_mistral': 594, 'n_tokens_neox': 558, 'n_words': 300}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: help center: Remove unnecessary lists of possible roles for permissions. username_0: Also adds some links to related articles. <!-- What's this PR for? (Just a link to an issue is fine.) --> **Testing plan:** <!-- How have you tested? --> manual **GIFs or screenshots:** <!-- If a UI change. See: https://zulip.readthedocs.io/en/latest/tutorials/screenshot-and-gif-software.html --> <!-- Also be sure to make clear, coherent commits: https://zulip.readthedocs.io/en/latest/contributing/version-control.html --> <issue_comment>username_0: Updated and ready for another round of review. I wasn't sure whether you wanted the fixes in a separate commit. <issue_comment>username_1: Rebased, squashed the middle commit, and merged, thanks @username_0!
{'fraction_non_alphanumeric': 0.11771995043370508, 'fraction_numerical': 0.004956629491945477, 'mean_word_length': 3.8674698795180724, 'pattern_counts': {'":': 0, '<': 8, '<?xml version=': 0, '>': 8, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '5740883', 'n_tokens_mistral': 255, 'n_tokens_neox': 234, 'n_words': 87}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Error(?) in RHCOS images cache section username_0: We're showing the commands to download the RHCOS images as: ``` curl -L ${RHCOS_PATH}${RHCOS_QEMU_URI} -o /home/kni/rhcos_image_cache curl -L ${RHCOS_PATH}${RHCOS_OPENSTACK_URI} -o /home/kni/rhcos_image_cache ``` But this gives an error: ``` Warning: Failed to create the file /home/kni/rhcos_image_cache: Is a directory ``` Using curl with `-o` in this way will require the complete output file name. <issue_comment>username_0: This could be it's own issue, but I'm going to be lazy. We're also missing `firewall-cmd --reload` in this section. <issue_comment>username_0: Changing issue title. We also have this in the `metal3-config.yaml.sample`: ``` rhcos_image_url: ${RHCOS_PATH}${RHCOS_URI} ``` But `RHCOS_URI` isn't set. I think it should be `RHCOS_OPENSTACK_URI`? <issue_comment>username_0: The `install-config.yaml` example seems to be missing `provisioningNetworkInterface`. ``` FATAL failed to fetch Master Machines: failed to load asset "Install Config": invalid "install-config.yaml" file: platform.baremetal.provisioningNetworkInterface: Invalid value: "": no provisioning network interface is configured, please set this value to be the interface on the provisioning network on your cluster's baremetal hosts ``` <issue_comment>username_1: This part should be taken care of by step 6 which does the exporting of those variables (regarding RHCOS_URI) Regarding the bootstrapOSImage and clusterOSImage, they are different values: bootstrapOSImage uses the RHCOS_QEMU_URI and clusterOSImage uses the RHCOS_OPENSTACK_URI <issue_comment>username_1: This is true if you are deploying OCP 4.4. The document references version 4.3 . Still trying to work in everything for the newer stuff. <issue_comment>username_1: @username_0 - if anything else let me know -- merged.
{'fraction_non_alphanumeric': 0.08275862068965517, 'fraction_numerical': 0.007427055702917772, 'mean_word_length': 5.26578073089701, 'pattern_counts': {'":': 2, '<': 8, '<?xml version=': 0, '>': 8, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 1, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '29436383', 'n_tokens_mistral': 616, 'n_tokens_neox': 574, 'n_words': 223}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: animation_editor: Currently crashes due to relying on camera username_0: **Why?** I added in some code that allows a user to not need to configure a camera. Both the animation editor and room editor currently rely on camera code and this causes problems. **The solution** I'm probably going to investigate Camera 0 being on by default and fitting to the screen rather than having special "no camera enabled" logic. <issue_comment>username_0: Fixed in #87<issue_closed>
{'fraction_non_alphanumeric': 0.05511811023622047, 'fraction_numerical': 0.00984251968503937, 'mean_word_length': 5.283950617283951, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '15339977', 'n_tokens_mistral': 130, 'n_tokens_neox': 121, 'n_words': 73}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Optional search for dropdown/select questions username_0: We have a select question with a fairly large number of options (>150), it would be nice to either optionally (in the question settings) or when the question has a certain number of options (maybe over 20 oder 30) be able to add a search option to the select question. <issue_comment>username_1: For single choice options (currently using <select>) we could in theory use select2.js like we already use in lots of places in the backend. @username_2 can you check if that would impact accessibility? <issue_comment>username_0: Select2 was what I was thinking about and looking into adding, yes. <issue_comment>username_0: (little anecdote: We use this for a list of Hochschulen our event's participants might come from, and I learnt since then that the BMBF thing for the emergency financial aid for students due to COVID and stuff has 400+ Hochschulen and they explored using a `<select>` for that 😂) <issue_comment>username_1: Yup, I think that would be the way to go. We can probably just do that for all dropdown questions, it's useful regardless of the number of options. If you want to prepare a patch, feel free to go ahead and do so! It's probably just a few lines of JavaScript as we don't need any fancy AJAX-fetching of options. As we're currently in the process of getting the checkout process certified screenreader-friendly, merging will be conditional on @username_2 checking if it doesn't break usability for screenreader users, but I don't think it will. <issue_comment>username_1: Seems like we might need to switch to a newer select2 version to make this accessible: https://github.com/select2/select2/issues/3744 <issue_comment>username_2: I have not tested select2 yet as we have not used it in pretix-presale. But according to the comments in the issue that @username_1 mentioned, we need to update to the latest version of select2 to improve accessibility. The latest release is a pre-release (4.1.0–rc.0) – I am not sure how we deal with that. I have not tested the latest release though, if there are still issues which might affect accessibility. But if there are (and I am afraid that there still are) we might consider using select2 only for selects with lots of options and note this accordingly in our statement regarding accessibility. Another option might be to use a `<datalist>`. This is probably the intended, standards-based way to do a filtered/searchable select. Problem is, that this does not have a mode to select multiple entries. Although technically possible, a select with multiple-attribute is IMHO strange UI/UX-wise and better replaced with way Django does it anyway: by having a list of checkboxes. If there are lots of options to select, then we might consider putting them in a smaller, scrollable container. <issue_comment>username_1: For multi-select, we already use checkboxes (I think the scrollable container is only in the backend right now).
{'fraction_non_alphanumeric': 0.04334778259419807, 'fraction_numerical': 0.012337445815271757, 'mean_word_length': 4.780346820809249, 'pattern_counts': {'":': 0, '<': 12, '<?xml version=': 0, '>': 13, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '17787077', 'n_tokens_mistral': 753, 'n_tokens_neox': 710, 'n_words': 470}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: CLear the Prerequisits username_0: In the troubleshooting section there is a sentence: "Make sure at least one forest has Windows Server 2012R2. The device object type must be present." which i guess referres to the Schema Extension for 2012 R2 being available. Or does it talk about the Domain Functional Level, i think it makes sense to clarify whats meant at this point. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: fec5173a-f516-7248-1b10-28808cf18287 * Version Independent ID: 5d3ea09b-fc4a-ac71-ff03-372fabfe08ee * Content: [Azure AD Connect: Enabling device writeback](https://docs.microsoft.com/en-us/azure/active-directory/hybrid/how-to-connect-device-writeback) * Content Source: [articles/active-directory/hybrid/how-to-connect-device-writeback.md](https://github.com/Microsoft/azure-docs/blob/master/articles/active-directory/hybrid/how-to-connect-device-writeback.md) * Service: **active-directory** * GitHub Login: @billmath * Microsoft Alias: **billmath** <issue_comment>username_1: @username_0 Thank you for the feedback . We will investigate and further update this thread soon. <issue_comment>username_1: @username_0 Thank you for pointing that out . You are correct . We have verified your recommendation and submitted a change request for review. Once the content owner has verified the same it will be updated. We thank you for your time.<issue_closed>
{'fraction_non_alphanumeric': 0.08774279973208306, 'fraction_numerical': 0.03549899531145345, 'mean_word_length': 5.0, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '7241792', 'n_tokens_mistral': 464, 'n_tokens_neox': 417, 'n_words': 162}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: beforeCommand() in GhostProxy should never throw exceptions username_0: The Proxy mechanism is built such that if `org.openqa.grid.internal.listeners.CommandListener#beforeCommand` implementations throw exceptions then that command would be retried again. This becomes a problem when the beforeCommand() implementation in `GhostProxy` throws exceptions for new sessions, causing un-necessary session creation attempt to continuously happen.<issue_closed>
{'fraction_non_alphanumeric': 0.053169734151329244, 'fraction_numerical': 0.002044989775051125, 'mean_word_length': 7.305084745762712, 'pattern_counts': {'":': 0, '<': 3, '<?xml version=': 0, '>': 3, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '27683760', 'n_tokens_mistral': 105, 'n_tokens_neox': 103, 'n_words': 51}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Chrome regression - ghosting since 0.6.11 username_0: <!-- If you are raising a bug playing a stream, you must fill out the following or your issue may not be responded to. For features or improvements, you may delete this. --> ##### Environment <!-- Replace [ ] with [x] to check off the list --> - [x ] The stream has correct Access-Control-Allow-Origin headers (CORS) - [x ] There are no network errors such as 404s in the browser console when trying to play the stream - [ x] The issue observed is not already reported by searching on Github under https://github.com/dailymotion/hls.js/issues - [x ] The issue occurs in the latest reference client on http://dailymotion.github.io/hls.js/demo and not just on my page * Link to playable M3U8 file: http://hls8.webcamera.pl/zlotygron_cam_05cebe/zlotygron_cam_05cebe.stream/playlist.m3u8 * Hls.js version: 0.6.15 * Browser name/version: Chrome v55 * OS name/version: Windows 10 ##### Expected behavior Shold work well - no ghosting ##### Actual behavior Ghosting artifacts on video since v 0.6.11 to 0.6.15, works well in 0.6.10. <issue_comment>username_1: Hi @username_0 thanks for bisecting, indeed this regression was introduced by https://github.com/dailymotion/hls.js/commit/c5863c7af77039f3ce843d96dba4033e0a6768b2 I checked your stream, on every fragment the first two video frames shares the same DTS, and the frame sorting function was not sorting by PTS if DTS were equal. this should now work fine. ``` PTS DTS -2092203664 -2092203664 AUD SPS PPS SPS PPS IDR -2092200064 -2092203664 AUD NDR ``` <issue_comment>username_1: should be fixed, plz recheck on demo page<issue_closed>
{'fraction_non_alphanumeric': 0.08410672853828306, 'fraction_numerical': 0.06148491879350348, 'mean_word_length': 3.778393351800554, 'pattern_counts': {'":': 0, '<': 7, '<?xml version=': 0, '>': 7, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '3207134', 'n_tokens_mistral': 626, 'n_tokens_neox': 554, 'n_words': 215}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: compiletest should be built with the stage2 compiler not the stage0 compiler username_0: See #57709. Unfortunately the "fix" to that bug breaks the build when building using 1.31.0 and you have to unapply the patch to make it work against 1.31.0. e.g. from https://buildd.debian.org/status/fetch.php?pkg=rustc&arch=amd64&ver=1.32.0%2Bdfsg1-1&stamp=1548672224&raw=0 : ~~~~ rustc command: "LD_LIBRARY_PATH"="/usr/lib:/<<BUILDDIR>>/rustc-1.32.0+dfsg1/build/x86_64-unknown-linux-gnu/stage0-bootstrap-tools/release/deps:/usr/lib" "/usr/bin/rustc" "--crate-name" "compiletest" " ~~~~ The problem here is that if stage0 is 1.31.0 then the patch MUST be unapplied, if stage0 is 1.32.0 then the patch MUST be applied. Obviously we can't do both at once. However in both Debian and Fedora we occasionally use either the current or the previous version of rustc to build a given version of rustc, and both of these versions should work. cc @username_2 <issue_comment>username_0: Doing things this way (using stage2) would also have ensured that #57709 was detected early, and never made it into a release. <issue_comment>username_1: We would prefer to build tools such as compiletest with the bootstrap compiler because stage1, stage2 compilers take a long time to build. I think largely we just can't at this point support building with multiple compilers -- i.e., the bootstrap compiler should be the same one we use in tree. We just don't have the CI budget and resources to test and support multiple versions of the compiler for crates using unstable features. As such, I think the only resolution here will be to close this... cc @rust-lang/infra and @username_3 though since this is somewhat of a policy type decision (and we don't have a firm policy AFAIK). <issue_comment>username_2: As a matter of policy, we do need such rebuild-bootstrapping to continue to be supported to some extent, even if it's only a "tier-2" use case. That is, fixing these sort of issues reactively is still better than nothing. <issue_comment>username_0: Is conditional compilation based on the compiler version possible in Rust today? That could be an alternative solution, instead of always using stage2. The language [here](https://doc.rust-lang.org/reference/attributes.html#conditional-compilation) is a bit technical and I couldn't figure it out. <issue_comment>username_0: I guess for now, I could hack that sort of logic into the Debian build script manually in an ad-hoc way - applying the patch vs not, based on the stage0 compiler version. <issue_comment>username_3: I think if we wanted to solve this issue the best way to do it would be to: * Require `compiletest` compiles on stable, except for the dependency on the `test` crate * Have `compiletest` depend on std/test in-tree binaries, so we always build them (with the stage0 compiler) That way `compiletest` works with rebuild-bootstraping and normal use cases because it's not using anything unstable except libtest, which is built from source to link against and already solves this problem otherwise. <issue_comment>username_1: I think in general a policy of unstable tools/dependencies having the requirement of being in-tree deps instead of beta is reasonable, yeah. I can try to make a patch that makes compiletest (and if there are any other such tools) do this sometime this week. <issue_comment>username_0: Same issue with 1.40.0 again, when using itself as stage0: ~~~~ Compiling compiletest v0.0.0 (/<<PKGBUILDDIR>>/src/tools/compiletest) Running `CARGO=/usr/bin/cargo CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/src/tools/compiletest CARGO_PKG_VERSION=0.0.0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_NAME=compiletest CARGO_PKG_DESCRIPTION= CARGO_PKG_REPOSITORY= CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_HOMEPAGE= CARGO_PKG_VERSION_PRE= LD_LIBRARY_PATH='/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/release/deps:/usr/lib' /<<PKGBUILDDIR>>/build/bootstrap/debug/rustc --edition=2018 --crate-name compiletest src/tools/compiletest/src/main.rs --error-format json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C opt-level=2 -C debuginfo=0 -C metadata=3bff92eb77ed034a -C extra-filename=-3bff92eb77ed034a --out-dir /<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps --target powerpc64le-unknown-linux-gnu -C linker=powerpc64le-linux-gnu-gcc -L dependency=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps -L dependency=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/release/deps --extern diff=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libdiff-f7c70ead82d3bb7b.rlib --extern env_logger=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libenv_logger-42bd3e818814c443.rlib --extern getopts=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libgetopts-9ad175f6b0afc4b5.rlib --extern lazy_static=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/liblazy_static-0d6c5f722411bcab.rlib --extern libc=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/liblibc-0f34c56984de760b.rlib --extern log=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/liblog-1d69c45aedc3973c.rlib --extern regex=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libregex-877563e5fb3e2b70.rlib --extern rustfix=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/librustfix-52c76b39e6b4bcbd.rlib --extern serde=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libserde-6b72e6c8366be6dd.rlib --extern serde_json=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libserde_json-0db31fa1a064a5dd.rlib --extern walkdir=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libwalkdir-243dfb4a0f7f76f8.rlib -C link-args=-Wl,-z,relro --cap-lints warn --remap-path-prefix=/<<PKGBUILDDIR>>=/usr/src/rustc-1.40.0 -Zexternal-macro-backtrace -Zbinary-dep-depinfo -L native=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/build/backtrace-sys-6a5e41a89dbb2581/out` rustc command: "LD_LIBRARY_PATH"="/usr/lib:/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/release/deps:/usr/lib" "/usr/bin/rustc" "--edition=2018" "--crate-name" "compiletest" "src/tools/compiletest/src/main.rs" "--error-format" "json" "--json=diagnostic-rendered-ansi" "--crate-type" "bin" "--emit=dep-info,link" "-C" "opt-level=2" "-C" "debuginfo=0" "-C" "metadata=3bff92eb77ed034a" "-C" "extra-filename=-3bff92eb77ed034a" "--out-dir" "/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps" "--target" "powerpc64le-unknown-linux-gnu" "-C" "linker=powerpc64le-linux-gnu-gcc" "-L" "dependency=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps" "-L" "dependency=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/release/deps" "--extern" "diff=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libdiff-f7c70ead82d3bb7b.rlib" "--extern" "env_logger=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libenv_logger-42bd3e818814c443.rlib" "--extern" "getopts=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libgetopts-9ad175f6b0afc4b5.rlib" "--extern" "lazy_static=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/liblazy_static-0d6c5f722411bcab.rlib" "--extern" "libc=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/liblibc-0f34c56984de760b.rlib" "--extern" "log=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/liblog-1d69c45aedc3973c.rlib" "--extern" "regex=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libregex-877563e5fb3e2b70.rlib" "--extern" "rustfix=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/librustfix-52c76b39e6b4bcbd.rlib" "--extern" "serde=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libserde-6b72e6c8366be6dd.rlib" "--extern" "serde_json=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libserde_json-0db31fa1a064a5dd.rlib" "--extern" "walkdir=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libwalkdir-243dfb4a0f7f76f8.rlib" "-C" "link-args=-Wl,-z,relro" "--cap-lints" "warn" "--remap-path-prefix=/<<PKGBUILDDIR>>=/usr/src/rustc-1.40.0" "-Zexternal-macro-backtrace" "-Zbinary-dep-depinfo" "-L" "native=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/build/backtrace-sys-6a5e41a89dbb2581/out" "--sysroot" "/usr" "-C" "debug-assertions=n" sysroot: "/usr" libdir: "/usr/lib" error[E0063]: missing field `time_options` in initializer of `test::TestOpts` --> src/tools/compiletest/src/main.rs:545:5 | 545 | test::TestOpts { | ^^^^^^^^^^^^^^ missing `time_options` error[E0063]: missing field `test_type` in initializer of `test::TestDesc` --> src/tools/compiletest/src/main.rs:701:23 | 701 | desc: test::TestDesc { | ^^^^^^^^^^^^^^ missing `test_type` error: aborting due to 2 previous errors For more information about this error, try `rustc --explain E0063`. Did not run successfully: Ok(ExitStatus(ExitStatus(256))) "/usr/bin/rustc" "--edition=2018" "--crate-name" "compiletest" "src/tools/compiletest/src/main.rs" "--error-format" "json" "--json=diagnostic-rendered-ansi" "--crate-type" "bin" "--emit=dep-info,link" "-C" "opt-level=2" "-C" "debuginfo=0" "-C" "metadata=3bff92eb77ed034a" "-C" "extra-filename=-3bff92eb77ed034a" "--out-dir" "/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps" "--target" "powerpc64le-unknown-linux-gnu" "-C" "linker=powerpc64le-linux-gnu-gcc" "-L" "dependency=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps" "-L" "dependency=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/release/deps" "--extern" "diff=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libdiff-f7c70ead82d3bb7b.rlib" "--extern" "env_logger=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libenv_logger-42bd3e818814c443.rlib" "--extern" "getopts=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libgetopts-9ad175f6b0afc4b5.rlib" "--extern" "lazy_static=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/liblazy_static-0d6c5f722411bcab.rlib" "--extern" "libc=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/liblibc-0f34c56984de760b.rlib" "--extern" "log=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/liblog-1d69c45aedc3973c.rlib" "--extern" "regex=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libregex-877563e5fb3e2b70.rlib" "--extern" "rustfix=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/librustfix-52c76b39e6b4bcbd.rlib" "--extern" "serde=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libserde-6b72e6c8366be6dd.rlib" "--extern" "serde_json=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libserde_json-0db31fa1a064a5dd.rlib" "--extern" "walkdir=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/deps/libwalkdir-243dfb4a0f7f76f8.rlib" "-C" "link-args=-Wl,-z,relro" "--cap-lints" "warn" "--remap-path-prefix=/<<PKGBUILDDIR>>=/usr/src/rustc-1.40.0" "-Zexternal-macro-backtrace" "-Zbinary-dep-depinfo" "-L" "native=/<<PKGBUILDDIR>>/build/powerpc64le-unknown-linux-gnu/stage0-bootstrap-tools/powerpc64le-unknown-linux-gnu/release/build/backtrace-sys-6a5e41a89dbb2581/out" "--sysroot" "/usr" "-C" "debug-assertions=n" ~~~~ CC @username_2 AFAICT you do not have a patch that fixes this on Fedora either. <issue_comment>username_0: For 1.40.0 the relevant commit to conditionally-apply or not is f6832adadb8. For the upcoming 1.41.0 (or is it 1.42.0) stable release it seems we will have to do the same thing for 241d2e765dc.<issue_closed>
{'fraction_non_alphanumeric': 0.1445188579485372, 'fraction_numerical': 0.05618611209023616, 'mean_word_length': 5.407407407407407, 'pattern_counts': {'":': 0, '<': 120, '<?xml version=': 0, '>': 122, 'https://': 2, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 1, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '18487641', 'n_tokens_mistral': 5558, 'n_tokens_neox': 5180, 'n_words': 810}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: OTA update username_0: Perfect job! Absolutely the best esp8266 WiFi NAT Router! Is it possible to update it by OTA update? It will be great if yes, because in my case for expamle, I will assembly my box with esp8266 to the wall in garage and standard way is very complicated. I can image for expamle this solution [HTTP Server](https://esp8266.github.io/Arduino/versions/2.0.0/doc/ota_updates/ota_updates.html#http-server). Thank you very much. <issue_comment>username_1: Guess, it is the only NAT router available ;-) Havn't looked into the OTA-features so far. The description referes to the Arduino environment. If anybody has experiences or even better code on how to do it with the NONOS SDK I will try to integrate it. <issue_comment>username_0: I am totally busy next 2 months, unfortunately, but if i will have some time, I will try it.<issue_closed> <issue_comment>username_1: OTA is supported now!
{'fraction_non_alphanumeric': 0.061780104712041886, 'fraction_numerical': 0.020942408376963352, 'mean_word_length': 4.558139534883721, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '5689539', 'n_tokens_mistral': 292, 'n_tokens_neox': 271, 'n_words': 136}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: openstack: open UDP ports required by NFS username_0: <issue_comment>username_0: Manually edited the OVH lab security group to reflect the change <code>teuthology-suite --suite-branch master -k testing --suite knfs --ceph jewel</code> * **running** http://pulpito.ovh.sepia.ceph.com:8081/loic-2016-03-31_14:10:18-knfs-jewel-testing-basic-openstack/
{'fraction_non_alphanumeric': 0.12564102564102564, 'fraction_numerical': 0.05128205128205128, 'mean_word_length': 4.924242424242424, 'pattern_counts': {'":': 0, '<': 5, '<?xml version=': 0, '>': 5, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '15716343', 'n_tokens_mistral': 150, 'n_tokens_neox': 134, 'n_words': 32}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Player screen says "Loading stream", when it is actually not username_0: Reproducible behavior. Start stream in player screen. Wait until playback starts. Tap home icon to get to the home screen. Tap on Transistor's app icon to bring it in the foreground: Player screen says "Loading stream", when it is actually still playing back the selected station. Probable cause: State of player is not correctly saved to shared preferences. <issue_comment>username_0: Seems to be fixed. I did not stumble upon this bug in the last couple of weeks.<issue_closed>
{'fraction_non_alphanumeric': 0.04745762711864407, 'fraction_numerical': 0.003389830508474576, 'mean_word_length': 4.96969696969697, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '9441021', 'n_tokens_mistral': 148, 'n_tokens_neox': 137, 'n_words': 88}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Combining $refs username_0: We need a way to compile the schemas to a single object by dereferencing the `$ref`'ed fields. Likely a good reference: https://www.npmjs.com/package/json-schema-ref-parser <issue_comment>username_0: This is done and README updated. Runs through `util.js`<issue_closed>
{'fraction_non_alphanumeric': 0.0955223880597015, 'fraction_numerical': 0.005970149253731343, 'mean_word_length': 5.588235294117647, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 1, 'lorem ipsum': 0, 'www.': 1, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '16249107', 'n_tokens_mistral': 108, 'n_tokens_neox': 101, 'n_words': 36}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: HLS Playlists and Video Fragments break if RTMP upload is interrupted temporarily. username_0: 1. `Use Open Broadcaster to livestream to SRS using the RTMP protocol.` 2. `Interrupt the stream somehow, for me it happens whenever I upload a large image somewhere else, like to Discord or to a website. Anything that makes OBS drop into the red zone for upload capacity.` 3. `When the stream is interrupted, SRS will stop creating HLS playlists and video fragments. Even if OBS recovers and continues to upload as normal SRS won't make new fragments.` 4. `SRS will continue to function as if everything is fine, but the HLS playlist wont come back until the stream is stopped and started again.` **期望行为(Expect)** 1. `Start streaming RTMP from Open Broadcaster to SRS.` 2. `Interrupt the stream somehow, for me it happens whenever I upload a large image somewhere else, like to Discord or to a website. Anything that makes OBS drop into the red zone for upload capacity.` 3. `SRS might stop creating HLS playlists and video fragments temporarily but will start again once the connection is restored.` I will make a demonstration video later. <issue_comment>username_0: Hi, please see the attached video: https://user-images.githubusercontent.com/9057997/112766185-8165c280-9008-11eb-8067-ecd40f8c77d9.mp4 At first the stream is running fine. When I upload an image to Discord, my upload bandwidth is consumed and OBS starts dropping frames. When this happens the HLS playlists being made by SRS stop, this is what the brown window at the top is showing. Even when the upload bandwidth is restored and OBS goes back to normal, HLS playlists do not resume. <issue_comment>username_1: Actual from v3.0-r3 <issue_comment>username_2: I have experienced this as well. Thanks @username_0 for opening this. Perhaps some digging and we can get past this. <issue_comment>username_0: @username_2 I think I've found two solutions please try them out: 1. Set `hls_dispose` to a high number, like 300. I misread the docs and though this was a binary option for whether or not video fragments are deleted when the stream stops, but it's a timeout in seconds for how long SRS waits for data before deleting the video files. By increasing it I think I've given OBS more time to transfer and it seems to be working as fine, from the user's perspective the video feed just halts for a few seconds until my upload speed catches up. 2. Use Hardware encoding in OBS. I have no idea why but using NVENC decoding in OBS made the issue go away, even without changing `hls_hispose`... <issue_comment>username_2: @username_0 I can confirm hls_dispose does work. Thanks<issue_closed>
{'fraction_non_alphanumeric': 0.04522058823529412, 'fraction_numerical': 0.023529411764705882, 'mean_word_length': 4.345776031434185, 'pattern_counts': {'":': 0, '<': 8, '<?xml version=': 0, '>': 8, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '7320289', 'n_tokens_mistral': 775, 'n_tokens_neox': 724, 'n_words': 424}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: FR: fix up "dangling else" username_0: `styler` doesn't fix up the following but I think it should: ``` foo <- function(x) { if (TRUE) { 1 } else { 2 } } ``` (specifically, remove the newline to make line 4 ` } else {`) It's not _strictly_ written in the section on conditionals but it seems implied to me: https://style.tidyverse.org/syntax.html#control-flow <issue_comment>username_1: I agree. <issue_comment>username_0: In case it's any help, here's an xpath for detecting the issue on the `xmlparsetree` version of the `getParseData` tree: ``` previous_curly_path <- "preceding-sibling::IF/following-sibling::expr[2]/OP-RIGHT-BRACE" # need to (?) repeat previous_curly_path since != will return true if there is # no such node. ditto for approach with not(@line1 = ...). bad_expr_xpath <- sprintf( "//ELSE[%1$s and @line1 != %1$s/@line2]", previous_curly_path ) ```<issue_closed>
{'fraction_non_alphanumeric': 0.12744090441932168, 'fraction_numerical': 0.012332990750256937, 'mean_word_length': 3.7281553398058254, 'pattern_counts': {'":': 0, '<': 8, '<?xml version=': 0, '>': 5, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 1}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '6163661', 'n_tokens_mistral': 359, 'n_tokens_neox': 336, 'n_words': 103}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Local scope css username_0: I recently discovered that webpack's css-loader allows you to write css in a local scope: [the end of global css](https://medium.com/seek-ui-engineering/the-end-of-global-css-90d2a4a06284) (repo here: https://github.com/webpack/css-loader#local-scope) Now I prefer using duo, and was wondering whether this kind of functionality would fit within duo, and if so, how? I think it would be a great thing for duo to support. <issue_comment>username_1: Haha, yah I was just reading about this. Definitely seems like a step forward. I doubt I'll have the time to implement this, but I'm accepting PRs! <issue_comment>username_2: Is there any reason this can't be a plugin? <issue_comment>username_1: Definitely could, and should. Here's the one I would use: https://github.com/css-modules/postcss-modules-local-by-default. The duo plugin would basically do what `css-loader` is doing in webpack. <issue_comment>username_0: So it would probably be necessary to create a plugin from scratch for local scope css (or use what can be used from css-loader). I completely agree that this should be a plugin btw. <issue_comment>username_2: I'm going to close this issues, as it's not a problem duo itself is going to solve. If you have any trouble creating a plugin, feel free to reach back out to us.<issue_closed> <issue_comment>username_0: I'm pretty busy right now, so I wont be having time to create the plugin anytime soon. But should there be any issues if and when I can find the time I'll let you know. Thanks!
{'fraction_non_alphanumeric': 0.06938255887969447, 'fraction_numerical': 0.010184595798854232, 'mean_word_length': 4.695652173913044, 'pattern_counts': {'":': 0, '<': 9, '<?xml version=': 0, '>': 9, 'https://': 3, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '7291863', 'n_tokens_mistral': 447, 'n_tokens_neox': 425, 'n_words': 229}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Does not animate in RN 0.46 username_0: The title sort of says it all. When using React Native 0.46.0, the card flip animation will start and then the card will disappear until the animation is completed and the card is flipped. If anyone has a work around or a fix, that would be much appreciated. <issue_comment>username_1: on android or iOS? <issue_comment>username_0: Android, sorry. <issue_comment>username_1: Awesome! Yes that would be great!<issue_closed>
{'fraction_non_alphanumeric': 0.06012024048096192, 'fraction_numerical': 0.022044088176352707, 'mean_word_length': 5.25, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '11400105', 'n_tokens_mistral': 144, 'n_tokens_neox': 135, 'n_words': 71}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Add more Lucky Cookies stats, garden harvest stats username_0: Feature Request It would be useful to be able to see in the Stats panel how many cookies would be needed to get the full value of a Lucky Cookie, not just based on Frenzy, but also based on building specials, Elder Frenzy, and building specials + Frenzy. Similarly, it'd be cool if we had similar stats for mature Bakeberry, Chocoroot, White Chocoroot, Queenbeet, and Duketater harvesting, and for Crumbspore and Doughshroom explosions. <issue_comment>username_1: Yea, this has been requested a few times. Problem is, it's a big revamp, which is why I've been putting it off ~_~. Sorry, might be a bit... <issue_comment>username_2: Just want it on the record to include the warnings for when buying a seed will drop you below the Lucky/Frenzy thresholds. I keep accidentally doing that. As you were :)<issue_closed> <issue_comment>username_3: Duplicate of #105
{'fraction_non_alphanumeric': 0.05257731958762887, 'fraction_numerical': 0.007216494845360825, 'mean_word_length': 4.711764705882353, 'pattern_counts': {'":': 0, '<': 6, '<?xml version=': 0, '>': 6, 'https://': 0, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '30614279', 'n_tokens_mistral': 287, 'n_tokens_neox': 263, 'n_words': 146}
starcoder-github-issues-filtered-structured
<issue_start><issue_comment>Title: Ability to configure Rancher via Fleet username_0: There should be a CRD and resource schema that can be realized in the Fleet cluster that describes a Rancher master. Not the Kubernetes cluster that Rancher runs on -- the Rancher instance itself. Basically any Rancher configuration setting that doesn't affect a managed cluster directly, should be configurable via Fleet. * Setup Ingress to allow both FQDN and short-name access to Rancher * AzureAD Authentication * Enabling/Disabling node drivers * Set the default user role * Add new custom global roles * Add local users (service accounts) and assign roles * Add new custom cluster and project role templates * Add custom pod security policy templates * Everything on the global "configuration" page This isn't a comprehensive list, and also isn't exclusive -- we would get value from having just some of this implemented, as long as there's a path forward for more to get implemented over time. <issue_comment>username_1: :+1: <issue_comment>username_2: Afaiu there is needed CRDs on cluster which run Rancher already (can be listed with `kubectl get crds | grep cattle` ). so only thing missing is examples to be shared on https://github.com/rancher/fleet-examples Example you can export users with `kubectl get users.management.cattle.io -o yaml` , node drivers with `kubectl get nodedrivers.management.cattle.io -o yaml` and AzureAD authentication settings with `kubectl get authconfigs.management.cattle.io azuread -o yaml` and use those as template on Fleet.
{'fraction_non_alphanumeric': 0.04933586337760911, 'fraction_numerical': 0.002530044275774826, 'mean_word_length': 4.512195121951219, 'pattern_counts': {'":': 0, '<': 4, '<?xml version=': 0, '>': 4, 'https://': 1, 'lorem ipsum': 0, 'www.': 0, 'xml': 0}, 'pii_count': 0, 'substrings_counts': 0, 'word_list_counts': {'cursed_substrings.json': 0, 'profanity_word_list.json': 0, 'sexual_word_list.json': 0, 'zh_pornsignals.json': 0}}
{'dir': 'github-issues-filtered-structured', 'id': '15592219', 'n_tokens_mistral': 423, 'n_tokens_neox': 403, 'n_words': 217}