{"query_id":"cross_issue_0001","query":"Investigate solr performance, diagnose bottlenecks and develop optimizations?","query_context":"This primarily concerns busy instances with large amounts of indexed metadata. Such as the IQSS prod. installation. There's some evidence of Solr becoming the performance bottleneck during high service load. Facet queries are especially suspect. But this has the potential to benefit any busy instance, hence the issue in the main repo. \n\n@kcondon got the ball rolling on this and has already found and applied some useful info. He has started a google doc documenting his work. We may link it here and we will try to document the most useful things we find here (and in the guides, eventually). Kevin's out today, but we had a conversation and decided I'll go ahead an open the issue to make sure this work is scheduled and tracked; striking it while it's hot, etc.","reference_answer":"@luddaniel first, I'd like to point you toward a SQL query that might help as a workaround. It's from the useful queries doc linked from URL \n\nList the titles of datasets without files (4.20):\nselect dvo.createdate as date_of_creation, dfv.value as title, dvo.publicationdate as publication_date\nfrom datasetfieldvalue dfv\njoin datasetfield df on dfv.datasetfield_id = df.id\njoin datasetversion dv on df.datasetversion_id = dv.id\njoin dvobject dvo on dv.dataset_id = dvo.id\nwhere datasetfield_id not in\n(select id\nfrom datasetfield\nwhere datasetversion_id in\n(select id\nfrom datasetversion\nwhere id in\n(select datasetversion_id\nfrom filemetadata)))\nand datasetfield_id in\n(select id\nfrom datasetfield\nwhere datasetfieldtype_id in\n(select id\nfrom datasetfieldtype\nwhere name = 'title'))\norder by dvo.createdate;\n\nI see what you mean about fileCount. If I search for my dataset at URL I see it like this:\n\n\"fileCount\": 111,\n\nHowever, this number isn't indexed into Solr. It gets pulled from the database like this:\n\nnullSafeJsonBuilder.add(\"fileCount\", dv.getFileMetadatas().size());\n\nIt looks like I added it in 055fa5f as part of this PR:\n\n- #6623\n\n@landreev even asked why we don't just index the number. I guess we should have. š","answer_document_id":"gh_comment_1309349204","silver_evidence_path":["gh_comment_1662821644","gh_issue_1352482931","gh_comment_1309349204"],"known_context_document_ids":["gh_issue_1753651505"],"evidence_issue_ids":[1753651505,1352482931],"source_repo_name":"IQSS/dataverse","source_issue_id":1753651505,"source_issue_url":"https://github.com/IQSS/dataverse/issues/9635","target_repo_name":"IQSS/dataverse","target_issue_id":1352482931,"target_issue_url":"https://github.com/IQSS/dataverse/issues/8941","split":"test","quality_score":90.22,"annotation_level":"silver"}
{"query_id":"cross_issue_0002","query":"APM data shows telemetry being called ~30 times a day?","query_context":"We recently enabled APM on the `overview-aws-eu-west-1` kibana (QA environment used to monitor all the other QA deployments).\nWhile analyzing the data, I noticed something interesting and after talking to @Bamieh I wanted to open an issue to track this.\n\nThis cluster is running 7.16.0 (meaning URL is already merged into it) and it seems like it's calling the telemetry API way more often than one would expect.\n\nThe latency of each call is `10-60s` and they happen once about every hour. \nSome contain failures. \n\nAPM data from past 7 days\nDiscover telemetry call transactions,refreshInterval:(pause:!t,value:0),time:(from:now-7d%2Fd,to:now))&_a=(columns:!(transaction.name,observer.hostname,client.ip,host.ip,client.geo.location,client.geo.country_name,labels.deploymentName),filters:!(('$state':(store:appState),meta:(alias:!n,disabled:!f,index:apm_static_index_pattern_id,key:processor.name,negate:!f,params:(query:transaction),type:phrase),query:(match_phrase:(processor.name:transaction))),('$state':(store:appState),meta:(alias:!n,disabled:!f,index:apm_static_index_pattern_id,key:service.name,negate:!f,params:(query:kibana),type:phrase),query:(match_phrase:(service.name:kibana))),('$state':(store:appState),meta:(alias:!n,disabled:!f,index:apm_static_index_pattern_id,key:transaction.name,negate:!f,params:!('POST%20%2Fapi%2Ftelemetry%2Fv2%2Fclusters%2F_stats'),type:phrases),query:(bool:(minimum_should_match:1,should:!((match_phrase:(transaction.name:'POST%20%2Fapi%2Ftelemetry%2Fv2%2Fclusters%2F_stats')))))),('$state':(store:appState),meta:(alias:!n,disabled:!f,index:apm_static_index_pattern_id,key:labels.deploymentName,negate:!f,params:(query:overview-aws-eu-west-1),type:phrase),query:(match_phrase:(labels.deploymentName:overview-aws-eu-west-1)))),grid:(),hideChart:!f,index:apm_static_index_pattern_id,interval:auto,query:(language:kuery,query:''),sort:!(!('@timestamp',desc))))\nOne of the errors found in the telemetry request","reference_answer":"Another idea that would improve our visibility of telemetry is URL What do you think?","answer_document_id":"gh_comment_1004798642","silver_evidence_path":["gh_comment_1014581993","gh_issue_1061276639","gh_comment_1004798642"],"known_context_document_ids":["gh_issue_1105780879"],"evidence_issue_ids":[1105780879,1061276639],"source_repo_name":"elastic/kibana","source_issue_id":1105780879,"source_issue_url":"https://github.com/elastic/kibana/issues/123144","target_repo_name":"elastic/kibana","target_issue_id":1061276639,"target_issue_url":"https://github.com/elastic/kibana/issues/119466","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0004","query":"Question for the target label?","query_context":"Thank you for your excellent work! \n\nI noticed that in the `taskvars_target_label_zrange.json` file, you provide the key actions and the corresponding object labels for each task. For example, \n\n\"close_grill+0\": [\n {\n \"action\": \"grasp\",\n \"object\": {\n \"name\": \"grill handle\",\n \"fine\": [87],\n \"coarse\": [87, 86]\n }\n },\n {\n \"action\": \"move grasped object up\"\n }\n ]. \n\nI am curious about the meaning of the numbers in `\"fine\": [87]` and `\"coarse\": [87, 86]`. What do these values represent, and where do they come from? \n\nLooking forward to your responseļ¼","reference_answer":"The issue was actually caused by a boundary being rendered. This is resolved in 1.0.9.\n\nFYI, you might find it more convenient to use the `task.get_demos()` functionality, rather than parsing the demo folders yourself (see here). If you pass in the live=False flag, then it gives you a list of demos loaded from file. You can also set `image_paths=True` if you want the paths rather than the images themselves.","answer_document_id":"gh_comment_720423891","silver_evidence_path":["gh_comment_2662874603","gh_issue_728638632","gh_comment_720423891"],"known_context_document_ids":["gh_issue_2855981342"],"evidence_issue_ids":[2855981342,728638632],"source_repo_name":"vlc-robot/robot-3dlotus","source_issue_id":2855981342,"source_issue_url":"https://github.com/vlc-robot/robot-3dlotus/issues/9","target_repo_name":"stepjam/RLBench","target_issue_id":728638632,"target_issue_url":"https://github.com/stepjam/RLBench/issues/96","split":"test","quality_score":92.47,"annotation_level":"silver"}
{"query_id":"cross_issue_0005","query":"multiprocessing: serialization must ensure that contexts are compatible (the same)?","query_context":"BPO | 33196\n--- | :---\nNosy | @pitrou, @vstinner, @taleinat, @applio, @arcivanov, @augustogoulart\nFiles | test_lock_sigsegv.py testing_on_fedora.png coredump: coredump (Fedora 29) \n\n *Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.* \n\n Show more details \n\nGitHub fields:\n\npython\nassignee = None\nclosed_at = None\ncreated_at = \nlabels = ['3.8', '3.7', 'library', 'type-crash']\ntitle = 'multiprocessing: serialization must ensure that contexts are compatible (the same)'\nupdated_at = \nuser = ' URL \n\nbugs.python.org fields:\n\npython\nactivity = \nactor = 'davin'\nassignee = 'none'\nclosed = False\nclosed_date = None\ncloser = None\ncomponents = ['Library (Lib)']\ncreation = \ncreator = 'arcivanov'\ndependencies = []\nfiles = ['47510', '47931', '47933']\nhgrepos = []\nissue_num = 33196\nkeywords = []\nmessage_count = 11.0\nmessages = ['314762', '314792', '329491', '329719', '329845', '329892', '329893', '329898', '329908', '329909', '329913']\nnosy_count = 6.0\nnosy_names = ['pitrou', 'vstinner', 'taleinat', 'davin', 'arcivanov', 'augustogoulart']\npr_nums = []\npriority = 'normal'\nresolution = None\nstage = 'needs patch'\nstatus = 'open'\nsuperseder = None\ntype = 'crash'\nurl = ' URL \nversions = ['Python 3.6', 'Python 3.7', 'Python 3.8']\n\n \n\n \n### Linked PRs\n* gh-107275\n* gh-108377\n* gh-108378","reference_answer":"Hmm, interesting. I thought that the auto-merge feature would also auto-close the issue, but it didn't.","answer_document_id":"gh_comment_1703941240","silver_evidence_path":["gh_comment_1694470703","gh_issue_1868196368","gh_comment_1703941240"],"known_context_document_ids":["gh_issue_1198989599"],"evidence_issue_ids":[1198989599,1868196368],"source_repo_name":"python/cpython","source_issue_id":1198989599,"source_issue_url":"https://github.com/python/cpython/issues/77377","target_repo_name":"python/cpython","target_issue_id":1868196368,"target_issue_url":"https://github.com/python/cpython/issues/108520","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0006","query":"--path is not working?","query_context":"Looks like add command is not working with -p and --path parameters. It's ignoring the given path.\n\nAlso it would be good to have a way to set in components.json the path of the generated components.","reference_answer":"This issue has been automatically closed because it received no activity for a while. If you think it was closed by accident, please leave a comment. Thank you.","answer_document_id":"gh_comment_2184252012","silver_evidence_path":["gh_comment_1622524000","gh_issue_1772209613","gh_comment_2184252012"],"known_context_document_ids":["gh_issue_1790326877"],"evidence_issue_ids":[1790326877,1772209613],"source_repo_name":"shadcn-ui/ui","source_issue_id":1790326877,"source_issue_url":"https://github.com/shadcn-ui/ui/issues/848","target_repo_name":"shadcn-ui/ui","target_issue_id":1772209613,"target_issue_url":"https://github.com/shadcn-ui/ui/issues/686","split":"test","quality_score":75.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0007","query":"[FEAT] Make the advanced options more accessible.","query_context":"I recently heard about the advanced features in passing, and when I went to go image an SD card, I decided that these advanced options would save a lot of time. I then downloaded the imager tool and spent a solid minute clicking the options to find this menu.\n\nAfter Googling I found this page which ten told me I had to press Ctrl+Shift+X, which isn't obvious.\n\nI feel that this is bad UX, as most people won't be aware of this keyboard shortcuts, even if it would be helpful to them!\n\nI ask for a button somewhere on the main UI (such as another button in the button row or somewhere else)","reference_answer":"Well, on Mac the application executable is not in the path.\nAnd yes, you do can actually `cd` into .app containers, but I doubt many Mac users know that.\nWould require entering something like: `/Applications/Raspberry\\ Pi\\ Imager.app/Contents/MacOS/rpi-imager --option`\n\nKeyboard combo was also changed \"shift\" + \"ctrl\" + \"X\", to be able to have the same combination on MacOS.\nEven though ctrl+alt+x may be easier to remember for some, MacOS lacked \"alt\".","answer_document_id":"gh_comment_811045949","silver_evidence_path":["gh_comment_1016814139","gh_issue_837890820","gh_comment_811045949"],"known_context_document_ids":["gh_issue_1099471426"],"evidence_issue_ids":[1099471426,837890820],"source_repo_name":"raspberrypi/rpi-imager","source_issue_id":1099471426,"source_issue_url":"https://github.com/raspberrypi/rpi-imager/issues/334","target_repo_name":"raspberrypi/rpi-imager","target_issue_id":837890820,"target_issue_url":"https://github.com/raspberrypi/rpi-imager/issues/180","split":"test","quality_score":87.55,"annotation_level":"silver"}
{"query_id":"cross_issue_0008","query":"Typography: Theme defined font sizes are no longer working?","query_context":"### Description\n\nIt looks like the font sizes a theme defines in its theme.json are no longer working.\n\n| without plugin | with plugin |\n| ----------- | ----------- |\n| localhost local_ (12) | localhost local_ (13) |\n\nFor example, in the theme, `--wp--preset--font-size--medium` should be `1.05rem` but with Gutenberg plugin, the size is `clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.625), 20px)`\n\nI can see this issue with other themes too.\n\n### Step-by-step reproduction instructions\n\n1. Open a homepage in the browser.\n2. Deactivate Gutenberg trunk\n3. Open the homepage in a new tab\n4. Notice the difeerence\n\n### Screenshots, screen recording, code snippet\n\n_No response_\n\n### Environment info\n\n- WP 6.4.2\n- Gutenberg Trunk\n\n### Please confirm that you have searched existing issues in the repo.\n\nYes\n\n### Please confirm that you have tested with all plugins deactivated except Gutenberg.\n\nYes","reference_answer":"It seems we're keeping this on the WordPress 6.5 Editor Task board intentionally in the No Status column in hopes that it'll be addressed for 6.5. It does seem like a critical issue for many builders. I see it as In Progress on the Automattic team Ignite's project board. @ajlende do you have any updates on this, please?","answer_document_id":"gh_comment_1939366828","silver_evidence_path":["gh_comment_1903911842","gh_issue_1783868460","gh_comment_1939366828"],"known_context_document_ids":["gh_issue_2084324813"],"evidence_issue_ids":[2084324813,1783868460],"source_repo_name":"WordPress/gutenberg","source_issue_id":2084324813,"source_issue_url":"https://github.com/WordPress/gutenberg/issues/57889","target_repo_name":"WordPress/gutenberg","target_issue_id":1783868460,"target_issue_url":"https://github.com/WordPress/gutenberg/issues/52200","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0009","query":"profile param does not working with AWS SSO config?","query_context":"I am able to use `load_aws_credentials()` with my default profile but it does not work when I specify a different profile, e.g. `load_aws_credentials('prod')`","reference_answer":"lets move any discussion here to the aws repo and close this one. Check out the reply here: URL for a working workflow with secrets","answer_document_id":"gh_comment_2037509893","silver_evidence_path":["gh_comment_2006775038","gh_issue_1877574388","gh_comment_2037509893"],"known_context_document_ids":["gh_issue_1922544723"],"evidence_issue_ids":[1922544723,1877574388],"source_repo_name":"duckdb/duckdb_aws","source_issue_id":1922544723,"source_issue_url":"https://github.com/duckdb/duckdb_aws/issues/14","target_repo_name":"duckdb/duckdb_aws","target_issue_id":1877574388,"target_issue_url":"https://github.com/duckdb/duckdb_aws/issues/10","split":"test","quality_score":86.57,"annotation_level":"silver"}
{"query_id":"cross_issue_0010","query":"Introduce common undo functionality and prevent accidental cell deletion?","query_context":"My request concerns the same as this one (closed issue from 2+ years ago): URL \n\nIt seems to be a frequently occurring problem until today, and a reason for people not to use VSCode for Jupyter notebooks. See for example: URL \n\nIt happens all too often: once a cell is not in focus, and one hits the common key combination to undo the last change (on Mac: Cmd + z), a cell gets deleted. Despite the suggested \"solution\" in issue 1998 (just hitting the key \"z\" when not focused on a cell), this does more of the same: it deletes cells!\nOnce a cell is deleted, undoing via menu or via Cmd + Shift + P (command palette), deletes just more cells. \n\nSo basically, with this extension, undoing in any way means deleting. And deleting can't be undone. \n\nI use VSCode for programming a lot. Just removing the common undo key combination is not an option for me. \n\nAlso, I think there really ought to be a working solution to undo an accidental deletion, because it seems to be the norm in any application these days to have the ability to undo the last change (deleting a cell is a change as well).\n\nBesides the obvious: it would be nice to undo the last edit, whether a cell is active or not!\n\nHas there been any developments in this regard?","reference_answer":"This is fixed in main and will be available in next Insiders (tomorrow) and the next Stable.","answer_document_id":"gh_comment_2302987942","silver_evidence_path":["gh_comment_1358143262","gh_issue_1413465106","gh_comment_2302987942"],"known_context_document_ids":["gh_issue_1431563855"],"evidence_issue_ids":[1431563855,1413465106],"source_repo_name":"microsoft/vscode","source_issue_id":1431563855,"source_issue_url":"https://github.com/microsoft/vscode/issues/165159","target_repo_name":"microsoft/vscode","target_issue_id":1413465106,"target_issue_url":"https://github.com/microsoft/vscode/issues/163943","split":"test","quality_score":89.38,"annotation_level":"silver"}
{"query_id":"cross_issue_0011","query":"Tests / Docs / Docs fails on old PRs with blurb?","query_context":"The tests for PR #8150 were all green. When I added a blurb for #8150, Tests / Docs / Docs failed because of the 4-digit number.\n URL \n \n\nThe error occurred during the sphinx html build, but I have no idea where the misinformation is stored or what tracker this properly belongs on.","reference_answer":"It is not clear to me whether to backport, so I did not, but this could still be done. Closing now.","answer_document_id":"gh_comment_1634487008","silver_evidence_path":["gh_comment_1633114020","gh_issue_1801646524","gh_comment_1634487008"],"known_context_document_ids":["gh_issue_1801613083"],"evidence_issue_ids":[1801613083,1801646524],"source_repo_name":"python/cpython","source_issue_id":1801613083,"source_issue_url":"https://github.com/python/cpython/issues/106689","target_repo_name":"python/cpython","target_issue_id":1801646524,"target_issue_url":"https://github.com/python/cpython/issues/106690","split":"test","quality_score":74.82,"annotation_level":"silver"}
{"query_id":"cross_issue_0012","query":"vcpkg provided FluidSynth sounds incorrect compared to Meson wrap?","query_context":"### Are you using the latest DOSBox Staging version?\n\n- [x] I have checked and I'm using the latest release.\n\n### Different version than latest?\n\n_No response_\n\n### What operating system are you using?\n\nLinux x86_64\n\n### If other OS or Linux, please describe\n\nDebian 12\n\n### Are you running DOSBox Staging on a native OS?\n\n- [x] I am running Staging on a native OS\n\n### Relevant hardware info\n\n_No response_\n\n### Have you checked that no other similar issue already exists?\n\n- [x] I have searched and have not found similar issues.\n\n### A clear and concise description of what the bug is\n\nIt sounds like it's underwater or something. I also get the bad sound with my system (Debian provided) FluidSynth. Only the Meson wrap sounds correct.\n\nBad - System 2.3.1\nGood - Meson wrap 2.3.3\nBad - vcpkg 2.4.2\n\nfluidsynth-recordings.zip\n\nSoundfont I'm using:\n\nSC-55.SoundFont.v1.2b.sf2.zip\n\n### Steps to reproduce the behaviour\n\nExplain in detail how to reproduce the bug. Assume no familiarity with the software.\n1. Use Sound font linked above with FluidSynth\n2. Play first level of Doom using General MIDI\n3. Test with meson using `meson setup --force-fallback-for=fluidsynth` - Sound correct\n4. Test with CMake using vcpkg - Unlock hidden Doom underwater level\n\n### Download URL of affected game or software\n\n_No response_\n\n### Your configuration\n\nini\n\n### Provide a log\n\ntext\n\n### Code of conduct and contributing guidelines\n\n- [x] Yes, I agree.","reference_answer":"This is not a bug. What you hear in `vcpkg.ogg` is called chrous - ever heard of?\n\nThe soundfont you use enables chorus for almost every instrument. So, even if the MIDI doesn't use chorus, the soundfont will!\n\nIf you don't like it, either use a different soundfont or disable chorus completely in fluidsynth.\n\nThe fix implemented by #1339 does ensure that chrous will now be heard in both, single and double precision builds.\n \n\nThere is no \"gold standard\". IIRC, CMake had double precision mode enabled by default. The old and long gone autotools buildsystem had single precision as default. My advice: Use single precision. It's less CPU expensive, better auto-vectorizable and sounds exactly the same. (Well, unless one encounters fancy numeric bugs like #1331.)\nPerhaps I'll change the default to single precision in the future.","answer_document_id":"gh_comment_2773293865","silver_evidence_path":["gh_comment_2777611858","gh_issue_2959151454","gh_comment_2773293865"],"known_context_document_ids":["gh_issue_2958983307"],"evidence_issue_ids":[2958983307,2959151454],"source_repo_name":"dosbox-staging/dosbox-staging","source_issue_id":2958983307,"source_issue_url":"https://github.com/dosbox-staging/dosbox-staging/issues/4264","target_repo_name":"FluidSynth/fluidsynth","target_issue_id":2959151454,"target_issue_url":"https://github.com/FluidSynth/fluidsynth/issues/1523","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0013","query":"systray as a module?","query_context":"Systray is placed by var ``tray = right|left``\n\nI think that it could be a nice thing to make it as a module. To be able to place it where we want, and to duplicate it (don't think it is possible, just wondering).","reference_answer":"There is no fixed timeline. It is mainly tied to which features I want in it. In the 3.6 blog post I said that I wanted to have a fixed tray, new font renderer, and some config syntax improvements in 3.7. But it is starting to look like that will be take too much time for a single release (I really want to release more often than every 12 months).\n\nSo I think we should release 3.7 once the tray module is stable and I am finished with #2609. I do want to finish #2609 before 3.7 because it will result in some breaking tray changes (basically if you had the tray anywhere outside of the bar window, this will no longer work) and if people should migrate to the module anyway that won't be a big problem.","answer_document_id":"gh_comment_1153250005","silver_evidence_path":["gh_comment_1803112121","gh_issue_1205909413","gh_comment_1153250005"],"known_context_document_ids":["gh_issue_199763778"],"evidence_issue_ids":[199763778,1205909413],"source_repo_name":"polybar/polybar","source_issue_id":199763778,"source_issue_url":"https://github.com/polybar/polybar/issues/314","target_repo_name":"polybar/polybar","target_issue_id":1205909413,"target_issue_url":"https://github.com/polybar/polybar/issues/2689","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0014","query":"Add an installer option to not install the service?","query_context":"Hello,\n\nbecause of the issue with windows_exporter not starting on boot, discussed here:\n\n URL \n URL \n URL \n\nthe **only** reliable way to use this software is to wrap the service in a tool such as WinSW or the classic nssm.\n\nThat isn't ideal, but at least it works - however it poses a new problem: Because the windows_exporter MSI always forecfully installs the windows_exporter service my ansible role to deploy the windows_exporter now always has to do two consecutive changes and is not properly idempotent anymore:\n\nAfter installing or updating windows_exporter (change 1), it has to replace the auto-created, non-functioning service from the installer with the winsw-wrapped version of the service again (change 2 - even though the winsw service and its configuration haven't changed, this task will now result in a change)\n\nThis service flip-flopping during a rollout could be avoided if the MSI installer exposed an argument that allows the service-creation to be suppressed during the install.\n\nThanks!","reference_answer":"It seems like it worked as expected, because that an internal windows installer behavior.\n\nWindows Installer mostly does nothing on reinstaller. To restore an installation, you have to force a repair mode.\n\nwith \n\nmsiexec.exe /fa \"windows_exporter-0.26.0-amd64.msi\" /qn\n\nthe service is getting restored. I tested that on a windows server. Sadly, we are unable to change the windows installer behavior here.","answer_document_id":"gh_comment_2105943992","silver_evidence_path":["gh_comment_1867836315","gh_issue_2054100920","gh_comment_2105943992"],"known_context_document_ids":["gh_issue_1320492618"],"evidence_issue_ids":[1320492618,2054100920],"source_repo_name":"prometheus-community/windows_exporter","source_issue_id":1320492618,"source_issue_url":"https://github.com/prometheus-community/windows_exporter/issues/1033","target_repo_name":"prometheus-community/windows_exporter","target_issue_id":2054100920,"target_issue_url":"https://github.com/prometheus-community/windows_exporter/issues/1368","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0015","query":"processor network error on Send transaction?","query_context":"# Bug Report\n\n## Description\n\n \n\nErroe message: WPP-025 - status-proxy-O.error: insufficient funds for gas * price + value: add ress 0x3212fD7C2C7984DD6de153691D901445fC8AA07 have 2783037892\n8767798 want 159078669589875316\n\n## Steps to reproduce\n\n \nUse an account that has enough funds to do a send transaction on Mainnet\n\n1. Go to the Wallet\n2. Click Send\n3. When the modal opens, select a small amount of eth to sent\n4. Notice that an error displays \n\n#### Expected behavior\nUser to be able to perform a Send tx\n\n#### Actual behavior\nUser unable to do a send tx, even though they have enough funds\nScreenshot 2024-09-16 at 4 43 40āÆPM\n\n### Additional Information\ngeth 2.log.zip\napp_20240916_154447.log\n\n- Status desktop version: 2.30 rc-1\n- Operating System: Mac OS Sonoma","reference_answer":"There is no actually one conclusion (as it was checked with disabled both grove and proxy(, and the discussion moved there, but yeah, seems that the issue might be on both sides - grove and proxy. \nThanks for the comment. I'll bring this issue today on wallet sync, thank you","answer_document_id":"gh_comment_2385308488","silver_evidence_path":["gh_comment_2363286139","gh_issue_2536473359","gh_comment_2385308488"],"known_context_document_ids":["gh_issue_2529504508"],"evidence_issue_ids":[2529504508,2536473359],"source_repo_name":"status-im/status-desktop","source_issue_id":2529504508,"source_issue_url":"https://github.com/status-im/status-desktop/issues/16352","target_repo_name":"status-im/status-mobile","target_issue_id":2536473359,"target_issue_url":"https://github.com/status-im/status-mobile/issues/21292","split":"test","quality_score":75.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0016","query":"Since the last update, Media Player seems to no longer be able to play very long files?","query_context":"### The problem\n\nI have a 10 hour long track of white noise I play through HA when I sleep. Been using it for a long while, with no issue. \n\nAs of the last HA update, it seems to no longer play. The file can still be played on the computer, and the HA automation that turns it on/off will still play any \"normal\" length file when I run the automation, but it seems to refuse to play it to the speaker if it's the too long file. \n\n### What version of Home Assistant Core has the issue?\n\ncore-2025.4.1\n\n### What was the last working version of Home Assistant Core?\n\ncore-2024.3.X\n\n### What type of installation are you running?\n\nHome Assistant OS\n\n### Integration causing the issue\n\nMedia Player\n\n### Link to integration documentation on our website\n\n URL \n\n### Diagnostics information\n\nLet me know what would be useful, and I'll send it to you. \n\n### Example YAML snippet\n\nyaml\nThis is the automation I use to cue it up: \n\naction: media_player.play_media\ntarget:\n entity_id: media_player.office\ndata:\n media_content_id: >-\n media-source://media_source/local/White Noise Black Screen ¦ Sleep, Study,\n Focus ¦ 10 Hours (128kbit_AAC).m4a\n media_content_type: audio/mp4\nmetadata:\n title: White Noise Black Screen ¦ Sleep, Study, Focus ¦ 10 Hours (128kbit_AAC).m4a\n thumbnail: null\n media_class: music\n children_media_class: null\n navigateIds:\n - {}\n - media_content_type: app\n media_content_id: media-source://media_source\n\n### Anything in the logs that might be useful for us?\n\ntxt\n\n### Additional information\n\n_No response_","reference_answer":"I have no clue what your issue is exactly, what are you trying to do and what does it do and what do you expect?","answer_document_id":"gh_comment_2817090952","silver_evidence_path":["gh_comment_2786747676","gh_issue_2977679118","gh_comment_2817090952"],"known_context_document_ids":["gh_issue_2980017210"],"evidence_issue_ids":[2980017210,2977679118],"source_repo_name":"home-assistant/core","source_issue_id":2980017210,"source_issue_url":"https://github.com/home-assistant/core/issues/142540","target_repo_name":"home-assistant/core","target_issue_id":2977679118,"target_issue_url":"https://github.com/home-assistant/core/issues/142494","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0017","query":"docker image (mac/aarch64) failing?","query_context":"Hi Keegan,\n\nDo you know if it's an issue with my docker image or maybe with the Gradle docker image or something else regarding:\n\n URL \n\nThe Dockerfile is here: URL \n\nkind regards, and have a nice week :-)\nJohannes","reference_answer":"Thanks a lot. Can you check if it's working without the existing `sirix-data` folder? I've just committed a fix, hopefully: URL","answer_document_id":"gh_comment_1819490644","silver_evidence_path":["gh_comment_1864540078","gh_issue_1992023803","gh_comment_1819490644"],"known_context_document_ids":["gh_issue_1993121883"],"evidence_issue_ids":[1993121883,1992023803],"source_repo_name":"keeganwitt/docker-gradle","source_issue_id":1993121883,"source_issue_url":"https://github.com/keeganwitt/docker-gradle/issues/268","target_repo_name":"sirixdb/sirix","target_issue_id":1992023803,"target_issue_url":"https://github.com/sirixdb/sirix/issues/681","split":"test","quality_score":76.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0018","query":"'touch' detection is invalid?","query_context":"Using this on a laptop computer, and I have set\n\njs\n anchors.options = {\n visible: 'touch'\n }\n\nHowever, it is detecting that a laptop is a touch device. When I look at the source code and try some in the browser console, `!!window.TouchEvent` is returning true, which is here in the source code ā URL \n\n------------\n\nexample in use: URL","reference_answer":"Thanks for the detailed report. You're totally right about where that new behavior is coming from.\n\nUnfortunately, the behavior you're seeing is intended. To quote the docs:\n \n\nIf you're seeing the links in your browser on Windows 10, that means your browser supports touch events (more specifically, `window.TouchEvent`). That might mean your desktop/laptop has support for touch interface (many windows computers, like surface books, do), or that the browser would support a touch interface if it were installed on such a device.\n\nThe change that you saw in the newer AnchorJS version comes from a similar Modernizr update, which was intended to make touch event detection more accurate. You can see details on that here: URL \n\nUltimately, I'm comfortable leaving this feature as-is, focused on detecting touch-events, which only approximates touchscreen detection. The alternative is to remove the feature altogether (which is what Modernizr eventually did).\n\nIf you prefer the former behavior, I'd say feel free to continue using v4.2.2.","answer_document_id":"gh_comment_759926543","silver_evidence_path":["gh_comment_1382674984","gh_issue_781844345","gh_comment_759926543"],"known_context_document_ids":["gh_issue_1406658896"],"evidence_issue_ids":[1406658896,781844345],"source_repo_name":"bryanbraun/anchorjs","source_issue_id":1406658896,"source_issue_url":"https://github.com/bryanbraun/anchorjs/issues/188","target_repo_name":"bryanbraun/anchorjs","target_issue_id":781844345,"target_issue_url":"https://github.com/bryanbraun/anchorjs/issues/168","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0019","query":"Cleanup CSI Snapshots post Polling of VSC times out in CSI Plugin.","query_context":"**What steps did you take and what happened:**\n \nAs of today the CSI plugin waits for the VSC to get reconciled for default 10minutes.\nAfter that CSI leaves the VS in the cluster.\nThis leads to accumulation of useless VS in the cluster which ends up throttling the CSI drivers installed in the cluster. Because the CSI driver keeps on retrying endlessly.\n\n**What did you expect to happen:**\nCleanup the VS if tracking has failed in the CSI plugin.\n\n**The following information will help us better understand what's going on**:\n\n_If you are using velero v1.7.0+:_ \nPlease use `velero debug --backup --restore ` to generate the support bundle, and attach to this issue, more options please refer to `velero debug --help` \n\n_If you are using earlier versions:_ \nPlease provide the output of the following commands (Pasting long output into a GitHub gist or other pastebin is fine.)\n- `kubectl logs deployment/velero -n velero`\n- `velero backup describe ` or `kubectl get backup/ -n velero -o yaml`\n- `velero backup logs `\n- `velero restore describe ` or `kubectl get restore/ -n velero -o yaml`\n- `velero restore logs `\n\n**Anything else you would like to add:**\n \n\nRelated issue #6209 and also in similar code path as #6165 \n\n**Environment:**\n\n- Velero version (use `velero version`): \n- Velero features (use `velero client config get features`): \n- Kubernetes version (use `kubectl version`):\n- Kubernetes installer & version:\n- Cloud provider or hardware configuration:\n- OS (e.g. from `/etc/os-release`):\n\n**Vote on this issue!**\n\nThis is an invitation to the Velero community to vote on issues, you can see the project's top voted issues listed here. \nUse the \"reaction smiley face\" up to the right of this comment to vote.\n\n- :+1: for \"I would like to see this bug fixed as soon as possible\"\n- :-1: for \"There are more important bugs to focus on right now\"","reference_answer":"There are two issues being discussed here:\n1. Object has been modified issue:\n\nI1111 12:01:13.229378 1 snapshot_controller.go:167] updating VolumeSnapshotContent[snapcontent-c5a12581-b9c7-430e-9c61-9bcb576a60d4] error status failed Operation cannot be fulfilled on volumesnapshotcontents.snapshot.storage.k8s.io \"snapcontent-c5a12581-b9c7-430e-9c61-9bcb576a60d4\": the object has been modified; please apply your changes to the latest version and try again\n\nThis has been fixed for all common cases in snapshotter master, which will be in v5.0.0. The version v4.2.1 will not have this fix. \n\n2. #533 - this issue is unrelated to the above error. I've reproduced it in master without the `object has been modified error`. The object are constantly being re-queued without backoff, even though backoff is configured. I'm still looking into why that is the case.\n\nI've been busy the past few weeks, but I'm hoping to continue looking into this one again soon.","answer_document_id":"gh_comment_984190842","silver_evidence_path":["gh_comment_1534670188","gh_issue_920840960","gh_comment_984190842"],"known_context_document_ids":["gh_issue_1692659645"],"evidence_issue_ids":[1692659645,920840960],"source_repo_name":"vmware-tanzu/velero","source_issue_id":1692659645,"source_issue_url":"https://github.com/vmware-tanzu/velero/issues/6219","target_repo_name":"kubernetes-csi/external-snapshotter","target_issue_id":920840960,"target_issue_url":"https://github.com/kubernetes-csi/external-snapshotter/issues/533","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0021","query":"Fix bugs on Korean MSX Conversion To SMS games On SG-1000 Mode Emulation?","query_context":"Bug:\n168426478-19e640b6-d2c5-4bb4-b307-1c736fc22aaa\n168426489-68094b63-dd8a-43fa-bba7-8ce8b76f53b7\n168426499-11534212-7e93-4128-a7c9-23d97efa1a3a\n\nFixed:\n168426558-d89354ff-b41b-470a-8076-a6583ab8abbf\n168426585-5842bd13-4c39-42fa-8679-186101233835\n168426617-aba13656-ac8f-49e8-b58a-c2198fffe84f\n\nYou must add Feature of RAM\n\nSG-1000/SG-1000 II RAM:\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\nMaster System/Mark III/Master System II RAM:\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\nGame Gear RAM:\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\nGenesis / Mega Drive / CD RAM:","reference_answer":"I already answered these issues report:\n- those games do NOT work on stock SG-1000 hardware because they need more RAM than the SG-1000 has (afaik, MSX has more RAM than SG-1000)\n- the colors look wrong but that is how they look on Master System hardware\n\nThe solution to your problem is to run these games on SG-1000 hardware with RAM extension cartridge, which is not possible yet in this emulator but you are free to use another emulator if it works for you... just stop spamming the issue report.","answer_document_id":"gh_comment_1060855437","silver_evidence_path":["gh_comment_1128076935","gh_issue_1161409262","gh_comment_1060855437"],"known_context_document_ids":["gh_issue_1236226169"],"evidence_issue_ids":[1236226169,1161409262],"source_repo_name":"ekeeke/Genesis-Plus-GX","source_issue_id":1236226169,"source_issue_url":"https://github.com/ekeeke/Genesis-Plus-GX/issues/431","target_repo_name":"ekeeke/Genesis-Plus-GX","target_issue_id":1161409262,"target_issue_url":"https://github.com/ekeeke/Genesis-Plus-GX/issues/419","split":"test","quality_score":91.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0022","query":"Tado integration login error since 2025.3.4?","query_context":"### The problem\n\nI cannot login in Tado integration since updating HA to 2025.3.4.\nLogin at URL works fine.\n\n### What version of Home Assistant Core has the issue?\n\ncore-2025.3.4\n\n### What was the last working version of Home Assistant Core?\n\ncore-2025.3.3\n\n### What type of installation are you running?\n\nHome Assistant Supervised\n\n### Integration causing the issue\n\nTado\n\n### Link to integration documentation on our website\n\n URL \n\n### Diagnostics information\n\nLogger: homeassistant.components.tado.config_flow\nQuelle: components/tado/config_flow.py:87\nIntegration: Tado (Dokumentation, Probleme)\nErstmals aufgetreten: 12:17:17 (5 Vorkommnisse)\nZuletzt protokolliert: 12:26:19\n\nUnexpected exception\nTraceback (most recent call last):\n File \"/usr/src/homeassistant/homeassistant/components/tado/config_flow.py\", line 87, in async_step_user\n validated = await validate_input(self.hass, user_input)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/usr/src/homeassistant/homeassistant/components/tado/config_flow.py\", line 52, in validate_input\n tado = await hass.async_add_executor_job(\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n Tado, data[CONF_USERNAME], data[CONF_PASSWORD]\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n )\n ^\n File \"/usr/local/lib/python3.13/concurrent/futures/thread.py\", line 59, in run\n result = self.fn(*self.args, **self.kwargs)\n File \"/usr/local/lib/python3.13/site-packages/PyTado/interface/interface.py\", line 46, in __init__\n self._http = Http(\n ~~~~^\n username=username,\n ^^^^^^^^^^^^^^^^^^\n ... ...\n debug=debug,\n ^^^^^^^^^^^^\n )\n ^\n File \"/usr/local/lib/python3.13/site-packages/PyTado/http.py\", line 153, in __init__\n self._id, self._token_refresh = self._login()\n ~~~~~~~~~~~^^\n File \"/usr/local/lib/python3.13/site-packages/PyTado/http.py\", line 333, in _login\n raise TadoException(\n f\"Login failed for unknown reason with status code {response.status_code}\"\n )\nPyTado.exceptions.TadoException: Login failed for unknown reason with status code 403\n\n### Example YAML snippet\n\nyaml\n\n### Anything in the logs that might be useful for us?\n\ntxt\n\n### Additional information\n\n_No response_","reference_answer":"Sorry, the change is too large to ship in a patch. Feel free to join the beta testing, which starts today.\n\n../Frenck","answer_document_id":"gh_comment_2753888816","silver_evidence_path":["gh_comment_2745232025","gh_issue_2853449615","gh_comment_2753888816"],"known_context_document_ids":["gh_issue_2940321408"],"evidence_issue_ids":[2940321408,2853449615],"source_repo_name":"home-assistant/core","source_issue_id":2940321408,"source_issue_url":"https://github.com/home-assistant/core/issues/141107","target_repo_name":"home-assistant/core","target_issue_id":2853449615,"target_issue_url":"https://github.com/home-assistant/core/issues/138518","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0023","query":"Can't add FirefoxPWA's patched Firefox.app into filtered applications?","query_context":"FirefoxPWA is a way to install PWA as an app with Firefox. On macOS, it downloads a separate instance of Firefox to ~/Library/Application Support/firefoxpwa/runtime/Firefox.app, and patches the binary to do some additional magic for PWA to work. However, I'm not able to add this Firefox.app into filtered applications, so I'm seeing many ads.\n\n### Steps to reproduce\n1. Install FirefoxPWA's extension as well as the native counterpart (via Homebrew on macOS)\n2. Create a PWA with it\n3. Try to add the patched Firefox.app into filtered applications\n\n### Expected behavior\nThe separate, patched Firefox.app should be added to the list, and filtering should work\n\n### Actual behavior\nThe app is not added to the list and filtering is not working. AdGuard instead highlights the original Firefox.app in the list, which locates in /Applications/Firefox.app, as if they're the same one, but they're not.\n\nThen I tried adding the PWA app it creates in ~/Applications (for example ~/Applications/Spotify.app) into filtered applications. It showed up in the list, but the ads are still not filtered this way, so I think being able to add that patched Firefox.app is the key.\n\nFinally I granted AdGuard full disk access then retried, but it doesn't work. And I tried trashing the original Firefox.app & delete its entry from the list before adding the patched one. It did show up in the list this way, but filtering is still not working.\n\n### Customer ID \nNot seeing a \"Customer ID\" in the email reply? Ticket number is 554896. Or is it this strange string at the end? -> [X7LYQM-557Q] \n\n### Your environment\n* Environment name and version: Firefox 94.0.1, macOS 12.0.1\n* Any specific potentially conflicting software installed: LuLu firewall","reference_answer":"I'm pretty late because I didn't have much time. Anyway, I tried doing this but it doesn't work for me. It appears the executable does not see variables set in `LSEnvironment`, so the app cannot start.\n\nApparently `LSEnvironment` by processes started via \"Launch Services\" and not via terminal (source?). However, it also does not work for me when I try to launch it from Launchpad. Maybe it's because I'm using the old macOS 10.15.7 (the latest I could install into VM)? But in any case, I would like if launching from the terminal (using `firefoxpwa site launch` and `open`) would also work.\n\nIs there any more reliable way of setting environment variables for a bundle? Or, is `swiftc` included in standard macOS out-of-the-box? This isn't the nicest solution, but maybe PWAsForFirefox could compile a new executable when installing each PWA and include `exePath` and `pwaId` directly in the source code.","answer_document_id":"gh_comment_1171110512","silver_evidence_path":["gh_comment_1041771721","gh_issue_1140099939","gh_comment_1171110512"],"known_context_document_ids":["gh_issue_1059360875"],"evidence_issue_ids":[1059360875,1140099939],"source_repo_name":"AdguardTeam/AdguardForMac","source_issue_id":1059360875,"source_issue_url":"https://github.com/AdguardTeam/AdguardForMac/issues/993","target_repo_name":"filips123/PWAsForFirefox","target_issue_id":1140099939,"target_issue_url":"https://github.com/filips123/PWAsForFirefox/issues/131","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0024","query":"Can't do mkltfs on HP StorageWorks Trivium 3000?","query_context":"Hello.\n\nI've compiled LTFS using manual in README on my Debian 11 Bullseye (Linux 5.13.19-2-pve #1 SMP PVE 5.13.19-4 (Mon, 29 Nov 2021 12:10:09 +0100) x86_64 GNU/Linux)\n\nThe device is HP StorageWorks Ultrium 3000 SAS, cartridges are Sony LTX1500G\n\n`ltfs -o device_list` shows connected hardware:\n\n885 LTFS14000I LTFS starting, LTFS version 2.5.0.0 (Prelim), log level 2.\n885 LTFS14058I LTFS Format Specification version 2.4.0.\n885 LTFS14104I Launched by \"ltfs -o device_list\".\n885 LTFS14105I This binary is built for Linux (x86_64).\n885 LTFS14106I GCC version is 10.2.1 20210110.\n885 LTFS17087I Kernel version: Linux version 5.13.19-2-pve (build@proxmox) (gcc (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP PVE 5.13.19-4 (Mon, 29 Nov 2021 12:10:09 +0100) i386.\n885 LTFS17089I Distribution: PRETTY_NAME=\"Debian GNU/Linux 11 (bullseye)\".\n885 LTFS17085I Plugin: Loading \"sg\" tape backend.\nTape Device list:.\nDevice Name = /dev/sg1 (0.0.0.0), Vendor ID = HP , Product ID = Ultrium 5-SCSI , Serial Number = HUJ011CW59, Product Name =[Ultrium 5-SCSI].\n\nBut when I try to do mkltfs, I'm getting the following error:\n\nroot@office:~# mkltfs -d /dev/sg1\nLTFS15000I Starting mkltfs, LTFS version 2.5.0.0 (Prelim), log level 2.\nLTFS15041I Launched by \"mkltfs -d /dev/sg1\".\nLTFS15042I This binary is built for Linux (x86_64).\nLTFS15043I GCC version is 10.2.1 20210110.\nLTFS17087I Kernel version: Linux version 5.13.19-2-pve (build@proxmox) (gcc (Debian 10.2.1-6) 10.2.1 20210110, GNU ld (GNU Binutils for Debian) 2.35.2) #1 SMP PVE 5.13.19-4 (Mon, 29 Nov 2021 12:10:09 +0100) i386.\nLTFS17089I Distribution: PRETTY_NAME=\"Debian GNU/Linux 11 (bullseye)\".\nLTFS15003I Formatting device '/dev/sg1'.\nLTFS15004I LTFS volume blocksize: 524288.\nLTFS15005I Index partition placement policy: None.\n\nLTFS11337I Update index-dirty flag (1) - NO_BARCODE (0x0x56531f111be0).\nLTFS17085I Plugin: Loading \"sg\" tape backend.\nLTFS30209I Opening a device through sg-ibmtape driver (/dev/sg1).\nLTFS30250I Opened the SCSI tape device 0.0.0.0 (/dev/sg1).\nLTFS30207I Vendor ID is HP .\nLTFS30208I Product ID is Ultrium 5-SCSI .\nLTFS30214I Firmware revision is Z6MW.\nLTFS30215I Drive serial is HUJ011CW59.\nLTFS30285I The reserved buffer size of /dev/sg1 is 524288.\nLTFS30294I Setting up timeout values from RSOC.\nLTFS17160I Maximum device block size is 1048576.\nLTFS11330I Loading cartridge.\nLTFS39805W The timeout table is not configured: SCSI OP code 0x4d. Use the default timeout.\nLTFS11332I Load successful.\nLTFS39805W The timeout table is not configured: SCSI OP code 0x4d. Use the default timeout.\nLTFS17157I Changing the drive setting to write-anywhere mode.\nLTFS15049I Checking the medium (mount).\nLTFS39805W The timeout table is not configured: SCSI OP code 0x4d. Use the default timeout.\nLTFS30205I LOCATE (0x92) returns -20802.\nLTFS30263I LOCATE returns End-of-Data (EOD) not found (-20802) /dev/sg1.\nLTFS12037E Cannot seek: backend call failed (-20802).\nLTFS11006E Cannot read volume: failed to load the tape.\nLTFS30205I MODESELECT (0x55) returns -20500.\nLTFS30263I MODESELECT returns Invalid Field in Parameter List (-20500) /dev/sg1.\nLTFS15023I Formatting failed.\n\nMaybe you have any ideas what's the problem? The cartridges & streamer are absolutely new","reference_answer":"Yes. But the alternative is to use /dev/nst* instead. `nst` device never issue `REWIND` at open/close.\n\nAnother point is to add `-o eject` option to LTFS for a safeguard. Basically LTFS tries to use `append only mode` of IBM drives. But the `append only mode` only can clear when the tape is ejected from the drive spec. So LTFS only uses the `append only mode` when `-o eject`. Because historically default behavior is keep the tape on drive at unmount, so it is no chance to disable the `append only mode`. (May be it is a good timing to consider to change default behavior...)\n\nAnyway, you can avoid data corruption because of `REWIND` from another path if you add `-o eject` in the command line. But you may receive an write error (and goes to R/O mode) when `REWIND` from another path happens.","answer_document_id":"gh_comment_530654792","silver_evidence_path":["gh_comment_1040055293","gh_issue_491189983","gh_comment_530654792"],"known_context_document_ids":["gh_issue_1137558436"],"evidence_issue_ids":[1137558436,491189983],"source_repo_name":"LinearTapeFileSystem/ltfs","source_issue_id":1137558436,"source_issue_url":"https://github.com/LinearTapeFileSystem/ltfs/issues/336","target_repo_name":"LinearTapeFileSystem/ltfs","target_issue_id":491189983,"target_issue_url":"https://github.com/LinearTapeFileSystem/ltfs/issues/157","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0025","query":"Replace `Foreign.Marshal.Error.void` with a re-export of `Data.Functor.void`?","query_context":"These two functions have identical behavior and names, but differing types. (This can cause annoying and pointless \"ambiguous occurrence\" errors when both are in scope.) `Data.Functor.void` is more general than `Foreign.Marshal.Error.void`, but the proposed change is nevertheless a breaking one since the more general type of `Data.Functor.void` can cause type inference to fail in some cases.\n\nBut `Foreign.Marshal.Error.void` has been deprecated since `base-4.6.0.0`, which shipped with ghc-7.6.1 and was released in September 2012, more than a decade ago. Potentially-affected users have had plenty of time to migrate.\n\nSide note: `Foreign.Marshal.Error.void` is specified in the Haskell2010 report; see this chapter. Otherwise I might propose to just delete this function instead of generalizing it.","reference_answer":"OK, let's vote on this.\n\nDear CLC members, the proposal is to extend Impact Assessments section of `PROPOSALS.md` with a paragraph \n \n\n@angerman @hasufell @tomjaguarpaw @parsonsmatt @velveteer @mixphix \n\n----\n\n+1 from me, see my comment above.","answer_document_id":"gh_comment_2077901685","silver_evidence_path":["gh_comment_2078653480","gh_issue_2204287673","gh_comment_2077901685"],"known_context_document_ids":["gh_issue_2216540717"],"evidence_issue_ids":[2216540717,2204287673],"source_repo_name":"haskell/core-libraries-committee","source_issue_id":2216540717,"source_issue_url":"https://github.com/haskell/core-libraries-committee/issues/264","target_repo_name":"haskell/core-libraries-committee","target_issue_id":2204287673,"target_issue_url":"https://github.com/haskell/core-libraries-committee/issues/262","split":"test","quality_score":85.27,"annotation_level":"silver"}
{"query_id":"cross_issue_0026","query":"[Bug Report][3.0.0-beta.10] `v-select`'s label get active always?","query_context":"### Environment\n**Vuetify Version:** 3.0.0-beta.10\n**Vue Version:** 3.2.38\n**Browsers:** Chrome 105.0.0.0\n**OS:** Windows 10\n\n### Steps to reproduce\nTry to use blank string `v-model` value and you see the label get an active state\n\n data: () => ({\n items: ['Foo', 'Bar', 'Fizz', 'Buzz'],\n standardSelect: '',\n outlinedSelect:'',\n soloVariant:'',\n plainVariant:'',\n underlinedVariant:'',\n }),\n\n### Expected Behavior\nv-select does not get an active state\n\n### Actual Behavior\nRefer to code pen for details \n\n### Reproduction Link\n URL","reference_answer":"This has since been resolved with the property **cache-items**.\n\n URL \n\nClosing this as resolved.\n\nIf you have any questions, please reach out to us in our Discord community.","answer_document_id":"gh_comment_861520120","silver_evidence_path":["gh_comment_1236815922","gh_issue_320787715","gh_comment_861520120"],"known_context_document_ids":["gh_issue_1360012166"],"evidence_issue_ids":[1360012166,320787715],"source_repo_name":"vuetifyjs/vuetify","source_issue_id":1360012166,"source_issue_url":"https://github.com/vuetifyjs/vuetify/issues/15730","target_repo_name":"vuetifyjs/vuetify","target_issue_id":320787715,"target_issue_url":"https://github.com/vuetifyjs/vuetify/issues/4000","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0028","query":"importing electron in a WebWorker doesn't work?","query_context":"Doing `import { ipcRenderer} from 'electron'` (or any other renderer electron module) crashes the app with `reason: \"crashed\"` and `exitCode: 11`.\n\n## Details\n\n- I'm trying to migrate from Webpack and the same code works there.\n- `nodeIntegrationInWorker` is set to true.\n- Exit code 11 usually means Segmentation fault.\n- One thing that is being logged in the Terminal when the app crashes:\n \n\n [20890:0831/172750.464535:ERROR:shared_image_manager.cc(267)] SharedImageManager::ProduceOverlay: Trying to Produce a Overlay representation from a non-existent mailbox.\n [20890:0831/172750.464559:ERROR:skia_output_device_buffer_queue.cc(354)] Invalid mailbox.\n [20890:0831/172750.464564:ERROR:shared_image_manager.cc(267)] SharedImageManager::ProduceOverlay: Trying to Produce a Overlay representation from a non-existent mailbox.\n [20890:0831/172750.464569:ERROR:skia_output_device_buffer_queue.cc(354)] Invalid mailbox.\n [20890:0831/172750.464572:ERROR:shared_image_manager.cc(267)] SharedImageManager::ProduceOverlay: Trying to Produce a Overlay representation from a non-existent mailbox.\n [20890:0831/172750.464578:ERROR:skia_output_device_buffer_queue.cc(354)] Invalid mailbox.\n [20890:0831/172750.464580:ERROR:shared_image_manager.cc(267)] SharedImageManager::ProduceOverlay: Trying to Produce a Overlay representation from a non-existent mailbox.\n [20890:0831/172750.464584:ERROR:skia_output_device_buffer_queue.cc(354)] Invalid mailbox.\n [20890:0831/172750.464601:ERROR:shared_image_manager.cc(267)] SharedImageManager::ProduceOverlay: Trying to Produce a Overlay representation from a non-existent mailbox.\n [20890:0831/172750.464606:ERROR:skia_output_device_buffer_queue.cc(354)] Invalid mailbox.\n [20890:0831/172750.464609:ERROR:shared_image_manager.cc(267)] SharedImageManager::ProduceOverlay: Trying to Produce a Overlay representation from a non-existent mailbox.\n [20890:0831/172750.464612:ERROR:skia_output_device_buffer_queue.cc(354)] Invalid mailbox.\n \n\n- Another thing:\n \n\n Error sending from webFrameMain: Error: Render frame was disposed before WebFrameMain could be accessed\n at n._sendInternal (node:electron/js2c/browser_init:165:629)\n at b._sendInternal (node:electron/js2c/browser_init:161:2573)\n at node:electron/js2c/browser_init:193:729\n at new Promise ( )\n at Object.invokeInWebContents (node:electron/js2c/browser_init:193:477)\n at b.executeJavaScript (node:electron/js2c/browser_init:161:3267)\n at process.processTicksAndRejections (node:internal/process/task_queues:96:5)","reference_answer":"This isn't a bug - using IPC requires a render frame, which a worker doesn't and can't have.","answer_document_id":"gh_comment_1190665929","silver_evidence_path":["gh_comment_1240426896","gh_issue_1310833614","gh_comment_1190665929"],"known_context_document_ids":["gh_issue_1357471351"],"evidence_issue_ids":[1357471351,1310833614],"source_repo_name":"electron-vite/vite-plugin-electron","source_issue_id":1357471351,"source_issue_url":"https://github.com/electron-vite/vite-plugin-electron/issues/69","target_repo_name":"electron/electron","target_issue_id":1310833614,"target_issue_url":"https://github.com/electron/electron/issues/34992","split":"test","quality_score":84.21,"annotation_level":"silver"}
{"query_id":"cross_issue_0029","query":"Component level note content needs to allow text formatting?","query_context":"## Summary\nRight now all note types allow text formatting for its content with a few exceptions:\n- `dimensions`\n- `physfacet`\n- `acqinfo`\n\nThe following note types aren't displaying at all when the content has text formatting\n- `physdesc`\n- `index`\n\n`physdesc` may be the place to start because `dimensions` and `physfacet` are EAG tags nested within `physdesc`.\n\nThis issue may overlap with AR-136 In Progress which calls for text formatting in component `unittitle`\n\nPlease see the attached spreadsheet for data on whether or not a note type displays and/or allows text formatting.\ncomponent_notes_text.xlsx\n\n## Acceptance Criteria\n- [ ] Text formatting is allowed and displays on all note types that are listed in the above spreadsheet\n\n## Testing Instructions\n- Use the G334 ā 54 slides component on staging\n- Ensure there is bold or underline formatting for the following:\n - Acquisition information\n - Physical description\n - Physical facet\n - Dimensions\n - Indexes\n\n \n Text formatting \n\nImage","reference_answer":"Example of text formatting not rendering in : URL \n\ncode snippet:\n` \n \n \"Singing for her supper,\" The Hill , pp.\n 30-31 `\n\nI will add an example of text formatting not rendering in component level notes shortly.","answer_document_id":"gh_comment_2807469850","silver_evidence_path":["gh_comment_2819697893","gh_issue_2987316279","gh_comment_2807469850"],"known_context_document_ids":["gh_issue_3005122319"],"evidence_issue_ids":[3005122319,2987316279],"source_repo_name":"notch8/archives_online","source_issue_id":3005122319,"source_issue_url":"https://github.com/notch8/archives_online/issues/153","target_repo_name":"notch8/archives_online","target_issue_id":2987316279,"target_issue_url":"https://github.com/notch8/archives_online/issues/102","split":"test","quality_score":85.08,"annotation_level":"silver"}
{"query_id":"cross_issue_0030","query":"Put more requests for help & advice on requests into public?","query_context":"We could have a public \"get help on this request\" link somewhere on request pages, which goes through to the user support inbox but also gets posted on the request thread (perhaps behind a tabbed interface).\n\nWe could then allow admins to answer the help request in public, with the aim of being able to point people towards existing answers rather than using canned responses to reply privately.\n\nPossibly, on viewing the help request, admins could also mark it safe for public comment (rather than admin-only reply) to enable other users to contribute. We could have a feed of these help requests similar to URL","reference_answer":"We could have an admin page of \"allowed tags\" that users can suggest or add (like our body performance tags or `pit`-related tags). That would reduce the impact of users adding synonyms or tags that generate notes.","answer_document_id":"gh_comment_1191554388","silver_evidence_path":["gh_comment_1101817966","gh_issue_67254835","gh_comment_1191554388"],"known_context_document_ids":["gh_issue_1204706916"],"evidence_issue_ids":[1204706916,67254835],"source_repo_name":"mysociety/alaveteli","source_issue_id":1204706916,"source_issue_url":"https://github.com/mysociety/alaveteli/issues/6970","target_repo_name":"mysociety/alaveteli","target_issue_id":67254835,"target_issue_url":"https://github.com/mysociety/alaveteli/issues/2302","split":"test","quality_score":85.78,"annotation_level":"silver"}
{"query_id":"cross_issue_0031","query":".so file not found?","query_context":"Getting this error after installation in Docker container\n\nCould not open library '/usr/local/bundle/gems/cld3-3.5.0/lib/cld3/../../ext/cld3/libcld3.so': /usr/local/bundle/gems/cld3-3.5.0/lib/cld3/../../ext/cld3/libcld3.so: cannot open shared object file: No such file or directory (LoadError)\n\nThe `.so` file is present in `/usr/local/bundle/gems/cld3-3.5.0/lib/` but not `/usr/local/bundle/gems/cld3-3.5.0/ext/cld3/libcld3.so` \n\nReproduction: URL \n URL","reference_answer":"`extension_dir` is the best place for `ffi_lib` feature. We will document it at URL \n\nI did investigate all affected gems in rubygems.org and fixed them that released in 2022. see URL \n\nI'll close this issue because there is no action about this in RubyGems 3.4.x.","answer_document_id":"gh_comment_1376890386","silver_evidence_path":["gh_comment_1427068442","gh_issue_1511387812","gh_comment_1376890386"],"known_context_document_ids":["gh_issue_1510961856"],"evidence_issue_ids":[1510961856,1511387812],"source_repo_name":"akihikodaki/cld3-ruby","source_issue_id":1510961856,"source_issue_url":"https://github.com/akihikodaki/cld3-ruby/issues/37","target_repo_name":"rubygems/rubygems","target_issue_id":1511387812,"target_issue_url":"https://github.com/rubygems/rubygems/issues/6205","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0032","query":"StickyHeader scrolling issue.","query_context":"### Can we access your project?\n\n- [X] I give permission for members of the FlutterFlow team to access and test my project for the sole purpose of investigating this issue.\n\n### Current Behavior\n\nI have a scrollable column, with a StickyHeader inside it. The content of the StickyHeader widget is a listview. I have datapills in the header of the StickyHeader, which filter my listview below. If one scrolls down in the list view and switches to another datapill and the filtered list items length is shorter, the header of the StickyHeader jumps to the bottom of the page and resets back only if the content is touch scrolled. I tried hiding and displaying the header again after the filter is applied, but the behavior is the same. I also tried scrollto action on the content view, that didn't seem to do anything either.\n\n### Expected Behavior\n\nThe conent updates based on the filter change, but the sticky header sticks to the top. \n\n### Steps to Reproduce\n\n1. Create New Page, add navigation to the page from home page. (You may be able to do it on Home page as well instead).\n2. Add new Page State variable showItems, Boolean set to true by default. \n3. Select the column in the new page. Make it scrollable, select stretch for Cross Axis Alignment.\n4. Add StickyHeader widget inside the column.\n5. Add a Button into the header, wrap it in a row. Set the action on it to to update page state toggle the value of showItems\n6. Select the last sample list item container in the content of the sticky header, make its visibility conditional equal to page state variable showItems.\n7. Duplicate these a couple of times so the list items are scrollable down the page. \n8. Launch the application, navigate to the test page, scroll down in the list view then push the button in the header. You will notice that the header will jump to the bottom of the page.\n\n### Reproducible from Blank\n\n- [x] The steps to reproduce above start from a blank project.\n\n### Bug Report Code (Required)\n\nITFXi87huJdgrthE+qniLMZonmEwGVwbbZIRiO4aTTEjGJz1BIYMaffSS1pBONOkTWw2KEWKpHsE0uj3ivP9IMYBNSquUapCwatUZj3vWky/aoSTBsyaQ0QnAdpbGhG90YmsniJdCNNhdEIs7DiMBeeRSindNKH6Zwh9f6PHaOI=\n\n### Visual documentation\n\n
Stage[repo] -> Stage[indexerdeploy] -> Stage[securityadmin] -> Stage[manager] -> Stage[dashboard]\nExec {\n timeout => 0,\n}\nnode \"ip-172-31-35-35.us-east-2.compute.internal\" {\n class { 'wazuh::certificates_dist': \n stage => certificates,\n }\n class { 'wazuh::repo_use':\n stage => repo,\n }\n class { 'wazuh::indexer_dist':\n stage => indexerdeploy,\n }\n class { 'wazuh::manager':\n manage_repos => false,\n stage => manager,\n }\n class { 'wazuh::filebeat_oss_dist':\n stage => manager,\n }\n class { 'wazuh::dashboard_dist':\n stage => dashboard,\n }\n}","answer_document_id":"gh_comment_1581435077","silver_evidence_path":["gh_comment_1748688373","gh_issue_1562978439","gh_comment_1581435077"],"known_context_document_ids":["gh_issue_1926015553"],"evidence_issue_ids":[1926015553,1562978439],"source_repo_name":"wazuh/wazuh","source_issue_id":1926015553,"source_issue_url":"https://github.com/wazuh/wazuh/issues/19405","target_repo_name":"wazuh/wazuh-puppet","target_issue_id":1562978439,"target_issue_url":"https://github.com/wazuh/wazuh-puppet/issues/632","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0035","query":"TransformerPS1S2 Issue?","query_context":"I'm having issues trying to get a 6-phase rectifier circuit to work. I sent the netlist over to the ngspice guys and they found a possible error with .SUBCKT Transformers_TransformerPS1S2. The netlist line \"R3 nSPlus nSplus {RS1}\" is wrong. There may be other errors in the .SUBCKT.\n\n URL \n\n2023-11-14_105159\n\n6_Phase_Rectifier.zip\n\n**TODO** list:\n- [x] Fix short circuit in transformer model\n- [x] Add TD parameter for sine source\n- [x] Deprecate red AC source","reference_answer":"I have uploaded a new `Transformer.lib` library. Thanks for the contribution! Closing this.","answer_document_id":"gh_comment_1883416893","silver_evidence_path":["gh_comment_1827247936","gh_issue_1995913067","gh_comment_1883416893"],"known_context_document_ids":["gh_issue_1993072219"],"evidence_issue_ids":[1993072219,1995913067],"source_repo_name":"ra3xdh/qucs_s","source_issue_id":1993072219,"source_issue_url":"https://github.com/ra3xdh/qucs_s/issues/362","target_repo_name":"ra3xdh/qucs_s","target_issue_id":1995913067,"target_issue_url":"https://github.com/ra3xdh/qucs_s/issues/367","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0037","query":"Terminus error -- call to undefined method?","query_context":"Good day,\nWe got the error as following when trying to build the environments thru GitHub action:\n`PHP Fatal error: Uncaught Error: Call to undefined method Pantheon\\TerminusBuildTools\\Commands\\EnvPushCommand::getsite() in /home/runner/.terminus/terminus-dependencies-c788000802/vendor/pantheon-systems/terminus-build-tools-plugin/src/Commands/BuildToolsBase.php:1120`\n\nIt is PR from `mylocalbranch` -> `develop` branch. The workflow file install terminus part as blowing:\n\n - name: Install Terminus\n run: |\n mkdir ~/terminus && cd ~/terminus\n curl -L URL --silent \" URL | perl -nle'print $& while m{\"tag_name\": \"\\K.*?(?=\")}g')/terminus.phar --output terminus\n chmod +x terminus\n sudo ln -s ~/terminus/terminus /usr/local/bin/terminus\n\nI tried to downgrade teriminus 3.6.2 version, action still failed and same error as above.\n`$(curl) --silent \" URL \nPlease let me know if more info need to provided.\n\nThanks.\n\nImage","reference_answer":"I got some reports in Slack of this working so I'm closing this ticket. Thanks everyone involved!\n\nFeel free to open a new issue if there is something else that needs to be addressed :)","answer_document_id":"gh_comment_2863831995","silver_evidence_path":["gh_comment_2861238183","gh_issue_3047429096","gh_comment_2863831995"],"known_context_document_ids":["gh_issue_3047481618"],"evidence_issue_ids":[3047481618,3047429096],"source_repo_name":"pantheon-systems/terminus-build-tools-plugin","source_issue_id":3047481618,"source_issue_url":"https://github.com/pantheon-systems/terminus-build-tools-plugin/issues/498","target_repo_name":"pantheon-systems/terminus-build-tools-plugin","target_issue_id":3047429096,"target_issue_url":"https://github.com/pantheon-systems/terminus-build-tools-plugin/issues/497","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0038","query":"[fhir-client] Calling $validate from the fhir-client fails in the main branch?","query_context":"We are using the FHIRClient validate method to validate Bundle resource by passing the Bundle object. \n\nclient.validate(finalBundle)\n\nIt fails to perform validation. The FHIR server log displays following message\n\n[6/17/22, 16:27:24:361 UTC] 00000042 FHIRHttpServl 2 Creating FHIRHttpServletRequestWrapper for HttpServletRequest: com.ibm.ws.webcontainer40.srt.SRTServletRequest40@ee864739\n[6/17/22, 16:27:24:361 UTC] 00000042 FHIRHttpServl 2 Retrieved these 'header' query parameters from the request URI: {}\n[6/17/22, 16:27:24:361 UTC] 00000042 FHIRHttpServl 2 Content-Type is application/xml\n[6/17/22, 16:27:24:361 UTC] 00000042 FHIRRestServl I Received request: tenantId:[default] dsId:[default] user:[fhiruser] method:[POST] uri:[ URL \n[6/17/22, 16:27:24:365 UTC] 00000042 FHIRProvider > com.ibm.fhir.provider.FHIRProvider readFrom ENTRY\n[6/17/22, 16:27:24:375 UTC] 00000042 FHIRProvider com.ibm.fhir.server.resources.Operation invoke(String,String,Resource) ENTRY\n[6/17/22, 16:27:24:376 UTC] 00000042 FHIRResource 1 'Resource' is not a valid resource type.\n[6/17/22, 16:27:24:381 UTC] 00000042 FHIRResource 1\nOperationOutcome:\n{\"resourceType\":\"OperationOutcome\",\"id\":\"ac-13-0-2-cd77fa72-e66c-4b97-a533-56c7af817a67\",\"issue\":[{\"severity\":\"fatal\",\"code\":\"not-supported\",\"_code\":{\"extension\":[{\"url\":\" URL is not a valid resource type.\"}}]}\n[6/17/22, 16:27:24:381 UTC] 00000042 RestAuditLogg > com.ibm.fhir.server.util.RestAuditLogger logOperation ENTRY\n[6/17/22, 16:27:24:381 UTC] 00000042 RestAuditLogg com.ibm.fhir.provider.FHIRProvider writeTo ENTRY\n[6/17/22, 16:27:24:385 UTC] 00000042 FHIRProvider < com.ibm.fhir.provider.FHIRProvider writeTo RETURN\n[6/17/22, 16:27:24:385 UTC] 00000042 FHIRRestServl I Completed request[0.024226862 secs]: tenantId:[default] dsId:[default] user:[fhiruser] method:[POST] uri:[ URL status:[404]\n[6/17/22, 16:27:24:385 UTC] 00000042 FHIRRestServl < com.ibm.fhir.server.filter.rest.FHIRRestServletFilter doFilter RETURN\n\n**Following is a sample Bundl resource that has validation error but the validation operation does npt detect it**\nEST-REG-ForVikas-RegTesting-Enriched.xml.zip","reference_answer":"Error 404 issued with the text the \"unknow\" text is not a valid resource Closing issue.\nThe 404 is given for both 4.0 and 4.3 fhir versions","answer_document_id":"gh_comment_1157169642","silver_evidence_path":["gh_comment_1159148612","gh_issue_1121185566","gh_comment_1157169642"],"known_context_document_ids":["gh_issue_1275335128"],"evidence_issue_ids":[1275335128,1121185566],"source_repo_name":"IBM/FHIR","source_issue_id":1275335128,"source_issue_url":"https://github.com/IBM/FHIR/issues/3722","target_repo_name":"IBM/FHIR","target_issue_id":1121185566,"target_issue_url":"https://github.com/IBM/FHIR/issues/3265","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0039","query":"Update help pages to clarify ownership of requests once published?","query_context":"As discussed on WDTK volunteer catch up call 24/06/2021 - URL \n\n- Should make clear to pro and non pro users the requests arenāt ātheirsā once published. \n- Treat like publishing under Creative Commons / Open licence \n- āYouāre making this a public assetā .. ādoing a public serviceā. \n- Issue with existing requests .. canāt retrospectively apply a public licence.","reference_answer":"Simplest thing to do here is change the default value of the select box and add more emphasis to the consequence of selecting a particular value:\n\n
C:\\Program Files\\dotnet\\packs\\Microsoft.iOS.Sdk.net9.0_18.2\\18.2.9180\\targets\\Xamarin.Shared.Sdk.targets(1665,3): error : clang++ exited with code 1:\n1>C:\\Program Files\\dotnet\\packs\\Microsoft.iOS.Sdk.net9.0_18.2\\18.2.9180\\targets\\Xamarin.Shared.Sdk.targets(1665,3): error : ld: file is empty in '/Users/**/Library/Caches/Xamarin/mtbs/builds/**/e714b99856d2d8abeed05f03af7a2bd21b67f244c175af00f39b5193cbd8bd41/C:/Program Files/dotnet/packs/Microsoft.NETCore.App.Runtime.Mono.ios-arm64/9.0.2/runtimes/ios-arm64/native/libmono-component-marshal-ilgen-static.a'\n1>C:\\Program Files\\dotnet\\packs\\Microsoft.iOS.Sdk.net9.0_18.2\\18.2.9180\\targets\\Xamarin.Shared.Sdk.targets(1665,3): error : clang++: error: linker command failed with exit code 1 (use -v to see invocation)\n\nI checked that path on the Mac and it is indeed a 0 byte file. All the other files in that directory are non-zero in size.\n\nThe corresponding file on my Windows machine is 199KB.\n\nI scp'd that file from my Windows machine to the Mac and that allowed the build process to get past that error and it seems to fully build, though it can't deploy due to an issue with the iOS version.\n\n### Steps to Reproduce\n\nI don't know. I have had to do so many things to get to this point with a brand new Mac and an app that has never been built for iOS before.\n\n### Did you find any workaround?\n\nYes, I copied the file from my Windows machine to the Mac, overwriting the 0-byte file. \n\n### Build logs\n\n_No response_","reference_answer":"It's a known issue, and there's a proposal to improve this scenario: URL (which also explains the reason why it behaves like it does today).","answer_document_id":"gh_comment_2684410954","silver_evidence_path":["gh_comment_2676983958","gh_issue_2873322464","gh_comment_2684410954"],"known_context_document_ids":["gh_issue_2870172979"],"evidence_issue_ids":[2870172979,2873322464],"source_repo_name":"dotnet/macios","source_issue_id":2870172979,"source_issue_url":"https://github.com/dotnet/macios/issues/22235","target_repo_name":"dotnet/macios","target_issue_id":2873322464,"target_issue_url":"https://github.com/dotnet/macios/issues/22238","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0043","query":"Run DLL error after start?","query_context":"**Describe the bug**\nAfter start of bleachbit I see a popup with an error message \"the module was not found\"\n\n**To Reproduce**\nSteps to reproduce the behavior:\n1. Install Bleachbit\n2. Start Bleachbit\n3. See error\n\nThe error happens every time.\n\n**Expected behavior**\nNo error popup.\n\n**Screenshots**\nImage\n\n**Desktop (please complete the following information):**\n - OS: Windows 11\n - BleachBit version 4.6.2","reference_answer":"@mr-brunes \n@harkinhails \n\nRecently there were major upgrades in the Python framework that may help. Would you please test one of these options?\n\n1. BleachBit 4.9.0 alpha is based on Python 3.10 and is digitally signed\n2. BleachBit 4.9.1 CI build 2775 , based in Python 3.11, is newer but is not digitally signed.\n\nBoth have known issues, so may not be ideal for everyday use. However, testing would tell us a lot about whether the Python upgrade fixed the issue.\n\nA workaround is install BleachBit in a folder without a space such as \n* `c:\\bleachbit`\n* `d:\\bleachbit\n* `d:\\program_files_x86\\bleachbit`\n\nPlease let me know what you find out.","answer_document_id":"gh_comment_2669987493","silver_evidence_path":["gh_comment_2669986301","gh_issue_2340729855","gh_comment_2669987493"],"known_context_document_ids":["gh_issue_2864436529"],"evidence_issue_ids":[2864436529,2340729855],"source_repo_name":"bleachbit/bleachbit","source_issue_id":2864436529,"source_issue_url":"https://github.com/bleachbit/bleachbit/issues/1778","target_repo_name":"bleachbit/bleachbit","target_issue_id":2340729855,"target_issue_url":"https://github.com/bleachbit/bleachbit/issues/1685","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0044","query":"New styles for footer actions?","query_context":"Here are the styles of this specific component:\n\nImage\n\nAnd more generally of all dropdowns like this: URL \n\nIdeally weād only get to this after @wagtail/gsoc-ux-unification has implemented their changes to the JS side of this. \n\nNote for footer actions ā there is much more than just the dropdown, we also need to make sure the new styles work with the bulk chooserās components, and with our dirty form check messages.\n\nAs part of this, we could also add this component to the user creation screen to help with #5906. Ideally #7366, #6591, #7650 will have also been fixed.\n\nSub-tasks:\n\n- [x] Re-implement dropdown buttons with Tippy\n- [x] Re-implement bulk actions + button styles according to new designs\n- [x] Include styleguide improvements for warning buttons URL","reference_answer":"@Nazi-pikachu no as you can see in my description above this is blocked by two other issues.","answer_document_id":"gh_comment_1377145095","silver_evidence_path":["gh_comment_1898097534","gh_issue_1527230646","gh_comment_1377145095"],"known_context_document_ids":["gh_issue_1342641565"],"evidence_issue_ids":[1342641565,1527230646],"source_repo_name":"wagtail/wagtail","source_issue_id":1342641565,"source_issue_url":"https://github.com/wagtail/wagtail/issues/9030","target_repo_name":"wagtail/wagtail","target_issue_id":1527230646,"target_issue_url":"https://github.com/wagtail/wagtail/issues/9869","split":"test","quality_score":91.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0046","query":"There is a probability of crashing when using Warhammer right-click to attack creatures?","query_context":"version 1.20.1\nforge 47.3.1\nweaponmod-forge-1.20.1-1.21.3\narchitectury-9.2.14-forge\ncloth-config-11.1.118-forge\nThere is a probability of crashing when using Warhammer right-click to attack creatures.\nI really like this mod.\nAlso, my English is not good, so I used mechanical translation.","reference_answer":"Alright, I've looked into this again. Not sure where my head was at before, but I've reverted my previous changes, applied the suggested changes, and released a new version.\nThanks again @XFactHD for your input!","answer_document_id":"gh_comment_1406683731","silver_evidence_path":["gh_comment_2199311190","gh_issue_1511265531","gh_comment_1406683731"],"known_context_document_ids":["gh_issue_2382678492"],"evidence_issue_ids":[2382678492,1511265531],"source_repo_name":"ThexXTURBOXx/Balkons-WeaponMod-Legacy","source_issue_id":2382678492,"source_issue_url":"https://github.com/ThexXTURBOXx/Balkons-WeaponMod-Legacy/issues/45","target_repo_name":"CyclopsMC/EvilCraft","target_issue_id":1511265531,"target_issue_url":"https://github.com/CyclopsMC/EvilCraft/issues/961","split":"test","quality_score":75.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0047","query":"[PT Run] [Time and Date plugin] Allow custom format string?","query_context":"### Description of the new feature / enhancement\n\nThe PR #16662 implements a new plugin for date and time values.\n\nIt might be interesting to support custom format string as user input like the wox plugin \"DateTimeFormatter\".\n\n### Scenario when this would be used?\n\nIf the user needs an unsupported format.\n\n### Supporting information\n\n URL \n\n---\n\nā The work on this enhancement can't begin before the plugin code is merged into main branch!!","reference_answer":"@Picazsoo \nGreat request. Feel free to open the PR. Your contribution is welcome. If you need any help, you can ask me.\n\nI personally prefer `YYYY-MM-DD_HH-MM-SS` in my file names. Not sure what's better or if we need both variations/a setting.","answer_document_id":"gh_comment_1482750791","silver_evidence_path":["gh_comment_1475403472","gh_issue_1631100144","gh_comment_1482750791"],"known_context_document_ids":["gh_issue_1164290560"],"evidence_issue_ids":[1164290560,1631100144],"source_repo_name":"microsoft/PowerToys","source_issue_id":1164290560,"source_issue_url":"https://github.com/microsoft/PowerToys/issues/16934","target_repo_name":"microsoft/PowerToys","target_issue_id":1631100144,"target_issue_url":"https://github.com/microsoft/PowerToys/issues/24911","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0049","query":"InputImageRotation issues: Vertical images are not working, etc...","query_context":"In Flutter I am trying to detect text from images in horizontal orientation is working perfectly but Vertical orientation text is not detected.\nI am using the google_ml_kit plugin.\nAnyone has a solution for this or another way to achieve this functionality.\n\nHere you can check it is working with native android :- URL","reference_answer":"Closing this issue.\n\nFix: google_mlkit_text_recognition instead of `google_ml_kit`.\n\nMore details here: URL \n\nMoving `InputImage` and `InputImageRotation` issues to: URL","answer_document_id":"gh_comment_1113691037","silver_evidence_path":["gh_comment_1113685031","gh_issue_1212534085","gh_comment_1113691037"],"known_context_document_ids":["gh_issue_1220531565"],"evidence_issue_ids":[1220531565,1212534085],"source_repo_name":"flutter-ml/google_ml_kit_flutter","source_issue_id":1220531565,"source_issue_url":"https://github.com/flutter-ml/google_ml_kit_flutter/issues/240","target_repo_name":"bharat-biradar/Google-Ml-Kit-plugin","target_issue_id":1212534085,"target_issue_url":"https://github.com/bharat-biradar/Google-Ml-Kit-plugin/issues/231","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0050","query":"SharePoint Online API: Access denied creating Personal Site when passing Signed In User Bearer Token?","query_context":"#### Category\n- [ ] Question\n- [ ] Typo\n- [x] Bug\n- [ ] Additional article idea\n\n#### Expected or Desired Behavior\n\nThe below HTTP call should create a new personal site for the user\n\nPOST /_vti_bin/client.svc/ProcessQuery HTTP/1.1\nHost: tenant-admin.sharepoint.com\nContent-Type: application/xml\nAuthorization: Bearer \n\n \n \n \n \n \n user@tenant.onmicrosoft.com \n \n \n \n \n \n \n \n \n\n#### Observed Behavior\n\nAbove request results in `200 OK` response but returns the below error, no personal site is created for the user.\n\n[\n {\n \"SchemaVersion\": \"15.0.0.0\",\n \"LibraryVersion\": \"16.0.19318.12002\",\n \"ErrorInfo\": {\n \"ErrorMessage\": \"Access denied. You do not have permission to perform this action or access this resource.\",\n \"ErrorValue\": null,\n \"TraceCorrelationId\": \"7c05089f-70d6-1000-af48-5aaa8564ad67\",\n \"ErrorCode\": -2147024891,\n \"ErrorTypeName\": \"System.UnauthorizedAccessException\"\n },\n \"TraceCorrelationId\": \"7c05089f-70d6-1000-af48-5aaa8564ad67\"\n }\n]\n\n#### Steps to Reproduce\n\n- Create Azure AD application\n- Set the following delegate SharePoint Online API permissions\n - AllSites.FullControl\n - User.ReadWrite.All\n- Grant Admin consent for delegated permissions\n- Generate Bearer Token using OAuth 2.0 Authorization Code Flow\n - Provide Tenant Admin credentials\n- Pass Bearer Token in Authorisation header of request\n\n#### Related Issues\n\n URL \n URL \n URL","reference_answer":"Unfortunately the SharePoint Online support engineers are not always 100% up to date about the limitations of their own products... :-( In this case the issue lies with the fact that a requested permission through an Azure AD application grant is not being recognized by SharePoint online specifically when it comes to the UPS (User Profile Service Application). With -UseWebLogin we use a different type of authentication (cookiebased/legacy) where as with all the other authentication methods we use the currently by Microsoft promoted way of authentication : Azure AD OAuth. We switched over to Azure AD OAuth as the default as more and more API requests we need to make are located in the Microsoft Graph. And the MS Graph only supports Azure AD OAuth. \n\nIn order for the OAuth authentication flow to work one needs to grant permissions to an Azure AD App registration, either a multi-tenant one alike the PnP Management Shell, or your own registered one. Our tests show that while the correct permissions are in place, SPO is not allowing the user to perform the actions. We brought this up with the product manager in charge of those APIs back then but are still awaiting feedback.","answer_document_id":"gh_comment_861545754","silver_evidence_path":["gh_comment_2721677638","gh_issue_808356405","gh_comment_861545754"],"known_context_document_ids":["gh_issue_497145561"],"evidence_issue_ids":[497145561,808356405],"source_repo_name":"SharePoint/sp-dev-docs","source_issue_id":497145561,"source_issue_url":"https://github.com/SharePoint/sp-dev-docs/issues/4673","target_repo_name":"pnp/powershell","target_issue_id":808356405,"target_issue_url":"https://github.com/pnp/powershell/issues/277","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0051","query":"Issues when running on fly genome?","query_context":"Hello Andrey:\nI have worked with isoquant output on mouse genome and find it super cool. So now I tried to run isoquant on long read seq from a fly RNA seq data, with the attempt to get de novo transcripts in specific knockout model. But it seems to be not working.\nMy line was: \nisoquant.py \\\n--reference/homes/01/dmmccormick/oliviaao/Genome_assembly_Release_6_plus_ISO1_MT/GCF_000001215.4_Release_6_plus_ISO1_MT_genomic.fna \\\n--bam METTL3_KO_LacZ_RNAi.bc_3_sorted.bam \\\n--data_type nanopore \\\n-o METTL3_KO_LacZ \\\n\nBelow is the error I encountered:\n2025-06-11 14:32:32,590 - CRITICAL - IsoQuant failed with the following error, please, submit this issue to URL (most recent call last):\n File \"/homes/01/dmmccormick/miniconda3/envs/isoquant/bin/isoquant.py\", line 870, in \n File \"/homes/01/dmmccormick/miniconda3/envs/isoquant/bin/isoquant.py\", line 864, in main\n File \"/homes/01/dmmccormick/miniconda3/envs/isoquant/bin/isoquant.py\", line 814, in run_pipeline\n File \"/homes/01/dmmccormick/miniconda3/envs/isoquant/share/isoquant-3.7.0-0/src/dataset_processor.py\", line 432, in process_all_samples\n File \"/homes/01/dmmccormick/miniconda3/envs/isoquant/share/isoquant-3.7.0-0/src/dataset_processor.py\", line 456, in process_sample\n File \"/homes/01/dmmccormick/miniconda3/envs/isoquant/share/isoquant-3.7.0-0/src/dataset_processor.py\", line 547, in collect_reads\n File \"/homes/01/dmmccormick/miniconda3/envs/isoquant/share/isoquant-3.7.0-0/src/dataset_processor.py\", line 595, in resolve_multimappers\nOSError: [Errno 24] Too many open files: 'METTL3_KO_LacZ/OUT/aux/OUT.save_multimappers_NW_001846120.1'\n\nOn the other hand, I also tried running isoquant with all the parameters by\n--reference /homes/01/dmmccormick/oliviaao/Genome_assembly_Release_6_plus_ISO1_MT/GCF_000001215.4_Release_6_plus_ISO1_MT_genomic.fna \\\n--genedb /homes/01/dmmccormick/oliviaao/Genome_assembly_Release_6_plus_ISO1_MT/GCF_000001215.4_Release_6_plus_ISO1_MT_genomic.gtf \\\n--bam METTL3_KO_LacZ_RNAi.bc_3_sorted.bam \\\n--data_type nanopore \\\n-o METTL3_KO_LacZ \\\nThis line of code gives me a different error by telling me the GTF file is corrupted. But this GTF file is directly downloaded from NCBI without no modification to anything...?\n\nPlease let me know if you could help with these errors, and what I could do to help in this process.\nThank you\n\nOlivia","reference_answer":"Dear @biochristmas \n\nThe correct command is `ulimit -n`, while you mentioned you used `ulimit -c`. Could you try -n option and see if it helps?\n\nBest\nAndrey","answer_document_id":"gh_comment_1908560795","silver_evidence_path":["gh_comment_2976657420","gh_issue_2054749079","gh_comment_1908560795"],"known_context_document_ids":["gh_issue_3137931074"],"evidence_issue_ids":[3137931074,2054749079],"source_repo_name":"ablab/IsoQuant","source_issue_id":3137931074,"source_issue_url":"https://github.com/ablab/IsoQuant/issues/316","target_repo_name":"ablab/IsoQuant","target_issue_id":2054749079,"target_issue_url":"https://github.com/ablab/IsoQuant/issues/133","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0052","query":"[FP]: Wrongly reporting vulnerability CVE-2021-41033 on org.eclipse.osgi-3.18.0?","query_context":"### Package URl\n\npkg:maven/org.eclipse.platform/org.eclipse.osgi@3.18.0\n\n### CPE\n\ncpe:2.3:a:eclipse:equinox:*:*:*:*:*:*:*:* versions up to (excluding) 4.21\n\n### CVE\n\nCVE-2021-41033\n\n### ODC Integration\n\n{\"label\"=>\"Maven Plugin\"}\n\n### ODC Version\n\n8.3.1\n\n### Description\n\nPer CVE Affected component: \nEclipse Equinox, at least until version 4.21\ncpe:2.3:a:eclipse:equinox:*:*:*:*:*:*:*:* versions up to (excluding) 4.21\n\nonly 3PP \"org.eclipse.osgi-3.18.0.jar\" used, but NOT packing/using the vulnerable 3PP component \"Eclipse Equinox\", even they are NOT packed as indirect dependency in the environment. And this vulnerability is more specific to IDE and the plugin installation of eclipse. But tool is reporting this vulnerability on org.eclipse.osgi-3.18.0.jar, which is wrong.\n\nFrom Dependency Check tool team, we need confirmation on these false positives. Could you please validate and confirm?","reference_answer":"Yes I think this is good, because even today I see a lot of \"unsave http\" warnings but no one seems to care!\nMaking it default redirect seems not to improve the situation here, so I think it should really not be the default.\n\nSadly the current implementation is only on the transport level otherwise I could think about something like even asking the user the same way as we ask for certificates:\n\n- Skip the mirror / edit the location\n- Try https instead\n- use http even if its unsecure\n\nAt least I think (depending on the setting) P2 might want to filter out unsecure mirrors and somehow notify them that they have to upgrade to https, e.g. by getting a list of mirrors that currently use unsafe transports.\n\nFor the UI, I think there should be a Warning whenever there is a site added with http and ask the user:\n\n1. Try https instead\n2. cancel the operation\n\nIt would therefore also be good to ask on start if one wants to convert all http -> https ...","answer_document_id":"gh_comment_1480705821","silver_evidence_path":["gh_comment_1946930733","gh_issue_1634204129","gh_comment_1480705821"],"known_context_document_ids":["gh_issue_1854278536"],"evidence_issue_ids":[1854278536,1634204129],"source_repo_name":"dependency-check/DependencyCheck","source_issue_id":1854278536,"source_issue_url":"https://github.com/dependency-check/DependencyCheck/issues/5881","target_repo_name":"eclipse-equinox/p2","target_issue_id":1634204129,"target_issue_url":"https://github.com/eclipse-equinox/p2/issues/230","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0053","query":"Transfer Ownership?","query_context":"**Nextcloud (please complete the following information):**\n- Nextcloud-Version: 22.2.5\n- Forms-Version: 2.4.0\n\n**Is your feature request related to a problem? Please describe.**\nNextcloud is used by many companies, that implies staff turnover and leaving employees. If the account is disabled or deleted, we lost access to the forms and related data. \n\n**Describe the solution you'd like**\nWe would like to be able to transfer forms ownership from an user to another, using occ commands and/or a web gui option.\n\n**Describe alternatives you've considered**\nI thought about changing manually the db, but it seems touchy and I cannot give control to it through my userbase. \n\n**Additional context**\nIf this isn't a regular use case, I think it may tend to become one as Nextcloud seems to be more and more used by privacy-concerned companies. Nextcloud Files and Calendar are already proposing such a feature, it's a shame that this is not \"standardized\".\n\nThanks for your reading and thanks for the amount of work you're placing on Nextcloud as a whole.","reference_answer":"Itās set for 4.0 so not urgent, but also definitely not wontfix. It already came up in our own little usecase that we needed the marketing team and me to have access to the Forms.","answer_document_id":"gh_comment_647549602","silver_evidence_path":["gh_comment_1146586198","gh_issue_610258798","gh_comment_647549602"],"known_context_document_ids":["gh_issue_1157247336"],"evidence_issue_ids":[1157247336,610258798],"source_repo_name":"nextcloud/forms","source_issue_id":1157247336,"source_issue_url":"https://github.com/nextcloud/forms/issues/1131","target_repo_name":"nextcloud/forms","target_issue_id":610258798,"target_issue_url":"https://github.com/nextcloud/forms/issues/322","split":"test","quality_score":85.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0054","query":"Rust TL-B serialization?","query_context":"### Summary\n\nTL-B serialization is a fundamental component of the TON blockchain, enabling the encoding and decoding of data structures in a compact, efficient, and schema-based binary format. To provide Rust developers with seamless support for this critical feature, we propose developing a TL-B serialization library in Rust. This library will allow developers to work with TL-B schemas directly in their Rust applications, enhancing the capabilities of TON-based tools and services.\n\n### Context\n\nThe TL-B (Type Language - Binary) format is widely used within the TON blockchain for serializing and deserializing data structures, such as messages, cells, and state data. While other programming languages have partial implementations or utilities for TL-B serialization, Rust lacks a comprehensive and developer-friendly library tailored for this purpose. By creating a dedicated TL-B serialization library in Rust, we can empower developers to build efficient and reliable applications in the TON ecosystem. Key features of the proposed library include:\n ⢠Support for defining and parsing TL-B schemas directly in Rust.\n ⢠Serialization and deserialization of TL-B data structures into binary format.\n ⢠Bit-level data manipulation for precise TL-B compliance.\n ⢠Recursive structure handling for complex TL-B schemas.\n ⢠Error handling to ensure data integrity and conformity with TL-B specifications.\n ⢠Integration with existing TON blockchain tools, such as tonlibjson, for seamless workflows.\n \nSuppose we have a simple TL-B schema:\nuse std::io::{self, Read, Write};\n\n// Example struct matching the TL-B schema\nstruct User {\n text: String,\n age: i32,\n}\n\n// Serialization\nimpl User {\n fn serialize(&self, writer: &mut impl Write) -> io::Result {\n // Serialize the text as a string (length-prefixed, for example)\n let text_bytes = self.text.as_bytes();\n let length = text_bytes.len() as u32;\n writer.write_all(&length.to_be_bytes())?;\n writer.write_all(text_bytes)?;\n\n // Serialize the age as a 32-bit integer\n writer.write_all(&self.age.to_be_bytes())?;\n Ok(())\n }\n\n // Deserialization\n fn deserialize(reader: &mut impl Read) -> io::Result {\n // Read the text length\n let mut length_bytes = [0u8; 4];\n reader.read_exact(&mut length_bytes)?;\n let length = u32::from_be_bytes(length_bytes);\n\n // Read the text\n let mut text_bytes = vec![0u8; length as usize];\n reader.read_exact(&mut text_bytes)?;\n\n // Read the age\n let mut age_bytes = [0u8; 4];\n reader.read_exact(&mut age_bytes)?;\n let age = i32::from_be_bytes(age_bytes);\n\n Ok(Self {\n text: String::from_utf8(text_bytes).unwrap(),\n age,\n })\n }\n}\n\n### References\n\nDevelop a Rust library that implements TL-B serialization, enabling developers to encode, decode, and manipulate TL-B data structures effortlessly within Rust applications.\n\n### Estimate suggested reward\n\n$5,000 USD in TON equivalent","reference_answer":"### @mitinarseny thank you for the contribution!\n\nTo accurately recognize your **valuable contributions** in our repository, we kindly request you to submit a Pull Request to the Hall of Fame file, providing the wallet address and a link to the bounty with the number.\n\nPlease follow these steps:\n1) Fork the repository (if you haven't already).\n2) Edit the Hall of Fame file, commit, and push your changes.\n3) Create a Pull Request from your fork to the main repository, providing the wallet address and a link to the bounty with the number (for example, Pull Request URL \nFor reference on what your entry should look like, please see the examples of past merged pull requests.\n\n4) And please follow the questbook proposal stage in accordance with the bounty guideline","answer_document_id":"gh_comment_2202141267","silver_evidence_path":["gh_comment_2483706487","gh_issue_2145953947","gh_comment_2202141267"],"known_context_document_ids":["gh_issue_2669308519"],"evidence_issue_ids":[2669308519,2145953947],"source_repo_name":"ton-society/grants-and-bounties","source_issue_id":2669308519,"source_issue_url":"https://github.com/ton-society/grants-and-bounties/issues/874","target_repo_name":"ton-society/grants-and-bounties","target_issue_id":2145953947,"target_issue_url":"https://github.com/ton-society/grants-and-bounties/issues/444","split":"test","quality_score":77.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0055","query":"iOS return 500 while using flutter uploader with version 1.x?","query_context":"For android the flutter uploader works fine, the server able to upload the data. But for iOS, I meet this issue.\n3f1086db-3486-42f2-9b66-d2523640280f\n\nThen, I have tried the flutter uploader with version 3.0 beta, it didn't appear this error, but it straight went into this line first and the progress automatically = 100\n uploader.result.listen((result) {\n BotToast.showText(text:\"Complete\");\n }\n instead of this\n uploader.progress.listen((progress) {\n BotToast.showText(text:progress.progess.toString());\n }\n \nthen it automatically run 2nd time ( uploader.enqueue() ) then start from listening the progress=0. When the progress =100 and result = UploadTaskStatus.complete , it did toast the complete but my server couldn't receive any data from it.","reference_answer":"What content type is the file you are uploading? You need to match it using `Content-Type`.","answer_document_id":"gh_comment_1287397857","silver_evidence_path":["gh_comment_1152243497","gh_issue_1040395068","gh_comment_1287397857"],"known_context_document_ids":["gh_issue_933380033"],"evidence_issue_ids":[933380033,1040395068],"source_repo_name":"fluttercommunity/flutter_uploader","source_issue_id":933380033,"source_issue_url":"https://github.com/fluttercommunity/flutter_uploader/issues/184","target_repo_name":"fluttercommunity/flutter_uploader","target_issue_id":1040395068,"target_issue_url":"https://github.com/fluttercommunity/flutter_uploader/issues/204","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0056","query":"Add an unauthenticated GetDataHolderBrands endpoint exposed as a public API?","query_context":"# Description\nAs part of the API Uplift for Data Holder Multi-Sector support #424, there are considerations to be made on how the GetDataHolderBrands endpoint can be augmented to allow unauthenticated client access.\n\nThis piece of work has been extracted into its own change request to allow this topic to be considered beyond maintenance iteration 9.\n\n# Area Affected\nRegister APIs will need to be structured to expose GetDataHolderBrands information from a public API\n\n# Change Proposed\n\nThe following changes are proposed:\n\n1. Create a new GetDataHolderBrands endpoint returning the same payload in time for energy\n2. Move this endpoint out of the secure domain, removing MTLS and authentication requirements\n3. Move this endpoint into the public API domain, allowing the API to be accessible via CDN and leverage ETags\n4. Add industry filtering behaviour:\n⢠Default: All data holder brands will be returned\n⢠Query parameter filter: allow filtering by industry sector\n5. Remove paging, aligning the response definition to other public APIs\n\n## Options:\n1. Create an unauthenticated Data Holder Brands API returning the same content as the current authenticated API. The authenticated version of the API will be deprecated once a schedule has been determined\n\n2. Create an unauthenticated Data Holder Brands API returning a subset of the content currently returned in the authenticated API. Security endpoint information would NOT be included in this API. Both the authenticated and unauthenticated APIs would be maintained.\n\n## Considerations:\n\n- What are the consequences of making this information available publicly?\n- What are the use cases which will be used from the public and authenticated APIs?","reference_answer":"A dependency date was set as 15 November 2022 to align with the Energy release timeframe and considerations to change this date will be discussed further through Issue #507 in Maintenance Iteration 11.\n\nThis change was incorporated into release v1.17.0.\n\nPlease refer to Decision 237 for further details.","answer_document_id":"gh_comment_1138120421","silver_evidence_path":["gh_comment_1107363878","gh_issue_1164638186","gh_comment_1138120421"],"known_context_document_ids":["gh_issue_1067844680"],"evidence_issue_ids":[1067844680,1164638186],"source_repo_name":"ConsumerDataStandardsAustralia/standards-maintenance","source_issue_id":1067844680,"source_issue_url":"https://github.com/ConsumerDataStandardsAustralia/standards-maintenance/issues/444","target_repo_name":"ConsumerDataStandardsAustralia/standards-maintenance","target_issue_id":1164638186,"target_issue_url":"https://github.com/ConsumerDataStandardsAustralia/standards-maintenance/issues/488","split":"test","quality_score":93.03,"annotation_level":"silver"}
{"query_id":"cross_issue_0057","query":"Cannot handle enums with numeric fields?","query_context":"### Expected Behavior\n\nWhen presented with enum with number fields (e.g. `FOO(1)`), it should respect `@JsonValue` and `@JsonCreator` and should compile.\n\n### Actual Behaviour\n\nWhen running the test, compilation fails with\n\n Caused by: com.fasterxml.jackson.databind.JsonMappingException: Cannot deserialize value of type `java.lang.Number` from String \"EdDSA\": not a valid number\n\nThis works fine in micronaut 3.\n\nThe error does not really make sense as the enum should be serialized to a number (based on `@JsonValue`) and never be in the string form. \n\n### Steps To Reproduce\n\n1. Clone URL \n2. Run the test and see compilation fail with the above error (it does not even get to running the test)\n3. Adjust the HelloController to use COSEAlgorithmIdentifier2 (with 2 suffix). This uses `@JsonProperty` instead\n4. Re-run the test and see it pass\n\nRaising this in micronaut repo, as the same enum class serializes and deserializes fine with jackson by itself.\n\n### Environment Information\n\n- OSX\n- JDK 21\n- Micronaut 4.0.0 -> 4.7.6\n\n### Example Application\n\n URL \n\n### Version\n\n4.7.6","reference_answer":"The problem is here: URL \n\nOpenApi calls `.values()` to get the values of the enum. This calls (for Java) the following in core URL \n\nThe problem is that inside that code (even if we copy it to the openapi module) we don't have access to any bean metadata that Micronaut produces. All the `Element`s in the stream are javax elements and not Micronaut. I don't see a way to check if those element have the appropriate annotation to generate the right value instead of the `toString()` that it's done at this moment.\n\n@graemerocher any thoughts if there is a way to do this?","answer_document_id":"gh_comment_1019896924","silver_evidence_path":["gh_comment_2670539764","gh_issue_812077811","gh_comment_1019896924"],"known_context_document_ids":["gh_issue_2865142438"],"evidence_issue_ids":[2865142438,812077811],"source_repo_name":"micronaut-projects/micronaut-openapi","source_issue_id":2865142438,"source_issue_url":"https://github.com/micronaut-projects/micronaut-openapi/issues/1996","target_repo_name":"micronaut-projects/micronaut-openapi","target_issue_id":812077811,"target_issue_url":"https://github.com/micronaut-projects/micronaut-openapi/issues/471","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0058","query":"Deno add - \"Failed to install from package.json\" \"Unexpected character.\"?","query_context":"Version: Deno 2.0.4\n\n$ deno add npm:debug\nAdd npm:debug@4.3.7\nerror: Failed to install from package.json\n\nCaused by:\n 0: Invalid version requirement\n 1: Unexpected character.\n ^\n ~\n$ cat deno.json\n{\n \"name\": \"...\",\n \"description\": \"...\",\n \"version\": \"3.0.0-alpha.5\",\n \"exports\": \"./src/index.ts\",\n \"tasks\": {\n \"build\": \"deno run --allow-read --allow-write scripts/export-json-schema.ts\",\n \"coverage\": \"deno coverage | deno run jsr:@silverbucket/threshold 100 88\",\n \"test\": \"deno test --coverage --clean --allow-env src/**/*.test.ts\"\n },\n \"imports\": {\n \"@silverbucket/threshold\": \"jsr:@silverbucket/threshold@1.0.2\",\n \"@types/node\": \"npm:@types/node@22.5.0\",\n \"@types/debug\": \"npm:@types/debug@4.1.12\",\n \"ajv\": \"npm:ajv@8.12.0\",\n \"ajv-formats\": \"npm:ajv-formats@2.1.1\",\n \"@silverbucket/ajv-formats-draft2019\": \"jsr:@silverbucket/ajv-formats-draft2019@1.6.1\",\n \"debug\": \"npm:debug@4.3.7\"\n }\n}","reference_answer":"It looks good, but I think we probably dont' need any changes in deno_semver. Probably it could just be handled in deno_package_json (I'm not sure though)","answer_document_id":"gh_comment_2484503489","silver_evidence_path":["gh_comment_2541975358","gh_issue_2634017203","gh_comment_2484503489"],"known_context_document_ids":["gh_issue_2625657914"],"evidence_issue_ids":[2625657914,2634017203],"source_repo_name":"denoland/deno","source_issue_id":2625657914,"source_issue_url":"https://github.com/denoland/deno/issues/26653","target_repo_name":"denoland/deno","target_issue_id":2634017203,"target_issue_url":"https://github.com/denoland/deno/issues/26726","split":"test","quality_score":82.05,"annotation_level":"silver"}
{"query_id":"cross_issue_0059","query":"Evaluate DAG versioning & bundles with a Airflow 3 pre-release?","query_context":"**What we want to do**\n\nEvaluate how DAG Bundles and DAG versioning are behaving with Cosmos.\n\nTry out Airflow 3.0 with Cosmos example DAGs:\n\nCOMMIT_SHA=573cd95 AIRFLOW_HOME=$(pwd) uvx \\\n --python 3.11 \\\n --from \"git+ URL \\\n --with \"git+ URL \\\n --with \"git+ URL \\\n bash -c \"\n cd \\$(python -c 'import airflow, os; print(os.path.dirname(airflow.__file__))') && \\\n # Build the new UI (located in the 'ui' directory)\n cd ui && pnpm install && pnpm build && \\\n # Build the legacy UI (located in the 'www' directory)\n cd ../www && yarn install --frozen-lockfile && yarn run build && \\\n airflow standalone\n \"\n\nSee the UI working in:\n URL \n URL \n\nFocus on the work of these AIPs:\n* AIP-63: DAG Versioning\n* AIP-66: DAG Bundles & Parsing\n\n**Acceptance criteria**\n\n* [ ] Document which Airflow/Cosmos version was tested\n* [ ] Raise any concerns and problems faced with @jedcunningham and team\n* [ ] Have an action plan","reference_answer":"Create a PR isolating changes and add conditionals so we can all work using this same code base","answer_document_id":"gh_comment_2748459590","silver_evidence_path":["gh_comment_2733210868","gh_issue_2928438849","gh_comment_2748459590"],"known_context_document_ids":["gh_issue_2809003806"],"evidence_issue_ids":[2809003806,2928438849],"source_repo_name":"astronomer/astronomer-cosmos","source_issue_id":2809003806,"source_issue_url":"https://github.com/astronomer/astronomer-cosmos/issues/1488","target_repo_name":"astronomer/astronomer-cosmos","target_issue_id":2928438849,"target_issue_url":"https://github.com/astronomer/astronomer-cosmos/issues/1621","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0060","query":"roachtest: cdc/schemareg failed?","query_context":"roachtest.cdc/schemareg failed with artifacts on release-22.1 @ 000c9624b56b09d5fbd06557c559b2f910142a9c:\n\nThe test failed on branch=release-22.1, cloud=gce:\ntest artifacts and logs in: /artifacts/cdc/schemareg/run_1\n cdc.go:514,cdc.go:883,test_runner.go:883: pq: Use of CHANGEFEED requires an enterprise license. Your evaluation license expired on December 30, 2022. If you're interested in getting a new license, please contact subscriptions@cockroachlabs.com and we can help you out.\n\n cluster.go:1934,cdc.go:1449,panic.go:1038,test_impl.go:248,cdc.go:514,cdc.go:883,test_runner.go:883: cluster.RunE: context canceled\n (1) attached stack trace\n -- stack trace:\n | main.(*clusterImpl).RunE\n | main/pkg/cmd/roachtest/cluster.go:1951\n | main.(*clusterImpl).Run\n | main/pkg/cmd/roachtest/cluster.go:1932\n | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests.kafkaManager.stop\n | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests/cdc.go:1449\n | runtime.gopanic\n | GOROOT/src/runtime/panic.go:1038\n | main.(*testImpl).Fatal\n | main/pkg/cmd/roachtest/test_impl.go:248\n | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests.runCDCSchemaRegistry\n | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests/cdc.go:514\n | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests.registerCDC.func10\n | github.com/cockroachdb/cockroach/pkg/cmd/roachtest/tests/cdc.go:883\n | main.(*testRunner).runTest.func2\n | main/pkg/cmd/roachtest/test_runner.go:883\n | runtime.goexit\n | GOROOT/src/runtime/asm_amd64.s:1581\n Wraps: (2) cluster.RunE\n Wraps: (3) context canceled\n Error types: (1) *withstack.withStack (2) *errutil.withPrefix (3) *errors.errorString\n\n Help \n \n\nSee: roachtest README\n\nSee: How To Investigate \\(internal\\)\n\n \n \n/cc @cockroachdb/cdc\n \n\nThis test on roachdash | Improve this report!\n \n\nJira issue: CRDB-22922","reference_answer":"roachtest.cdc/schemareg failed with artifacts on release-22.2 @ 07a53a36601e9ca5fcffcff55f69b43c6dfbf1c1:\n\ntest artifacts and logs in: /artifacts/cdc/schemareg/run_1\n(test_impl.go:286).Fatal: pq: Use of CHANGEFEED requires an enterprise license. Your evaluation license expired on December 30, 2022. If you're interested in getting a new license, please contact subscriptions@cockroachlabs.com and we can help you out.\n(test_impl.go:286).Fatal: cluster.RunE: context canceled\n\n Parameters: ROACHTEST_cloud=gce \n, ROACHTEST_cpu=4 \n, ROACHTEST_encrypted=false \n, ROACHTEST_fs=ext4 \n, ROACHTEST_localSSD=true \n, ROACHTEST_ssd=0 \n \n Help \n \n\nSee: roachtest README\n\nSee: How To Investigate \\(internal\\)\n\n \n \n Same failure on other branches \n \n\n- #94502 roachtest: cdc/schemareg failed [C-test-failure O-roachtest O-robot T-cdc branch-master release-blocker]\n- #94482 roachtest: cdc/schemareg failed [C-test-failure O-roachtest O-robot T-cdc branch-release-22.1 release-blocker]\n \n \n \n\nThis test on roachdash | Improve this report!","answer_document_id":"gh_comment_1369468438","silver_evidence_path":["gh_comment_1368373729","gh_issue_1515049216","gh_comment_1369468438"],"known_context_document_ids":["gh_issue_1515042175"],"evidence_issue_ids":[1515042175,1515049216],"source_repo_name":"cockroachdb/cockroach","source_issue_id":1515042175,"source_issue_url":"https://github.com/cockroachdb/cockroach/issues/94482","target_repo_name":"cockroachdb/cockroach","target_issue_id":1515049216,"target_issue_url":"https://github.com/cockroachdb/cockroach/issues/94496","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0061","query":"Default shortcut keys cannot be used.","query_context":"os:ubuntu22.04\nyazi version: 25.3.7\n\nInstall and configure according to the instructions in the readme.","reference_answer":"Wow, thanks! I rarely start `nvim .` myself so I didn't know about it.\n\nBut I can reproduce it too, although it happens so fast on my machine that I missed it previously. I'll add a note about this to the docs for now.\n\nI don't know if it's possible to automatically apply this at the correct time with this solution, but at least people can now copy paste this into their configs.","answer_document_id":"gh_comment_2694776475","silver_evidence_path":["gh_comment_2733104647","gh_issue_2889886478","gh_comment_2694776475"],"known_context_document_ids":["gh_issue_2924079161"],"evidence_issue_ids":[2924079161,2889886478],"source_repo_name":"mikavilpas/yazi.nvim","source_issue_id":2924079161,"source_issue_url":"https://github.com/mikavilpas/yazi.nvim/issues/830","target_repo_name":"mikavilpas/yazi.nvim","target_issue_id":2889886478,"target_issue_url":"https://github.com/mikavilpas/yazi.nvim/issues/802","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0062","query":"Recursively controlling a circuit takes exponential time and memory?","query_context":"### Environment\n\n- **Qiskit version**: 1.0\n- **Python version**: 3.12\n- **Operating system**: OSX and Linux\n \n\n### What is happening?\n\nRecursively adding controls to an initial sub-circuit will cause Qiskit to hang, using up ever increasing CPU and memory resources. E.g. the below will never complete, but taking `N=5` or so will.\n\npython\n\nN = 10\nsub_qc = QuantumCircuit(1)\nsub_qc.x(0)\n\nout = QuantumCircuit(N)\nout.compose(sub_qc,range(sub_qc.num_qubits), inplace=True)\n\nfor kk in range(N-1):\n sub_qc = sub_qc.control()\n out.compose(sub_qc,range(sub_qc.num_qubits), inplace=True)\n\n### How can we reproduce the issue?\n\nRun above\n\n### What should happen?\n\nIt should not take apparently exponential time\n\n### Any suggestions?\n\n_No response_","reference_answer":"The primary focus of this issue is to decompose an `MCXGate()` using non-exponential number of `CX` gates, without using ancillas, thus fixing URL","answer_document_id":"gh_comment_1978343520","silver_evidence_path":["gh_comment_1952366355","gh_issue_811114828","gh_comment_1978343520"],"known_context_document_ids":["gh_issue_2139057968"],"evidence_issue_ids":[2139057968,811114828],"source_repo_name":"Qiskit/qiskit","source_issue_id":2139057968,"source_issue_url":"https://github.com/Qiskit/qiskit/issues/11823","target_repo_name":"Qiskit/qiskit","target_issue_id":811114828,"target_issue_url":"https://github.com/Qiskit/qiskit/issues/5872","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0064","query":"Uncaught TypeError: Cannot read properties of undefined (reading 'hasOwnProperty') Console error thrown while using GTranslate widget and logged into website as admin?","query_context":"## Bug Description\n\nAs flagged in the support forum, the following console error is thrown while using GTranslate plugin widget and logged into website as admin:\n\nUncaught TypeError: Cannot read properties of undefined (reading 'hasOwnProperty')\n at _._setupNS (/_/translate_http/_/js/k=translate_http.tr.cs.sS79CTwCGSs.O/d=1/rs=AN8SPfooco5r-XPZgZHhoMWywin50i9rzg/m=el_conf:261:314)\n at /_/translate_http/_/js/k=translate_http.tr.cs.sS79CTwCGSs.O/d=1/rs=AN8SPfooco5r-XPZgZHhoMWywin50i9rzg/m=el_conf:287:17\n at /_/translate_http/_/js/k=translate_http.tr.cs.sS79CTwCGSs.O/d=1/rs=AN8SPfooco5r-XPZgZHhoMWywin50i9rzg/m=el_conf:292:11\n at /_/translate_http/_/js/k=translate_http.tr.cs.sS79CTwCGSs.O/d=1/rs=AN8SPfooco5r-XPZgZHhoMWywin50i9rzg/m=el_conf:293:9\n\nI have been able to replicate this on a TasteWP site with just Site Kit and GTranslate installed. This only displayed when logged into the site as admin and viewing a page with the GTranslate widget place on it. When testing from an incognito browser and not logged in the console error does not display. You do not need to interact with the widget for the console error to show as it will display on page load.\n\nVideo recording of this in action:\n\n URL \n\n## Steps to reproduce\n\n1. Set up fresh TasteWP website with Site Kit installed and set up.\n2. Install the GTranslate plugin.\n3. Go to **Settings > GTranslate** and select an option for **'Show in menu'** and **'Show floating language selector'** so that the widget will display on posts/pages.\n4. Visit the site homepage and console error should display.\n\n## Screenshots\n\n \n\n## Additional Context\n\n \n\n---------------\n\n_Do not alter or remove anything below. The following sections will be managed by moderators only._\n\n## Acceptance criteria\n\n* \n\n## Implementation Brief\n\n* \n\n### Test Coverage\n\n* \n\n## QA Brief\n\n* \n\n## Changelog entry\n\n*","reference_answer":"### QA Update: ā
\n\n**Verified:**\n\n- Installed GTranslate chrome extension and WordPress plugin verified the extension works.\n- Visited a page on frontend, and the gtranslate extension is translating page.\n- Tested gtranslate plugin, you can add shortcode [gtranslate] into any page, and the gtranslate widget shows and translation works.\n- Tested with the Google Translate extension as well as GTranslate.\n- No console or front end error messages.\n- Completed a regression test on the behaviour fixed in URL \n\n \n Screenshots \n\nimage\nimage\nimage\nimage\nimage","answer_document_id":"gh_comment_1715732635","silver_evidence_path":["gh_comment_1572525362","gh_issue_1736797139","gh_comment_1715732635"],"known_context_document_ids":["gh_issue_1397411854"],"evidence_issue_ids":[1397411854,1736797139],"source_repo_name":"google/site-kit-wp","source_issue_id":1397411854,"source_issue_url":"https://github.com/google/site-kit-wp/issues/5969","target_repo_name":"google/site-kit-wp","target_issue_id":1736797139,"target_issue_url":"https://github.com/google/site-kit-wp/issues/7121","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0065","query":"Erreur après mise a jour de core?","query_context":"Depuis la mise a jour de core de ce jour j'ai cette erreur:\n\nERROR (MainThread) [homeassistant.components.binary_sensor] linkytic: Not adding entity with invalid device info: Invalid device info {'default_manufacturer': 'ENEDIS', 'default_model': 'Compteur communiquant Linky', 'default_name': 'Linky', 'identifiers': {('linkytic', '8cf004887b4e5242b31780c04d6df0ee')}, 'manufacturer': None, 'model': None} for 'linkytic' config entry: device info needs to either describe a device, link to existing device or provide extra information.","reference_answer":"Il est possible que domoticz mettait simplement de cÓté les lignes invalides silencieusement quand j'ai décidé de les faire remonter (justement pour aider l'utilisateur a détecter un mauvais module ou lien). Mais je ne peux le dire avec certitude, je n'ai pas regardé le code de domoticz.\n \n\nJe ne saurais dire, malheureusement mon domaine (software) commence là où le hardware fini :)\n \n \n\n~1 erreur/minute sur le lien série c'est clairement beaucoup\n \n\ntag ok, valeur ok, checksum ko\n \n \n \nFailed to validate the checksum of line 'b'?PTARIF HC.. HC.. (None) | s1 780 0b1100001100 | truncated 12 0b1100 \f | computed 44 0b101100 , | expected 60 0b111100 <\n \n\ntag ko, valeur ok, checksum inconnu\n\nCela confirme ma conclusion précédente, vous avez beaucoup de lignes incorrectes en provenance du lien série. Mon intégration doit pouvoir les gérer tout en continuant de fonctionner, c'était le but de la mise à jour et si vous avez de nouveau une erreur de type `Uncaught thread exception` (celle-ci stoppant l'execution de l'intégration) prévenez moi que je rajoute un correctif.\n\nMaintenant concernant vos erreurs/trames incorrectes en provenance du lien série, je ne saurais dire... Est-ce votre Linky qui est défectueux ? Votre connexion TIC ? Votre module série ? Le cablage ? J'ai bien peur que le seul moyen de le savoir serait de changer un élément après l'autre jusqu'à identifier le coupable. Ou alors simplement conserver l'ensemble tel quel et laisser l'intégration mettre de cÓté les lignes problématiques :)","answer_document_id":"gh_comment_1590684776","silver_evidence_path":["gh_comment_1710210346","gh_issue_1755571267","gh_comment_1590684776"],"known_context_document_ids":["gh_issue_1885543993"],"evidence_issue_ids":[1885543993,1755571267],"source_repo_name":"hekmon/linkytic","source_issue_id":1885543993,"source_issue_url":"https://github.com/hekmon/linkytic/issues/14","target_repo_name":"hekmon/linkytic","target_issue_id":1755571267,"target_issue_url":"https://github.com/hekmon/linkytic/issues/11","split":"test","quality_score":82.11,"annotation_level":"silver"}
{"query_id":"cross_issue_0067","query":"scrollable modal opens at the end of the page?","query_context":"### Flux version\n\nv1.1.6\n\n### Livewire version\n\nv3.6.1\n\n### Tailwind version\n\nv3.4.13\n\n### Browser and Operating System\n\nSafari on macOS\n\n### What is the problem?\n\nIf a modal contains so much text that it needs to be scrolled and there is a link or button at the bottom, the focus jumps to it and the page is displayed from the bottom.\n\n### Code snippets\n\n \n \n Edit profile \n \n\n \n \n Update profile \n Make changes to your personal details. \n \n\n Optat adis eum ad quam non nossequi offictatur? Qui odionse quamus reheni as dolento corersp elecest maximus net milisim quatiumquis es volorestia seque qui aut lab iduntib eaquidu ciligen daepro dit fugias doloremolent lacearci bla quam, cum vellabo ribusa vel et volupta ad quodiorit aceperum fugia simoluptur aut plam que vel eatur, ut volor simagnatur? Quideni ssitionsed quodis rerferuptas ella doluptate perest, ut volorpo rescimus doluptat acea iliquam, sentibu sdaniatiist, con prae repedi quamus nullorias quas essimus consed moluptae es aut perum doluptatur, id mostoreces idelibus dent mo optate ressimus, omnimag nimoles sunt, sini conseque consequae. Nis porrum, ulliqui ipsum consequo volorest hil imusandamus am quis sequiat iaecaborendi consequos non coneceribus quis quia exerferio ea cum ent, voluptaquis et ipsam quam hillit, sum sunt volorpos autem ium earchil eturit qui dolorro mincidignim faccum fugia nus illignis essitat empossequam dolupiendi conesciis deribus ea que num inullam quam conseque volum quam laborep tatempo raeculpa esed quiatust endicie ndanducima aut landae ra voluptios dolupta tiuntem. Simet latur arit, tem ati odit utescia spitatur? Aquunda consequia dolenih icimpor eiciam, comni commolo maximusam voles quam ea dis int adigendi aturiataqui ilignat inveruptas volorem rerum quis ea quuntot atempedit et aut autaquat.\n Hilit, omnite cupiendi ulpa quod quiandi taquame ntiandam, num et veliqui quam quibus accuptur adi omnis aris antinimin nihilit optur aborendipsam dolorio vendusa dipicabor aditi optur, ut aribusae sitati oditatat reptiatium quas por as molut omnihit, tet ipicienem ut aut aut fuga. Item nonsendias dunto essum utatio. Ugiatem olupis adit erspers pidunt quatem etus voloriam ut molestem et as ma quam et acillore, sunt.\n Us. Me re venis aut quam quae cum di dolupti aspidebis dolupiciatas aut aut perro tecto officiduciam rem sunt et omniendellit quiaspe riatur, accatetur?\n Arum et rem utata dolorum doluptaquam rem se qui odi consed ut quam re cores esent oditi ipsant volo venimpos et eum eneceperum di officia dolore etum reictur alignient ra simporrum faccum alitaqui officate volo temo enihil experio. Culluptas dem hillab int ad et occatis sequunt qui rest, quam rest, ium nia vitatemporum quaspicium asiminu llitis eos rem exerror ruptatia experit la pa si aut unt, si nonsequam elia nihic temolum ut quat.\n At enet qui omniend ipitaes nonsequ idesti incto exceperum volorum enisinum quia conet accum repti dus el incitate officilitat.\n Les eosam il ipsanientem il ipsaperi omnimi, si dus dis dellam, serit, occuptation porior aut as seque poreped quatur maiost, consequo et que doloremque pre, nossendia susda cus suntio. Idunt volo exeriatum volestrum voluptatium volupta tiorro blam est quiae vero dolor aut lab id est, quam, te poriore pelictio. Namus, comnimo te verum qui int alia nos velloriandam que nist doluptatur a nulpa quisci beris velia voluptatem id et oditincid qui utes ra verio. Ga. Nempos aut dolest faccae ea quamet rerissimusam res restrum ese et aut que dolore pro ipisque sintem. Udipici demquos ad quia dendem volorrum fugiaepudi cullabor sae minus, occusan imendae cepero ium liatqui dolore venim facessitius volut fugiaspit, quis aut am quam, qui volectem fuga. Animusciis et, tecum eumquib usandaest offic tem aceaquaest, solo conse ditium veri duntusaped molupiducidi dolorestrum dolupta epudicitae nonesci atetur aspel experrum, officipsam quas pe mo iligendantet que ventem iurest iuri adi aut molut re cum fuga. Fic totatium et es maximustent.\n Ame et repratum que earchit, cum voluptatam, ese aut rem dolor atem exeriatiusae rem doluptae solut estrum alique nonem volupic illecab istotatatur? Qui berescia pre coria vidio voluptaqui quae dolluptas alis rerum doluptatem que dolest ut que nobist quiaepe dignatibus debis molupta temquidunt qui dolupta sit doluptatias perume volo tem. Culpari te perro omnit es mos explant que nossum reptat quiam imaio doloreiume lacestet qui net que ped quis debit ma vendae rera quaeper natquis verum im is earciet eariam volorest, sim re odis et ipiendant as doluptium fuga. Edicae. Uritia prorectet, tem fugia que vollab ipiendi commodit harumqu undant rerfercim reris ut verrovid ut harcipsa cusdant doluptatem fuga. Ita pres sum hil imped eveliquis dus voluptur?\n Andis dolupture officta temporitati omnimpos andanda ntendio nserumquo officilique doloruntem ium voluptaquia siment experferatem nonsed et, suntis alicte consed quid ma sum ex etus solorescia dolut optaera quunditius, volum harumqu asitio eum qui omnimil lendae prorit re, voluptatis doluptae sae essincient as modipitiis rerum quam fugiatibus, simus quam, offictemque cus, sumquod ignimporum doluptas repudicto berumquas quaspic tem eos qui con cusa quis quae pora cuptios ime dolore volora numque consendio. Ut rem harumet excerrum est anditibus si id que pa vollend untiorro exceptate volorep eribus molore voluptat officia sperum as andae. Ugitas esciam, ommoloraes etus sit autes veligende int eatus.\n Borporum qui dus, con rest laboriae nessit exceperempor alita doluptatiat. \n\n \n \n HTML;\n }\n}\n\n### How do you expect it to work?\n\nThe modal should open from the top.\n\n### Please confirm (incomplete submissions will not be addressed)\n\n- [x] I have provided easy and step-by-step instructions to reproduce the bug.\n- [x] I have provided code samples as text and NOT images.\n- [x] I understand my bug report will be closed if I haven't met the criteria above.","reference_answer":"@jradtilbrook thanks for the link! I just tested adding autofocus to the dialog itself, but it didn't seem to do anything. If you can give me an example of that working, I'd be happy to see if I can get working with Flux's modal.","answer_document_id":"gh_comment_2686658198","silver_evidence_path":["gh_comment_2716284862","gh_issue_2736394528","gh_comment_2686658198"],"known_context_document_ids":["gh_issue_2911280606"],"evidence_issue_ids":[2911280606,2736394528],"source_repo_name":"livewire/flux","source_issue_id":2911280606,"source_issue_url":"https://github.com/livewire/flux/issues/1302","target_repo_name":"livewire/flux","target_issue_id":2736394528,"target_issue_url":"https://github.com/livewire/flux/issues/854","split":"test","quality_score":93.33,"annotation_level":"silver"}
{"query_id":"cross_issue_0069","query":"[Bug]: Incomplete tool calling response for pipeline-parallel vllm with ray?","query_context":"### Your current environment\n\nvllm v0.5.4\n\nSetup A) single docker container with vllm, no pipeline-parallelism\n\ndocker run ... vllm/vllm-openai:v0.5.4 --model \"meta-llama/Meta-Llama-3.1-70B-Instruct\" --tensor-parallel-size 2 --max-model-len=4096\n\nSetup B) two docker containers with ray + vllm (pipeline parallelism)\n\ndocker run -it ... --network host --entrypoint /bin/bash vllm/vllm-openai:v0.5.4\n\n# start ray head node in one of the docker containers\nray start --head --disable-usage-stats\n\n# start ray worker node in the other docker container\nray start --address=' :6379'\n\n# start vllm in head node container\nvllm serve \"meta-llama/Meta-Llama-3.1-70B-Instruct\" --tensor-parallel-size 1 --pipeline-parallel-size 2 --distributed-executor-backend ray --max-model-len=4096\n\nThe issue does not depend on the model; e.g. it also appears with `meta-llama/Meta-Llama-3-70B-Instruct` instead of Llama-3.1\n\n### š Describe the bug\n\nWithout pipeline-parallelism, a request with tool calling is responded correctly with a valid tool call. \nWith pipeline-parallelism, the same request is responded with incomplete tool call (just a few tokens long, but still status 200). \n\nExample request:\n\n{\n \"model\": \"meta-llama/Meta-Llama-3.1-70B-Instruct\",\n \"max_tokens\": 200,\n \"seed\": 8,\n \"messages\": [\n {\n \"role\": \"user\",\n \"content\": \"What is the weather like in Berlin?\"\n }\n ],\n \"tools\": [\n {\n \"type\": \"function\",\n \"function\": {\n \"name\": \"get_current_weather\",\n \"description\": \"Get the current weather\",\n \"parameters\": {\n \"type\": \"object\",\n \"properties\": {\n \"location\": {\n \"type\": \"string\",\n \"description\": \"The city and state, e.g. San Francisco, CA\"\n },\n \"format\": {\n \"type\": \"string\",\n \"enum\": [\"celsius\", \"fahrenheit\"],\n \"description\": \"The temperature unit to use. Infer this from the users location.\"\n }\n },\n \"required\": [\"location\", \"format\"]\n }\n }\n }\n ],\n \"tool_choice\": {\"type\": \"function\", \"function\": {\"name\": \"get_current_weather\"}}\n}\n\nResponse for setup A (no pipeline-parallelism)\n\n{\n \"id\": \"chat-a9e517fd2f0e4ac3817896596c5cc907\",\n \"object\": \"chat.completion\",\n \"created\": 1722929009,\n \"model\": \"meta-llama/Meta-Llama-3.1-70B-Instruct\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"\",\n \"tool_calls\": [\n {\n \"id\": \"chatcmpl-tool-0b5f4340c31d42c19765aa5f755586a3\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"get_current_weather\",\n \"arguments\": \"{\\\"location\\\": \\\"Berlin\\\", \\\"format\\\": \\\"celsius\\\"}\"\n }\n }\n ]\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\",\n \"stop_reason\": null\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 251,\n \"total_tokens\": 265,\n \"completion_tokens\": 14\n }\n}\n\nThe response for setup B (pipeline-parallelism with ray)\n\n{\n \"id\": \"chat-80f69a8c5403478ea0c75943e7bab3af\",\n \"object\": \"chat.completion\",\n \"created\": 1722931399,\n \"model\": \"meta-llama/Meta-Llama-3.1-70B-Instruct\",\n \"choices\": [\n {\n \"index\": 0,\n \"message\": {\n \"role\": \"assistant\",\n \"content\": \"\",\n \"tool_calls\": [\n {\n \"id\": \"chatcmpl-tool-b6517d27352947969bf3d3dc8b8c6b98\",\n \"type\": \"function\",\n \"function\": {\n \"name\": \"get_current_weather\",\n \"arguments\": \"{\\\"location\"\n }\n }\n ]\n },\n \"logprobs\": null,\n \"finish_reason\": \"stop\",\n \"stop_reason\": null\n }\n ],\n \"usage\": {\n \"prompt_tokens\": 251,\n \"total_tokens\": 254,\n \"completion_tokens\": 3\n }\n}","reference_answer":"My initial thoughts;\n\n- URL -> Plugin needs to change the API to accept stateful logit processor\n- URL -> Right now, I feel orthogonal (there are overlap, but the PR mentioned APIs are supposed to be used \"with\" logit processor, and this RFC is logit processor specific).\n- URL seems like a implementation of second part. \n- URL seems orthogonal (existing logit processors will just work)","answer_document_id":"gh_comment_2164087425","silver_evidence_path":["gh_comment_2276791605","gh_issue_2346658694","gh_comment_2164087425"],"known_context_document_ids":["gh_issue_2450246404"],"evidence_issue_ids":[2450246404,2346658694],"source_repo_name":"vllm-project/vllm","source_issue_id":2450246404,"source_issue_url":"https://github.com/vllm-project/vllm/issues/7194","target_repo_name":"vllm-project/vllm","target_issue_id":2346658694,"target_issue_url":"https://github.com/vllm-project/vllm/issues/5423","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0070","query":"Some tokenizer exceptions not being applied?","query_context":"It seems like some of tokenizer exemption rules for the english models are not being applied. In the example below \"yall\" is correctly lemmatized as \"you\" + \"all\" but \"doin\" is lemmatized as \"doin\".\n\n## How to reproduce the behaviour\n \n\nimport spacy\n\nnlp = spacy.load(\"en_core_web_md\")\n\nstring = \"How are yall doin?\"\n\nfor tok in nlp(string):\n print(tok.text, tok.lemma_)\n\nOutput\n\nHow how\nare be\ny you\nall all\ndoin doin\n? ?\n\n## Environment\n \n- **spaCy version:** 3.7.2\n- **Platform:** Linux-6.5.10-200.fc38.x86_64-x86_64-with-glibc2.37\n- **Python version:** 3.10.12\n- **Pipelines:** en_core_web_md (3.7.0)","reference_answer":"Thanks again for the report, we've updated this in the internal attribute ruler data and added a test to `spacy-models`, so let's hope this is fixed in the next round of pipeline releases (probably pipeline version v3.8.0).","answer_document_id":"gh_comment_1794964709","silver_evidence_path":["gh_comment_1808497172","gh_issue_1973600854","gh_comment_1794964709"],"known_context_document_ids":["gh_issue_1989477572"],"evidence_issue_ids":[1989477572,1973600854],"source_repo_name":"explosion/spaCy","source_issue_id":1989477572,"source_issue_url":"https://github.com/explosion/spaCy/issues/13126","target_repo_name":"explosion/spaCy","target_issue_id":1973600854,"target_issue_url":"https://github.com/explosion/spaCy/issues/13098","split":"test","quality_score":87.58,"annotation_level":"silver"}
{"query_id":"cross_issue_0071","query":"Hibernate regression in Quarkus 3.17.2 org.hibernate.bytecode.enhance.spi.EnhancementException fails to build?","query_context":"### Describe the bug\n\nHibernate regression in Quarkus 3.17.2 \n\nWe have an entity that implements one or more interfaces. Those interface methods don't always map to a field in the class but to another method. This has worked fine in all versions of Quarkus (Hibernate) through 3.16.4, error started when we upgraded to 3.17.2, I did not try 3.17.0.\n\nposh\n[ERROR] Failed to execute goal io.quarkus.platform:quarkus-maven-plugin:3.17.2:build (default) on project json-view-schema-example: Failed to build quarkus application: io.quarkus.builder.BuildException: Build failure: Build failed due to errors\n[ERROR] [error]: Build step io.quarkus.deployment.steps.ClassTransformingBuildStep#handleClassTransformation threw an exception: java.lang.reflect.UndeclaredThrowableException\n[ERROR] at io.quarkus.deployment.ExtensionLoader$3.execute(ExtensionLoader.java:862)\n[ERROR] at io.quarkus.builder.BuildContext.run(BuildContext.java:256)\n[ERROR] at org.jboss.threads.ContextHandler$1.runWith(ContextHandler.java:18)\n[ERROR] at org.jboss.threads.EnhancedQueueExecutor$Task.doRunWith(EnhancedQueueExecutor.java:2675)\n[ERROR] at org.jboss.threads.EnhancedQueueExecutor$Task.run(EnhancedQueueExecutor.java:2654)\n[ERROR] at org.jboss.threads.EnhancedQueueExecutor.runThreadBody(EnhancedQueueExecutor.java:1627)\n[ERROR] at org.jboss.threads.EnhancedQueueExecutor$ThreadBody.run(EnhancedQueueExecutor.java:1594)\n[ERROR] at java.base/java.lang.Thread.run(Thread.java:1583)\n[ERROR] at org.jboss.threads.JBossThread.run(JBossThread.java:499)\n[ERROR] Caused by: java.util.concurrent.ExecutionException: org.hibernate.bytecode.enhance.spi.EnhancementException: Enhancement of [com.example.jsonview.model.Group] failed because no field named [x] could be found for property accessor method [getX]. To fix this, make sure all property accessor methods have a matching field.\n[ERROR] at java.base/java.util.concurrent.FutureTask.report(FutureTask.java:122)\n[ERROR] at java.base/java.util.concurrent.FutureTask.get(FutureTask.java:191)\n[ERROR] at io.quarkus.deployment.steps.ClassTransformingBuildStep.handleClassTransformation(ClassTransformingBuildStep.java:273)\n[ERROR] at java.base/java.lang.invoke.MethodHandle.invokeWithArguments(MethodHandle.java:733)\n[ERROR] at io.quarkus.deployment.ExtensionLoader$3.execute(ExtensionLoader.java:856)\n[ERROR] ... 8 more\n[ERROR] Caused by: org.hibernate.bytecode.enhance.spi.EnhancementException: Enhancement of [com.example.jsonview.model.Group] failed because no field named [x] could be found for property accessor method [getX]. To fix this, make sure all property accessor methods have a matching field.\n[ERROR] at org.hibernate.bytecode.enhance.internal.bytebuddy.EnhancerImpl.checkUnsupportedAttributeNaming(EnhancerImpl.java:497)\n[ERROR] at org.hibernate.bytecode.enhance.internal.bytebuddy.EnhancerImpl.doEnhance(EnhancerImpl.java:178)\n[ERROR] at org.hibernate.bytecode.enhance.internal.bytebuddy.EnhancerImpl.lambda$enhance$1(EnhancerImpl.java:120)\n[ERROR] at org.hibernate.bytecode.internal.bytebuddy.ByteBuddyState.rewrite(ByteBuddyState.java:166)\n[ERROR] at org.hibernate.bytecode.enhance.internal.bytebuddy.EnhancerImpl.enhance(EnhancerImpl.java:120)\n[ERROR] at io.quarkus.hibernate.orm.deployment.HibernateEntityEnhancer$HibernateEnhancingClassVisitor.hibernateEnhancement(HibernateEntityEnhancer.java:83)\n[ERROR] at io.quarkus.hibernate.orm.deployment.HibernateEntityEnhancer$HibernateEnhancingClassVisitor.visitEnd(HibernateEntityEnhancer.java:76)\n[ERROR] at org.objectweb.asm.ClassVisitor.visitEnd(ClassVisitor.java:395)\n[ERROR] at io.quarkus.panache.common.deployment.visitors.PanacheEntityClassAccessorGenerationVisitor.visitEnd(PanacheEntityClassAccessorGenerationVisitor.java:126)\n[ERROR] at org.objectweb.asm.ClassVisitor.visitEnd(ClassVisitor.java:395)\n[ERROR] at org.objectweb.asm.ClassReader.accept(ClassReader.java:749)\n[ERROR] at org.objectweb.asm.ClassReader.accept(ClassReader.java:425)\n[ERROR] at io.quarkus.deployment.steps.ClassTransformingBuildStep.transformClass(ClassTransformingBuildStep.java:367)\n[ERROR] at io.quarkus.deployment.steps.ClassTransformingBuildStep$2.call(ClassTransformingBuildStep.java:238)\n[ERROR] at io.quarkus.deployment.steps.ClassTransformingBuildStep$2.call(ClassTransformingBuildStep.java:225)\n[ERROR] at java.base/java.util.concurrent.FutureTask.run(FutureTask.java:317)\n[ERROR] ... 7 more\n\nHere is a reproducer app: json-view-schema-example.zip\n\n### Expected behavior\n\nBuild should be successful like it has been until using Quarkus 3.17.2.\n\n### Actual behavior\n\nBuild fails with org.hibernate.bytecode.enhance.spi.EnhancementException:\n\n### How to Reproduce?\n\n_No response_\n\n### Output of `uname -a` or `ver`\n\n_No response_\n\n### Output of `java -version`\n\njava 21.0.4 2024-07-16 LTS\n\n### Quarkus version or git rev\n\n_No response_\n\n### Build tool (ie. output of `mvnw --version` or `gradlew --version`)\n\nApache Maven 3.9.6 (bc0240f3c744dd6b6ec2920b3cd08dcc295161ae)\n\n### Additional information\n\n_No response_","reference_answer":"@wcicola the present issue was fixed in URL which means it's fixed in Quarkus 3.17.6 (through #45235). I unfortunately forgot to close issues fixed in the latest ORM version, I'll get to it right now.\n\nCould you please test this with Quarkus 3.17.6, and if your problem still occurs, open a new issue? Preferably, directly on hibernate.atlassian.net and with a reproducer based on this.\n\nThank you.","answer_document_id":"gh_comment_2594771430","silver_evidence_path":["gh_comment_2516426046","gh_issue_2710930019","gh_comment_2594771430"],"known_context_document_ids":["gh_issue_2715867937"],"evidence_issue_ids":[2715867937,2710930019],"source_repo_name":"quarkusio/quarkus","source_issue_id":2715867937,"source_issue_url":"https://github.com/quarkusio/quarkus/issues/44909","target_repo_name":"quarkusio/quarkus","target_issue_id":2710930019,"target_issue_url":"https://github.com/quarkusio/quarkus/issues/44863","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0072","query":"bug: Copying and pasting?","query_context":"### Version\n\n1.30.0\n\n### Describe the bug\n\nI find copying and pasting code or content difficult, especially from Jupyter Notebook to the chat interface. \n\nIt ends up pasting new Jupyter cells within the notebook instead of pasting the copied content to the chat tab. \n\nCopying and pasting code or content is difficult and frustrating. It has made the user experience awful.\n\n### Expected behavior\n\nI expected the copied content to be pasted on the chat tab instead it always pastes the created content on Jupyter notebook as a new cell.\n\n### Additional context\n\n_No response_","reference_answer":"Hey @AlfSandoval \n\nThank you for providing the detailed report. The team will take a look into it.\nIt seems, that this is caused because of focus handling.","answer_document_id":"gh_comment_2500685736","silver_evidence_path":["gh_comment_2569044325","gh_issue_2693998480","gh_comment_2500685736"],"known_context_document_ids":["gh_issue_2456180588"],"evidence_issue_ids":[2456180588,2693998480],"source_repo_name":"sourcegraph/cody","source_issue_id":2456180588,"source_issue_url":"https://github.com/sourcegraph/cody/issues/5146","target_repo_name":"sourcegraph/cody","target_issue_id":2693998480,"target_issue_url":"https://github.com/sourcegraph/cody/issues/6200","split":"test","quality_score":79.71,"annotation_level":"silver"}
{"query_id":"cross_issue_0075","query":"Using Triton 3.2: ModuleNotFoundError: No module named 'triton.ops'?","query_context":"I updated to Triton 3.2 and get the following error message\n\nModuleNotFoundError: No module named 'triton.ops'","reference_answer":"What's your `triton` package version? The newest `triton` has removed `triton.ops`. You can use `pip install triton==3.0.0` to avoid this issue.","answer_document_id":"gh_comment_2673363339","silver_evidence_path":["gh_comment_2678243044","gh_issue_2864957871","gh_comment_2673363339"],"known_context_document_ids":["gh_issue_2874498135"],"evidence_issue_ids":[2874498135,2864957871],"source_repo_name":"welltop-cn/ComfyUI-TeaCache","source_issue_id":2874498135,"source_issue_url":"https://github.com/welltop-cn/ComfyUI-TeaCache/issues/53","target_repo_name":"welltop-cn/ComfyUI-TeaCache","target_issue_id":2864957871,"target_issue_url":"https://github.com/welltop-cn/ComfyUI-TeaCache/issues/51","split":"test","quality_score":91.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0076","query":"Inappropriate rebalances being selected?","query_context":"I'm currently testing with the config file settings: \n\necon_ratio: 0.5\nlost_profit: true\n\n... and have run the rebalancer with no further parameters specified via command line. Each time, it has selected routes that are inappropriate. For instance, rebalancing a target channel that I currently charge 30ppm with a source currently charging 200ppm. \n\nAlso, I've attempted to specify a source channel via command line without any further parameters, hoping regolancer would attempt to find an appropriate rebalance with any possible target channels fitting the liquidity criteria specified in config.json; however, it throws error \"No source channels selected.\" Am I missing something here?\n\nThanks!","reference_answer":"Check if the max fee displayed is correct for you. Manually calculate the target channel future income (as `(base_fee + amount * fee_ppm) * econ_ratio`), subtract the source channel fee (as `base_fee + amount * fee_ppm`).","answer_document_id":"gh_comment_1264359118","silver_evidence_path":["gh_comment_1264606026","gh_issue_1391222221","gh_comment_1264359118"],"known_context_document_ids":["gh_issue_1393712210"],"evidence_issue_ids":[1393712210,1391222221],"source_repo_name":"rkfg/regolancer","source_issue_id":1393712210,"source_issue_url":"https://github.com/rkfg/regolancer/issues/6","target_repo_name":"rkfg/regolancer","target_issue_id":1391222221,"target_issue_url":"https://github.com/rkfg/regolancer/issues/2","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0078","query":"[ServerErrors][TypeScript] 5.0.0-dev.20230206?","query_context":"The following errors were reported by 5.0.0-dev.20230206\nPipeline that generated this bug\nLogs for the pipeline run\nFile that generated the pipeline\n\nThis run considered 200 popular TS repos from GH (after skipping the top 0).\n\n \n Successfully analyzed 187 of 200 visited repos \n\n| Outcome | Count |\n|---------|-------|\n| Detected interesting changes | 8 |\n| Detected no interesting changes | 179 |\n| Git clone failed | 1 |\n| Unknown failure | 12 |\n\n \n\n## Investigation Status\n| Repo | Errors | Outcome |\n|------|--------|---------|\n|angular/angular-cli|1| |\n|apache/echarts|1| |\n|BuilderIO/qwik|1| |\n|GrapesJS/grapesjs|1| |\n|mantinedev/mantine|1| |\n|nocodb/nocodb|1| |\n|palantir/blueprint|1| |\n|redwoodjs/redwood|1| |","reference_answer":"Probably all related:\n\n* URL \n* URL \n* URL \n* URL \n* URL \n* URL \n* URL \n* URL \n\nI'll try closing these and we'll revisit if they pop back up.","answer_document_id":"gh_comment_1423493149","silver_evidence_path":["gh_comment_1421687506","gh_issue_1575235123","gh_comment_1423493149"],"known_context_document_ids":["gh_issue_1573487642"],"evidence_issue_ids":[1573487642,1575235123],"source_repo_name":"microsoft/TypeScript","source_issue_id":1573487642,"source_issue_url":"https://github.com/microsoft/TypeScript/issues/52645","target_repo_name":"microsoft/TypeScript","target_issue_id":1575235123,"target_issue_url":"https://github.com/microsoft/TypeScript/issues/52662","split":"test","quality_score":76.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0079","query":"Create a POA request in vets-api?","query_context":"## Background\nFor users intending to submit a request digitally, the CTA on the `review-and-submit` page will update to \"Submit form\" (per URL When the user clicks \"Submit form\" on the frontend, the backend should create a POA request in vets-api. This will allow the request to appear in the Accredited Rep Portal, for a representative to accept/decline.\n\nIf the creation fails, the frontend will need to know so that it can show the user an error and give them the opportunity to try re-submitting. (That will be handled in URL \n\nImplementation note:\n- We can assume that we'll have approval for pilot (which will be 6-12 months) for the POA request to be in the vets-api database (not CorpDB).\n\nOpen questions:\n1. What is the expectation (if any) in the VA Forms Library, when a form is submitted? Are there any built-in callbacks or submit hooks that we can pick up?\n2. What information should be included in the request? \n3. How/where do we create the request, so the ARP can receive it?\n4. After the POA Request is created, where do we store the expiration date?\n5. After the POA request is created, do we need to store the record ID anywhere in ARM code for future troubleshooting?\n\n## Tasks\n- [ ] Create a POA request\n- [ ] Pass an error back to the frontend if there is an issue creating the request\n- [ ] Unit tests\n\n## Acceptance Criteria\n- [ ] When a user clicks \"Submit form\" on the Review page, a POA request is created in a vets-api database which is then passed to the Accredited Representative Portal for a representative to accept/decline the POA request.\n- [ ] When there's an error creating a POA request, let the frontend know so it can serve an error to the user.","reference_answer":"Will include this in the request endpoint. Blocked until Jon is done building that.","answer_document_id":"gh_comment_2622486515","silver_evidence_path":["gh_comment_2635152129","gh_issue_2764720615","gh_comment_2622486515"],"known_context_document_ids":["gh_issue_2768388898"],"evidence_issue_ids":[2768388898,2764720615],"source_repo_name":"department-of-veterans-affairs/va.gov-team","source_issue_id":2768388898,"source_issue_url":"https://github.com/department-of-veterans-affairs/va.gov-team/issues/99974","target_repo_name":"department-of-veterans-affairs/va.gov-team","target_issue_id":2764720615,"target_issue_url":"https://github.com/department-of-veterans-affairs/va.gov-team/issues/99803","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0080","query":"[Bug]: Electron helper high cpu usage?","query_context":"### Preflight Checklist\n\n- [X] I have read the Contributing Guidelines for this project.\n- [X] I agree to follow the Code of Conduct that this project adheres to.\n- [X] I have searched the issue tracker for a feature request that matches the one I want to file, without success.\n\n### Electron Version\n\n16.0.1\n\n### What operating system are you using?\n\nmacOS\n\n### Operating System Version\n\nmacOS big sur 11.5.2\n\n### What arch are you using?\n\nx64\n\n### Last Known Working Electron version\n\n_No response_\n\n### Expected Behavior\n\nObserving system load should be fine I think.\n\n URL \n\nthe module works fine itself, but when i run it with electron or as a fork process it impact cpu usage\n\n### Actual Behavior\n\nimage\n\nthe electron helper is about 99% usage\n\n### Testcase Gist URL\n\n URL \n\n### Additional Information\n\nimage\n\nbash\ngit clone URL \ncd revealer\nnpm i\nnpm run dev","reference_answer":"@brandon-doornbos, thanks. That RC build is based on recently released @electron 16.0.6 which includes @chromium bump so I thought maybe the issue got fixed somewhere upstream in @chromium. So will be releasing a new version built on old/v15 @electron.\n \n\nDoesn't happen to me on Linux for some reason.","answer_document_id":"gh_comment_1004969103","silver_evidence_path":["gh_comment_1005046466","gh_issue_1051014796","gh_comment_1004969103"],"known_context_document_ids":["gh_issue_1058947734"],"evidence_issue_ids":[1058947734,1051014796],"source_repo_name":"electron/electron","source_issue_id":1058947734,"source_issue_url":"https://github.com/electron/electron/issues/31916","target_repo_name":"vladimiry/ElectronMail","target_issue_id":1051014796,"target_issue_url":"https://github.com/vladimiry/ElectronMail/issues/461","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0081","query":"Remove/replace references to EC:1.6.1.2?","query_context":"I refreshed the list of obsolete ECs (in #27812), and a new one has been added:\n\n- ERROR: < URL has a definition xref to an obsolete EC: \"EC:1.6.1.2\"\n- ERROR: < URL has a synonym xref to an obsolete EC: \"EC:1.6.1.2\"\n- ERROR: < URL has an xref to an obsolete EC: \"EC:1.6.1.2\"\n- ERROR: < URL has a definition xref to an obsolete EC: \"EC:1.6.1.2\"\n- ERROR: < URL has a synonym xref to an obsolete EC: \"EC:1.6.1.2\"","reference_answer":"oh, interesting. This is the solr query:\n\n URL \n\nNotice that `+ ` is translated ` ` (double space). This is because the `+` is a URL encoding of a space. The solution is to use the right URL escaping when constructing the SOLR urls. We should also check other characters that typically get encoded, e.g. `:`.","answer_document_id":"gh_comment_2089387099","silver_evidence_path":["gh_comment_2091868401","gh_issue_2274404063","gh_comment_2089387099"],"known_context_document_ids":["gh_issue_2273941526"],"evidence_issue_ids":[2273941526,2274404063],"source_repo_name":"geneontology/go-ontology","source_issue_id":2273941526,"source_issue_url":"https://github.com/geneontology/go-ontology/issues/27814","target_repo_name":"geneontology/amigo","target_issue_id":2274404063,"target_issue_url":"https://github.com/geneontology/amigo/issues/718","split":"test","quality_score":91.11,"annotation_level":"silver"}
{"query_id":"cross_issue_0082","query":"Kubeflow User Research & Survey Strategy?","query_context":"So far, the Kubeflow community has published a yearly user survey composed of high level questions to gauge how users interact with Kubeflow, what are the most used components, what are the biggest gaps, and how Kubeflow is deployed in production. The survey provides a good snapshot of users demographics and, with the help of freeform questions, it provides a pretty detailed report of specific areas users would like to see improved.\n\nThis information has proven very useful to understand what are the most used components; missing capabilities; usability concerns; distributions adoption; etc.\n\nThere are two aspects to consider now that the community is maturing and building ever more complex capabilities:\n\n- **Interviews**: the current process still lacks a second critical phase in user research: the interview. User interviews help create a detailed picture of the user personas, understand their needs, validate the survey findings, and drill down into specific usability concerns.\n- **Component-specific research**: Working Groups need detailed feedback on existing/new components and features. A (yearly) high-level generic user survey doesnāt help working groups getting specific feedback on what they are building and what users would like to see in the future.\n\nKubeflow is a very complicated platform, the AI/ML landscape is changing rapidly. We need to adopt a product-led mindset and develop a platform strategy to holistically look at Kubeflow as whole, understand what it is and where it is going, based on consumerās feedback and understanding. We cannot base our decisions on assumptions, we need a user research approach to validate our intuition and maximize our community effort towards building something that pays off.\n\nI don't want to start in this issue a never ending debate on how we should adopt product thinking (that discussion can happen in a separate issue) but rather have a tactical conversation on how we can improve our current user research initiatves to drive better and more informative outcomes.\n\nIn this document URL I list some bullet points on surveys and interview and make some proposal on what we can do in the next months.\n\ncc @kubeflow/wg-notebooks-leads @kubeflow/wg-manifests-leads @kubeflow/wg-training-leads @kubeflow/wg-pipeline-leads @kubeflow/wg-automl-leads @kubeflow/release-team @jbottum @andreyvelich @johnugeorge @james-jwu @akgraner","reference_answer":"Thank you for opening this, the way you've laid out the work to be done and linked other issues is quite helpful!","answer_document_id":"gh_comment_1937833683","silver_evidence_path":["gh_comment_1961701712","gh_issue_2110295525","gh_comment_1937833683"],"known_context_document_ids":["gh_issue_2151486794"],"evidence_issue_ids":[2151486794,2110295525],"source_repo_name":"kubeflow/community","source_issue_id":2151486794,"source_issue_url":"https://github.com/kubeflow/community/issues/705","target_repo_name":"cncf/tag-app-delivery","target_issue_id":2110295525,"target_issue_url":"https://github.com/cncf/tag-app-delivery/issues/546","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0083","query":"Dealing with words with multiple meanings?","query_context":"In math, a \"lattice\" can refer to (at least) two completely different concepts (think \"subgroup lattice\" versus \"$\\mathbb{Z}^n$ is a lattice in $\\mathbb{R}^n$\"). In German, these two concepts have different words (\"Verband\" and \"Gitter\").\n\nCan this be handled by your setup? How would I enter it?","reference_answer":"OK, it turned out to be a lot easier than I thought to make a temporary fix: for now, there is no distinction between adjectives and nouns; e.g. the term \"diagonal matrix\" is simply its own entry, separate from \"matrix\". This should solve this problem.","answer_document_id":"gh_comment_1675482360","silver_evidence_path":["gh_comment_1675299079","gh_issue_1847166068","gh_comment_1675482360"],"known_context_document_ids":["gh_issue_1847184189"],"evidence_issue_ids":[1847184189,1847166068],"source_repo_name":"thosgood/maths-dictionary","source_issue_id":1847184189,"source_issue_url":"https://github.com/thosgood/maths-dictionary/issues/34","target_repo_name":"thosgood/maths-dictionary","target_issue_id":1847166068,"target_issue_url":"https://github.com/thosgood/maths-dictionary/issues/33","split":"test","quality_score":73.64,"annotation_level":"silver"}
{"query_id":"cross_issue_0085","query":"data.table spark/databases interface?","query_context":"data.table is awesome but most people don't have 100GB memory in order to handle really large data sets in memory.\n\nBig progress has been made making the Apache Spark framework available through R in the last couple of years. Two such projects are Apache's sparkr and Rstudio's sparklyr. Both of these provide a dplyr style interface to spark's data processing engine.\n\nAs a heavy data.table user it would be amazing if there were to be a data.table interface for spark. That would make it incredibly easy for data scientists to migrate their projects from the smaller CSV style data sets to the huge data sets that can be processed by spark.\n\nA classic data pipeline for me is\n1. Bring the data into R by CSV\n2. Do some pre-processing (filters, joins, aggregation, feature extraction) of the data using data.table\n3. Build a model using one of R's many machine learning packages\n\nI want to be able to migrate this to\n1. Connect to data on hadoop cluster\n2. Do some pre-processing (filters, joins, aggregation, feature extraction) of the data using data.table's spark interface\n3. Build a model using one of spark's many machine learning algorithm.","reference_answer":"another way to contribute, even without knowing much about how data.table works (in C or otherwise), is to look at the open issues, and try to see if you can reproduce a bug report, then add a comment on the issue that explains what you did and whether or not the issue is reproducible. (and if you can make a simpler example than what is reported, that is even better)","answer_document_id":"gh_comment_1796971673","silver_evidence_path":["gh_comment_1881670842","gh_issue_1976590125","gh_comment_1796971673"],"known_context_document_ids":["gh_issue_173510650"],"evidence_issue_ids":[173510650,1976590125],"source_repo_name":"Rdatatable/data.table","source_issue_id":173510650,"source_issue_url":"https://github.com/Rdatatable/data.table/issues/1828","target_repo_name":"Rdatatable/data.table","target_issue_id":1976590125,"target_issue_url":"https://github.com/Rdatatable/data.table/issues/5723","split":"test","quality_score":86.57,"annotation_level":"silver"}
{"query_id":"cross_issue_0086","query":"OBS Studio not working?","query_context":"*(Sorry I deleted the template, but I made sure to include all the information that it asked)*\n\nObs studio doesn't propose any screen output source.\n \n\nThe reason I ask that here and not in obs-studio repository is because obs works in sway, I switched from sway to wayfire recently and this is the only inconvenience I noticed. I believe Obs uses something called pipewire in wayland environments.\n\n**versions**\nwayfire 0.7.4\nobs 29.1.1 (64bit)\n\nHere's the log when I run Obs from the command line, maybe it can help to debug:\n\ndebug: Found portal inhibitor\ndebug: Attempted path: share/obs/obs-studio/locale/en-US.ini\ndebug: Attempted path: /usr/share/obs/obs-studio/locale/en-US.ini\ndebug: Attempted path: share/obs/obs-studio/locale.ini\ndebug: Attempted path: /usr/share/obs/obs-studio/locale.ini\ndebug: Attempted path: share/obs/obs-studio/themes/Yami.qss\ndebug: Attempted path: /usr/share/obs/obs-studio/themes/Yami.qss\ninfo: Platform: Wayland\ninfo: CPU Name: AMD Ryzen 9 5900HS with Radeon Graphics\ninfo: CPU Speed: 4466.433MHz\ninfo: Physical Cores: 8, Logical Cores: 16\ninfo: Physical Memory: 15381MB Total, 2761MB Free\ninfo: Kernel Version: Linux 6.1.18-200.fc37.x86_64\ninfo: Distribution: \"Fedora Linux\" 37\ninfo: Desktop Environment: Wayfire (wayfire)\ninfo: Session Type: wayland\ninfo: Qt Version: 6.4.3 (runtime), 6.4.3 (compiled)\ninfo: Portable mode: false\ninfo: OBS 29.1.1 (linux)\ninfo: ---------------------------------\ninfo: ---------------------------------\ninfo: audio settings reset:\n samples per sec: 48000\n speakers: 2\n max buffering: 960 milliseconds\n buffering type: dynamically increasing\ninfo: ---------------------------------\ninfo: Initializing OpenGL...\ninfo: Using EGL/Wayland\ninfo: Initialized EGL 1.5\ninfo: Loading up OpenGL on adapter AMD AMD Radeon Graphics (renoir, LLVM 15.0.7, DRM 3.49, 6.1.18-200.fc37.x86_64)\ninfo: OpenGL loaded successfully, version 4.6 (Core Profile) Mesa 23.0.3, shading language 4.60\ninfo: ---------------------------------\ninfo: video settings reset:\n base resolution: 352x397\n output resolution: 352x396\n downscale filter: Bicubic\n fps: 60/1\n format: NV12\n YUV mode: Rec. 709/Partial\ninfo: NV12 texture support not available\ninfo: P010 texture support not available\ninfo: Audio monitoring device:\n name: Default\n id: default\ninfo: ---------------------------------\nwarning: Failed to load 'en-US' text for module: 'decklink-captions.so'\nwarning: Failed to load 'en-US' text for module: 'decklink-output-ui.so'\nlibDeckLinkAPI.so: cannot open shared object file: No such file or directory\nwarning: A DeckLink iterator could not be created. The DeckLink drivers may not be installed\nwarning: Failed to initialize module 'decklink.so'\ninfo: [pipewire] No captures available\nerror: os_dlopen(libnvidia-encode.so.1->libnvidia-encode.so.1): libnvidia-encode.so.1: cannot open shared object file: No such file or directory\n\nnvc0_screen_create:1169 - Error allocating PGRAPH context for M2MF: -110\nerror: VAAPI: Failed to initialize display in vaapi_device_h264_supported\ninfo: VAAPI: API version 1.16\ninfo: FFmpeg VAAPI H264 encoding not supported\nnvc0_screen_create:1169 - Error allocating PGRAPH context for M2MF: -16\nerror: VAAPI: Failed to initialize display in vaapi_device_hevc_supported\ninfo: FFmpeg VAAPI HEVC encoding not supported\ninfo: [obs-websocket] [obs_module_load] you can haz websockets (Version: 5.2.2 | RPC Version: 1)\ninfo: [obs-websocket] [obs_module_load] Qt version (compile-time): 6.4.3 | Qt version (run-time): 6.4.3\ninfo: [obs-websocket] [obs_module_load] Linked ASIO Version: 102600\ninfo: [obs-websocket] [obs_module_load] Module loaded.\ninfo: [vlc-video]: VLC 3.0.19 Vetinari found, VLC video source enabled\ninfo: ---------------------------------\ninfo: Loaded Modules:\ninfo: vlc-video.so\ninfo: text-freetype2.so\ninfo: rtmp-services.so\ninfo: obs-x264.so\ninfo: obs-websocket.so\ninfo: obs-vst.so\ninfo: obs-transitions.so\ninfo: obs-outputs.so\ninfo: obs-libfdk.so\ninfo: obs-filters.so\ninfo: obs-ffmpeg.so\ninfo: linux-v4l2.so\ninfo: linux-pulseaudio.so\ninfo: linux-pipewire.so\ninfo: linux-jack.so\ninfo: linux-capture.so\ninfo: linux-alsa.so\ninfo: image-source.so\ninfo: frontend-tools.so\ninfo: decklink-output-ui.so\ninfo: decklink-captions.so\ninfo: ---------------------------------\nQWidget::setTabOrder: 'first' and 'second' must be in the same window\ninfo: ==== Startup complete ===============================================\ninfo: All scene data cleared\ninfo: ------------------------------------------------\ninfo: [Python: resize-base-resolution-from-source2.py] \ninfo: [obs-scripting]: Loaded python script: resize-base-resolution-from-source2.py\ninfo: pulse-input: Server name: 'PulseAudio (on PipeWire 0.3.70) 15.0.0'\ninfo: pulse-input: Audio format: s16le, 48000 Hz, 2 channels\ninfo: pulse-input: Started recording from 'bluez_output.58_FC_C6_1C_55_4E.1.monitor' (default)\ninfo: [Loaded global audio device]: 'Desktop Audio'\ninfo: pulse-input: Server name: 'PulseAudio (on PipeWire 0.3.70) 15.0.0'\ninfo: pulse-input: Audio format: s32le, 48000 Hz, 2 channels\ninfo: pulse-input: Started recording from 'alsa_input.pci-0000_08_00.6.analog-stereo' (default)\ninfo: [Loaded global audio device]: 'Mic/Aux'\nerror: Source ID 'pipewire-desktop-capture-source' not found\nerror: Failed to create source 'Screen Capture (PipeWire) 2'!\ninfo: Switched to scene 'asdf'\ninfo: ------------------------------------------------\ninfo: Loaded scenes:\ninfo: - scene 'asdf':\ninfo: - scene 'sdf':\ninfo: - source: 'Screen Capture (PipeWire) 2' (pipewire-desktop-capture-source)\ninfo: ------------------------------------------------\ninfo: adding 21 milliseconds of audio buffering, total audio buffering is now 21 milliseconds (source: Desktop Audio)","reference_answer":"The first way is the correct way. What is your wayfire.ino file? The example config contains an autostart entry for exporting the necessary environmental variables to dbus/systemd.","answer_document_id":"gh_comment_1310223700","silver_evidence_path":["gh_comment_1573946927","gh_issue_1443601643","gh_comment_1310223700"],"known_context_document_ids":["gh_issue_1738346961"],"evidence_issue_ids":[1738346961,1443601643],"source_repo_name":"WayfireWM/wayfire","source_issue_id":1738346961,"source_issue_url":"https://github.com/WayfireWM/wayfire/issues/1802","target_repo_name":"WayfireWM/wayfire","target_issue_id":1443601643,"target_issue_url":"https://github.com/WayfireWM/wayfire/issues/1611","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0087","query":"NavigationBar onTap ripple alignment bug?","query_context":"Hi, using Flutter 3.7 with `flex_color_scheme: ^6.1.2`.\n\nflex\n\ndart\nFlexThemeData.dark(\n scheme: FlexScheme.flutterDash,\n surfaceMode: FlexSurfaceMode.levelSurfacesLowScaffold,\n blendLevel: 15,\n subThemesData: const FlexSubThemesData(),\n keyColors: const FlexKeyColors(),\n visualDensity: FlexColorScheme.comfortablePlatformDensity,\n useMaterial3: true,\n swapLegacyOnMaterial3: true,\n)\n\nThanks for your hard work!","reference_answer":"cc: @HansMuller \nNot sure why the ink ripple is shifted in M3. It might be due to the different label sizes in M2 and M3. \nI will fix this with a better a rect.","answer_document_id":"gh_comment_1360462664","silver_evidence_path":["gh_comment_1408007975","gh_issue_1505448979","gh_comment_1360462664"],"known_context_document_ids":["gh_issue_1561492427"],"evidence_issue_ids":[1561492427,1505448979],"source_repo_name":"rydmike/flex_color_scheme","source_issue_id":1561492427,"source_issue_url":"https://github.com/rydmike/flex_color_scheme/issues/114","target_repo_name":"flutter/flutter","target_issue_id":1505448979,"target_issue_url":"https://github.com/flutter/flutter/issues/117420","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0088","query":"Regression in v2: parent() returns old data even after the parent was invalidated using invalidate()?","query_context":"### Describe the bug\n\nThis is hard to explain, but I'll do my best.\nImagine the following route structure:\n\nroutes/\nāā +page.svelte\nāā +layout.ts\nāā [id]/\nā āā +page.svelte\nā āā +page.ts\nāā add/\nā āā +page.svelte\n\nThe root page shows a basket of fruits, which is loaded from an API in the root +layout.ts. It also includes a button that links to the add page.\nThe add page includes a button that adds fruit to the basket by posting to the API. After doing so, it invalidates the root +layout.ts load function and then navigates to the root page. \nThe [id] page only verifies whether a fruit with such an ID exists in the basket. It does that using the +page.ts load function, which fetches the parent using `await parent()` and then observes, whether a fruit with such an ID is in the parent data.\n\nNow, let's imagine I do this:\n- I navigate to the add page\n- I press the button to add a fruit\n- I get redirected to the root page, where the fruit is now listed.\n- I click the fruit, which redirects me to /[id] with the fruit id.\n- However, the page tells me that no such fruit exists.\n- I click back and navigate to the root page, which now does not list the fruit at all.\n- I refreshed the page, and now everything works.\n\nHere's a video where I do that:\n\n URL \n\nHowever, when I downgrade to sveltekit v1, or use `invalidateAll()` instead of `invalidate()`, everything works correctly, and the `parent()` function returns correct data. \n\n### Reproduction\n\nSvelteKit v2: URL \nThe issue here is easily reproducible as shown in the video\n\nSvelteKit v1: URL \nThe issue is not reproducible, everything works as expected. See the video:\n\n URL \n\nAnd as a bonus, SvelteKit v2 using `invalidateAll()`: URL \nThe issue is also not reproducible, everything works as expected.\n\n### Logs\n\nShell\nNot applicable\n\n### System Info\n\nShell\nSystem:\n OS: Linux 6.6 Arch Linux\n CPU: (24) x64 AMD Ryzen 9 5900X 12-Core Processor\n Memory: 35.83 GB / 62.70 GB\n Container: Yes\n Shell: 3.7.0 - /usr/bin/fish\n Binaries:\n Node: 18.18.2 - /usr/bin/node\n Yarn: 1.22.21 - /usr/bin/yarn\n npm: 10.2.5 - /usr/bin/npm\n pnpm: 8.14.0 - /usr/bin/pnpm\n bun: 1.0.18 - /usr/bin/bun\n Browsers:\n Chromium: 120.0.6099.199\n npmPackages:\n @sveltejs/adapter-auto: ^3.0.0 => 3.1.1 \n @sveltejs/kit: ^2.0.0 => 2.4.1 \n @sveltejs/vite-plugin-svelte: ^3.0.0 => 3.0.1 \n svelte: ^4.2.7 => 4.2.9 \n vite: ^5.0.3 => 5.0.12\n\n### Severity\n\nblocking an upgrade\n\n### Additional Information\n\nPS: Even though using `invalidateAll` is a workaround, I've decided to use the \"blocking an upgrade\" severity as rerunning all the load functions is not acceptable.\n**I hope I explained the issue well, if you have any questions, ask me.**","reference_answer":"The original issue is about `await goto(..); await invalidate(..)`, which calls `load` twice which is expected behavior: In the linked reproduction, the `goto` makes `load` rerun because of the changed search parameter and the `invalidate` afterwards makes it run again because the dependency it has declared with `depends` is invalidated.\n\nThe issue some others in this thread have about `await invalidate(..); await goto(..)` calling it twice was a bug that has been fixed by #11268","answer_document_id":"gh_comment_1952399868","silver_evidence_path":["gh_comment_1903697323","gh_issue_1796697628","gh_comment_1952399868"],"known_context_document_ids":["gh_issue_2092246534"],"evidence_issue_ids":[2092246534,1796697628],"source_repo_name":"sveltejs/kit","source_issue_id":2092246534,"source_issue_url":"https://github.com/sveltejs/kit/issues/11696","target_repo_name":"sveltejs/kit","target_issue_id":1796697628,"target_issue_url":"https://github.com/sveltejs/kit/issues/10359","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0089","query":"Engine: `local_ident`'s `id` type is opaque?","query_context":"The interface for `local_ident` in the engine is defined like this:\n\nocaml\n type id [@@deriving show, yojson, hash, compare, sexp, eq]\n\n val mk_id : kind -> int -> id\n\n type t = { name : string; id : id }\n [@@deriving show, yojson, hash, compare, sexp, eq]\n\nThe `id` type is opaque so backends cannot inspect the `kind` of a `local_ident`.\n\nWithout this information, certain things become impossible.","reference_answer":"Yeah. I see what you mean. Indeed, we may end up with a messy and complicated API...\n\nThe implementation itself is already quite messy and complicated, actually š
I would like to revisit it at some point...\n\nI think we should maybe brainstorm and figure out what kind of naming transformations one could want, and then decide whether a unified API is possible. I wonder what would be the best way of doing that: maybe a GH discussion?\n\nI think a unified API & unified transformation \"engine\" would be great. Having a declarative description of what a specific backend needs in terms of naming scheme, and then invoking the name transformation mechanism seems the right think to do to me. The concrete_ident module has invariants, and it's easy to break them, so doing something uniformly would be great.","answer_document_id":"gh_comment_2396043340","silver_evidence_path":["gh_comment_2395983457","gh_issue_2417566711","gh_comment_2396043340"],"known_context_document_ids":["gh_issue_2464556642"],"evidence_issue_ids":[2464556642,2417566711],"source_repo_name":"hacspec/hax","source_issue_id":2464556642,"source_issue_url":"https://github.com/hacspec/hax/issues/850","target_repo_name":"hacspec/hax","target_issue_id":2417566711,"target_issue_url":"https://github.com/hacspec/hax/issues/793","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0090","query":"RedisReceiver FeatureRequest: Cluster Info Capability?","query_context":"### Component(s)\n\nreceiver/redis\n\n### Is your feature request related to a problem? Please describe.\n\nRedis Receiver is currently only for monitoring individual redis performance. Need ability to also record the cluster info related to the individual instance\n\n### Describe the solution you'd like\n\nAdditional Optional Metrics that use the CLUSTER INFO command to return the fields returned from that command.\n\n### Describe alternatives you've considered\n\nBash Script to parse the commands manually but it would be nice to have it included in the receiver\n\n### Additional context\n\nExample Return from CLUSTER INFO command on a single node\n`cluster_state:ok\ncluster_slots_assigned:16384\ncluster_slots_ok:16384\ncluster_slots_pfail:0\ncluster_slots_fail:0\ncluster_known_nodes:152\ncluster_size:104\ncluster_current_epoch:827\ncluster_my_epoch:753\ncluster_stats_messages_ping_sent:7235\ncluster_stats_messages_pong_sent:7387\ncluster_stats_messages_fail_sent:309\ncluster_stats_messages_sent:14931\ncluster_stats_messages_ping_received:7387\ncluster_stats_messages_pong_received:7212\ncluster_stats_messages_fail_received:3\ncluster_stats_messages_received:14602\ntotal_cluster_links_buffer_limit_exceeded:0\n`","reference_answer":"This is a very interesting feature, and many of the plugins in otel col contrib are currently restricted to running on a single instance.","answer_document_id":"gh_comment_2487175790","silver_evidence_path":["gh_comment_2676352775","gh_issue_2453087208","gh_comment_2487175790"],"known_context_document_ids":["gh_issue_2870951792"],"evidence_issue_ids":[2870951792,2453087208],"source_repo_name":"open-telemetry/opentelemetry-collector-contrib","source_issue_id":2870951792,"source_issue_url":"https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/38117","target_repo_name":"open-telemetry/opentelemetry-collector-contrib","target_issue_id":2453087208,"target_issue_url":"https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/34460","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0091","query":"[Python][Packaging][Release] Missing pyarrow wheels for 17.0.0 release?","query_context":"### Describe the bug, including details regarding any error messages, version, and platform.\n\nFor example, release 16.1.0 has 7 Python 3.8 wheels\n\npyarrow-16.1.0-cp38-cp38-win_amd64.whl\npyarrow-16.1.0-cp38-cp38-manylinux_2_28_x86_64.whl\npyarrow-16.1.0-cp38-cp38-manylinux_2_28_aarch64.whl\npyarrow-16.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl\npyarrow-16.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl\npyarrow-16.1.0-cp38-cp38-macosx_11_0_arm64.whl\npyarrow-16.1.0-cp38-cp38-macosx_10_15_x86_64.whl\n\nwhile 17.0.0 has only 2\n\npyarrow-17.0.0-cp38-cp38-macosx_11_0_arm64.whl\npyarrow-17.0.0-cp38-cp38-macosx_10_15_x86_64.whl\n\n### Component(s)\n\nPython","reference_answer":"Hello @raulcd :wave:\nI've set the project limit for `pyarrow` to 40 GB on PyPI. Please be mindful of the frequency of releases at that size.\nHave a nice week! :snake:","answer_document_id":"gh_comment_2232928937","silver_evidence_path":["gh_comment_2231415167","gh_issue_2410813511","gh_comment_2232928937"],"known_context_document_ids":["gh_issue_2411638185"],"evidence_issue_ids":[2411638185,2410813511],"source_repo_name":"apache/arrow","source_issue_id":2411638185,"source_issue_url":"https://github.com/apache/arrow/issues/43289","target_repo_name":"pypi/support","target_issue_id":2410813511,"target_issue_url":"https://github.com/pypi/support/issues/4409","split":"test","quality_score":94.96,"annotation_level":"silver"}
{"query_id":"cross_issue_0092","query":"Displayed articles are not sorted by date?","query_context":"# IMPORTANT\n* [x] I have read the CONTRIBUTING.md and followed the provided tips\n* [x] I accept that the issue will be closed without comment if I do not check here\n* [x] I accept that the issue will be closed without comment if I do not fill out all items in the issue template.\n\n## Explain the Problem\nArticles shown in the frontend are not sorted by it's date, but instead of some import date / import ID and grouping.\n\nPlease see the video below, you can clearly see that there are articles once \"x hours ago\", then \"days ago\", then \"hours ago\" again, then somewhen \"weeks ago\"...\nI do expect that WHATEVER the source of the news article is, is on top if it was published the most recently. \n\n URL \n\nThis issue seems similar but was closed and stayed closed: < URL \n\nWhat I quickly tried is changing the `OrderBy` at `nextcloud/apps/news/lib/Db/ItemMapperV2.php` to `pub_date`, then the situation minimally improved, but guess thats the point where changes are needed.\n\nJust for reference, this is how TT-RSS orders newest:\n\ngrafik\n\n## Steps to Reproduce\nExplain what you did to encounter the issue\n1. Open news\n2. see the list is not ordered by date and I have to read OLD news first, before seeing other NEW news. Inverse - have to read NEW news, before seeing other OLD news of it!\n\n## System Information\n* News app version: 17.0.0\n* Nextcloud version: 22.2.3\n* Cron type: crontab\n* PHP version: 7.4\n* Database and version: mariadb 10\n* Browser and version: Any browser\n* OS and version: Any OS with a browser\n\n----\n\nWould be really cool if you can sort the news by date, instead of some ID made up on your own at database. It would be very fine if the user needs to check \"sort by date\" / toggle between ID and date, whatever is easiest and works \nThanks!","reference_answer":"@CarlSchwan migrated the admin settings to Vue js already that part is done.\nHe also took the existing work and cleaned the code a bit, but didn't continue after that probably due to time constraints. You can find a PR with the changes.\n\n@devlinjunker continued the work on the vue-rewrite branch, there are already some commits on that branch, you can find pull requests in his forked repository that are in progress.\n\nThat is the latest status.","answer_document_id":"gh_comment_1287429057","silver_evidence_path":["gh_comment_1487776042","gh_issue_236198045","gh_comment_1287429057"],"known_context_document_ids":["gh_issue_1074839548"],"evidence_issue_ids":[1074839548,236198045],"source_repo_name":"nextcloud/news","source_issue_id":1074839548,"source_issue_url":"https://github.com/nextcloud/news/issues/1608","target_repo_name":"nextcloud/news","target_issue_id":236198045,"target_issue_url":"https://github.com/nextcloud/news/issues/195","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0093","query":"How to correctly taint \"%this\"?","query_context":"### Overall Description\n\nHi, I want to write a plugin that can taint any class when any field of the class is tainted (e.g, when a tainted variable is passed to `obj.setName(String)`, I want the `obj` is tainted as well after that). However, the caller variable is not affected even through the \"%this\" variable in the callee function is tainted. So how to correctly handle this?\n\nYou can refer to the minimum reproduce code below that the \"%this\" in callee function is tainted\n \n\nHowever the caller \"%this\" is untouched\n \n\nI may misunderstand some parts of the pta analysis, do I need to manually propagate this (why not be handled automatically)?\n\n### Expected Behavior\n\nThe caller object is also tainted.\n\n### Current Behavior\n\nThe caller object is not tainted.\n\n### Tai-e Arguments\n\n \n Click here to see Tai-e Options \n \n\n \nyaml\noptionsFile: null\nprintHelp: false\nclassPath: []\nappClassPath:\n - tester-1.0-SNAPSHOT.jar\nmainClass: org.example.Main\ninputClasses: []\njavaVersion: 8\nprependJVM: false\nallowPhantom: true\nworldBuilderClass: pascal.taie.frontend.soot.SootWorldBuilder\noutputDir: output\npreBuildIR: false\nworldCacheMode: false\nscope: ALL\nnativeModel: true\nplanFile: null\nanalyses:\n ir-dumper: ;\n pta: \"taint-config:config.yml;plugins:[pascal.taie.analysis.pta.plugin.taint.SuperTaintHandler];dump:true\"\nonlyGenPlan: false\nkeepResult:\n - $KEEP-ALL\n\n \n\n \n\n### Tai-e Log\n\n \n Click here to see IR log \n \n\n \n\n static void process(java.lang.String r1) {\n org.example.User $r0;\n [0@L8] $r0 = new org.example.User;\n [1@L8] invokespecial $r0. ()>();\n [2@L9] invokevirtual $r0. (r1);\n [3@L10] invokestatic ($r0);\n [4@L11] return;\n }\n\n public void setName(java.lang.String name) {\n [0@L9] %this. = name;\n [1@L10] return;\n }\n \n\n \n\n \n Click here to see points-to results \n \n\n \n\n[]: /%stringconst0 -> [[]:MergedObj{ }]\n[]: /r0 -> [[]:EntryPointObj{alloc=MethodParam{ /0},type=java.lang.String[] in }]\n[]: /$r0 -> [[]:NewObj{ [0@L8] new org.example.User}]\n[]: /r1 -> [[]:MergedObj{ }, []:TaintObj{alloc= /0,type=java.lang.String}]\n[]: /$r1 -> [[]:NewObj{ [1@L1147] new java.io.PrintStream}, []:NewObj{ [9@L1150] new java.io.PrintStream}]\n[]: /$r2 -> [[]:MergedObj{ }, []:TaintObj{alloc= /0,type=java.lang.String}]\n[]: /r0 -> [[]:NewObj{ [0@L8] new org.example.User}]\n[]: /$r1 -> [[]:MergedObj{ }, []:TaintObj{alloc= /0,type=java.lang.String}]\n[]: /%this -> [[]:NewObj{ [0@L8] new org.example.User}]\n[]: ()>/%this -> [[]:NewObj{ [0@L8] new org.example.User}]\n[]: /%this -> [[]:MergedObj{ }, []:NewObj{ [0@L8] new org.example.User}, []:TaintObj{alloc= /0,type=java.lang.String}]\n[]: /name -> [[]:MergedObj{ }, []:TaintObj{alloc= /0,type=java.lang.String}]\n \n\n \n\n### Additional Information\n\n \n Click here to see key code of my plugin \n \n\n \n\n// It may not be efficient, any suggestions to improve? \n@Override\n public void onNewCSMethod(CSMethod csMethod) {\n JMethod method = csMethod.getMethod();\n Context context = csMethod.getContext();\n IR ir = method.getIR();\n for (Stmt i : ir.getStmts()) {\n if (i instanceof StoreField) {\n StoreField st = (StoreField) i;\n if (st.getLValue() instanceof InstanceFieldAccess) {\n InstanceFieldAccess lv = (InstanceFieldAccess) st.getLValue();\n if (lv.getBase().toString() == \"%this\" && lv.getFieldRef().getDeclaringClass() == method.getDeclaringClass()\n && !st.getRValue().isConst()) {\n CSVar from = solver.getCSManager().getCSVar(context, st.getRValue());\n CSVar to = solver.getCSManager().getCSVar(context, lv.getBase());\n solver.addPFGEdge(from, to, FlowKind.LOCAL_ASSIGN);\n }\n }\n }\n }\n }\n \n\n \n\n \n Click here to see minimum reproduce code \n \n\n \n\npackage org.example;\n\npublic class Main {\n static void sk(User u){\n System.out.println(u.getName());\n }\n static void process(String src){\n User s=new User();\n s.setName(src);\n sk(s);\n }\n public static void main(String[] args) {\n process(\"xxx\");\n }\n}\n\npackage org.example;\n\npublic class User {\n public String getName() {\n return name;\n }\n\n public void setName(String name) {\n this.name = name;\n }\n\n private String name;\n\n}","reference_answer":"Writing taint configuration programmatically is our future plan. It's being incubated.","answer_document_id":"gh_comment_1907358255","silver_evidence_path":["gh_comment_2133218763","gh_issue_2095930435","gh_comment_1907358255"],"known_context_document_ids":["gh_issue_2318719027"],"evidence_issue_ids":[2318719027,2095930435],"source_repo_name":"pascal-lab/Tai-e","source_issue_id":2318719027,"source_issue_url":"https://github.com/pascal-lab/Tai-e/issues/109","target_repo_name":"pascal-lab/Tai-e","target_issue_id":2095930435,"target_issue_url":"https://github.com/pascal-lab/Tai-e/issues/86","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0094","query":"Docker container update status and update action?","query_context":"**Is your feature request related to a problem? Please describe.**\nI keep opening the Unraid interface mainly for the docker container updates. I have over 100 running at the moment so there is pretty much daily something to update, but I also want to be selective and not update something that I rely on at that moment in time. So I want to create some automations using Home Assistant.\n\n**Describe the solution you'd like**\n- A boolean flag in the attributes of a docker container if there is an update avaialble.\n- An action that can be called on that container to update it.\n\n**Additional context**\nThis would allow me to create automations for updating containers I know are not problematic automatically and show the ones that I need to time it right in some list on a daskboard for myself where I can hit a button and have them updated. If there is something I can do to help with this, please let me know (also a software dev here).","reference_answer":"@marcokreeft87 I created a docker insights module for the integration. \n\nThe following sensors gets created\n\n1. Container CPU Usage\n2. Container Memory Usage\n3. Container Network Download / Upload\n4. Total Containers \n5. Running Containers\n6. Paused Containers\n\nFeel free to checkout the experimental feature and let me know what you think\n\nYou will need to copy the unraid folder from experiment/docker-insights branch to your home assistant instance.\n\nYou can only enable docker insights after the initial configuration setup and it takes about a minute to initialise and create the sensors.\n\nScreenshot 2024-11-24 at 4 53 54āÆpm\n\nYou will see 2 device entries after initialisation \n\nScreenshot 2024-11-24 at 4 55 05āÆpm\n\nI'll look if its possible to get docker uptime data","answer_document_id":"gh_comment_2495843577","silver_evidence_path":["gh_comment_2513383971","gh_issue_2672517941","gh_comment_2495843577"],"known_context_document_ids":["gh_issue_2712014721"],"evidence_issue_ids":[2712014721,2672517941],"source_repo_name":"domalab/ha-unraid","source_issue_id":2712014721,"source_issue_url":"https://github.com/domalab/ha-unraid/issues/23","target_repo_name":"domalab/ha-unraid","target_issue_id":2672517941,"target_issue_url":"https://github.com/domalab/ha-unraid/issues/17","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0097","query":"Time zone problem?","query_context":"Depuis l'installation de la dernière mise à jour, les rendez-vous créés dans Google sont décalés d'une heure dans Outlook.\nPar exemple, si je crée un rendez-vous à 10 h, il apparaît à 9 h dans Outlook. Par contre, la synchronisation dans l'autre sens fonctionne bien.\n\nSince installing the latest update, appointments created in Google are shifted by one hour in Outlook.\nFor example, if I create an appointment at 10am, it will appear at 9am in Outlook. However, synchronisation in the other direction works fine.","reference_answer":"@buckaroo54 You're running a full sync or a delta sync? Either press `Shift` and click `Sync`, or use the dropdown on the Sync button...","answer_document_id":"gh_comment_2667171743","silver_evidence_path":["gh_comment_2643480408","gh_issue_2797842193","gh_comment_2667171743"],"known_context_document_ids":["gh_issue_2835266022"],"evidence_issue_ids":[2835266022,2797842193],"source_repo_name":"phw198/OutlookGoogleCalendarSync","source_issue_id":2835266022,"source_issue_url":"https://github.com/phw198/OutlookGoogleCalendarSync/issues/2065","target_repo_name":"phw198/OutlookGoogleCalendarSync","target_issue_id":2797842193,"target_issue_url":"https://github.com/phw198/OutlookGoogleCalendarSync/issues/2047","split":"test","quality_score":94.83,"annotation_level":"silver"}
{"query_id":"cross_issue_0098","query":"Support working with query string and JSON body?","query_context":"### Preflight checklist\n\n- [X] I could not find a solution in the existing issues, docs, nor discussions.\n- [X] I agree to follow this project's Code of Conduct.\n- [X] I have read and am following this repository's Contribution Guidelines.\n- [ ] This issue affects my Ory Cloud project.\n- [ ] I have joined the Ory Community Slack.\n- [ ] I am signed up to the Ory Security Patch Newsletter.\n\n### Describe your problem\n\nSupport working with query string and JSON body\n\n### Describe your ideal solution\n\n1. Mutating and hydrating query string and JSON body (e.g. adding/replacing/removing a query string parameter or a JSON body path)\n2. Extracting data from query string and JSON body for keto_engine_acp_ory (e.g. data from a query string parameter or a JSON body path)\n3. Support autherizer rules for query string parameters and JSON body paths (e.g. allowing or disallowing specific values)\n\n### Workarounds or alternatives\n\n-\n\n### Version\n\n-\n\n### Additional Context\n\n_No response_","reference_answer":"Thank you, could you give some example API requests and flows you have? I have a bit of a hard time following because I donāt know Centrifugo","answer_document_id":"gh_comment_932914654","silver_evidence_path":["gh_comment_1250206030","gh_issue_1013337990","gh_comment_932914654"],"known_context_document_ids":["gh_issue_1239529653"],"evidence_issue_ids":[1239529653,1013337990],"source_repo_name":"ory/oathkeeper","source_issue_id":1239529653,"source_issue_url":"https://github.com/ory/oathkeeper/issues/964","target_repo_name":"ory/oathkeeper","target_issue_id":1013337990,"target_issue_url":"https://github.com/ory/oathkeeper/issues/843","split":"test","quality_score":86.15,"annotation_level":"silver"}
{"query_id":"cross_issue_0099","query":"Add automated test for Epinio UI?","query_context":"We have to find a way to do automated tests on the Epinio UI.\n\nThere is multiple ways to do this:\n- only the API (like other Rancher products)\n- as a real user (with something like Selenium)\n- both\n\nLet's discuss the pros and cons of all and anyone can add his ideas here also ;-)","reference_answer":"First steps are done, one test was triggered last night and all was green!\n URL \nLet's create other small cards to avoid this one to become too big.\nFixed by URL","answer_document_id":"gh_comment_1026563834","silver_evidence_path":["gh_comment_1019907686","gh_issue_1105497695","gh_comment_1026563834"],"known_context_document_ids":["gh_issue_1056212763"],"evidence_issue_ids":[1056212763,1105497695],"source_repo_name":"epinio/epinio","source_issue_id":1056212763,"source_issue_url":"https://github.com/epinio/epinio/issues/1000","target_repo_name":"epinio/epinio-end-to-end-tests","target_issue_id":1105497695,"target_issue_url":"https://github.com/epinio/epinio-end-to-end-tests/issues/55","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0100","query":"Symmetries of a C2v system inconsistent with PySCF 2.0 and NWChem?","query_context":"See issue #1464. . The snippet from that issue, on the current master branch, returns:\n\n['A1' 'A1' 'B2' 'A1' 'B1' 'A1' 'B2']\n['A1' 'A1' 'B2' 'A1' 'B1' 'A1' 'B2']\n\nThe output for the unshifted and shifted molecule is the same, but it is the \"incorrect\" output, i.e. what Harry got for the \"unshifted\" molecule and not consistent with NWChem (or PySCF 2.0). \n\nPR URL changes the behaviour to be inconsistent with previous versions of PySCF and with NWChem.","reference_answer":"Using the testing script from #1464 , it's not hard to see that the px orbitals of the oxygen atom is assigned to B1 symmetry, and py orbitals are assigned to B2 symmetry. I believe the irreps are correctly labelled. I'll mark this issue as solved for the moment. Feel free to reopen the issue to continue the discussion.","answer_document_id":"gh_comment_2294995122","silver_evidence_path":["gh_comment_2294994494","gh_issue_1376637896","gh_comment_2294995122"],"known_context_document_ids":["gh_issue_1667906283"],"evidence_issue_ids":[1667906283,1376637896],"source_repo_name":"pyscf/pyscf","source_issue_id":1667906283,"source_issue_url":"https://github.com/pyscf/pyscf/issues/1705","target_repo_name":"pyscf/pyscf","target_issue_id":1376637896,"target_issue_url":"https://github.com/pyscf/pyscf/issues/1430","split":"test","quality_score":78.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0101","query":"[Bug]: Current integ tests workflow fails on version incompatibility?","query_context":"### Describe the bug\n\nThe current OS integ tests fails on importing module because `urllib` only supports `OpenSSL` 1.1.1+. Current ssl version is `1.0.2`\n\nLink: URL \nFull context: \n\nRunning ./src/run_integ_test.py manifests/2.8.0/opensearch-2.8.0-test.yml --component job-scheduler --test-run-id 4980 --paths opensearch=/var/jenkins/workspace/integ-test/tar --base-path URL ...\n\nTraceback (most recent call last):\n\n File \"./src/run_integ_test.py\", line 13, in \n\n from test_workflow.integ_test.integ_test_runners import IntegTestRunners\n\n File \"/var/jenkins/workspace/integ-test/src/test_workflow/integ_test/integ_test_runners.py\", line 11, in \n\n from test_workflow.integ_test.integ_test_runner_opensearch import IntegTestRunnerOpenSearch\n\n File \"/var/jenkins/workspace/integ-test/src/test_workflow/integ_test/integ_test_runner_opensearch.py\", line 15, in \n\n from test_workflow.integ_test.integ_test_suite_opensearch import IntegTestSuiteOpenSearch\n\n File \"/var/jenkins/workspace/integ-test/src/test_workflow/integ_test/integ_test_suite_opensearch.py\", line 22, in \n\n from test_workflow.integ_test.topology import NodeEndpoint, Topology\n\n File \"/var/jenkins/workspace/integ-test/src/test_workflow/integ_test/topology.py\", line 16, in \n\n from test_workflow.integ_test.local_test_cluster import LocalTestCluster\n\n File \"/var/jenkins/workspace/integ-test/src/test_workflow/integ_test/local_test_cluster.py\", line 13, in \n\n from test_workflow.integ_test.service import Service\n\n File \"/var/jenkins/workspace/integ-test/src/test_workflow/integ_test/service.py\", line 14, in \n\n import requests\n\n File \"/usr/share/opensearch/.local/share/virtualenvs/integ-test-B5RGX0jA/lib/python3.7/site-packages/requests/__init__.py\", line 43, in \n\n import urllib3\n\n File \"/usr/share/opensearch/.local/share/virtualenvs/integ-test-B5RGX0jA/lib/python3.7/site-packages/urllib3/__init__.py\", line 39, in \n\n \"urllib3 v2.0 only supports OpenSSL 1.1.1+, currently \"\n\nImportError: urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the 'ssl' module is compiled with OpenSSL 1.0.2k-fips 26 Jan 2017. See: URL \n\nscript returned exit code 1\n\n### To reproduce\n\n URL \n\n### Expected behavior\n\n_No response_\n\n### Screenshots\n\nIf applicable, add screenshots to help explain your problem.\n\n### Host / Environment\n\n_No response_\n\n### Additional context\n\n_No response_\n\n### Relevant log output\n\n_No response_","reference_answer":"The cmake upgrade to 3.23.3 version was initially setup as a follow up in the al2023 upgrade/nodejs upgrade, tho now it seems like a 2.9.0 dependencies thus it needs to be updated soon.\n\nThanks.","answer_document_id":"gh_comment_1629803672","silver_evidence_path":["gh_comment_1562083333","gh_issue_1115629364","gh_comment_1629803672"],"known_context_document_ids":["gh_issue_1724654911"],"evidence_issue_ids":[1724654911,1115629364],"source_repo_name":"opensearch-project/opensearch-build","source_issue_id":1724654911,"source_issue_url":"https://github.com/opensearch-project/opensearch-build/issues/3554","target_repo_name":"opensearch-project/opensearch-build","target_issue_id":1115629364,"target_issue_url":"https://github.com/opensearch-project/opensearch-build/issues/1563","split":"test","quality_score":91.33,"annotation_level":"silver"}
{"query_id":"cross_issue_0102","query":"Automatically creates a replication of nodes in the scene when the game is closed?","query_context":"### Tested versions\n\nthe master version\n\n### System information\n\nwindows 10\n\n### Issue description\n\n URL \n\n### Steps to reproduce\n\nFollow the actions in the video\n\n### Minimal reproduction project (MRP)\n\ntest1.zip","reference_answer":"At a glance I suspect the issue is that the change in timing means the scene editor adds a preview environment or similar incorrectly and then doesn't restore it, could be related to incorrectly not checking ownership as well","answer_document_id":"gh_comment_2017882964","silver_evidence_path":["gh_comment_2049912281","gh_issue_2205441058","gh_comment_2017882964"],"known_context_document_ids":["gh_issue_2237740030"],"evidence_issue_ids":[2237740030,2205441058],"source_repo_name":"godotengine/godot","source_issue_id":2237740030,"source_issue_url":"https://github.com/godotengine/godot/issues/90533","target_repo_name":"godotengine/godot","target_issue_id":2205441058,"target_issue_url":"https://github.com/godotengine/godot/issues/89877","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0103","query":"Python 3.13 not support?","query_context":"Hi there!\n\nSomething got updated on my system, and I am unable to build master, as well as branches that I have been able to build before. \n\nIn all cases, the error message is this:\n\n[ 10%] Building CXX object CMakeFiles/vegastrike_python.dir/src/python/config/python_utils.cpp.o\n/mnt/int/system/aur/vegastrike-engine-git/src/Vega-Strike-Engine-Source/engine/src/python/config/python_utils.cpp: In function āconst std::string GetPythonPath()ā:\n/mnt/int/system/aur/vegastrike-engine-git/src/Vega-Strike-Engine-Source/engine/src/python/config/python_utils.cpp:44:37: warning: āwchar_t* Py_GetPath()ā is deprecated [-Wdeprecated-declarations]\n 44 | wchar_t* w_path_ptr = Py_GetPath();\n | ~~~~~~~~~~^~\nIn file included from /usr/include/python3.13/Python.h:123,\n from /usr/include/boost/python/detail/wrap_python.hpp:178,\n from /usr/include/boost/python/detail/prefix.hpp:13,\n from /usr/include/boost/python/args.hpp:8,\n from /usr/include/boost/python.hpp:11,\n from /mnt/int/system/aur/vegastrike-engine-git/src/Vega-Strike-Engine-Source/engine/src/python/config/python_utils.cpp:31:\n/usr/include/python3.13/pylifecycle.h:46:43: note: declared here\n 46 | Py_DEPRECATED(3.13) PyAPI_FUNC(wchar_t *) Py_GetPath(void);\n | ^~~~~~~~~~\n/mnt/int/system/aur/vegastrike-engine-git/src/Vega-Strike-Engine-Source/engine/src/python/config/python_utils.cpp: In function āPyObject* GetClassFromPython(std::string, std::string, std::string, std::string)ā:\n/mnt/int/system/aur/vegastrike-engine-git/src/Vega-Strike-Engine-Source/engine/src/python/config/python_utils.cpp:76:5: error: āPy_SetPathā was not declared in this scope; did you mean āPy_GetPathā?\n 76 | Py_SetPath(python_path);\n | ^~~~~~~~~~\n | Py_GetPath\nmake[2]: *** [CMakeFiles/vegastrike_python.dir/build.make:79: CMakeFiles/vegastrike_python.dir/src/python/config/python_utils.cpp.o] Error 1\nmake[1]: *** [CMakeFiles/Makefile2:224: CMakeFiles/vegastrike_python.dir/all] Error 2\nmake: *** [Makefile:156: all] Error 2\n==> ERROR: A failure occurred in build().\n Aborting...\n\nNormally I have makeflags -j32, so this failure got jumbled among all the other jobs that are running, but for this build single jobs were specified.","reference_answer":"Issue gh-88279 was in 2021.\n\nI wrote it in this issue description in 2023:\n \n\nWhat changed in that the PyConfig API is now widely available and is a better API than the deprecated one.","answer_document_id":"gh_comment_1893788333","silver_evidence_path":["gh_comment_2563369707","gh_issue_1734409208","gh_comment_1893788333"],"known_context_document_ids":["gh_issue_2760451153"],"evidence_issue_ids":[2760451153,1734409208],"source_repo_name":"vegastrike/Vega-Strike-Engine-Source","source_issue_id":2760451153,"source_issue_url":"https://github.com/vegastrike/Vega-Strike-Engine-Source/issues/941","target_repo_name":"python/cpython","target_issue_id":1734409208,"target_issue_url":"https://github.com/python/cpython/issues/105145","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0105","query":"design: is the buffer of a string or a bytes value required to terminate with a 0 ?","query_context":"[Update:] This started as a bug issue assuming that the the answer was \"yes\". Turns out that we are not settled on the answer.\n\nTherefore this issue now requests to determine the answer and to adjust our implementation to comply with it. If the answer is \"yes\", users can create non-compliant strings (see below). If the answer is \"no\", we likely have code that will malfunction when passed a non-0-terminating string.\n\n[Previous contents:] Our convention today for the underlying buffer of a string, i.e., `_string.buff` (source), is that it is zero-terminated. Therefore, s.buffSize should be at least s.buffLen+1.\n\nNeither condition is checked in `createStringWithBorrowedBuffer(x: c_ptr(?t), length: int, size: int)` (source). Therefore users can invoke this function in a way that creates a string with our convention violated.\n\nThe test `test/library/standard/IO/readAll/readBytesArray.chpl` (source)does exactly that. It invokes createStringWithBorrowedBuffer() passing it a buffer of size 1032 and length == size == 1032. The violation of both conditions goes unnoticed because nothing in that test relies on the invariant to hold. Whether or not the string is 0-terminated is immaterial because the buffer `a_signed` does not have room for that final zero.\n\nIf we switch the test to invoke createBytesWithBorrowedBuffer(), it will have the same violation.\n\nChapel version: 4d5379da31","reference_answer":"I agree with what Michael says (and think it's consistent with `writef()/readf()` where ultimately we want to do more compile-time checking for param formatting strings, but having any checking is better than none).\n\nI don't think there should be a back door for users, but that having a \"prevalidated\" code path for internal use makes sense.\n\nI don't have a strong feeling about validating within the I/O system vs. at string creation time at present. Whatever we do, I'd like to not have to support three different string validation pieces of code. Ideally, they'd all use the same code (which might suggest doing the validation in C so that it can be reused in the compiler and via the runtime?).","answer_document_id":"gh_comment_547036055","silver_evidence_path":["gh_comment_1439241061","gh_issue_500412725","gh_comment_547036055"],"known_context_document_ids":["gh_issue_1474596091"],"evidence_issue_ids":[1474596091,500412725],"source_repo_name":"chapel-lang/chapel","source_issue_id":1474596091,"source_issue_url":"https://github.com/chapel-lang/chapel/issues/21160","target_repo_name":"chapel-lang/chapel","target_issue_id":500412725,"target_issue_url":"https://github.com/chapel-lang/chapel/issues/14177","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0106","query":"Does this component support encryption and decryption for big data, Hive, hbase and other components?","query_context":"## Question\n\n**For English only**, other languages will not accept.\n\nBefore asking a question, make sure you have:\n\n- Googled your question.\n- Searched open and closed GitHub issues.\n- Read documentation: ShardingSphere Doc.\n\nPlease pay attention on issues you submitted, because we maybe need more details. \nIf no response anymore and we cannot reproduce it on current information, we will **close it**.","reference_answer":"# Change Scope\nI check the documents and the source code, and I may miss something, feel free to let me know.\n## Parser\n### Add a new module shardingsphere-sql-parser-hbase\n- antlr4: don't need to write all rules, can add more rules if needed\n- hbase parser package: \n - `HBaseLexer` \n - `HBaseParser`\n - `HBaseParserFacade` \n- hbase visitor package: \n - `HBaseDMLStatementSQLVisitor`: only support DML in phase1\n - `HBaseStatementSQLVisitorFacade`\n- resources: HBase SPI config\n\n### Add a new package in shardingsphere-sql-parser-statement\nParse statements and segments\n\n## Add a new DataType\n- Implement `DatabaseType`\n- Implement `DialectTableMetaDataLoader`\n\n## Proxy\n- Implement `DatabaseProtocolFrontendEngine`\n- Implement `JDBCDriverURLRecognizer`\n\n# Questions\nI don't know if we can use some frameworks like Apache Phoenix to help us convert the SQL to HBase queries. But if we choose to use Apache Phoenix, it looks like shardingsphere only need to do a few things. Or shardingsphere has to \"compiles it into a series of HBase scans, and orchestrates the running of those scans to produce regular JDBC result sets\"","answer_document_id":"gh_comment_998815517","silver_evidence_path":["gh_comment_1253115429","gh_issue_1077742095","gh_comment_998815517"],"known_context_document_ids":["gh_issue_1380200488"],"evidence_issue_ids":[1380200488,1077742095],"source_repo_name":"apache/shardingsphere","source_issue_id":1380200488,"source_issue_url":"https://github.com/apache/shardingsphere/issues/21101","target_repo_name":"apache/shardingsphere","target_issue_id":1077742095,"target_issue_url":"https://github.com/apache/shardingsphere/issues/14061","split":"test","quality_score":86.15,"annotation_level":"silver"}
{"query_id":"cross_issue_0107","query":"Cannot add liquidity with asymmetric ratio?","query_context":"Give a description of the bug! Include things like how to reproduce it, what you expected to happen, and what actually happened.\n\nCannot add to pool ROWAN/UFO. \"There was an unknown error.\" Error failed to execute message; message index: 0: Cannot add liquidity with asymmetric ratio.","reference_answer":"closing as asymmetric adds are currently disabled. Flat fees is introduced in order to re-enable asymmetric adds. The issue is not expected to appear once asymmetric adds are re-enabled","answer_document_id":"gh_comment_1233176242","silver_evidence_path":["gh_comment_1200126109","gh_issue_1267796922","gh_comment_1233176242"],"known_context_document_ids":["gh_issue_1322946989"],"evidence_issue_ids":[1322946989,1267796922],"source_repo_name":"Sifchain/Support-Tickets","source_issue_id":1322946989,"source_issue_url":"https://github.com/Sifchain/Support-Tickets/issues/401","target_repo_name":"Sifchain/Support-Tickets","target_issue_id":1267796922,"target_issue_url":"https://github.com/Sifchain/Support-Tickets/issues/389","split":"test","quality_score":94.12,"annotation_level":"silver"}
{"query_id":"cross_issue_0108","query":"[New game]: ShootOut?","query_context":"### š® Game Request\n\nThis is a one-player shooting game made with HTML, CSS, and JavaScript. You will get four difficulty levels, and with each increasing difficulty, the speed and number of enemies will increase. With the help of three different weapons, you can kill enemies and score points. According to the number of enemies killed and weapons used score will be awarded.\n \nI am further looking to improve this game but as of now I want to contribute this to GameZone \n\n### Point down the features\n\n- Made with HTML, CSS, and JavaScript. \n- Animations and Sound Effects\n- Four different difficulty levels\n- Three different weapons\n- Score Board \n\n### Select program in which you are contributing\n\nGSSoC23\n\n### Code of Conduct\n\n- [X] I follow CONTRIBUTING GUIDELINE of this project.","reference_answer":"Hey @kunjgit ! Thank you so much for your raising the issueš \n Itās all yours, you can come anytime again and make some contributions! š \n Alone, we can do little, but together we can do so much! š","answer_document_id":"gh_comment_1851204988","silver_evidence_path":["gh_comment_1744307759","gh_issue_1923331532","gh_comment_1851204988"],"known_context_document_ids":["gh_issue_1788862578"],"evidence_issue_ids":[1788862578,1923331532],"source_repo_name":"kunjgit/GameZone","source_issue_id":1788862578,"source_issue_url":"https://github.com/kunjgit/GameZone/issues/2276","target_repo_name":"kunjgit/GameZone","target_issue_id":1923331532,"target_issue_url":"https://github.com/kunjgit/GameZone/issues/2944","split":"test","quality_score":89.15,"annotation_level":"silver"}
{"query_id":"cross_issue_0109","query":"Community Standards?","query_context":"I just stumbled upon the Community Standards page of this repository. There are some good ideas in there (which we already want to implement @MatteoSalvador, @alisonmarsden), with examples:\n- Code of conduct\n- Contributing (in addition to the examples we have from openCARP and OpenFoam)\n- Issue templates\n- Pull request template\n\nWe can start adding those to this repository and then adapt them for \"larger\" projects (like `svFSI+/-`).","reference_answer":"Yes, please!\n \n\nThey come up now when you open a new issue or pull request. You can give it a try and just click through it without adding anything.\n \n\nI'm all for it! Unfortunately, we have ~1500 Doxygen warning in `svFSI+` so we can't do that anytime soon. But we could try implementing something that the number of warnings must go down in every pull request.\n\nWe could do the same for coverage. StanfordSpezi uses Codecov, which @MatteoSalvador and I briefly looked into. However, it's only free for public repositories (`svFSI+` is still private).","answer_document_id":"gh_comment_1753268323","silver_evidence_path":["gh_comment_1751477653","gh_issue_1909635083","gh_comment_1753268323"],"known_context_document_ids":["gh_issue_1916572696"],"evidence_issue_ids":[1916572696,1909635083],"source_repo_name":"StanfordCBCL/svZeroDPlus","source_issue_id":1916572696,"source_issue_url":"https://github.com/StanfordCBCL/svZeroDPlus/issues/47","target_repo_name":"SimVascular/simvascular.github.io","target_issue_id":1909635083,"target_issue_url":"https://github.com/SimVascular/simvascular.github.io/issues/8","split":"test","quality_score":84.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0110","query":"Backend tests with the \"force-dynamic\" mode are not executed by \"cmake check-onnx-backend-dynamic\"?","query_context":"(Updated in March 6th, 2024)\nCurrently \"make check-onnx-backend-dynamic\" does not test dynamic cases but tests static cases, because \"test/backend/common.py\" sets the \"TEST_IMPORTER_FORCE_DYNAMIC\" environment variable, but \"test/backend/variables.py\" does not process it.\n\nPR#2735 fixes this issue, and dynamic backend tests are enabled.\nIt also disabled the following 27 backend tests to pass the Jenkins backend tests temporally.\n\nYour supports to fix these issues are very welcome!\nIf you fix some issues or find some unnecessary tests, please report the results at this Issue. Thanks.\n\n1. test_instancenorm_epsilon_cpu\n2. test_instancenorm_example_cpu\n3. test_gathernd_example_float32_cpu\n4. test_gathernd_example_int32_batch_dim1_cpu\n5. test_gathernd_example_int32_cpu\n6. test_castlike_DOUBLE_to_FLOAT_cpu\n7. test_castlike_FLOAT_to_DOUBLE_cpu\n8. test_convtranspose_3d_cpu\n9. test_convtranspose_cpu\n10. test_constant_pad_cpu\n11. test_convtranspose_pad_cpu\n12. test_convtranspose_kernel_shape_cpu\n13. test_convtranspose_output_shape_cpu\n14. test_einsum_transpose_cpu\n15. test_einsum_inner_prod_cpu\n16. test_depthtospace_example_cpu\n17. test_convtranspose_1d_cpu\n18. test_convtranspose_dilations_cpu\n19. test_convtranspose_autopad_same_cpu\n20. test_convtranspose_pads_cpu\n21. test_einsum_batch_diagonal_cpu\n22. test_depthtospace_crd_mode_example_cpu\n23. test_einsum_batch_matmul_cpu\n24. test_einsum_sum_cpu\n25. test_edge_pad_cpu\n26. ~~test_onnxmlir_top_k_float16_cpu~~ # Test condition fixed. K should be a1D tensor, cannot be dynamic.\n27. ~~test_onnxmlir_top_k_smallest_float16_cpu~~ # Test condition fixed. K should be a1D tensor, cannot be dynamic\n28. test_reflect_pad_cpu\n29. test_spacetodepth_example_cpu\n30. ~~test_top_k_smallest_cpu~~ # Test condition fixed. K should be a1D tensor, cannot be dynamic\n31. ~~test_top_k_cpu~~ # Test condition fixed. K should be a1D tensor, cannot be dynamic\n32. ~~test_top_k_negative_axis_cpu~~ # Test condition fixed. K should be a1D tensor, cannot be dynamic","reference_answer":"I am closing this issue, since ll issues errors with dynamic backend tests (on CPU) are fixed. Thanks!","answer_document_id":"gh_comment_2099520818","silver_evidence_path":["gh_comment_1982231896","gh_issue_2172819255","gh_comment_2099520818"],"known_context_document_ids":["gh_issue_2009083033"],"evidence_issue_ids":[2009083033,2172819255],"source_repo_name":"onnx/onnx-mlir","source_issue_id":2009083033,"source_issue_url":"https://github.com/onnx/onnx-mlir/issues/2639","target_repo_name":"onnx/onnx-mlir","target_issue_id":2172819255,"target_issue_url":"https://github.com/onnx/onnx-mlir/issues/2743","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0111","query":"Bottom standoffs - Bug or user?","query_context":"OS: OpenSUSE Leap 15.6\nOpenSCAD: 2021.01\nSBC_Case_Builder 3.0 - current github. \n\nFirst let me thank you for this great tool! I very much enjoy working with it, although I'm new to it an just started with my first project.\n\nI designed an Extended Case for a Radxa 4c+ v1.41 using the base case design āshellā. \nHereās my workflow:\n 1) Created a new model for the 4c+ based upon rpi4b in SBC_Model_Framework/sbc_models.cfg.\n 2) āIntegratedā it following the instructions using get_customized_values.scad\n 3) Verified the model by 3D printing a regular shell case.\n\nBut the bottom standoff support is cutting out material from the wall which results in a thinner wall up to the height of the full standoff. The workaround is changing the bottom standoff size support from 10,00 to 9,00. Cause the position of the standoff is defined by the pcb itās not moving anywhere => problem fixed. \n\nIn the case of extended case bottom standoff this doesnāt work. Changing the ex case bottom standoff size, say from 10,00 to 8,00 moves the whole standoff closer to the corner still cutting material from the wall.\n\nThis is not happening with the top standoffs for both sbc and extended. Changing the model i.e. to rpi4b or c1+ shows the same behavior. \n\nIs this a bug or is it me? It looks like a boolean operation should be union but is cut. Can I fix this in one of the OpenSCAD files? If yes, where. \n\nI also would like to contribute the Radxa 4c+ v1.41 model. Whatās the process?","reference_answer":"The predefined case pull down is not meant to hold all possible cases. With thousands of possible cases that is not practical or possible with the limitations of the Customizer UI within OpenSCAD. The pull down menu of predefined cases are custom cases or ones that have additional changes from the accessories subsystem. In addition, a reference shell case is included as a benefit for all SBC from the OEMs that support this project by supplying SBC samples, Hard Kernel and Pine64.\n\nThis tool is meant to autonomously build cases for any supported SBC by selecting the SBC and base case design under the View tab. It will automatically create the smallest possible symmetrical case using the current default tab settings. Any additional changes desired can also be made from the respective tab default settings e.g. the type of standoff fasteners to use for the top and bottom. \n\nThis is explained in the README.md file and I would strongly recommend you pay special attention to the notes-tips-and-things-to-check section for other suggestions of things to consider when setting up a case. Any case you create can then be saved in the predefined case pull down menu by pressing the + sign next to the 'save preset' button near the top of the GUI. The + sign creates a new entry and the 'save preset' button saves the current selected preset. There is also an area in the README.md that covers what each GUI tab and its parameters accomplish.\n\nSo if you want an OrangePi shell case select the correct SBC under the View tab and then select the case design. It will be automatically created and any other changes you want can be selected from the appropriate tab for the default presets. It's that simple. FYI, What you are calling the default RPI case is not the default case. It is an example of a custom RPI5 case incorporating a M2 HAT accessory.\n\nIf you need further assistance reopen this issue or create another.","answer_document_id":"gh_comment_2586008224","silver_evidence_path":["gh_comment_2624986458","gh_issue_2782750050","gh_comment_2586008224"],"known_context_document_ids":["gh_issue_2818722937"],"evidence_issue_ids":[2818722937,2782750050],"source_repo_name":"hominoids/SBC_Case_Builder","source_issue_id":2818722937,"source_issue_url":"https://github.com/hominoids/SBC_Case_Builder/issues/42","target_repo_name":"hominoids/SBC_Case_Builder","target_issue_id":2782750050,"target_issue_url":"https://github.com/hominoids/SBC_Case_Builder/issues/41","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0116","query":"[AR] ASSISTENZA: allegati?","query_context":"### Il caricamento degli allegati nn rispecchia il componente previsto del design system (variante Trascina e rilascia) \nche mostra il tipo di file e il peso (elementi da mostrare per accessibilità ), e quindi porta a vari problemi:\n\n- testo placeholder dentro il campo input > Seleziona il file\n- una volta caricato il file il campo Descrizione è uguale al nome del file e se molto lungo porta la tabella a scrollare in orizzontale e nascondere la CTA di eliminazione\n- [x] Se carico più di 3 file dovrebbe essere **nascosto**/disabilitato l'input per selezionare file successivi invece che lasciar selezionare il 4 file e poi mandare in errore\n\nLa richiesta è di implementare il corretto componente da design system\n\nimage","reference_answer":"Riapro la issue perchè non vedo risolto il `BUG` sul caricamento dei png, o ora anche dei PDF. Ho provato sia con screenshot nominati corretti che con immagini scaricate native png senza problemi nel nome e:\n- o blocca il caricamento stesso\n- l'antivirus dice file corrotto\n\nAllego i file caricati come allegati\nimage","answer_document_id":"gh_comment_2522634588","silver_evidence_path":["gh_comment_2368093294","gh_issue_2519880349","gh_comment_2522634588"],"known_context_document_ids":["gh_issue_2542300262"],"evidence_issue_ids":[2542300262,2519880349],"source_repo_name":"teamdigitale/anagrafenazionale.interno.it-site","source_issue_id":2542300262,"source_issue_url":"https://github.com/teamdigitale/anagrafenazionale.interno.it-site/issues/249","target_repo_name":"teamdigitale/anagrafenazionale.interno.it-site","target_issue_id":2519880349,"target_issue_url":"https://github.com/teamdigitale/anagrafenazionale.interno.it-site/issues/240","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0118","query":"Cannot print layout cards?","query_context":"**Describe the bug**\nI'm trying to print the layout cards but when I type ctrl-P in Chrysalis 10.5.351 it disconnects my Atreus so all I can print is the 'connect' screen. Not sure if it's related but I'm also getting frequent 'communication timeout's when trying to connect. I'm connecting the keyboard directly to my laptop, not to a USB hub.\n\n**To Reproduce**\nSteps to reproduce the behavior:\n1. Select 'layout cards' to display the layouts\n2. Type 'control+P'\n3. Chrysalis window refreshes, shows the keyboard 'connect' screen, OS print dialog appears, if I print it prints the connect screen.\n\n**Expected behavior**\nWindow continues to show layout cards, print dialog appears, I print the layout cards.\n\n**Desktop (please complete the following information):**\n - OS: Win 10\n - Chrysalis Version: 10.5.321\nchrysalis-debug.bundle.zip","reference_answer":"I was thinking about this the other day, and I think I have a solution that'd work nicely: a `CustomNames` plugin on the Kaleidoscope side, which we could use to store custom names for keys or layers, in eeprom or in progmem. Chrysalis would simply query the names, and use those instead of the built-in ones.\n\nFor storage in EEPROM, I'd use the following format: 4 bits for the type of name, 4 bits for the number of names (N). Then we have N index->name mappings, where the index size depends on the type, and names are NULL terminated. Initially, we'd have two types: layer & key names. For layers, the index is 1 byte, for keys, its two bytes. If we need to have more than 16 names of the same type stored, we can store multiple series of the same type. The serialization ends when the number of names is 0.\n\nSo, for example, to have a custom name for layer #0 and #1, and a custom name for Dynamic Macro #0, we'd encode it as:\n\n \"QWERTY\\0\" \"FUN\\0\"\n \"Greet\\0\"\n \n\nFor PROGMEM, it's a bit tougher, doing this kind of encoding at compile-time is more difficult. I'm not sure what the best approach would be there.\n\nMaybe if we separated type and length... that'd allow 255 custom names per type, should be a plenty, even if we disallow multiple series of the same type (but we could have multiple series anyway). But maybe I can fit the bit fiddling into a macro. We'll see.\n\nIn any case, to keep up with the spirit of storing keymap and keyboard settings on the keyboard, I'd store the custom names there, too, rather than somewhere on the Chrysalis side.","answer_document_id":"gh_comment_1165491294","silver_evidence_path":["gh_comment_1291962869","gh_issue_365267342","gh_comment_1165491294"],"known_context_document_ids":["gh_issue_1305757115"],"evidence_issue_ids":[1305757115,365267342],"source_repo_name":"keyboardio/Chrysalis","source_issue_id":1305757115,"source_issue_url":"https://github.com/keyboardio/Chrysalis/issues/992","target_repo_name":"keyboardio/Chrysalis","target_issue_id":365267342,"target_issue_url":"https://github.com/keyboardio/Chrysalis/issues/3","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0119","query":"Upgrade from 2024.07.0 to 2025.02.07 failed?","query_context":"After upgrading from 2024.07.0 to 2025.02.07, the UI eventually starts up but complains that it's unable to connect to local DNS (cloudflared running in the same portainer stack). Clicking around in the interface, a few of the screens don't work (clients, groups, etc). Most notably, DNS is **NOT** working. Local testing of cloudflared indicates that it appears to be working fine.\n\n dig @192.168.1.4 -p 5053 google.com\n\n; > DiG 9.18.30-0ubuntu0.24.04.2-Ubuntu > @192.168.1.4 -p 5053 google.com\n; (1 server found)\n;; global options: +cmd\n;; Got answer:\n;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 20839\n;; flags: qr aa rd ra; QUERY: 1, ANSWER: 6, AUTHORITY: 0, ADDITIONAL: 1\n\n;; OPT PSEUDOSECTION:\n; EDNS: version: 0, flags:; udp: 1232\n; COOKIE: a704732a048cdcaf (echoed)\n;; QUESTION SECTION:\n;google.com. IN A\n\n;; ANSWER SECTION:\ngoogle.com. 298 IN A 142.251.116.138\ngoogle.com. 298 IN A 142.251.116.139\ngoogle.com. 298 IN A 142.251.116.113\ngoogle.com. 298 IN A 142.251.116.100\ngoogle.com. 298 IN A 142.251.116.101\ngoogle.com. 298 IN A 142.251.116.102\n\n;; Query time: 0 msec\n;; SERVER: 192.168.1.4#5053(192.168.1.4) (UDP)\n;; WHEN: Mon Mar 03 14:34:50 CST 2025\n;; MSG SIZE rcvd: 207\n\nAfter reverting to 2024.07.0 which had been working, it complains about unexpected DB changes (understandable), as this ends up in my logs:\n\n [i] Creating new gravity databases...\n\n [ā] Unable to copy data from /etc/pihole/gravity.db to /etc/pihole/gravity.db_temp\n\n Parse error near line 18: table adlist has 10 columns but 12 values were supplied\n\nRuntime error near line 20: FOREIGN KEY constraint failed (19)\n\n [ā] Unable to create gravity database. Please try again later. If the problem persists, please contact support.\n\n \n\n \n\n \nBug\n\n## Details\n \n\n## Related Issues\n- [ ] I have searched this repository/Pi-hole forums for existing issues and pull requests that look similar \n \n\n \n \n\n## How to reproduce the issue \n\n1. Environment data\n * Operating System: DSM 7.2.2-72806 Update 3\n * Hardware: Synology DS 1019+\n * Kernel Architecture: \n * Docker Install Info and version: \n - Software source: Sy\n - Supplimentary Software: portainer 2.21.2\n * Hardware architecture: x86\n\n2. docker-compose.yml contents, docker run shell command, or paste a screenshot of any UI based configuration of containers here\n\nversion: \"3.6\"\n\nservices:\n cloudflared:\n container_name: cloudflared\n restart: unless-stopped\n image: cloudflare/cloudflared:2024.12.1\n command: proxy-dns\n environment:\n - \"TUNNEL_DNS_UPSTREAM= URL \n - \"TUNNEL_METRICS=0.0.0.0:49312\"\n - \"TUNNEL_DNS_ADDRESS=0.0.0.0\"\n - \"TUNNEL_DNS_PORT=5053\"\n # sysctls:\n # - net.ipv4.ip_unprivileged_port_start=53\n networks:\n pihole_lan:\n ipv4_address: 192.168.1.4\n pihole_bridge:\n ipv4_address: 192.168.10.4\n \n pihole:\n cap_add:\n - NET_ADMIN # required if you are using Pi-hole as your DHCP server\n container_name: pihole\n restart: unless-stopped\n image: pihole/pihole:2025.02.7\n ports:\n - 443/tcp\n - 53/tcp\n - 53/udp\n - 67/udp # required if you are using Pi-hole as your DHCP server\n - 80/tcp \n networks:\n pihole_lan:\n ipv4_address: 192.168.1.5\n pihole_bridge:\n ipv4_address: 192.168.10.2\n\n environment:\n - \"TZ=America/Chicago\"\n - \"DNS1=192.168.1.4#5053\"\n - \"DNS2=no\"\n - \"DNSMASQ_LISTENING=all\"\n - \"DNSMASQ_USER=xxxx\"\n - \"WEBPASSWORD=xxxx\"\n volumes:\n - '/volume1/docker/pihole/pihole/:/etc/pihole/'\n - '/volume1/docker/pihole/dnsmasq.d/:/etc/dnsmasq.d/'\n\nnetworks:\n pihole_lan:\n external: true\n name: dns\n pihole_bridge:\n external: true\n name: dns_bridge\n\n4. any additional info to help reproduce\nI was really hoping to not have to nuke all of my historical data and configuration. I see that the old configs were backed up, but it looks like it doesn't auto backup the DBs.\n\n## These common fixes didn't work for my issue\n \n- [ ] I have tried removing/destroying my container, and re-creating a new container\n- [ ] I have tried fresh volume data by backing up and moving/removing the old volume data\n- [ ] I have tried running the stock `docker run` example(s) in the readme (removing any customizations I added)\n- [x] I have tried a newer or older version of Docker Pi-hole (depending what version the issue started in for me)\n- [ ] I have tried running without my volume data mounts to eliminate volumes as the cause\n\nIf the above debugging / fixes revealed any new information note it here.\nAdd any other debugging steps you've taken or theories on root cause that may help.","reference_answer":"We've seen reports where Pi-hole v6 with the lastest `dnsmasq` core using `0x20` encoding to generate mixed-case queries don't play well with `cloudflared`. \n\nTry to disable it by running adding `no-0x20-encode` to misc.dnsmasq_lines in Settings > All Settings > Misc","answer_document_id":"gh_comment_2672719266","silver_evidence_path":["gh_comment_2695509727","gh_issue_2867296167","gh_comment_2672719266"],"known_context_document_ids":["gh_issue_2892277240"],"evidence_issue_ids":[2892277240,2867296167],"source_repo_name":"pi-hole/docker-pi-hole","source_issue_id":2892277240,"source_issue_url":"https://github.com/pi-hole/docker-pi-hole/issues/1774","target_repo_name":"pi-hole/pi-hole","target_issue_id":2867296167,"target_issue_url":"https://github.com/pi-hole/pi-hole/issues/5943","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0122","query":"[BUG] Websockets hang on recv()?","query_context":"Please check the following items and answer all the questions when reporting a bug, \notherwise it will be closed immediately.\n\n- [x] **This is NOT a site-related \"bugs\"**, e.g. some site blocks me when using curl_cffi,\n UNLESS it has been verified that the reason is missing pieces in the impersonation.\n- [x] A code snippet that can reproduce this bug is provided, even if it's a one-liner.\n- [x] Version information will be pasted as below.\n\n**Describe the bug**\n\nUsing websockets, when iterating through received messages, websockets hang on recv() most of the time. This occurs for both async and non-async implementations.\n\nWhen running the code below, call either `asyncio.run(ws_curl_cffi_async())` or `ws_curl_cffi()` multiple times to discover the issue, as occasionally it works as expected (usually on the first run).\n\nThe code also includes a snippet using Python's websocket-client library, which reliably works each time.\n\nSeparately, it would be great if a message timeout could be configured, such that `recv()` doesn't hang indefinitely.\n\n**To Reproduce**\n\npy\nimport asyncio\n\nfrom curl_cffi.requests import AsyncSession, WebSocket\n\nasync def ws_curl_cffi_async():\n async with AsyncSession() as s:\n ws = await s.ws_connect(\"wss://echo.websocket.org\")\n await asyncio.gather(*[ws.send_str(f\"Hello {i}\") for i in range(20)])\n async for message in ws:\n print(message)\n\ndef ws_curl_cffi():\n ws = WebSocket().connect(\"wss://echo.websocket.org\")\n for i in range(20):\n ws.send(f\"Hello {i}\")\n for i in range(20):\n print(ws.recv())\n ws.close()\n\nif __name__ == \"__main__\":\n # asyncio.run(ws_curl_cffi_async())\n ws_curl_cffi()\n\nThe example below uses the websocket-client library to demonstrate the expected behavior. It works reliably each time.\n\n`pip install websocket-client==1.6.4`\n\npy\nfrom websocket import create_connection\n\ndef ws_websocket():\n ws = create_connection(\"wss://echo.websocket.org\")\n for i in range(20):\n ws.send(f\"Hello {i}\")\n \n for i in range(20):\n print(ws.recv())\n\n ws.close()\n\nif __name__ == \"__main__\":\n ws_websocket()\n\n**Expected behavior**\n\nAll 19 messages should be received and printed.\n\n**Versions**\n - OS: Linux aarch64 (python:3.12.2 Docker image)\n - curl-cffi==v0.8.1b9\n\n**Additional Information**\n\nThis is possibly an issue related to queuing of response messages. If each message is read immediately after the `send`, it works more reliably, but this is only applicable to this \"echo\" example. For example\n\npy\ndef ws_websocket():\n ws = create_connection(\"wss://echo.websocket.org\")\n for i in range(20):\n ws.send(f\"Hello {i}\")\n print(ws.recv())\n\n ws.close()","reference_answer":"Have you encountered any issues when using other websockets client? like `websocket_client` or `websockets`.","answer_document_id":"gh_comment_2719809530","silver_evidence_path":["gh_comment_2668614674","gh_issue_2829732293","gh_comment_2719809530"],"known_context_document_ids":["gh_issue_2805676093"],"evidence_issue_ids":[2805676093,2829732293],"source_repo_name":"lexiforest/curl_cffi","source_issue_id":2805676093,"source_issue_url":"https://github.com/lexiforest/curl_cffi/issues/487","target_repo_name":"lexiforest/curl_cffi","target_issue_id":2829732293,"target_issue_url":"https://github.com/lexiforest/curl_cffi/issues/495","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0123","query":"initfromthreadtest fail on Ubuntu 22 x64?","query_context":"Source: master (c94898ba7)\nBuild: URL \nHost: Ubuntu 22.04.1 LTS (Jammy) x64\nCompiler: gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0\nOccurrence: always\nHow to reproduce: ./configure --enable-gc-assertions --enable-cplusplus && make -j check CFLAGS_EXTRA=\"-D _FORTIFY_SOURCE=2 -D FIND_LEAK -D SKIP_LEAKED_OBJECTS_PRINTING\"","reference_answer":"Source: master ( URL \nHost: Ubuntu 22.04.1 LTS (Jammy) x64\nOccurrence: always\nHow to reproduce: ./configure --enable-gc-assertions --enable-cplusplus && make -j check CFLAGS_EXTRA=\"-D _FORTIFY_SOURCE=2 -D FIND_LEAK -D SKIP_LEAKED_OBJECTS_PRINTING\"\nReproduced locally:\n\nThis test program is not designed for leak detection mode\nSUCCEEDED\nFound 40 leaked objects:\nAssertion failure: extra/../pthread_support.c:691\nassertion failure","answer_document_id":"gh_comment_1493294310","silver_evidence_path":["gh_comment_1497062313","gh_issue_1609646591","gh_comment_1493294310"],"known_context_document_ids":["gh_issue_1648675529"],"evidence_issue_ids":[1648675529,1609646591],"source_repo_name":"ivmai/bdwgc","source_issue_id":1648675529,"source_issue_url":"https://github.com/ivmai/bdwgc/issues/542","target_repo_name":"ivmai/bdwgc","target_issue_id":1609646591,"target_issue_url":"https://github.com/ivmai/bdwgc/issues/533","split":"test","quality_score":75.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0124","query":"How to add commander's high priority tasks for a settlement?","query_context":"**Is your feature request related to a problem? Please describe.**\n- The player commander is interested in constructing a building.\n- The first construction phase is constructing a foundation.\n- To pour a foundation, it needs, say 80 kg, concrete.\n- However, the concrete demand is only 490 and no one is automatically Digging Local Regolith.\n- If player can emphasize the need for the whole settlement to get on the task of Digging Local Regolith, it won't have issues getting enough regolith to mix concrete in near future.\n\n**Describe the rationale**\n- Player lacks the ability to post tasks or customize the task priority of the settlement \n\n**Describe the solution you desire to see**\n- Direct the player to use Command Dashboard's resource tab\n- In resource tab, build an UI control so that the player may adjust the **push** points (say from -3.0 to +3.0) on his top five priority task \n\n**Describe alternatives you've considered**\n- Use Monitor Tool's Task backlog\n- Add an UI control to allow player to add a task to the list and/or adjust the priority score of this task\n\n**Screenshots**\nimage\n\n**Specifications (please complete the following information):**\n - pre 3.6.0 build 8145\n\n**Additional context**\n- It's also very important to be more transparent and reveal to player what priority (in terms of showcasing scores) the settlement has in what tasks and missions are more likely to do.\n- For instance, under each space agency's mission agenda, there are particular push for certain science subjects and certain missions.","reference_answer":"No. It was to add something to how we use the secondary Vehicle Status. I was sure I created an issue. I will look through my stuff and try and find it","answer_document_id":"gh_comment_2169224426","silver_evidence_path":["gh_comment_1582950594","gh_issue_1719040123","gh_comment_2169224426"],"known_context_document_ids":["gh_issue_1744908845"],"evidence_issue_ids":[1744908845,1719040123],"source_repo_name":"mars-sim/mars-sim","source_issue_id":1744908845,"source_issue_url":"https://github.com/mars-sim/mars-sim/issues/908","target_repo_name":"mars-sim/mars-sim","target_issue_id":1719040123,"target_issue_url":"https://github.com/mars-sim/mars-sim/issues/890","split":"test","quality_score":93.24,"annotation_level":"silver"}
{"query_id":"cross_issue_0125","query":"C variable array length?","query_context":"Since the C99 version, arrays can be declared with a dimension from a variable. For example:\nint length = 12;\nchar myArray[length];\n\nThe plugin detects this C feature as an error:\nthe expression must have a constant value C / C ++ (28)\n\nThere are so many differences between C and C ++ that, possibly, different extensions should be created according to the peculiarities of each language.","reference_answer":"It looks like the remaining two issues blocking this have been fixed. Maybe we can enable MS extensions for Cygwin and MinGW by default now?","answer_document_id":"gh_comment_1428985420","silver_evidence_path":["gh_comment_1016803328","gh_issue_1041516788","gh_comment_1428985420"],"known_context_document_ids":["gh_issue_1091825691"],"evidence_issue_ids":[1091825691,1041516788],"source_repo_name":"microsoft/vscode-cpptools","source_issue_id":1091825691,"source_issue_url":"https://github.com/microsoft/vscode-cpptools/issues/8620","target_repo_name":"microsoft/vscode-cpptools","target_issue_id":1041516788,"target_issue_url":"https://github.com/microsoft/vscode-cpptools/issues/8353","split":"test","quality_score":91.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0126","query":"Enhance NFS Mount Efficiency with Stage/Unstage Volume Capability?","query_context":"**Is your feature request related to a problem?/Why is this needed**\n \n\n**Describe the solution you'd like in detail**\n \n\nI would like to propose an enhancement that focuses on optimizing NFS mount operations. This feature aims to improve resource utilization and reduce startup times for pods accessing NFS servers. A similar mounting behaviour exists on the ebs csidriver or juicefs csidriver. \n\nThe core idea is to introduce an option that leverages the stage and unstage volume capabilities of the CSI driver. The proposed changes include:\n\n* Single NFS Server Mount: Mount the NFS server only once for each unique combination of server name, export name, and mount options.\n\n* Bind Mounts for Pods: Implement actual bind mounts for each pod accessing the NFS server. This approach should also support subpaths for each pod.\n\n* Mount Management: Ensure that the mount operation occurs once per unique combination mentioned above, preventing redundant mounts (or simply the volumeid of the pv).\n\nThis enhancement brings several key benefits:\n\n* Reduced Mount Operations: By mounting the NFS server less frequently, we can significantly reduce the number of mount operations that the NFS server has to handle.\n\n* Improved Cache Utilization: With fewer mounts, cache usage becomes more efficient, enhancing overall system performance.\n\n* Faster Startup Times for Pods: Pods accessing the NFS server will experience quicker startup times, leading to more efficient deployments and scaling operations.\n\n**Describe alternatives you've considered**\n \n\nAn alternative could be using a daemonset which mounts the nfs servers to the host, which then are bind mounted via hostpath into the pod. The problem is here that it hides the fact in the pod that a nfs is used and could be less reliable. \n\n**Additional context**","reference_answer":"@gnufied for `fsGroupChangePolicy` support, I figured out why I made such implementation for NFS at that time, this driver(including smb and nfs) Supports CSIVolumeMountGroup, while CSIVolumeMountGroup is mainly for smb, not for nfs, but nfs shares the same driver config as smb, and due to this code snippet:\n\nif !driverSupportsCSIVolumeMountGroup && c.supportsFSGroup(fsType, mounterArgs.FsGroup, fsGroupPolicy) {\n\n URL \n\nI have to make some workaround, otherwise `volume.SetVolumeOwnership` would never happen on azure file nfs volume. Current azure file nfs & smb volume mount actually happens in `NodeStageVolume` interface, so this `fsGroupChangePolicy` property is already a per volume property now, the implementation is already slightly different from URL which only implements `NodePublishVolume` interface","answer_document_id":"gh_comment_1517861487","silver_evidence_path":["gh_comment_1868413313","gh_issue_1676507860","gh_comment_1517861487"],"known_context_document_ids":["gh_issue_2054692269"],"evidence_issue_ids":[2054692269,1676507860],"source_repo_name":"kubernetes-csi/csi-driver-nfs","source_issue_id":2054692269,"source_issue_url":"https://github.com/kubernetes-csi/csi-driver-nfs/issues/573","target_repo_name":"kubernetes-sigs/azurefile-csi-driver","target_issue_id":1676507860,"target_issue_url":"https://github.com/kubernetes-sigs/azurefile-csi-driver/issues/1224","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0127","query":"Shortened output registration or signing phase disrupts round?","query_context":"Together with @szymonlesisz we found the following issue.\n\nThe WabiSabi coordinator implements the following mechanism:\n * If the connection confirmation phase of a round has expired, there exists an Alice who has not confirmed her input and there are enough Alices in the round, then the output registration phase is shortened from 6 to 3 minutes.\n * If the output registration confirmation phase of a round has expired, there exists an Alice who has not sent the ready-to-sign request, then the signing phase is shortened from 4 to 1 minute.\n\nThe mechanism doesn't work properly for the following reasons:\n * Wasabi wallet registers outputs from the time when the reissuance is finished to the time when 80 % of the expected duration of the output registration phase has passed. The problem is the coordinator does not notify clients that the output registration phase was shortened. As a result, many clients don't manage to register their outputs, they refuse to sign the final transaction, their inputs are banned and the round is disrupted.\n * The signing phase which lasts for one minute may be too short for Trezor users. I don't have exact number, but signing coinjoin transaction on Trezor can take 30 seconds. If the TOR is laggy, the remaining 30 seconds is not enough for delivery of the signature.","reference_answer":"Guys, do you have any plans on how to continue with this? Either get into consensus or conclusion or closing, maybe modify the scope to be more accurate?","answer_document_id":"gh_comment_1667694321","silver_evidence_path":["gh_comment_1596749649","gh_issue_1760706300","gh_comment_1667694321"],"known_context_document_ids":["gh_issue_1760722819"],"evidence_issue_ids":[1760722819,1760706300],"source_repo_name":"zkSNACKs/WalletWasabi","source_issue_id":1760722819,"source_issue_url":"https://github.com/zkSNACKs/WalletWasabi/issues/10901","target_repo_name":"zkSNACKs/WalletWasabi","target_issue_id":1760706300,"target_issue_url":"https://github.com/zkSNACKs/WalletWasabi/issues/10900","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0128","query":"Please remove dependencies on **rgdal**, **rgeos**, and/or **maptools**?","query_context":"This package depends on (depends, imports or suggests) **raster** and one or more of the retiring packages **rgdal**, **rgeos** or **maptools** ( URL Since **raster** `3.6.3`, all use of external FOSS library functionality has been transferred to **terra**, making the retiring packages very likely redundant. It would help greatly if you could remove dependencies on the retiring packages as soon as possible.","reference_answer":"Thanks Dr. Bivand. I just finished building my house, moved in, and found my laptop chord the other day. I will get working on this in the mornings. Shall I use this channel to ask questions?","answer_document_id":"gh_comment_1737201400","silver_evidence_path":["gh_comment_1523096967","gh_issue_1649524120","gh_comment_1737201400"],"known_context_document_ids":["gh_issue_1496139118"],"evidence_issue_ids":[1496139118,1649524120],"source_repo_name":"adokter/bioRad","source_issue_id":1496139118,"source_issue_url":"https://github.com/adokter/bioRad/issues/545","target_repo_name":"ssefick/StreamMetabolism","target_issue_id":1649524120,"target_issue_url":"https://github.com/ssefick/StreamMetabolism/issues/2","split":"test","quality_score":91.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0130","query":"[Bug] verifyImages from GCR Fails with Permission Denied -- imagePullSecret not Respected?","query_context":"### Kyverno Version\n\n1.10.1\n\n### Kubernetes Version\n\n1.25.x\n\n### Kubernetes Platform\n\nGKE\n\n### Kyverno Rule Type\n\nverifyImages\n\n### Description\n\nHaving a policy that verifies image signatures from Google Artifact registry fails with the following error\n\n[kyverno-reports-controller-574cf8d8d9-hj8xj] I0723 21:24:43.520443 1 cosign.go:62]\ncosign \"msg\"=\"image verification failed\"\"error\"=\n\"GET URL \nDENIED: Permission \\\"artifactregistry.repositories.downloadArtifacts\\\" denied on resource\n\\\"projects/my-registry/locations/europe/repositories/eu.gcr.io\\\" (or it may not exist)\"\n\nI know the credentials have this permission because\n\ncosign login eu.gcr.io -u _json_key -p \"$(cat ./service-account-key-file.json)\"\ncosign download signature eu.gcr.io/my-registry/ : | jq\n\nwork. (and if I remove the \"Artifact Registry Reader\" role from the IAM User of this service account key it fails)\n\nI feel like I am missing something trivial but could not exactly pinpoint what. The steps to reproduce are below:\n\n### Steps to reproduce\n\n1. Install Kyverno on GCP via the Helm chart\n2. Add a Policy with a verifyImages rule that checks images from Google Artifact Registry (for Europe eu.gcr.io):\n\napiVersion: kyverno.io/v1\nkind: ClusterPolicy\nmetadata:\n name: check-image\nspec:\n validationFailureAction: Audit\n background: true\n webhookTimeoutSeconds: 30\n failurePolicy: Fail\n rules:\n - name: check-image\n match:\n any:\n - resources:\n kinds:\n - Pod\n names:\n - \"foo-test*\"\n exclude:\n any:\n - resources:\n namespaces:\n - kube-system\n verifyImages:\n - mutateDigest: false\n imageReferences:\n - \"eu.gcr.io/my-registry/foo*\"\n attestors:\n - count: 1\n entries:\n - keys:\n publicKeys: |-\n KEY\n\n3. This policy obviously fails with Permission Denied as Kyverno knows nothing about GCR credentials.\n4. Create the credentials using:\n\nkubectl create secret docker-registry regcred \\\n --docker-server=eu.gcr.io \\\n --docker-username=_json_key \\\n --docker-password=\"$(cat ./service-account-key-file.json)\"\n\n and of course add `--imagePullSecrets=regcred` to `admission-controller` and `reports-controller`.\n \n \n\n I0723 21:55:05.082293 1 registry.go:17] setup/registry-client \"msg\"=\"setup registry client...\" \"insecure\"=false \"secrets\"=\"regcred\"\n\n5. Kyverno still fails with the same error.\n6. `kubectl delete secrets/regcred && kubectl rollout restart deploy` for testing purposes (basically deleting the secret `imagePullSecrets` argument refers to) and still the same error. I was expecting an error that denotes the missing `Secret` resource. \n\n---\n\nI have also tried annotating the service accounts under `kyverno` namespace as such\n\nkubectl annotate serviceaccounts --all iam.gke.io/gcp-service-account=kyverno-service-account@my-registry.iam.gserviceaccount.com\n\nWhich expectedly did not have any effect.\n\n---\n\ncurl \" URL \n\nfails with the same error.\n\ncurl -u \"_json_key:`cat ./service-account-key-file.json`\" \" URL \n\n**Actually returns a token. Which leads me to believe that there is a problem with how we are providing basic auth to `go-containerregistry`.**\n\n---\n\nThe docker-registry secret also looks legit. Confirmed using this\n\nk get secrets/regcred -o json | jq '.data.\".dockerconfigjson\"' -r | base64 -D | jq\n\nand\n\nsh\n \n --imagePullSecrets=regcred\n --imagePullSecrets=regcred\n --imagePullSecrets=regcred\n\n---\n\nCreated a small program to test `go-containerregistry` with what I have\n\ngolang\npackage main\n\nimport (\n \"context\"\n \"encoding/base64\"\n \"fmt\"\n\n kauth \"github.com/google/go-containerregistry/pkg/authn/kubernetes\"\n \"github.com/google/go-containerregistry/pkg/name\"\n \"github.com/google/go-containerregistry/pkg/v1/remote\"\n corev1 \"k8s.io/api/core/v1\"\n)\n\nfunc main() {\n ref, err := name.ParseReference(\"eu.gcr.io/my-registry/foo:latest\")\n if err != nil {\n panic(err)\n }\n\n // Output of `k get secret/regcred -o json | jq '.data.\".dockerconfigjson\"' -r`\n secBase64 := \"OUTPUT\"\n secData, err := base64.StdEncoding.DecodeString(secBase64)\n if err != nil {\n panic(err)\n }\n\n // Secret itself\n secrets := []corev1.Secret{\n {\n Type: corev1.SecretTypeDockerConfigJson,\n Data: map[string][]byte{\n \".dockerconfigjson\": secData,\n },\n },\n }\n\n // Pull secret to auth keychain\n authsec, err := kauth.NewFromPullSecrets(context.TODO(), secrets)\n if err != nil {\n panic(err)\n }\n\n // Fetch the manifest using default credentials.\n img, err := remote.Get(ref, remote.WithAuthFromKeychain(authsec))\n if err != nil {\n panic(err)\n }\n\n // Prints the digest\n fmt.Println(img.Digest)\n}\n\nIt works.\n\n### Expected behavior\n\nKyverno using the provided secrets to access Google Artifact registry.\n\n### Screenshots\n\n_No response_\n\n### Kyverno logs\n\nshell\nShared in description\n\n### Slack discussion\n\n_No response_\n\n### Troubleshooting\n\n- [X] I have read and followed the documentation AND the troubleshooting guide.\n- [X] I have searched other issues in this repository and mine is not recorded.","reference_answer":"@rsavage-nozominetworks - can you please try setting `verifyDigest: false` for the `Audit` mode policy rule?","answer_document_id":"gh_comment_1619787412","silver_evidence_path":["gh_comment_1647513724","gh_issue_1777069177","gh_comment_1619787412"],"known_context_document_ids":["gh_issue_1817341226"],"evidence_issue_ids":[1817341226,1777069177],"source_repo_name":"kyverno/kyverno","source_issue_id":1817341226,"source_issue_url":"https://github.com/kyverno/kyverno/issues/7887","target_repo_name":"kyverno/kyverno","target_issue_id":1777069177,"target_issue_url":"https://github.com/kyverno/kyverno/issues/7684","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0131","query":"containerOpen is too strong a precondition for transparent and/or enterable objects?","query_context":"Certain actions have a `containerOpen` precondition when that precondition is too strong:\n\n1. It's inappropriate for transparent containers. `LOOK IN GLASS CASE` should not require opening the case.\n2. It's inappropriate for booths that the player is inside. `LOOK IN CAR` or `PUT WIDGET IN CAR` should require opening the car door only if the player is not already in the car.","reference_answer":"Iāve now pulled your fix for this, made another couple of tweaks, and pushed them up to GitHub.\n\nOne tweak was to define the origVocabLikelihood property on SubComponent (the compiler gave me a warning it was undefined).\n\nThe other was to make a enterable container SubComponent and its parent facets of each other during preinit so that the same pronoun will still work should which of the two is favoured by the parser change over successive turns, e.g. ENTER IT, CLOSE IT, X IT.\n\nSo far as I can tell from the testing Iāve done it all works okay, except that when I define SubComponents as separate objects I get a pointless and misleading disambiguation prompt with the LOOK IN command. I think giving a slightly higher vocabLikelihood to the SubComponent may fix it, but Iām still working on it.\n\nFrom: Daniel Fox Franke ***@***.***>\nSent: 06 January 2025 16:51\nTo: EricEve/adv3lite ***@***.***>\nCc: Eric Eve ***@***.***>; Comment ***@***.***>\nSubject: Re: [EricEve/adv3lite] SubComponent vocabulary assignment doesn't work correctly for transparent booths (Issue #24)\n\nNo. I think fixing this requires at least most of changes I made in #27","answer_document_id":"gh_comment_2575679505","silver_evidence_path":["gh_comment_2567263526","gh_issue_2765368889","gh_comment_2575679505"],"known_context_document_ids":["gh_issue_2765247509"],"evidence_issue_ids":[2765247509,2765368889],"source_repo_name":"EricEve/adv3lite","source_issue_id":2765247509,"source_issue_url":"https://github.com/EricEve/adv3lite/issues/23","target_repo_name":"EricEve/adv3lite","target_issue_id":2765368889,"target_issue_url":"https://github.com/EricEve/adv3lite/issues/24","split":"test","quality_score":81.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0132","query":"as_proxy substantially slower?","query_context":"### Description\n\nI use `FastMCP.as_proxy` all the time, but recently I built a new server and made it with acting as a proxy. For certain servers (http streamable at least), Tool execution is substantially slower. Repo:\n\n1. Launch server as is.\n2. Open inspector with `npx @modelcontextprotocol/inspector`\n3. Connect via Streamable HTTP to ` URL \n4. List tools\n5. Run the single tool.\n\nResponse is instant.\n\nNow swap lines 15 and 16 (so `FastMCP.as_proxy...` is active).\n\nCreate an `mcp_test.json` in the same directory as the script, then run the same test. Every tool (local and remote) will be **much** slower to respond.\n\njson\n{\n \"mcpServers\": {\n \"deepwiki\": {\n \"url\": \" URL \n \"transport\": \"http\"\n },\n \"time\": {\n \"command\": \"uvx\",\n \"args\": [\n \"mcp-server-time\"\n ]\n }\n }\n}\n\n### Example Code\n\nPython\nimport json\nfrom datetime import datetime\nfrom pathlib import Path\nfrom zoneinfo import ZoneInfo\n\nfrom fastmcp import FastMCP\n\n# MARK: Config\nconfig_path = Path(\"mcp_test.json\")\nwith config_path.open(encoding=\"utf-8\") as f:\n config = json.load(f)\n\n# MARK: FastMCP\n# mcp = FastMCP.as_proxy(config, name=\"Slow MCP\", include_fastmcp_meta=False)\nmcp = FastMCP(name=\"Fast MCP\", include_fastmcp_meta=False)\n\n@mcp.tool\ndef custom_get_current_time():\n \"\"\"Get current time in LA with DST information.\"\"\"\n now = datetime.now(ZoneInfo(\"America/Los_Angeles\"))\n is_dst = bool(now.dst() and now.dst().total_seconds() != 0) if now.dst() else False\n result = {\"timezone\": \"America/Los_Angeles\", \"datetime\": now.isoformat(), \"is_dst\": is_dst}\n return json.dumps(result, indent=2)\n\nif __name__ == \"__main__\":\n mcp.run(transport=\"http\", host=\"127.0.0.1\", port=8000)\n\n### Version Information\n\nText\nFastMCP version: 2.11.3\nMCP version: 1.13.1\nPython version: 3.12.10\nPlatform: Windows-11-10.0.26100-SP0","reference_answer":"/marvin can you make a PR where we add a random id to the server name if the server name is not provided to the FastMCP object and can you change the server logs to include the server name? Can you also add a name field to the Client class and do the same there? Also cover proxy classes?\n\nCan you also add a method onto the FastMCP server which outputs a mermaid diagram of the hierarchy of servers, mounted servers, proxys clients and transports under a server?","answer_document_id":"gh_comment_3217517216","silver_evidence_path":["gh_comment_3218273476","gh_issue_3348979016","gh_comment_3217517216"],"known_context_document_ids":["gh_issue_3346526627"],"evidence_issue_ids":[3346526627,3348979016],"source_repo_name":"jlowin/fastmcp","source_issue_id":3346526627,"source_issue_url":"https://github.com/jlowin/fastmcp/issues/1583","target_repo_name":"jlowin/fastmcp","target_issue_id":3348979016,"target_issue_url":"https://github.com/jlowin/fastmcp/issues/1601","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0136","query":"[bug #43577] Extended address not sent with avr109?","query_context":"Arne Rossius \nTue 11 Nov 2014 02:14:43 PM UTC\n\nWhen programming the ATxmega256a3 with avrdude 6.1 (windows version), the extended address is not sent when jumping across a 128 KiB boundary. I have created a text hexfile which only contains data for flash pages 0 (word address 0x00000) and 511 (word address 0x1FF00). However as can be seen from the attached log, after programming the first page only a 16-bit address command ('A') is sent instead of the 24-bit address command ('H'), resulting in an address of 0x0FF00 instead of 0x1FF00. Verify doesn't fail because the same happens when reading, but does fail when programming an actual application (without a gap) larger than 128 KiB.\n\nThe programmer is the \"xboot\" bootloader < URL The avrdude.conf is unchanged.\n\nProgramming the attached hex file does work with the older avrdude 5.11 because this version programs pages 1 to 510 with 0xFF, only sending the address once before the first page and then relying on the bootloader's auto-increment to reach the high addresses. As can be expected, it takes a very long time though.\n\nAlso, as can be seen from the xboot source, it resets the extended address byte to zero when receiving an 'A' command. I'm not sure if this behaviour is correct, but if it is, this means that avrdude must send an 'H' command for all flash pages above 128 KiB (unless no address is sent at all between adjacent pages).\n\nfile #32418: napftest.hex\nfile #32419: avrdude-error.txt\n\nThis issue was migrated from URL","reference_answer":"I just got an ATxmega32A4U breakout (from MCUZone) and there is no issue to program the flash using AVRISP mkii clone. And the device works fine after the programming (it has two buttons and two LEDs).\n\nPS C:\\work\\avr\\avrdude_test\\avrdude_bin> .\\avrdude.exe -c avrispmkii -p x32a4u \n-U flash:r:atxmega32a4udemo_mcuzone.hex:i\n\navrdude.exe: AVR device initialized and ready to accept instructions\n\nReading | ################################################## | 100% 0.01s\n\navrdude.exe: Device signature = 0x1e9541 (probably x32a4u)\navrdude.exe: NOTE: Programmer supports page erase for Xmega devices.\n Each page will be erased before programming it, but no chip erase is performed.\n To disable page erases, specify the -D option; for a chip-erase, use the -e option.\navrdude.exe: reading flash memory ...\n\nReading | ################################################## | 100% 0.67s\n\navrdude.exe: writing output file atxmega32a4udemo_mcuzone.hex\n\navrdude.exe done. Thank you.\n\nPS C:\\work\\avr\\avrdude_test\\avrdude_bin> .\\avrdude.exe -c avrispmkii -p x32a4u -e\n\navrdude.exe: AVR device initialized and ready to accept instructions\n\nReading | ################################################## | 100% 0.01s\n\navrdude.exe: Device signature = 0x1e9541 (probably x32a4u)\navrdude.exe: erasing chip\n\navrdude.exe done. Thank you.\n\nPS C:\\work\\avr\\avrdude_test\\avrdude_bin> .\\avrdude.exe -c avrispmkii -p x32a4u\n -U flash:w:atxmega32a4udemo_mcuzone.hex:i\n\navrdude.exe: AVR device initialized and ready to accept instructions\n\nReading | ################################################## | 100% 0.01s\n\navrdude.exe: Device signature = 0x1e9541 (probably x32a4u)\navrdude.exe: NOTE: Programmer supports page erase for Xmega devices.\n Each page will be erased before programming it, but no chip erase is performed.\n To disable page erases, specify the -D option; for a chip-erase, use the -e option.\navrdude.exe: reading input file atxmega32a4udemo_mcuzone.hex for flash\navrdude.exe: writing 36786 bytes flash ...\n\nWriting | ################################################## | 100% 3.00s\n\navrdude.exe: 36786 bytes of flash written\navrdude.exe: verifying flash memory against atxmega32a4udemo_mcuzone.hex\n\nReading | ################################################## | 100% 0.67s\n\navrdude.exe: 36786 bytes of flash verified\n\navrdude.exe done. Thank you.","answer_document_id":"gh_comment_1218039420","silver_evidence_path":["gh_comment_1162491284","gh_issue_1077189799","gh_comment_1218039420"],"known_context_document_ids":["gh_issue_1077285457"],"evidence_issue_ids":[1077285457,1077189799],"source_repo_name":"avrdudes/avrdude","source_issue_id":1077285457,"source_issue_url":"https://github.com/avrdudes/avrdude/issues/360","target_repo_name":"avrdudes/avrdude","target_issue_id":1077189799,"target_issue_url":"https://github.com/avrdudes/avrdude/issues/289","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0137","query":"Nil response?","query_context":"We are using OPA in a k8s environment.\n* OPA version: 0.56.0\n* Response is nil\n* flags\n* \"run\",\n \"--server\",\n \"--config-file=/config/config.yaml\",\n \"--log-level=info\",\n \"--log-format=json\",\n \"--authentication=token\",\n \"--authorization=basic\",\n \"/authz/authz.rego\",\n \"/authz/bearer.rego\",\n \"--ignore=.*\",\n \"--addr= URL \n\n## Steps To Reproduce\nThe error happen over time. No discernible pattern other than a restart of OPA fixes it.\n\nWhen the \"nil\" response starts happening it is reproducible until OPA is restarted.\nIs there a way to gather more information when this happens?","reference_answer":"I would recommend using bundles for policy and data distribution. Here's an example tutorial.","answer_document_id":"gh_comment_2341376213","silver_evidence_path":["gh_comment_2749925035","gh_issue_2492948054","gh_comment_2341376213"],"known_context_document_ids":["gh_issue_2130553300"],"evidence_issue_ids":[2130553300,2492948054],"source_repo_name":"open-policy-agent/opa","source_issue_id":2130553300,"source_issue_url":"https://github.com/open-policy-agent/opa/issues/6585","target_repo_name":"open-policy-agent/opa","target_issue_id":2492948054,"target_issue_url":"https://github.com/open-policy-agent/opa/issues/6972","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0138","query":"é锹å”čåitemåé误?","query_context":"### Description\n\nimage\n\n### DBeaver Version\n\nCommunity 22.1.5.202208211008\n\n### Operating System\n\nWindows11\n\n### Database and driver\n\n_No response_\n\n### Steps to reproduce\n\n_No response_\n\n### Additional context\n\n_No response_","reference_answer":"Babel 2022-12 is still not released (link above contains only 2021-12 version).\nHowever we can see it in update sites: URL \n\nThe roblem is that we can't use update site, we need archived zip with all translations. I think we need to contct Babel team and ask to publich the release.","answer_document_id":"gh_comment_1404587242","silver_evidence_path":["gh_comment_1274825085","gh_issue_1380184601","gh_comment_1404587242"],"known_context_document_ids":["gh_issue_1359849094"],"evidence_issue_ids":[1359849094,1380184601],"source_repo_name":"dbeaver/dbeaver","source_issue_id":1359849094,"source_issue_url":"https://github.com/dbeaver/dbeaver/issues/17536","target_repo_name":"dbeaver/dbeaver","target_issue_id":1380184601,"target_issue_url":"https://github.com/dbeaver/dbeaver/issues/17697","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0139","query":"Performance issue on IntelliSense after the verion 1.18.5?","query_context":"### Environment\n\n- OS and Version: \nLocal mode: mac\nRemote mode: mac-client, linux-server\n- VS Code Version: 1.18.9 dc96b837cf6bb4af9cd736aa3af08cf8279f7685\n- C/C++ Extension Version: after 1.18.5\n- If using SSH remote, specify OS of remote machine: centos 7.9 (or on mac locally)\n\n### Bug Summary and Steps to Reproduce\n\nBug Summary:\nIntelliSense is rather slowly, prevent the functions which are dependent on IntelliSense. Whatever file I open, the IntelliSense process is spining for even a minute, and before it finished I can do nothing about the functions which are dependent on the IntelliSense.\n\nSteps to reproduce:\n1. Run vscode on mac locally or a linux server remotely, checkout the project: URL master branch is ok.\n2. install the c++ extension pack (which contains cpptools of version greatter than 1.18.5)\n3. Open a file under the forder $project-root/be/sre.\n4. Try the functions releated with IntelliSense.\n\nExpected behavior:\nIntelliSense is extremlly slow, and prevent you using the functions which are denpendent on the IntelliSense.\n\n### Configuration and Logs\n\nshell\n/\n\n### Other Extensions\n\n_No response_\n\n### Additional context\n\nI try the cpptools extension version by version, and I found that the IntelliSense is smooth at (and before) the version 1.18.5, if I update the extesion to version which is greater than 1.18.5, the issue will appear.\n\nSo it may be helpful that checkout the changes between 1.18.5 and 1.19.5.","reference_answer":"@Colengms @LittleFatHero The performance issue started with 1.19.x -- it looks like it may be \"by design\" due to the workspace symbol search changes. I'm seeing roughly it take roughly twice the amount of time to parse/update the database and the database is roughly 50% bigger. We'll look into whether that can be improved.","answer_document_id":"gh_comment_2206887084","silver_evidence_path":["gh_comment_2206893380","gh_issue_2287051471","gh_comment_2206887084"],"known_context_document_ids":["gh_issue_2332556923"],"evidence_issue_ids":[2332556923,2287051471],"source_repo_name":"microsoft/vscode-cpptools","source_issue_id":2332556923,"source_issue_url":"https://github.com/microsoft/vscode-cpptools/issues/12348","target_repo_name":"microsoft/vscode-cpptools","target_issue_id":2287051471,"target_issue_url":"https://github.com/microsoft/vscode-cpptools/issues/12292","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0142","query":"Media location for a folder per post?","query_context":"What's the configuration for a setup like this? All what I have tried so far didn't work and keeps assuming I have one folder for ALL my media, which is very chaotic.\n\nFolder structure is simply like this\n\ncontent/\n posts/\n post1/\n index.md\n image1.png\n post2/\n index.md\n image1.png\n post3/\n index.md\n image1.png","reference_answer":"Doesn't mean I won't get something sorted out ultimately. I just need time to sit down and figure out how I would handle it.\n\nThe main issue with this Hugo flow is that you need to define the name of the folder (and thus the slug) before you upload the assets. But in Pages CMS, for new entries, the slug/filename is set up on saving the entry.\n\nIf you have suggestions, let me know.","answer_document_id":"gh_comment_2525074904","silver_evidence_path":["gh_comment_2525384034","gh_issue_2724513079","gh_comment_2525074904"],"known_context_document_ids":["gh_issue_2157757648"],"evidence_issue_ids":[2157757648,2724513079],"source_repo_name":"pages-cms/pages-cms","source_issue_id":2157757648,"source_issue_url":"https://github.com/pages-cms/pages-cms/issues/29","target_repo_name":"pages-cms/pages-cms","target_issue_id":2724513079,"target_issue_url":"https://github.com/pages-cms/pages-cms/issues/129","split":"test","quality_score":93.67,"annotation_level":"silver"}
{"query_id":"cross_issue_0144","query":"VMs don't boot on 4Kn drive?","query_context":"How to file a helpful issue\n\n### Qubes OS release\n\nR4.1.1 **TESTING**\n\n### Brief summary\n\nUsing default \"LVM\" installation layout.\nWhen I install Qubes with \"LVM\" disk layout, the default pool is varlibqubes.\nThe VMs are all based on stock templates that are shipped with the iso. I didn't build 4Kn templates.\nAll my VMs don't boot after I upgrade dom0 to tesing-latest.\nWithout enabling testing, things are fine.\n\n### Steps to reproduce\n\n0. Find a NVMe drive using LBA sector size 4096.\n1. Install Qubes using \"LVM\" disk layout, and upgrade Qubes to latest (xen 4.14.5-7).\n2. Find that VMs do boot.\n3. Upgrade Qubes to testing-latest (without kernel latest) (xen 4.14.5-9).\n4. Find that no VM wants to boot.\n\n### Expected behavior\n\nVMs boot as usual.\n\n### Actual behavior\n\nAn error message, asserting \"Start failed: internal error: libxenlight failed to create new domain xxx\"\n\nHere are the logs in /var/log/libvirt/libxl/libxl-driver.log:\n\n2022-10-20 12:23:19.476+0000: libxl: libxl_exec.c:117:libxl_report_child_exitstatus: /etc/xen/scripts/block add [5543] exited with error status 1\n2022-10-20 12:23:19.476+0000: libxl: libxl_device.c:1302:device_hotplug_child_death_cb: script: losetup --direct-io=on /dev/loop8 /var/lib/qubes/appvms/sys-net/private-dirty.img failed\n2022-10-20 12:23:19.570+0000: libxl: libxl_exec.c:117:libxl_report_child_exitstatus: /etc/xen/scripts/block add [5542] exited with error status 1\n2022-10-20 12:23:19.570+0000: libxl: libxl_device.c:1302:device_hotplug_child_death_cb: script: losetup --direct-io=on /dev/loop9 /var/lib/qubes/appvms/sys-net/root-dirty.img failed\n2022-10-20 12:23:19.666+0000: libxl: libxl_exec.c:117:libxl_report_child_exitstatus: /etc/xen/scripts/block add [5548] exited with error status 1\n2022-10-20 12:23:19.666+0000: libxl: libxl_device.c:1302:device_hotplug_child_death_cb: script: losetup --direct-io=on -r /dev/loop10 /var/lib/qubes/vm-kernels/5.15.74-1.fc32/modules.img failed\n2022-10-20 12:23:19.775+0000: libxl: libxl_exec.c:117:libxl_report_child_exitstatus: /etc/xen/scripts/block add [5545] exited with error status 1\n2022-10-20 12:23:19.775+0000: libxl: libxl_device.c:1302:device_hotplug_child_death_cb: script: losetup --direct-io=on /dev/loop11 /var/lib/qubes/appvms/sys-net/volatile-dirty.img failed\n2022-10-20 12:23:19.775+0000: libxl: libxl_create.c:1686:domcreate_launch_dm: Domain 3:unable to add disk devices\n2022-10-20 12:23:19.828+0000: libxl: libxl_exec.c:117:libxl_report_child_exitstatus: /etc/xen/scripts/block remove [5805] exited with error status 1\n2022-10-20 12:23:19.829+0000: libxl: libxl_device.c:1302:device_hotplug_child_death_cb: script: /etc/xen/scripts/block failed; error detected.\n2022-10-20 12:23:19.839+0000: libxl: libxl_exec.c:117:libxl_report_child_exitstatus: /etc/xen/scripts/block remove [5804] exited with error status 1\n2022-10-20 12:23:19.839+0000: libxl: libxl_device.c:1302:device_hotplug_child_death_cb: script: /etc/xen/scripts/block failed; error detected.\n2022-10-20 12:23:19.849+0000: libxl: libxl_exec.c:117:libxl_report_child_exitstatus: /etc/xen/scripts/block remove [5807] exited with error status 1\n2022-10-20 12:23:19.849+0000: libxl: libxl_device.c:1302:device_hotplug_child_death_cb: script: /etc/xen/scripts/block failed; error detected.\n2022-10-20 12:23:19.858+0000: libxl: libxl_exec.c:117:libxl_report_child_exitstatus: /etc/xen/scripts/block remove [5810] exited with error status 1\n2022-10-20 12:23:19.859+0000: libxl: libxl_device.c:1302:device_hotplug_child_death_cb: script: /etc/xen/scripts/block failed; error detected.","reference_answer":"Sector size is advertised by the block backend in xenstore (`xenstore-ls /local/domain/0/backend/vbd/$DOMID/51712`), but I don't see any option to force specific value.\n\nThis issue is really unfortunate, because a lot of places in Qubes assume you can freely transfer disk image and it will work just fine. This include cloning VMs (including cloning to a different storage pool), backup/restore etc. So, the solution here should be either:\n- find a way to construct a disk image to work on both 4k and 512 sector size\n- force VM to see 512 sector size\n\nThe second one may come with a performance penalty. The first one would not have this problem, but not sure if it's possible. I'm fine with making partition table 4K aligned, as long as it will also work with 512 sector size. But it isn't clear to me it would be enough.\n\nPartition table and filesystem are built here: URL \n\nAnother idea would be to revert to a filesystem directly on /dev/xvda (without any partition table). This may not be as simple as it sounds, because we need to fit grub somewhere (with HVM with in-VM kernel case).\n\nBut this all may not work for other cases, including other OS. Imagine installing some OS (Linux, Windows, whatever) in a standalone HVM and then moving it to another storage pool (or restoring a backup on another machine). Those cases may require emulating constant sector size.\n\nSadly, I don't have any hardware with 4k physical sector size to test on. I'll try to find a way to emulate one.\n\nBTW, another issue from 4k sector size is 8GB of swap, instead of 1GB. But this should be easy to fix in this script","answer_document_id":"gh_comment_482894704","silver_evidence_path":["gh_comment_1287796015","gh_issue_432903853","gh_comment_482894704"],"known_context_document_ids":["gh_issue_1415750847"],"evidence_issue_ids":[1415750847,432903853],"source_repo_name":"QubesOS/qubes-issues","source_issue_id":1415750847,"source_issue_url":"https://github.com/QubesOS/qubes-issues/issues/7828","target_repo_name":"QubesOS/qubes-issues","target_issue_id":432903853,"target_issue_url":"https://github.com/QubesOS/qubes-issues/issues/4974","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0146","query":"Liferay packages not loading from @liferay/cli generated remote app when using live development?","query_context":"### Issue type (mark with `x`)\n\n- [ ] :thinking: Question\n- [x] :bug: Bug report\n- [ ] :gift: Feature request\n- [ ] :woman_shrugging: Other\n\n### Version (mark with `x`)\n\n- [ ] :two: v2.x\n- [x] :three: v3.x\n\n### Description\n\n**Desired behavior:**\nDeployed/Live session remote app generated via `liferay@cli` shows correctly.\n\n**Current behavior:**\nGenerated project using `liferay@cli`, choosing Portal 7.4 and Remote App with React.\nWhen using `liferay start` the remote app is deployed but can't load external scripts (for example `react.js`). It tries to load them from the webpack server (`localhost:8081/o/frontend-js-react-web/__liferay__/exports/react.js`) where it looks like they dont exist instead of Liferay (`localhost:8080/o/frontend-js-react-web/__liferay__/exports/react.js`). Thanks to these remote app doesnt show at all.\n\nMy workaround for now is to use absolute url in `liferay.json` such as ` URL instead of provided `/o/frontend-js-react-web/__liferay__/exports/react.js`. \n\n**Repro instructions (if applicable):**\n1. Generate project using `liferay new`, targeting Portal 7.4, Remote App with React.\n2. Run `liferay start`\n3. Add remote widget to page\n4. Remote widget does not show at all\n**Other information (environment, versions etc):**\nPortal 7.4 49GA\nNode 16.18.0","reference_answer":"The problem is in this line\n\nIt should say:\n\njavascript\n{\n include: project.assetsDir.asNative\n}\n\ninstead.","answer_document_id":"gh_comment_1375535500","silver_evidence_path":["gh_comment_1375329707","gh_issue_1461766437","gh_comment_1375535500"],"known_context_document_ids":["gh_issue_1461289709"],"evidence_issue_ids":[1461289709,1461766437],"source_repo_name":"liferay/liferay-frontend-projects","source_issue_id":1461289709,"source_issue_url":"https://github.com/liferay/liferay-frontend-projects/issues/1048","target_repo_name":"liferay/liferay-frontend-projects","target_issue_id":1461766437,"target_issue_url":"https://github.com/liferay/liferay-frontend-projects/issues/1049","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0148","query":"Using print_rich on a text containing a newline wrapped in the [color] BBcode tag doesn't strip away the closing tag.","query_context":"### Tested versions\n\n- Reproducible in Godot v4.3.stable (bce457cec)\n\n### System information\n\nGodot v4.3.stable (bce457cec) - Windows 10.0.22631 - Vulkan (Forward+) - dedicated NVIDIA GeForce GTX 1660 SUPER (NVIDIA; 31.0.15.2802) - AMD Ryzen 5 5600X 6-Core Processor (12 Threads)\n\n### Issue description\n\nWhen using `print_rich` to print a string that contains a [color] BBcode tag - if the string wrapped in that tag contains a newline (\"\\n\"), the closing `[/color]` tag won't be stripped away, resulting in an output where the color works, but the \"[/color]\" tag remains as part of the printed string.\n\n### Steps to reproduce\n\n1. Create a string that has a \"\\n\" in it.\n2. Wrap it in a color tag like `[color=yellow]`.\n3. Output it with print_rich.\n\n### Minimal reproduction project (MRP)\n\nI guess there's no need to upload a whole MRP, this can be tested with 1 line of code, try it out:\n\ngdscript\nfunc _ready() -> void:\n print_rich(\"[color=yellow]Test\\ncolor tag with newline.[/color]\")\n\nimage","reference_answer":"Docs are correct, `color=tomato` will only show in the editor log (since it's RichTextLabel and support all colors), but won't show in the OS terminal.","answer_document_id":"gh_comment_1925328655","silver_evidence_path":["gh_comment_2405032488","gh_issue_2116489950","gh_comment_1925328655"],"known_context_document_ids":["gh_issue_2572526543"],"evidence_issue_ids":[2572526543,2116489950],"source_repo_name":"godotengine/godot","source_issue_id":2572526543,"source_issue_url":"https://github.com/godotengine/godot/issues/97965","target_repo_name":"godotengine/godot","target_issue_id":2116489950,"target_issue_url":"https://github.com/godotengine/godot/issues/87899","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0149","query":"Segmentation fault 11 on macOS M1 machine running pwsh -c or -file?","query_context":"### Prerequisites\n\n- [X] Write a descriptive title.\n- [X] Make sure you are able to repro it on the latest released version\n- [X] Search the existing issues.\n- [X] Refer to the FAQ.\n- [X] Refer to Differences between Windows PowerShell 5.1 and PowerShell.\n\n### Steps to reproduce\n\nI'm not entirely sure this would be easily reproducible on somebody else's M1. My M1 build machine was working just fine as a Jenkins build agent until I rebooted it this evening. Then my builds started hanging on this node where it first tries to run a PowerShell script. After some debugging, I found out that trying to launch `pwsh -c ' '` causes a segmentation fault. Same with `-file`. What's odd is that I can start `pwsh` just fine:\n\nimage\n\n### Expected behavior\n\nconsole\nWell, PowerShell should not crash, right?\n\n### Actual behavior\n\nconsole\nI'm seeing a segmentation fault.\n\n### Error details\n\nconsole\n% pwsh -nop -c 'get-date'\nzsh: segmentation fault pwsh -nop -c 'get-date'\n\n### Environment data\n\npowershell\nName Value\n---- -----\nPSVersion 7.3.1\nPSEdition Core\nGitCommitId 7.3.1\nOS Darwin 21.6.0 Darwin Kernel Version 21.6.0: Sun Nov 6 23:29:57 PST 2022; root:xnu-8020ā¦\nPlatform Unix\nPSCompatibleVersions {1.0, 2.0, 3.0, 4.0ā¦}\nPSRemotingProtocolVersion 2.3\nSerializationVersion 1.1.0.1\nWSManStackVersion 3.0\n\nAlso:\n\n % which pwsh\n/usr/local/bin/pwsh\n\n% ls -al /usr/local/bin/pwsh\nlrwxr-xr-x 1 root wheel 38 Jan 20 21:42 /usr/local/bin/pwsh -> /usr/local/microsoft/powershell/7/pwsh\n\n# I also have several versions of the .NET SDK and Runtime installed on this system. That shouldn't matter, right?\n\n% dotnet --info\n.NET SDK:\n Version: 7.0.100\n Commit: e12b7af219\n\nRuntime Environment:\n OS Name: Mac OS X\n OS Version: 12.6\n OS Platform: Darwin\n RID: osx.12-arm64\n Base Path: /usr/local/share/dotnet/sdk/7.0.100/\n\nHost:\n Version: 7.0.0\n Architecture: arm64\n Commit: d099f075e4\n\n.NET SDKs installed:\n 6.0.403 [/usr/local/share/dotnet/sdk]\n 6.0.404 [/usr/local/share/dotnet/sdk]\n 7.0.100 [/usr/local/share/dotnet/sdk]\n\n.NET runtimes installed:\n Microsoft.AspNetCore.App 6.0.11 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]\n Microsoft.AspNetCore.App 6.0.12 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]\n Microsoft.AspNetCore.App 7.0.0 [/usr/local/share/dotnet/shared/Microsoft.AspNetCore.App]\n Microsoft.NETCore.App 6.0.11 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]\n Microsoft.NETCore.App 6.0.12 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]\n Microsoft.NETCore.App 7.0.0 [/usr/local/share/dotnet/shared/Microsoft.NETCore.App]\n\nOther architectures found:\n x64 [/usr/local/share/dotnet/x64]\n registered at [/etc/dotnet/install_location_x64]\n\nEnvironment variables:\n Not set\n\nglobal.json file:\n Not found\n\nLearn more:\n URL \n\nDownload .NET:\n URL \n\n### Visuals\n\nimage","reference_answer":"The repro appears to be simple enough, if we have the right profile data file to cause the seg fault. When the seg fault is seen, and is reproducible with a simple pwsh command, could you please collect the profile data file and share it? I figure it may be reproducible elsewhere too with the same profile data file.","answer_document_id":"gh_comment_1486151122","silver_evidence_path":["gh_comment_1577099328","gh_issue_1575217448","gh_comment_1486151122"],"known_context_document_ids":["gh_issue_1551700349"],"evidence_issue_ids":[1551700349,1575217448],"source_repo_name":"PowerShell/PowerShell","source_issue_id":1551700349,"source_issue_url":"https://github.com/PowerShell/PowerShell/issues/18998","target_repo_name":"dotnet/runtime","target_issue_id":1575217448,"target_issue_url":"https://github.com/dotnet/runtime/issues/81799","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0151","query":"FaroRoutes support for RouterProvider react router v6?","query_context":"## Description\n\nReact Router v6 now uses a RouterProvider component that is passed an object from createBrowserRouter(). \n\n URL \n\nTrying to wrap the RouterProvider in FaroRoutes, \n\nimport { FaroRoutes } from \"@grafana/faro-react\";\n\n \n \n \n\nleads to the following error:\n\n`Uncaught Error: useLocation() may be used only in the context of a component.`\n\n## Proposed solution\n\nSupport the newest style of React Router definition.\n\n## Context\n\n URL","reference_answer":"Hi @riboher thansk a lot for the quick testing. I can confirm the issue. \nwe fixed a problem in regards to data routers which were also having type issues. \nI'll see hat `createRoutesFromChildren`as causing problems as well. \n\nWe'll fix it.","answer_document_id":"gh_comment_2095930379","silver_evidence_path":["gh_comment_2115760370","gh_issue_2280362978","gh_comment_2095930379"],"known_context_document_ids":["gh_issue_1812397066"],"evidence_issue_ids":[1812397066,2280362978],"source_repo_name":"grafana/faro-web-sdk","source_issue_id":1812397066,"source_issue_url":"https://github.com/grafana/faro-web-sdk/issues/235","target_repo_name":"grafana/faro-web-sdk","target_issue_id":2280362978,"target_issue_url":"https://github.com/grafana/faro-web-sdk/issues/582","split":"test","quality_score":85.17,"annotation_level":"silver"}
{"query_id":"cross_issue_0152","query":"Error when selecting existing SDKs during onboarding?","query_context":"We are still seeing an error in PROD if the user selects existing SDKs. See error message in screenshot. Also, the UI is a difficult to use. When I search by name a subset of options do show but when I select one then I am returned to the entire list again. Is it possible for the subset of options to show a little longer so that I can select all that apply from the search? \n\n
feature \"share on gist\") --> rewrite into Qt\n\nimage\n\n## Votes\n\n(required)","reference_answer":"@m-kuhn To avoid any doubt, please add a note to the QEP that indicates the deviations between the submitted proposal and the (potentially larger) full extent of the QEP. As in previous years, the voting members make their decisions based on the short summaries and the QEPs.","answer_document_id":"gh_comment_1568941278","silver_evidence_path":["gh_comment_2016526206","gh_issue_1638897563","gh_comment_1568941278"],"known_context_document_ids":["gh_issue_2202132623"],"evidence_issue_ids":[2202132623,1638897563],"source_repo_name":"qgis/QGIS-Enhancement-Proposals","source_issue_id":2202132623,"source_issue_url":"https://github.com/qgis/QGIS-Enhancement-Proposals/issues/295","target_repo_name":"qgis/PSC","target_issue_id":1638897563,"target_issue_url":"https://github.com/qgis/PSC/issues/58","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0161","query":"Custom micrometer tags are not displayer on actuator/prometheus page.","query_context":"**spring-kafka version** \norg.springframework.kafka:spring-kafka:jar:3.0.10\n\n**micrometer version**\nio.micrometer:micrometer-core:jar:1.11.3\nio.micrometer:micrometer-registry-prometheus:jar:1.11.3\nio.micrometer:micrometer-observation:jar:1.11.3\n\n**Custom micrometer tags are not displayer on `actuator/prometheus` page.**\n\nI'm using autoconfigured kafka with a simple listener:\n\nyaml\nspring:\n kafka:\n bootstrap-servers: localhost:29092\n consumer:\n group-id: 'some.value'\n enable-auto-commit: false\n auto-offset-reset: latest\n max-poll-records: 1\n key-deserializer: org.apache.kafka.common.serialization.StringDeserializer\n value-deserializer: org.apache.kafka.common.serialization.StringDeserializer\n producer:\n bootstrap-servers: localhost:29092\n key-serializer: org.apache.kafka.common.serialization.StringSerializer\n value-serializer: org.apache.kafka.common.serialization.StringSerializer\n\njava\n@KafkaListener(topics = \"pike\")\npublic void listen(ConsumerRecord record) {\n System.out.println(record.topic());\n}\n\njava\n@Bean\nDefaultKafkaConsumerFactoryCustomizer kafkaConsumerFactoryCustomizer(MeterRegistry meterRegistry) {\n return consumerFactory -> consumerFactory.addListener(\n new MicrometerConsumerListener<>(meterRegistry));\n}\n\njava\n@Component\nclass ConcurrentKafkaListenerContainerFactoryCustomizer {\n\n // autoconfigured kafkaListenerContainerFactory customizer\n public ConcurrentKafkaListenerContainerFactoryCustomizer(\n ConcurrentKafkaListenerContainerFactory kafkaListenerContainerFactory,\n Function , Map > micrometerTagsProvider) {\n kafkaListenerContainerFactory.setContainerCustomizer(\n container -> {\n container.getContainerProperties().setMicrometerTagsProvider(micrometerTagsProvider);\n });\n }\n }\n\nIn IDE debug I see that my micrometerTagsProvider gets called (tags are generated) as well as the code in `MicrometerHolder.java` \n\njava\nprivate Timer buildTimer(String exception, @Nullable Object record) {\n Builder builder = Timer.builder(this.timerName)\n .description(this.timerDesc)\n .tag(\"name\", this.name)\n .tag(\"result\", exception.equals(NONE_EXCEPTION_METERS_KEY) ? \"success\" : \"failure\")\n .tag(\"exception\", exception);\n Map extra = this.tagsProvider.apply(record);\n if (extra != null && !extra.isEmpty()) {\n extra.forEach(builder::tag);\n }\n Timer registeredTimer = builder.register(this.registry);\n if (record == null) {\n this.meters.put(exception, registeredTimer);\n }\n return registeredTimer;\n }\n\nI see that custom tags are added to builder, I see `spring.kafka.listener` metrics on `actuator/prometheus` page but no custom tags are displayed.\n\n**expected result**\ncustom tags must be displayed on `actuator/prometheus` page along with their metrics","reference_answer":"@angry-cellophane Sorry, using the word 'drop' was confusing, you are correct that the SDK, Scraping, and Prometheus storage won't drop the unmatched metrics. \n\nI was referring to how PromQL queries work. I have a feeling (though my understand is incomplete) that PromQL queries will exclude some metrics from calculations when labels don't match, requiring a user to use the `without` or `by` to get a complete result.\n\nIf you have done any work in regards to ensuring that PromQL queries make sense when the underlying meter labels aren't all aligned, I would love to hear about your methods and approach.","answer_document_id":"gh_comment_879875784","silver_evidence_path":["gh_comment_1966698518","gh_issue_364078172","gh_comment_879875784"],"known_context_document_ids":["gh_issue_2152840382"],"evidence_issue_ids":[2152840382,364078172],"source_repo_name":"spring-projects/spring-kafka","source_issue_id":2152840382,"source_issue_url":"https://github.com/spring-projects/spring-kafka/issues/3070","target_repo_name":"micrometer-metrics/micrometer","target_issue_id":364078172,"target_issue_url":"https://github.com/micrometer-metrics/micrometer/issues/877","split":"test","quality_score":95.17,"annotation_level":"silver"}
{"query_id":"cross_issue_0164","query":"New warnings on non-editable build?","query_context":"@bryevdv does anything look concerning?\n\n -- Installing: /home/mpapadakis/noneditable/legate.core/_skbuild/linux-x86_64-3.10/cmake-install/lib/liblegion_canonical_python.so\n '/home/mpapadakis/noneditable/env/bin/python3' '-m' 'pip' 'install' '--global-option=--cmake-build-dir' '--global-option=/home/mpapadakis/noneditable/legate.core/_skbuild/linux-x86_64-3.10/cmake-build/_deps/legion-build/runtime' '--global-option=--prefix' '--global-option=/home/mpapadakis/noneditable/legate.core/_skbuild/linux-x86_64-3.10/cmake-install' '--ignore-installed' '--root' '/' '--prefix' '/home/mpapadakis/noneditable/env' '.'\n DEPRECATION: --build-option and --global-option are deprecated. pip 24.0 will enforce this behaviour change. A possible replacement is to use --config-settings. Discussion can be found at URL \n WARNING: Implying --no-binary=:all: due to the presence of --build-option / --global-option.\n\n /home/mpapadakis/noneditable/env/lib/python3.10/site-packages/setuptools/command/build_py.py:204: _Warning: Package 'legate.core._lib' is absent from the `packages` configuration.\n !!\n\n ********************************************************************************\n ############################\n # Package would be ignored #\n ############################\n Python recognizes 'legate.core._lib' as an importable package[^1],\n but it is absent from setuptools' `packages` configuration.\n\n This leads to an ambiguous overall configuration. If you want to distribute this\n package, please make sure that 'legate.core._lib' is explicitly added\n to the `packages` configuration field.\n\n Alternatively, you can also rely on setuptools' discovery methods\n (for example by using `find_namespace_packages(...)`/`find_namespace:`\n instead of `find_packages(...)`/`find:`).\n\n You can read more about \"package discovery\" on setuptools documentation page:\n\n - URL \n\n If you don't want 'legate.core._lib' to be distributed and are\n already explicitly excluding 'legate.core._lib' via\n `find_namespace_packages(...)/find_namespace` or `find_packages(...)/find`,\n you can try to use `exclude_package_data`, or `include-package-data=False` in\n combination with a more fine grained `package-data` configuration.\n\n You can read more about \"package data files\" on setuptools documentation page:\n\n - URL \n\n [^1]: For Python, any directory (with suitable naming) can be imported,\n even if it does not contain any `.py` files.\n On the other hand, currently there is no concept of package data\n directory, all directories are treated like packages.\n ********************************************************************************\n\n !!\n\nWARNING: There was an error checking the latest version of pip.\nSee below for error\nTraceback (most recent call last):\n File \"/home/mpapadakis/noneditable/env/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py\", line 227, in pip_self_version_check\n upgrade_prompt = _self_version_check_logic(\n File \"/home/mpapadakis/noneditable/env/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py\", line 188, in _self_version_check_logic\n remote_version_str = state.get(current_time)\n File \"/home/mpapadakis/noneditable/env/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py\", line 76, in get\n last_check = datetime.datetime.fromisoformat(self._state[\"last_check\"])\nValueError: Invalid isoformat string: '2023-08-30T23:44:26Z'","reference_answer":"As a workaround, setting a `PIP_DISABLE_PIP_VERSION_CHECK=1` environment variable may help.","answer_document_id":"gh_comment_1765844404","silver_evidence_path":["gh_comment_1766763976","gh_issue_1944100772","gh_comment_1765844404"],"known_context_document_ids":["gh_issue_1946202985"],"evidence_issue_ids":[1946202985,1944100772],"source_repo_name":"nv-legate/legate.core","source_issue_id":1946202985,"source_issue_url":"https://github.com/nv-legate/legate.core/issues/862","target_repo_name":"pypa/pip","target_issue_id":1944100772,"target_issue_url":"https://github.com/pypa/pip/issues/12357","split":"test","quality_score":91.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0165","query":"Hot Water Service Red Pipe?","query_context":"The res Hot water pipe was leaking and Greg Hall cut the leaky bit off (about 35mm) and re-joined it.\nAs a result the shortened pipework was not able to be re-fixed to the adjacent panel.\nThe red pipe should be either replaced or otherwise re-fixed to the adjacent panel. See Pics\n\nHWS N3 1\nHWS N3 2","reference_answer":"Problem fixed. Several attempts at repair resulted in a very short tube, which split during Peter Wain's booking \nCompression supports were inserted into old 2' length and reinserted. After a couple of attempts, the connector sealed and leaks were no longer present. A day so far with no leakage. \nIssue CLOSED.","answer_document_id":"gh_comment_1903691712","silver_evidence_path":["gh_comment_1901714744","gh_issue_1185415812","gh_comment_1903691712"],"known_context_document_ids":["gh_issue_1441475677"],"evidence_issue_ids":[1441475677,1185415812],"source_repo_name":"CanberraOceanRacingClub/namadgi3","source_issue_id":1441475677,"source_issue_url":"https://github.com/CanberraOceanRacingClub/namadgi3/issues/583","target_repo_name":"CanberraOceanRacingClub/namadgi3","target_issue_id":1185415812,"target_issue_url":"https://github.com/CanberraOceanRacingClub/namadgi3/issues/522","split":"test","quality_score":78.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0166","query":"Elasticsearch crashes/dumps core on Apple M4 Processor?","query_context":"(Confirmed with at least M4 Max - possibly affecting other M4s and maybe other M series)\n\nRoot issue is this: URL \n\nConfirmed a fix with a student that adding the following to `/etc/default/elasticsearch` seems to work, allowing elasticsearch to start:\n\nES_JAVA_OPTS=-XX:UseSVE=0\nCLI_JAVA_OPTS=-XX:UseSVE=0\n\nI also confirmed the above options do not PREVENT the service from starting on an M2 Max. So it's possible this is an acceptable fix for the ARM VM, but we'll need more testing before shipping a change.","reference_answer":"Hello - this is a known issue. running `sudo sof-elk_update.sh` will address it - see URL","answer_document_id":"gh_comment_2604044888","silver_evidence_path":["gh_comment_2854738707","gh_issue_2800151821","gh_comment_2604044888"],"known_context_document_ids":["gh_issue_2895590263"],"evidence_issue_ids":[2895590263,2800151821],"source_repo_name":"philhagen/sof-elk","source_issue_id":2895590263,"source_issue_url":"https://github.com/philhagen/sof-elk/issues/362","target_repo_name":"philhagen/sof-elk","target_issue_id":2800151821,"target_issue_url":"https://github.com/philhagen/sof-elk/issues/351","split":"test","quality_score":86.15,"annotation_level":"silver"}
{"query_id":"cross_issue_0167","query":"Slightly blurry fonts?","query_context":"### Describe the bug\n\nshell\nI find the bold fonts in the tabs to be a bit difficult to read. I don't know if it's an anti-aliasing issue or something else but wanted to raise the issue in case there is a way to make the font rendering in Warp crisper overall!\n\n### To Reproduce\n\nJust opening the application.\n\n### Expected behaviour\n\nshell\nI would love the fonts in Warp to be more legible by default.\n\n### Screenshots\n\n
Appearance that let's you configure whether to enforce a minimum contrast (one of the issues). Please check if you're still having color issues again and test tweaking the toggle:\n\n
Allocs -> Tasks flow.","query_context":"**Is your feature request related to a problem? Please describe.**\nI'm running my blockchain nodes on Nomad and many chains are run with many sidecars (tasks) together.\nMy interaction with them is always focused on a particular alloc and particular task. They're pets and not cattle.\n\ntasks-allocs-merged-view\n\nfocused-on-single-alloc\n\nHence I value the ability to focus on Allocs and then Tasks associated with it. The merged view is distracting and\nrequires extra work to filter out the noise.\n\n**Describe the solution you'd like**\nIf I can drill down from Jobs -> Allocs -> Tasks, it would be a great UX.\nPeace of mind, less noise.\n\n**Describe alternatives you've considered**\nI can use the filter, but it's not as intuitive as the drill down. Besides, it has a nagging bug; after the initial filter\nif I move to next filtered row, after the tick, the selection jumps back to the first filtered row. Also it doesn't hide\nthe unfiltered rows.\n\nBut even if the filter works perfectly, it's not as intuitive as the drill down.\n\n**Additional context**\nI've played around and implemented the drill down version along with alloc restart in in #126. Would be great to have it in the mainline.","reference_answer":"@cshintov this should be fixed in `next` (`go install github.com/robinovitch61/wander@next`) now. Mind giving it a shot when you get the chance and letting me know if there is any other undesirable behavior?","answer_document_id":"gh_comment_1925816932","silver_evidence_path":["gh_comment_1925802734","gh_issue_2117160877","gh_comment_1925816932"],"known_context_document_ids":["gh_issue_2116927303"],"evidence_issue_ids":[2116927303,2117160877],"source_repo_name":"robinovitch61/wander","source_issue_id":2116927303,"source_issue_url":"https://github.com/robinovitch61/wander/issues/127","target_repo_name":"robinovitch61/wander","target_issue_id":2117160877,"target_issue_url":"https://github.com/robinovitch61/wander/issues/128","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0172","query":"Segfault when importing sklearn as well, osx-arm64?","query_context":"### Solution to issue cannot be found in the documentation.\n\n- [X] I checked the documentation.\n\n### Issue\n\nThis issue affects the conda-forge version too.\n\nThe solution is `export PACKAGE_TYPE=\"conda\"` in the recipe. This was the change that introduced the bug. It puts an openmp into the site-packages directory and uses that one, if the above env variable isn't set.\n\nSome more info:\notool -L on the libraries to see what theyāre linking against:\n\npytorch v2.2:\n\n/Users/dpetry/miniconda3/envs/test_torch_torchonly/lib/python3.12/site-packages/torch/lib/libtorch_cpu.dylib:\n ...\n @rpath/libomp.dylib (compatibility version 5.0.0, current version 5.0.0)\n ...\n\npytorch v.2.3:\n\n/Users/dpetry/miniconda3/envs/test_torch_torchonly/lib/python3.12/site-packages/torch/lib/libomp.dylib:\n @rpath/libomp.dylib (compatibility version 5.0.0, current version 5.0.0)\n ...\n \n/Users/dpetry/miniconda3/envs/test_torch_torchonly/lib/python3.12/site-packages/torch/lib/libtorch_cpu.dylib:\n ...\n @loader_path/libomp.dylib (compatibility version 5.0.0, current version 5.0.0)\n ...\n\n### Installed packages\n\nshell\nn/a\n\n### Environment info\n\nshell\nn/a","reference_answer":"They seem to bundle `libomp.dylib`.\n\nFollowing should fix this issue\n\ndiff --git a/recipe/build_pytorch.sh b/recipe/build_pytorch.sh\nindex cd27be0..c6cb567 100644\n--- a/recipe/build_pytorch.sh\n+++ b/recipe/build_pytorch.sh\n@@ -1,13 +1,9 @@\n set -x\n-if [[ \"$megabuild\" == true ]]; then\n- source $RECIPE_DIR/build.sh\n- pushd $SP_DIR/torch\n- for f in bin/* lib/* share/* include/*; do\n- if [[ -e \"$PREFIX/$f\" ]]; then\n- rm -rf $f\n- ln -sf $PREFIX/$f $PWD/$f\n- fi\n- done\n-else\n- $PREFIX/bin/python -m pip install torch-*.whl\n-fi\n+source $RECIPE_DIR/build.sh\n+pushd $SP_DIR/torch\n+for f in bin/* lib/* share/* include/*; do\n+ if [[ -e \"$PREFIX/$f\" ]]; then\n+ rm -rf $f\n+ ln -sf $PREFIX/$f $PWD/$f\n+ fi\n+done","answer_document_id":"gh_comment_2189236625","silver_evidence_path":["gh_comment_2347385188","gh_issue_2368579864","gh_comment_2189236625"],"known_context_document_ids":["gh_issue_2514714042"],"evidence_issue_ids":[2514714042,2368579864],"source_repo_name":"conda-forge/pytorch-cpu-feedstock","source_issue_id":2514714042,"source_issue_url":"https://github.com/conda-forge/pytorch-cpu-feedstock/issues/260","target_repo_name":"conda-forge/pytorch-cpu-feedstock","target_issue_id":2368579864,"target_issue_url":"https://github.com/conda-forge/pytorch-cpu-feedstock/issues/243","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0173","query":"N64 Smash Bros Character select bug?","query_context":"### BlueRetro firmware version\n\n25.01\n\n### BlueRetro firmware specification\n\nHW1\n\n### BlueRetro firmware variant\n\nSystem specific\n\n### BlueRetro hardware type\n\nExternal adapter dongle (1 port only)\n\n### Manufacturer\n\nRetroTime\n\n### System used\n\nNintendo 64\n\n### Bluetooth controller brand & name\n\nNSO N64 Controller, PS4 Controller\n\n### What is the problem? (only list ONE problem per report)\n\nDuring character selection in Smash Bros. or Smash Remix, whether using an everdrive or original cartridge, the player character selection will spontaneously reset, clearing your currently selected character and instantly returning the \"P1\" coin to your floating hand, and returning the floating hand to the bottom left of the screen. It happens often enough that character selection is very difficult and can only be accomplished after multiple attempts and moving on to stage selection faster than the issue can occur. This is the only scenario I see this kind of behavior, and the issue is nonexistent with a standard controller.\n\n### What did you expect to happen?\n\nto be able to select a character normally\n\n### Attach BlueRetro debug trace here\n\n_No response_","reference_answer":"For those that will not fix their N64 Digital install and that liked the imperfect workaround here a build of v1.8 that reintegrate it.\n\nv1.8-push_pull_port1_hw1_n64.zip","answer_document_id":"gh_comment_1353453810","silver_evidence_path":["gh_comment_2661414597","gh_issue_1222127929","gh_comment_1353453810"],"known_context_document_ids":["gh_issue_2840938880"],"evidence_issue_ids":[2840938880,1222127929],"source_repo_name":"darthcloud/BlueRetro","source_issue_id":2840938880,"source_issue_url":"https://github.com/darthcloud/BlueRetro/issues/1164","target_repo_name":"darthcloud/BlueRetro","target_issue_id":1222127929,"target_issue_url":"https://github.com/darthcloud/BlueRetro/issues/264","split":"test","quality_score":86.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0174","query":"Script file directive to select scope during import.","query_context":"### Prerequisites\n\n- [X] I have written a descriptive issue title.\n- [X] I have searched all issues to ensure it has not already been reported.\n\n### Summary\n\nA module provides a single \"script\" scope for the module that's shared even if the module spans multiple files. Non-module scripts do not have such a shared, non-global scope. Also, a script can be loaded into the current scope (dot sourced) or a new script scope (not dot sourced). The script might not be designed to work correctly with both load methods. There should be a means either to use the desired scope or to raise an error if loading into the incorrect scope. \n\n### Proposed Design\n\nAdd an optional \"#RequiresScope\" directive to control the scope into which a file loads. A SCOPE parameter will, if required, override the scope that would be selected by the method of the load (dot sourced or not dot sourced). A FORCE directive parameter could control if the desired scope is always selected automatically or if an error is raised if the default scope does not match that required. \n\n#RequiresScope Default - uses the either the current or script scope as if the directive was not present\n#RequiresScope Global Force - uses the global scope when loaded\n#RequiresScope Current Force - uses the current scope when loaded (always behaves as if dot sourced)\n#RequiresScope Script Force - uses a new scope when loaded (always behaves as if not dot source)\n#RequiresScope Scripts Force - uses a non-global named scope 'scripts' to be the parent one or more script scopes.\n\nThe \"Scripts\" scope would have global as a parent. All scripts added using the \"Scripts\" directive would be added to this one scope. Basically, it's a special place to dot source scripts other than to global or into another script file's scope. It's sort of like treating one or more non-module scripts as being in a \"non-module\" module under global. \n\nI don't think there is any value to allowing additional named 'scripts' scopes. \"MyScopeForThese5Scripts\" and \"MyScopeForThose10Scripts\"?","reference_answer":"As a general rule, non-terminating errors tend to be something that comes from an individual object input in the pipeline. If one bad piece of data is received, you don't necessarily want to cancel processing the next 10,000 bits of input. On the other hand, if the error comes from bad / unusable input as the result of a fixed (non-pipeline) parameter input, you can deduce that processing all 10,000 bits of input will yield with the same result (say, for example, the cmldet requires authentication, and the authentication provider you're using indicates that the credentials specified are invalid) -- then you can throw a terminating error to avoid wasting time trying the known-bad credentials 10,000 times.","answer_document_id":"gh_comment_734360025","silver_evidence_path":["gh_comment_1872582406","gh_issue_250051780","gh_comment_734360025"],"known_context_document_ids":["gh_issue_2058973412"],"evidence_issue_ids":[2058973412,250051780],"source_repo_name":"PowerShell/vscode-powershell","source_issue_id":2058973412,"source_issue_url":"https://github.com/PowerShell/vscode-powershell/issues/4873","target_repo_name":"PowerShell/PowerShell","target_issue_id":250051780,"target_issue_url":"https://github.com/PowerShell/PowerShell/issues/4568","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0175","query":"Tutorial around building a wireless hotspot to bypass captive portals?","query_context":"i have the actual Raspi OS `2022-09-22-raspios-bullseye-armhf.img` version installed to my RPi Zero W and tried to set it up as an AP+STA.\nfor the AP part i watched the guide for Setting up a Routed Wireless Access Point.\nbut it looks this guide is outdated.\n\nthere it is written `Buster` is the newest version instead of `Bullseye`.\n\nand they use `iptables` but in the current Raspi OS `iptables` is not installed anymore.\n`sudo: iptables: command not found`\nand its transformation from `iptables` to `nftables` from the earlier version of RaspiOS Bullseye seems to be gone as well.","reference_answer":"**Note:** Documentation should be updated to reflect the *latest* version of the OS. So we're going to go through and make sure it all works with Bookworm. We may need some NOTE blocks that mention \"for previous versions of Raspberry Pi OS\" from time to time, but these need to be kept short (a couple of medium-length paragraphs at most). We do not have the availability to support multiple versions of the OS in the documentation going forward with breaking changes like Wayland and Network Manager happening.","answer_document_id":"gh_comment_1525376109","silver_evidence_path":["gh_comment_1304547464","gh_issue_1073476151","gh_comment_1525376109"],"known_context_document_ids":["gh_issue_1436977258"],"evidence_issue_ids":[1436977258,1073476151],"source_repo_name":"raspberrypi/documentation","source_issue_id":1436977258,"source_issue_url":"https://github.com/raspberrypi/documentation/issues/2687","target_repo_name":"raspberrypi/documentation","target_issue_id":1073476151,"target_issue_url":"https://github.com/raspberrypi/documentation/issues/2314","split":"test","quality_score":87.82,"annotation_level":"silver"}
{"query_id":"cross_issue_0176","query":"make_fx fails under TorchRefsMode context?","query_context":"### š Describe the bug\n\nRun into this issue with torchdynamo/benchmarks/huggingface.py with a custom stack (nvprim).\n\nTried to get a small repro but failed. However, I did manage to get a different failure in this small example vvv:\n\nimport torch\n\nx = torch.empty(1024, 1, device=\"cuda\")\ntarget = torch.empty(1024, device=\"cuda\").long()\n\ndef func(x, target, index):\n nll_loss_forward = torch.ops.aten.nll_loss_forward.default(x, target, None, 1, index)\n\nfrom torch.fx.experimental.proxy_tensor import make_fx\n\nfrom torch._decomp import get_decompositions\ndecomp_table = get_decompositions({torch.ops.aten.nll_loss_forward})\ngm = make_fx(func, decomposition_table=decomp_table)(x, target, 512) # tracing with decomposition works\nprint(gm.graph)\n\nfrom torch._prims.context import TorchRefsMode\nwith TorchRefsMode():\n gm = make_fx(func)(x, target, 512) # somehow tracing here with decomposition breaks.\n print(gm.graph)\n\nOutput\n\ngraph():\n %x_1 : [#users=1] = placeholder[target=x_1]\n %target_1 : [#users=3] = placeholder[target=target_1]\n %index_1 : [#users=0] = placeholder[target=index_1]\n %unsqueeze : [#users=1] = call_functiontarget=torch.ops.aten.unsqueeze.default, kwargs = {})\n %gather : [#users=1] = call_functiontarget=torch.ops.aten.gather.default, kwargs = {})\n %squeeze : [#users=1] = call_functiontarget=torch.ops.aten.squeeze.dim, kwargs = {})\n %neg : [#users=1] = call_functiontarget=torch.ops.aten.neg.default, kwargs = {})\n %ne : [#users=1] = call_functiontarget=torch.ops.aten.ne.Scalar, kwargs = {})\n %scalar_tensor : [#users=1] = call_functiontarget=torch.ops.aten.scalar_tensor.default, kwargs = {dtype: torch.float32, layout: torch.strided, device: cuda:0})\n %where : [#users=1] = call_functiontarget=torch.ops.aten.where.self, kwargs = {})\n %ne_1 : [#users=1] = call_functiontarget=torch.ops.aten.ne.Scalar, kwargs = {})\n %sum_1 : [#users=1] = call_functiontarget=torch.ops.aten.sum.default, kwargs = {})\n %_to_copy : [#users=1] = call_functiontarget=torch.ops.aten._to_copy.default, kwargs = {dtype: torch.float32, device: cuda:0})\n %sum_2 : [#users=1] = call_functiontarget=torch.ops.aten.sum.default, kwargs = {})\n %div : [#users=0] = call_functiontarget=torch.ops.aten.div.Tensor, kwargs = {})\n return None\nTraceback (most recent call last):\n File \"/jiej/playground/repro_control_flow.py\", line 19, in \n gm = make_fx(func)(x, target, 512)\n File \"/opt/pytorch/pytorch/torch/fx/experimental/proxy_tensor.py\", line 622, in wrapped\n t = dispatch_trace(wrap_key(func, args, fx_tracer), tracer=fx_tracer, concrete_args=tuple(phs))\n File \"/opt/pytorch/pytorch/torch/fx/experimental/proxy_tensor.py\", line 392, in dispatch_trace\n graph = tracer.trace(root, concrete_args)\n File \"/opt/pytorch/pytorch/torch/fx/_symbolic_trace.py\", line 739, in trace\n (self.create_arg(fn(*args)),),\n File \"/opt/pytorch/pytorch/torch/fx/experimental/proxy_tensor.py\", line 406, in wrapped\n out = f(*tensors)\n File \"/jiej/playground/repro_control_flow.py\", line 7, in func\n nll_loss_forward = torch.ops.aten.nll_loss_forward.default(x, target, None, 1, index)\n File \"/opt/pytorch/pytorch/torch/_ops.py\", line 60, in __call__\n return self._op(*args, **kwargs or {})\n File \"/opt/pytorch/pytorch/torch/overrides.py\", line 1778, in wrapped\n return f(self, *args, **kwargs)\n File \"/opt/pytorch/pytorch/torch/_prims/context.py\", line 187, in __torch_function__\n return func(*args, **kwargs)\n File \"/opt/pytorch/pytorch/torch/_decomp/decompositions.py\", line 1740, in nll_loss_forward\n total_weight = (target != ignore_index).sum().to(self)\n File \"/opt/pytorch/pytorch/torch/overrides.py\", line 1778, in wrapped\n return f(self, *args, **kwargs)\n File \"/opt/pytorch/pytorch/torch/_prims/context.py\", line 187, in __torch_function__\n return func(*args, **kwargs)\n File \"/opt/pytorch/pytorch/torch/_refs/__init__.py\", line 1697, in to\n return prims.convert_element_type(a, dtype)\n File \"/opt/pytorch/pytorch/torch/_ops.py\", line 60, in __call__\n return self._op(*args, **kwargs or {})\n File \"/opt/pytorch/pytorch/torch/overrides.py\", line 1778, in wrapped\n return f(self, *args, **kwargs)\n File \"/opt/pytorch/pytorch/torch/_prims/context.py\", line 168, in __torch_function__\n return orig_func(*args, **kwargs)\n File \"/opt/pytorch/pytorch/torch/_ops.py\", line 60, in __call__\n return self._op(*args, **kwargs or {})\nRuntimeError: prims::convert_element_type() Expected a value of type 'int' for argument 'dtype' but instead found type 'Tensor'.\nPosition: 1\nValue: tensor([[0.],\n [0.],\n [0.],\n ...,\n [0.],\n [0.],\n [0.]], device='cuda:0')\nDeclaration: prims::convert_element_type(Tensor a, int dtype) -> Tensor\nCast error details: Unable to cast Python instance to C++ type (#define PYBIND11_DETAILED_ERROR_MESSAGES or compile in debug mode for details)\n\nThe original error I'm getting is `It appears that you're trying to get value out of a tracing tensor - erroring out! It's likely that this is caused by data-dependent control flow or similar.`\nwhich seems to be originated from tracing with decomposition inside `TorchRefsNvfuserCapabilityMode`\n\nTo repro the original issue: running with torchdynamo code from here: URL \nrun it with `python benchmarks/huggingface.py --training -d cuda --fast --nvprims-nvfuser --skip-accuracy-check --generate-aot-autograd-stats --dump-raw-metrics --float32 -k AlbertForQuestionAnswering`\n\n### Versions\n\nRunning with pytorch\n\ncommit 9addeccb6b1ec9fed0246ba18fdb70550c813a90 (HEAD, origin/master, origin/HEAD, master)\nAuthor: kshitij12345 \nDate: Thu Sep 8 06:23:12 2022 +0000\n\n [functorch] vmapvjpvjp (re-enable test with skips and xfails) (#83999)\n \n Enable `vmapvjpvjp` test and add relevant skips and xfails.\n Pull Request resolved: URL \n Approved by: URL \n\ntorchdynamo commit\n\ncommit cad8185c937f2396ba1c683b86844c0248f2f538 (ivan/nvprims-backend)\nMerge: dcd88d1 11873be\nAuthor: Ivan Yashchuk \nDate: Thu Sep 1 10:13:19 2022 +0300\n\n Merge remote-tracking branch 'upstream/main' into nvprims-backend\n\ncc @ezyang @mruberry @ngimel @SherlockNoMad @soumith","reference_answer":"Looks like there's some example of how `var.X` overloads are handled in refs. I'll follow that pattern and get overloads of Tensor.to plumbed through.","answer_document_id":"gh_comment_1242515274","silver_evidence_path":["gh_comment_1241628927","gh_issue_1355693540","gh_comment_1242515274"],"known_context_document_ids":["gh_issue_1367207931"],"evidence_issue_ids":[1367207931,1355693540],"source_repo_name":"pytorch/pytorch","source_issue_id":1367207931,"source_issue_url":"https://github.com/pytorch/pytorch/issues/84734","target_repo_name":"pytorch/pytorch","target_issue_id":1355693540,"target_issue_url":"https://github.com/pytorch/pytorch/issues/84264","split":"test","quality_score":85.77,"annotation_level":"silver"}
{"query_id":"cross_issue_0177","query":"Error: detected space-or-tab-containing sequence?","query_context":"Hi, I am trying to run this pipeline through Anaconda and I am getting the following error:\n\n_Error! File: data/Nitens-and-Greg/GCF_021461395.2_iqSchAmer2.1_genomic.fna - detected space-or-tab-containing sequence:\nNC_060119.1 Schistocerca americana isolate TAMUIC-IGC-003095 chromosome 1, iqSchAmer2.1, whole genome shotgun sequence\nPlease exclude or fix sequences with spaces and tabs._\n\nFrom what I can tell, it is a problem with the formatting of the header in the fasta file as suggested in the GitHub. I have seen the script to rename after running but there is no script to rename before. do you have a script I can use or a suggestion on how to fix this error? I have included a screenshot of the full run below.\n\nI am trying to run this on very large RefSeq genomes (~8Gb) and I would appreciate any help you can offer!\n\nScreenshot 2024-06-18 163252","reference_answer":"Hi Dong-Ha,\n\nI am sorry for that, just fixed the issue (I assigned updated chrome names to the wrong fields...) URL \n\nNow they are correct.\n\n- Bogdan","answer_document_id":"gh_comment_1273246194","silver_evidence_path":["gh_comment_2185328416","gh_issue_1403096227","gh_comment_1273246194"],"known_context_document_ids":["gh_issue_2360768421"],"evidence_issue_ids":[2360768421,1403096227],"source_repo_name":"hillerlab/make_lastz_chains","source_issue_id":2360768421,"source_issue_url":"https://github.com/hillerlab/make_lastz_chains/issues/63","target_repo_name":"hillerlab/make_lastz_chains","target_issue_id":1403096227,"target_issue_url":"https://github.com/hillerlab/make_lastz_chains/issues/8","split":"test","quality_score":95.03,"annotation_level":"silver"}
{"query_id":"cross_issue_0178","query":"What is the nullness signature of a multiply-inherited abstract method?","query_context":"[EDIT: this whole comment is about case 1, where the method is abstract because all inherited methods are abstract.]\n\nFirst consider a discrepancy in return types:\n\n// in null-marked context\n\ninterface Foo { @Nullable String get(); }\ninterface Bar { /*non-nullable*/ String get(); }\ninterface Qux extends Foo, Bar {}\n\nIn this case, we can probably just follow Java's lead. With a quick experiment it seems that it won't just happily gin up an arbitrary intersection type, but if one of the types is more specific than the other (as should always be the case for us), it seems to go with that. (Or maybe I've gotten it wrong, but whatever it does, we can probably(?) stay consistent with.)\n\n// in null-marked context\n\ninterface Foo { void accept(@Nullable String x); }\ninterface Bar { void accept(/*non-nullable*/ String x); }\ninterface Qux extends Foo, Bar {}\n\nHere, Java is no guide, because any discrepancy in the types results in both overloads existing separately in `Qux` which we obviously can't mirror. (Or if they have the same erasure it just complains.)\n\nIt seems reasonable to go with the broader type; implementing `Foo` requires it to accept null, whereas `Bar` doesn't care whether it does or not. But is this tantamount to supporting contravariant nullness in parameter overrides, which we've said in #49 we don't intend to do?","reference_answer":"**Revised Proposal**: As described in JSpecify Conformance: Questions and Answers, conformance tests will check that tools can recognize when a method's static return type is not a nullness subtype of that of the directly overridden method, or a parameter type is not a nullness supertype of that of its direct superparameter. JSpecify will impose no requirement on tools to report anything in particular to users in these cases.\n\nIs this enough to change your thumb's direction, @kevinb9n?","answer_document_id":"gh_comment_2166797011","silver_evidence_path":["gh_comment_1127190931","gh_issue_631188435","gh_comment_2166797011"],"known_context_document_ids":["gh_issue_626812259"],"evidence_issue_ids":[626812259,631188435],"source_repo_name":"jspecify/jspecify","source_issue_id":626812259,"source_issue_url":"https://github.com/jspecify/jspecify/issues/110","target_repo_name":"jspecify/jspecify","target_issue_id":631188435,"target_issue_url":"https://github.com/jspecify/jspecify/issues/111","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0179","query":"[Request] Compile version for 32bit - armv7l?","query_context":"Tool Manager: Installing earlephilhower/toolchain-rp2040-earlephilhower @ 5.100300.220714\nINFO Installing earlephilhower/toolchain-rp2040-earlephilhower @ 5.100300.220714\nError: Could not find the package with 'earlephilhower/toolchain-rp2040-earlephilhower @ 5.100300.220714' requirements for your system 'linux_armv7l'\n\nSome users will be wanting to compile pico projects from their raspberry pis, some of which are 32bit only. And even on 64bit devices 32bit Raspbian is the default install by the r-pi foundation - URL \n\nAs such it would be great to have a 32bit version of the toolchain.\n\nRelated issue: URL","reference_answer":"It probably would work fine with pico-arduino but isn't something I can guarantee or test. You'd need to make adjustments to the platform.txt to use the system `arm-eabi-gcc` instead of the packaged one.","answer_document_id":"gh_comment_1112596619","silver_evidence_path":["gh_comment_1363090006","gh_issue_1196574962","gh_comment_1112596619"],"known_context_document_ids":["gh_issue_1472674034"],"evidence_issue_ids":[1472674034,1196574962],"source_repo_name":"earlephilhower/pico-quick-toolchain","source_issue_id":1472674034,"source_issue_url":"https://github.com/earlephilhower/pico-quick-toolchain/issues/22","target_repo_name":"earlephilhower/pico-quick-toolchain","target_issue_id":1196574962,"target_issue_url":"https://github.com/earlephilhower/pico-quick-toolchain/issues/8","split":"test","quality_score":86.54,"annotation_level":"silver"}
{"query_id":"cross_issue_0180","query":"E523 when using clever-f?","query_context":"Hello,\nI am using clever-f and I got this issue\n\n
\nEnvironment=\"TZDIR=/nix/store/z0kg1c0f8fx6r4rgg5bdy01lb2b9izqg-tzdata-2023a/share/zoneinfo\"\n\nExecStart=\nExecStart=/nix/store/r7fwxkxbgmwyrff5n03r9nchzskj59n9-networkmanager-1.40.16/bin/nm-online -q","answer_document_id":"gh_comment_1660635001","silver_evidence_path":["gh_comment_2907020804","gh_issue_1293615234","gh_comment_1660635001"],"known_context_document_ids":["gh_issue_3079622866"],"evidence_issue_ids":[3079622866,1293615234],"source_repo_name":"NixOS/nixpkgs","source_issue_id":3079622866,"source_issue_url":"https://github.com/NixOS/nixpkgs/issues/409348","target_repo_name":"NixOS/nixpkgs","target_issue_id":1293615234,"target_issue_url":"https://github.com/NixOS/nixpkgs/issues/180175","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0186","query":"1.4 Hangs server on Version checking?","query_context":"Recently updated to 1.4 and now the server hangs during Neoforge version checking stage. Reverting this mod to the last version fixed the issue.","reference_answer":"You need to be more specific than \"my save game was corrupted\". Can you not enter your world anymore with a warning about safe mode or are there things like chunk errors?","answer_document_id":"gh_comment_2581445202","silver_evidence_path":["gh_comment_2585702468","gh_issue_2778924440","gh_comment_2581445202"],"known_context_document_ids":["gh_issue_2781486587"],"evidence_issue_ids":[2781486587,2778924440],"source_repo_name":"Apollounknowndev/lithostitched","source_issue_id":2781486587,"source_issue_url":"https://github.com/Apollounknowndev/lithostitched/issues/26","target_repo_name":"Apollounknowndev/lithostitched","target_issue_id":2778924440,"target_issue_url":"https://github.com/Apollounknowndev/lithostitched/issues/23","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0187","query":"Hervorhebungen ausschalten?","query_context":"Wir bräuchten für die Hervorhebungen eine \"Ausschalten\"-Möglichkeit. Unsere Idee ist es, beim Auswählen der zu hervohebenden Stelle (z.B: beim Trigger) im Dropdown-Menü noch eine \"Hervorhebungen ausschalten\"-Option hinzuzufügen.","reference_answer":"In Player 1.28.3 habe ich den gegenteiligen Wunsch implementiert!\nSeid ihr sicher, dass ihr wieder zurück wollt?","answer_document_id":"gh_comment_2127006487","silver_evidence_path":["gh_comment_2144448694","gh_issue_2299775052","gh_comment_2127006487"],"known_context_document_ids":["gh_issue_2299779782"],"evidence_issue_ids":[2299779782,2299775052],"source_repo_name":"iqb-berlin/verona-modules-aspect","source_issue_id":2299779782,"source_issue_url":"https://github.com/iqb-berlin/verona-modules-aspect/issues/646","target_repo_name":"iqb-berlin/verona-modules-aspect","target_issue_id":2299775052,"target_issue_url":"https://github.com/iqb-berlin/verona-modules-aspect/issues/645","split":"test","quality_score":70.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0188","query":"New re-verify endpoint specifications?","query_context":"We often need to fix contracts data due to misaligned data. Currently, we lack a generic method to replace an existing misaligned contract in our database, so weāve been forced to create custom scripts to address specific issues (#1974).\n\nIn this issue, I propose introducing a new private endpointācallable only by the Sourcify instance maintainerāthat allows replacing an existing contract. To improve the performance of this endpoint, we can optimize it by skipping compilation and RPC-based on-chain data fetching, instead relying on information already stored in the database. Two properties, getCompilationFromDatabase and getOnchainDataFromDatabase, can be used to specify that the data should be retrieved from the database.\n\n### `/private/replace-contract`\n\n### Parameters\n- **chainId** \n- **address** \n- **creation_txhash**\n- **getCompilationFromDatabase: bool**. If set to true it skips compilation and queries compilation information from the database\n- **[if(getCompilationFromDatabase==false)] jsonInput**: optionally pass jsonInput, if it's passed it uses the passed one. if it's not passed it uses the jsonInput stored in the database (but it will recompile to get the jsonOutput)\n- **getOnchainDataFromDatabase: bool**. If set to true it skips calling rpc to find onchain information and queries onchain information from the database\n\n### Process\n1. fetch onchain information from the database if specified in the request's parameter, otherwise call the rpc\n2. fetch compiled information from the database if specified in the request's parameter, otherwise compile the contract\n3. call lib-sourcify verification flow\n4. if successful \n 4.1. delete existing `sourcify_match` and all linked rows in foreign tables, only if those rows are dangling. If there are non-dangling rows then return an error and we manually have to evaluate the case.\n 4.2. insert the new verification\n5. if not successful, return an error\n\n### lib-sourcify refactoring\n\nSuggestion from @manuelwedler: we could implement a new class in lib-sourcify `DatabaseCompilation` that follows the `AbstractCompilation` interface and gets the compiled bytecode and compilation artifacts as constructor arguments. That could be useful for skipping the compilation and avoiding the monkey patching we do at the current `upgradeContract` endpoint.\n\nWe an potentially do something similar for `SourcifyChain`.","reference_answer":"During a recent call, we raised the question of what happens to contracts verified with a bugged Sourcify version when the same contract is later inserted with a major (correct) version. Someone suggested periodically pruning the database, but we realized this could be a problem for our Parquet exports: we cannot edit parquet exports already created, so bugged sourcify contracts will be included in the exports.\n\nHowever, I donāt think this will actually be a problem. When importing contracts from a Parquet export, users can filter out contracts verified with bugged Sourcify versions, or replace them once a version with a major fix appears in a subsequent export file.\n\nThe open questions are:\n* Does it make sense to prune?\n* When should we prune?\n* Should we also prune the VerA database?","answer_document_id":"gh_comment_2900246047","silver_evidence_path":["gh_comment_2900166621","gh_issue_3002665079","gh_comment_2900246047"],"known_context_document_ids":["gh_issue_3079463986"],"evidence_issue_ids":[3079463986,3002665079],"source_repo_name":"ethereum/sourcify","source_issue_id":3079463986,"source_issue_url":"https://github.com/ethereum/sourcify/issues/2166","target_repo_name":"ethereum/sourcify","target_issue_id":3002665079,"target_issue_url":"https://github.com/ethereum/sourcify/issues/2089","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0189","query":"TypeError in diff view of viewvc 1.3.0 master if hr_intraline is set?","query_context":"**_Edit 2_: looks like the exceptions are thrown only when hr_intraline is set.**\n\nRecently, we upgraded a Subversion installation to 1.14.1 on a CentOS 7 server.\n\nFrom what we can tell, Subversion 1.14.1 no longer has bindings for Python 2 meaning we had to switch to the development branch (\"master\") of ViewVC 1.3.0 at commit f97ea61 of Dec 1, 2021.\n\nEverything appears to be working except the \"diff\" views where we're seeing the following error when checking the changes to a text file using a \"colored diff\":\n\nAn Exception Has Occurred\nPython Traceback\nTypeError: a bytes-like object is required, not 'str'\n\nA \"unidiff\" is also broken but the error is different (the reverse?):\n\nAn Exception Has Occurred\nPython Traceback\nTypeError: must be str, not bytes\n\nDiff views in \"context diff\" and \"side by side\" don't throw an exception but are much harder to parse by a person, of course.\n\nPygments is installed:\n\n# pip3 show Pygments | grep Version\nVersion: 2.2.0\n#\n\nWe don't know if this is a known issue with ViewVC 1.3.0 or if we have a missing dependency.\n\n_Edit 1_: below are the system details as requested by @futatuki.\nCentOS 7.9.2009, Apache 2.4.6, Python 3.6.8, Pygments 2.2.0, GNU diffutils 3.3, Subversion 1.14.1\n\n[general]\nroot_parents = /var/svn/repos: svn\n[utilities]\ndiff = /usr/bin/diff\n[options]\nallowed_views = annotate, diff, markup, roots, tar\nauthorizer = svnauthz\ncustom_log_formatting =\n bug ([0-9]+) : URL \n ([A-Z]+\\-[0-9]+) : URL \n \\[([3-7]{1}[0-9]{3})\\] : URL \n (rev|revs)\\.\\s*([0-9]+) : URL \ndefault_file_view = markup\nmax_filesize_kbytes = 1024\nlog_sort = none\nhr_intraline = 1\ntemplate_dir = templates/classic\ndocroot = /viewvc/static\nenable_syntax_coloration = 1\ntabsize = 0\nlog_pagesize = 75\nlog_pagesextra = 10\n[templates]\n[cvsdb]\n[vhosts]\n[authz-forbidden]\n[authz-forbiddenre]\n[authz-svnauthz]\nauthzfile = /var/svn/etc/svnaccessfile","reference_answer":"Backporting PR #297 is easy, but backporting PR #296 is troublesome because of `_diff_fp` implementation using `popen` API. Of course, we can backport whole `_diff_fp` implementation using subprocess.Popen, though.","answer_document_id":"gh_comment_1281926583","silver_evidence_path":["gh_comment_1275582166","gh_issue_1405143857","gh_comment_1281926583"],"known_context_document_ids":["gh_issue_1098073178"],"evidence_issue_ids":[1098073178,1405143857],"source_repo_name":"viewvc/viewvc","source_issue_id":1098073178,"source_issue_url":"https://github.com/viewvc/viewvc/issues/275","target_repo_name":"viewvc/viewvc","target_issue_id":1405143857,"target_issue_url":"https://github.com/viewvc/viewvc/issues/293","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0190","query":"Signs responsive description heard when signs not checked?","query_context":"Related to URL \n\nWe should only hear the description of the signs when the are visible. This would affect Voicig design as well, but I don't think I have a design yet for Voicing.","reference_answer":"Note: due to the merge hiccup, this change was temporarily deleted, but I restored it with cherry-picks referenced above.","answer_document_id":"gh_comment_2843155090","silver_evidence_path":["gh_comment_2877824941","gh_issue_3011299366","gh_comment_2843155090"],"known_context_document_ids":["gh_issue_3053043857"],"evidence_issue_ids":[3053043857,3011299366],"source_repo_name":"phetsims/membrane-transport","source_issue_id":3053043857,"source_issue_url":"https://github.com/phetsims/membrane-transport/issues/167","target_repo_name":"phetsims/membrane-transport","target_issue_id":3011299366,"target_issue_url":"https://github.com/phetsims/membrane-transport/issues/103","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0191","query":"Apple Silicon Support?","query_context":"Since there are going to be more and more Apple Silicon computers in the wild, it would make sense to make a JAR for macosx-aarch64","reference_answer":"I've introduced `macosx-x86_64` builds in commit URL \nPlease give it a try with the snapshots: URL","answer_document_id":"gh_comment_1018182190","silver_evidence_path":["gh_comment_1033538116","gh_issue_1000252574","gh_comment_1018182190"],"known_context_document_ids":["gh_issue_964754180"],"evidence_issue_ids":[964754180,1000252574],"source_repo_name":"bytedeco/javacpp-presets","source_issue_id":964754180,"source_issue_url":"https://github.com/bytedeco/javacpp-presets/issues/1069","target_repo_name":"bytedeco/javacv","target_issue_id":1000252574,"target_issue_url":"https://github.com/bytedeco/javacv/issues/1696","split":"test","quality_score":81.67,"annotation_level":"silver"}
{"query_id":"cross_issue_0193","query":"help manage my disk space?","query_context":"Bazel workspaces can occupy a lot of space. `bazel clean` will fix that, but first you have to know that Bazel is the reason you're low on disk, and how big each Bazel workspace is.","reference_answer":"There were two important questions for our design of the garbage collector:\n\n1. How to decided which blob in the disk cache should be removed?\n2. How/when to run the garbage collection for a shared disk cache?\n\nThe answer to the first question is similar to the workaround you have posted here: use `mtime`. However, since we now have the lease service which will extend the leases of blobs required by Bazel during the invocation, we can let disk cache update the `mtime` of referenced blobs during lease extension. This allows us to do the garbage collection based on the real access pattern. And combining with `--experimental_remote_cache_ttl`, we won't delete blobs that are still needed by Bazel. On that other hand, even if the blobs were accidentally deleted causing remote cache eviction error, lease server can help Bazel recover from it.\n\nWe don't want the garbage collection have impact on the build performance, nor users should be aware of it. So it happens in the background between invocations. The garbage collection should be interruptible and resumable, so that upon a new invocation, we can cancel it immediately without blocking the invocation and continue it afterwards. Since the CAS is sharded by the first byte of the blobs' digest, we define the unit of work for the garbage collection as shard, i.e. we can resume the garbage collection on the shard basis.\n\nWe don't want to run garbage collection after every invocation. We store the global state (e.g. when did last garbage collection finish) in the disk cache and schedule the garbage collection based on that (e.g. once per day).\n\nWe want to continue supporting the use case that multiple Bazel instances share the same disk cache. To prevent from having concurrent garbage collections, we use a lockfile created inside the disk cache by `open(O_CREAT | O_EXCL)` (and equivalent one on Windows. However, it might not work on some `NFS`s. We do have a plan B for that but we don't want to make it complicate now. Consider using a real remote cache server if you want to share cache across machines). The `mtime` of the lockfile is updated continuously during the garbage collection to indicate it is still in progress in case of Bazel server crashed (or `Ctrl-C`ed).\n\ncc @tjgq in case I missed something.","answer_document_id":"gh_comment_1602610638","silver_evidence_path":["gh_comment_1043262516","gh_issue_319514234","gh_comment_1602610638"],"known_context_document_ids":["gh_issue_1000172388"],"evidence_issue_ids":[1000172388,319514234],"source_repo_name":"aspect-build/aspect-cli","source_issue_id":1000172388,"source_issue_url":"https://github.com/aspect-build/aspect-cli/issues/32","target_repo_name":"bazelbuild/bazel","target_issue_id":319514234,"target_issue_url":"https://github.com/bazelbuild/bazel/issues/5139","split":"test","quality_score":92.71,"annotation_level":"silver"}
{"query_id":"cross_issue_0194","query":"Garage Door Opens but does not close?","query_context":"As per the title, I can use the webpage to open/stop but not close the garage door, any help would be appreciated.","reference_answer":"I don't see anything unusual in the logs, other than the fact that your GDO seems to be completely ignoring the close command. \n\nWe might need to add a \"quirks\" feature flag or something like that for cases like this... such as `USE_TOGGLE_FOR_CLOSE` in this particular case.\n\nP.S. If you feel like experimenting you can see if maybe there's another value for `DOOR_CLOSE` that works for your GDO. You'll need to change the constant here URL and recompile/re-flash to test.","answer_document_id":"gh_comment_1865161974","silver_evidence_path":["gh_comment_2059805648","gh_issue_2045162770","gh_comment_1865161974"],"known_context_document_ids":["gh_issue_2246708079"],"evidence_issue_ids":[2246708079,2045162770],"source_repo_name":"Kaldek/rat-ratgdo","source_issue_id":2246708079,"source_issue_url":"https://github.com/Kaldek/rat-ratgdo/issues/100","target_repo_name":"ratgdo/esphome-ratgdo","target_issue_id":2045162770,"target_issue_url":"https://github.com/ratgdo/esphome-ratgdo/issues/146","split":"test","quality_score":94.67,"annotation_level":"silver"}
{"query_id":"cross_issue_0195","query":"Cannot test QER policies with iperf3 (DL)?","query_context":"### TLDR: \nCannot use iperf3 with eUPF. By default, the client isn't able to establish a connection with the server. If i disable the tcp offloading on the gw, the connection is established but I always get 0.00 bits/sec. The result is that i canno test the enforcment of QER in downlink.\n\n### Deployment architecture\n\nmermaid\ngraph LR\n UE[\"UE\"] -->|192.168.60.100| ue1[\"ue1\"]\n ue1 -->|192.168.60.50| gneth2[\"gneth2\"]\n gneth2 --> GNB[\"GNB\"]\n GNB -->|192.168.80.50| gnb_gneth0[\"gneth0\"]\n gnb_gneth0 -->|192.168.80.200| eUPF_eth0[\"eth0\"]\n eUPF_eth0 --> eUPF[\"eUPF\"]\n eUPF -->|192.168.90.200| eUPF_eth2[\"eth2\"]\n eUPF_eth2 -->|192.168.90.100| GW_eth0[\"eth0\"]\n GW_eth0 --> GW[\"GW\"]\n\n style UE fill:#f1c40f,stroke:#333,stroke-width:2px\n style GNB fill:#f1c40f,stroke:#333,stroke-width:2px\n style eUPF fill:#f1c40f,stroke:#333,stroke-width:2px\n style GW fill:#f1c40f,stroke:#333,stroke-width:2px\n\n### Issue report\n#### Test\n* The UE has an active PDU session with the IP 10.45.0.2\n* The PDU Session has a flow with QFI (1), 5QI (9) and UL/DL limit (1Mbs).\n* From the UE, an iperf3 server is set `iperf3 -s`.\n* From the GW, the client is run `iperf3 -c 10.45.0.2`\n\n### UE iperf3 server log\n\n-----------------------------------------------------------\nServer listening on 5201\n-----------------------------------------------------------\nAccepted connection from 192.168.90.100, port 53198\n[ 5] local 10.45.0.2 port 5201 connected to 192.168.90.100 port 53202\n[ ID] Interval Transfer Bitrate\n[ 5] 0.00-1.00 sec 0.00 Bytes 0.00 bits/sec\n[ 5] 1.00-2.00 sec 0.00 Bytes 0.00 bits/sec\n[ 5] 2.00-3.00 sec 0.00 Bytes 0.00 bits/sec\n[ 5] 3.00-4.00 sec 0.00 Bytes 0.00 bits/sec\n[ 5] 4.00-5.00 sec 0.00 Bytes 0.00 bits/sec\n[ 5] 5.00-6.00 sec 0.00 Bytes 0.00 bits/sec\n[ 5] 6.00-7.00 sec 0.00 Bytes 0.00 bits/sec\n[ 5] 7.00-8.00 sec 0.00 Bytes 0.00 bits/sec\n[ 5] 8.00-9.00 sec 0.00 Bytes 0.00 bits/sec\n[ 5] 9.00-10.00 sec 0.00 Bytes 0.00 bits/sec\n- - - - - - - - - - - - - - - - - - - - - - - - -\n[ ID] Interval Transfer Bitrate\n[ 5] 0.00-10.06 sec 0.00 Bytes 0.00 bits/sec receiver\n\n### GW iperf3 client log\n\nConnecting to host 10.45.0.2, port 5201\n[ 5] local 192.168.90.100 port 53202 connected to 10.45.0.2 port 5201\n[ ID] Interval Transfer Bitrate Retr Cwnd\n[ 5] 0.00-1.00 sec 105 KBytes 856 Kbits/sec 1 1.41 KBytes\n[ 5] 1.00-2.01 sec 0.00 Bytes 0.00 bits/sec 1 1.41 KBytes\n[ 5] 2.01-3.00 sec 0.00 Bytes 0.00 bits/sec 1 1.41 KBytes\n[ 5] 3.00-4.00 sec 0.00 Bytes 0.00 bits/sec 0 1.41 KBytes\n[ 5] 4.00-5.00 sec 0.00 Bytes 0.00 bits/sec 1 1.41 KBytes\n[ 5] 5.00-6.00 sec 0.00 Bytes 0.00 bits/sec 0 1.41 KBytes\n[ 5] 6.00-7.00 sec 0.00 Bytes 0.00 bits/sec 0 1.41 KBytes\n[ 5] 7.00-8.00 sec 0.00 Bytes 0.00 bits/sec 0 1.41 KBytes\n[ 5] 8.00-9.00 sec 0.00 Bytes 0.00 bits/sec 0 1.41 KBytes\n[ 5] 9.00-10.00 sec 0.00 Bytes 0.00 bits/sec 1 1.41 KBytes\n- - - - - - - - - - - - - - - - - - - - - - - - -\n[ ID] Interval Transfer Bitrate Retr\n[ 5] 0.00-10.00 sec 105 KBytes 85.7 Kbits/sec 5 sender\n[ 5] 0.00-10.06 sec 0.00 Bytes 0.00 bits/sec receiver\n\niperf Done.\n\n### eUPF trace log\n\nsee attachment\n\nMany thanks for your help, and let me know if you need some additional info!\n\neupf_trace_log.txt","reference_answer":"Hi @s5uishida,\n\nTry to disable tx offload on iperf server. `ethtool -K eth0 tx off`\n\nThere were several similar issues with iperf in our tests.\n\n URL \n URL \n\n-- BR Alex","answer_document_id":"gh_comment_2164752694","silver_evidence_path":["gh_comment_2819305569","gh_issue_2350212004","gh_comment_2164752694"],"known_context_document_ids":["gh_issue_3008523562"],"evidence_issue_ids":[3008523562,2350212004],"source_repo_name":"edgecomllc/eupf","source_issue_id":3008523562,"source_issue_url":"https://github.com/edgecomllc/eupf/issues/615","target_repo_name":"edgecomllc/eupf","target_issue_id":2350212004,"target_issue_url":"https://github.com/edgecomllc/eupf/issues/555","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0197","query":"Organizing reusable blocks with categories or similar?","query_context":"Creating shared blocks is awesome, but what happens when you start getting a fair amount of them?\n\nThings start to become hard to use, they take up screen space, finding that one block you wanted becomes a burden.\n\nAdding some way to categorize shared blocks will likely be necessary moving forward, especially if we wish to do more in line with adding sidebar control etc to the editor experience.\n\n#7606 looks like it might be a good stepping stone in that direction.\n\nOne might argue that naming your blocks to find them easier is the right choice, and using the block search after this to find them. Although that would be nice in a perfect world, with limited space for block names you just can't rely on naming alone.\n\nimage\nThe example above is possibly a bit extreme, possibly not, we don't know how users will choose to name things.","reference_answer":"Taxonomy is correct ā the thing I'm worried about is the overlap between semantic template parts and pattern categories, specially given they are separate objects (`wp_template_part` and `wp_block`). Which would render a term of \"header\" associated only with wp_block ambiguous. We might need to share the taxonomy.","answer_document_id":"gh_comment_1671039875","silver_evidence_path":["gh_comment_1730067201","gh_issue_1828380168","gh_comment_1671039875"],"known_context_document_ids":["gh_issue_336646464"],"evidence_issue_ids":[336646464,1828380168],"source_repo_name":"WordPress/gutenberg","source_issue_id":336646464,"source_issue_url":"https://github.com/WordPress/gutenberg/issues/7608","target_repo_name":"WordPress/gutenberg","target_issue_id":1828380168,"target_issue_url":"https://github.com/WordPress/gutenberg/issues/53164","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0200","query":"Inconsistency in Generic Inference for Private Properties?","query_context":"### š Search Terms\n\nd.ts, dts, private, type inference, generics\n\n### š Version & Regression Information\n\n- This is the behavior in every version\n\n### ⯠Playground Link\n\n URL \n\n### š» Code\n\ntypescript\nclass MyClass1 {\n private a: A;\n constructor(a: A) {\n this.a = a\n }\n}\nclass MyClass1Sub extends MyClass1 {\n}\ntype X1 = MyClass1Sub extends MyClass1 ? x : never\n// X1 is number\n\n// when the TypeScript compiler generates the corresponding d.ts file\n// it omits the type annotation for the private member a in the MyClass1 definition:\n// (To avoid confusion, we are changing the name from MyClass1 to MyClass2)\ndeclare class MyClass2 {\n private a;\n constructor(a: A)\n}\nclass MyClass2Sub extends MyClass2 {\n}\ntype X2 = MyClass2Sub extends MyClass2 ? x : never\n// X2 is unknown\n\n### š Actual behavior\n\nBecause the type of a is lost after compilation, X2 is inferred as unknown.\n\n### š Expected behavior\n\nConsider I am writing a package, ProjectA, where I have MyClass1 defined.\nNow, after compiling and publishing ProjectA, I reference it in another package, ProjectB.\nIn ProjectA, I can infer the generics of MyClass1Sub, but not in ProjectB.\nI want the type inference to be consistent before and after code compilation.\n\n### Additional information about the issue\n\nI've noticed this issue: URL \nI can also understand the rationale behind it: since private properties aren't accessed externally, there might seem to be no need to annotate their types.\nHowever, I believe this viewpoint is one-sided. Besides external access, there are many situations where type annotation is necessary, such as the cases of inheritance and inference that I mentioned here.","reference_answer":"To solve the `Endpoint` case, you'd use an intersection.\n\nPrivate fields appearing in a structural position where they can never be legally accessed, and would have fairly confusing semantics (are they allowed to merge via intersection? how?) is a sort of \"a screwdriver is a hammer if you hold it by the pointy end\" solution -- it *would* work, but the right fix is clearly nominal types.","answer_document_id":"gh_comment_1312086828","silver_evidence_path":["gh_comment_2100577302","gh_issue_1445809865","gh_comment_1312086828"],"known_context_document_ids":["gh_issue_2285551440"],"evidence_issue_ids":[2285551440,1445809865],"source_repo_name":"microsoft/TypeScript","source_issue_id":2285551440,"source_issue_url":"https://github.com/microsoft/TypeScript/issues/58470","target_repo_name":"microsoft/TypeScript","target_issue_id":1445809865,"target_issue_url":"https://github.com/microsoft/TypeScript/issues/51489","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0201","query":"Document/automate how to migrate from a Wrangler 1 `webpack_config` / webpack integration to Wrangler 2?","query_context":"wrangler v2 deprecates the `type` and `webpack_config` configurations, and it's overall webpack integration story. \n\n- This has historically been a pain point both internally and externally. We haven't been able to update the webpack version (v4) because of breaking changes, and it scares away people from using wrangler in the first place. \n- The other two values for `type` - `javascript` and `rust` don't make much sense anymore since it's really the same thing backing it. And we're going to encourage development in multiple languages (Go, python, what have you) since we want to have the best `wasm` support ever. \n- Because we now ship esbuild, we can automatically provide support for a number of features that bundlers are typically used for: modules, jsx, typescript, etc. \n\nTODO: as part of the effort to be backward compatible, we should have a super low-effort transition guide to moving existing webpack projects to the new wrangler (ideally, we should be able to automate it with a single command/codemod).","reference_answer":"I think we should keep esbuild as an internal implementation. Enabling esbuild specific plugins would make it harder to switch to an alterntaive build step.","answer_document_id":"gh_comment_1031195834","silver_evidence_path":["gh_comment_1066160531","gh_issue_1100033391","gh_comment_1031195834"],"known_context_document_ids":["gh_issue_1053837644"],"evidence_issue_ids":[1053837644,1100033391],"source_repo_name":"cloudflare/wrangler2","source_issue_id":1053837644,"source_issue_url":"https://github.com/cloudflare/wrangler2/issues/8","target_repo_name":"cloudflare/wrangler2","target_issue_id":1100033391,"target_issue_url":"https://github.com/cloudflare/wrangler2/issues/234","split":"test","quality_score":87.44,"annotation_level":"silver"}
{"query_id":"cross_issue_0203","query":"My all extension off?","query_context":"Type: Bug \n\nAfter I use vs code for a while all my extensions turn off. but my RAM is also CUP ticked. \n\nimage\n\nVS Code version: Code 1.76.1 (5e805b79fcb6ba4c2d23712967df89a089da575b, 2023-03-08T16:48:08.231Z)\nOS version: Darwin arm64 22.3.0\nModes:\nSandboxed: No\n\n \n System Info \n\n|Item|Value|\n|---|---|\n|CPUs|Apple M1 Pro (8 x 24)|\n|GPU Status|2d_canvas: enabled canvas_oop_rasterization: disabled_off direct_rendering_display_compositor: disabled_off_ok gpu_compositing: enabled metal: disabled_off multiple_raster_threads: enabled_on opengl: enabled_on rasterization: enabled raw_draw: disabled_off_ok skia_renderer: enabled_on video_decode: enabled video_encode: enabled vulkan: disabled_off webgl: enabled webgl2: enabled webgpu: disabled_off|\n|Load (avg)|3, 3, 3|\n|Memory (System)|16.00GB (0.32GB free)|\n|Process Argv|. --crash-reporter-id 37b4c5ad-564b-4679-a877-40c9b6698903|\n|Screen Reader|yes|\n|VM|0%|\n Extensions (57) \n\nExtension|Author (truncated)|Version\n---|---|---\nbetter-comments|aar|3.0.2\nvscode-javascript-snippet-pack|aka|0.1.6\nauto-align|bla|0.0.13\nvscode-standardjs-snippets|cap|0.9.0\nturbo-console-log|Cha|2.7.1\nnpm-intellisense|chr|1.4.4\npath-intellisense|chr|2.8.4\njsrefactor|cms|3.0.1\nvscode-redis-client|cwe|6.2.5\ndscodegpt|Dan|2.0.1\nvscode-markdownlint|Dav|0.49.0\nvscode-eslint|dba|2.4.0\ngithistory|don|0.6.20\nvscode-babel-coloring|dza|0.0.4\ngitlens|eam|13.3.2\nEditorConfig|Edi|0.16.4\nvsc-material-theme-icons|equ|2.6.1\nprettier-vscode|esb|9.10.4\ncode-runner|for|0.12.0\ntoggle-zen-mode|fud|1.1.2\ncopilot|Git|1.77.9225\nvscode-pull-request-github|Git|0.60.0\nvscode-test-explorer|hbe|2.21.1\nvscode-drawio|hed|1.6.6\npath-autocomplete|ion|1.23.1\nsearch-node-modules|jas|1.3.0\nvscode-jest-test-adapter|kav|0.8.1\nauto-save|mcr|1.0.3\nrainbow-csv|mec|3.5.0\ngit-graph|mhu|1.30.0\ndotenv|mik|1.0.1\ndocument|min|2.2.1\nvscode-filesize|mkx|3.1.0\ninline-fold|moa|0.2.3\nvscode-docker|ms-|1.24.0\nremote-containers|ms-|0.282.0\ntest-adapter-converter|ms-|0.1.6\nvscode-typescript-next|ms-|5.1.20230313\nindent-rainbow|ode|8.3.1\nvscode-jest|Ort|5.2.3\nrefactor|p42|3.0.1\ntsimporter|pmn|2.0.1\nsubtle-brackets|raf|3.0.0\nvscode-yaml|red|1.12.1\nLiveServer|rit|5.7.9\nvscode-javascript-booster|sbu|14.0.1\nautoimport|ste|1.5.4\naddDocComments|ste|0.0.8\ncode-spell-checker|str|2.19.0\nmove-ts|str|1.12.0\ntabnine-vscode|Tab|3.6.42\nerrorlens|use|3.8.0\nintellicode-api-usage-examples|Vis|0.2.7\nvscodeintellicode|Vis|1.2.30\nfig|wit|0.0.7\nvscode-import-cost|wix|3.3.0\nJavaScriptSnippets|xab|1.8.0\n\n(2 theme extensions excluded)\n\n \n A/B Experiments \n\nvsliv368cf:30146710\nvsreu685:30147344\npython383:30185418\nvspor879:30202332\nvspor708:30202333\nvspor363:30204092\nvslsvsres303:30308271\npythonvspyl392:30443607\nvserr242:30382549\npythontb:30283811\nvsjup518:30340749\npythonptprofiler:30281270\nvshan820:30294714\nvstes263:30335439\nvscoreces:30445986\npythondataviewer:30285071\nvscod805:30301674\nbinariesv615:30325510\nbridge0708:30335490\nbridge0723:30353136\ncmake_vspar411:30581797\nvsaa593:30376534\npythonvs932:30410667\ncppdebug:30492333\nvscaac:30438847\nvsclangdc:30486549\nc4g48928:30535728\ndsvsc012cf:30540253\npynewext54:30681850\nazure-dev_surveyone:30548225\nvsccc:30610678\npyindex848:30662994\nnodejswelcome1cf:30587006\n3biah626:30602489\npyind779:30671433\n89544117:30613380\nvscrpc:30673769\npythonsymbol12:30671437\na9j8j154:30646983\n6233i204:30672705\npythonb192cf:30669361\nfunwalk2:30682974\npythonms35:30686772","reference_answer":"@Gerrnperl thanks, could you quit VS Code, run `code --verbose`, reproduce the issue and then send the logs as Zip from that session (e-mail is fine, its viewable on URL You can find the logs folder from this command:\n\n
1.14.3` on windows.","answer_document_id":"gh_comment_2573013397","silver_evidence_path":["gh_comment_2574800136","gh_issue_2770445913","gh_comment_2573013397"],"known_context_document_ids":["gh_issue_2635428486"],"evidence_issue_ids":[2635428486,2770445913],"source_repo_name":"conda-forge/hdf5-feedstock","source_issue_id":2635428486,"source_issue_url":"https://github.com/conda-forge/hdf5-feedstock/issues/240","target_repo_name":"conda-forge/conda-forge-pinning-feedstock","target_issue_id":2770445913,"target_issue_url":"https://github.com/conda-forge/conda-forge-pinning-feedstock/issues/6900","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0205","query":"GroupingStep?","query_context":"{valid: ready, value: groupedPointList} // function to call when the ready state changes - after first render this needs to be called with true, but changes to false when the user is in the middle of a grouping \n/>\n\n- [x] Use a media query of width less than theme.condensedWidthBreakPoint to determine when to switch to 1 column mode (for smartphones). \n- [x] Update PointGroup component to have it display selected vstate.\n- [x] Update PointGroup component to accept a callback function to allow the grouping step know when the done button is clicked.\n\nStorybook\n- [ ] User 10 points for the test case\n- [ ] Create a story case for each state, progressively use play() to simulate the user interactions to get to each state. \n- [ ] Test the case when groupedPointList is already populated\n- [ ] Test the case when shared={}, and shared={startingPointList: undefined} and shared={startingPointList: []} \n\nStretch Goal\n- [ ] When point grouping is complete, use animation to show the points combining at the bottom, and the rest of the points moving into their new positions.","reference_answer":"How does the GroupPoint Component get the values for dem-info like \"Republican, 45 ,UT\"? Are they in pointObj?","answer_document_id":"gh_comment_1851135967","silver_evidence_path":["gh_comment_1960731363","gh_issue_1909530919","gh_comment_1851135967"],"known_context_document_ids":["gh_issue_1958462714"],"evidence_issue_ids":[1958462714,1909530919],"source_repo_name":"EnCiv/civil-pursuit","source_issue_id":1958462714,"source_issue_url":"https://github.com/EnCiv/civil-pursuit/issues/49","target_repo_name":"EnCiv/civil-pursuit","target_issue_id":1909530919,"target_issue_url":"https://github.com/EnCiv/civil-pursuit/issues/35","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0206","query":"Tracking: MDIMs - Pending issues?","query_context":"ā ļø**This issue is very general and helped kick off the discussion on various fronts. Read for the whole story, but you can also directly jump to the more scoped tracking issue that emerged:**\n- #3992\n\n--- \n\n**NOTE: Some of the issues raised in this thread involve design/engineering work, so we should probably raise them in URL Still, I think we can discuss here shorter-term solutions and help coordinate with progress in other repos**\n\n# One-liner\nMDIMs are almost ready to be used from a data perspective. However, there are some minor pending issues that would be nice to solve before they become a regular tool.\n\n## More context\nIn the last months, Iāve been working on various MDIMs for COVID-19 (tracking issue: URL ETL PR: #3949)⦠There are 13 in total! In this context, Iāve come across various issues with MDIMs. Some have been addressed and already fixed (š), and others remain unresolved. \n\nMost of my COVID MDIMs are fine, but some (~10%) have special characteristics that current specs do not support. While these are exceptions, they still represent part of our work and products.\n\nSome of these issues involve design work, engineering work, data work, or a combination of these.\n\n# Issues\n## 1) If a view of an MDIM contains multiple indicators, not all metadata is shown.\n \n \n\nSometimes, we may want a view of the MDIM to show multiple indicators. In such cases, the metadata around the MDIM page should be adapted so that it shows all indicators present in the view.\n\nCurrently, only the metadata of one of all indicators is shown. Presumably, the first one?\n\n## 2) Support different default entities for different views\n \n \n\nSometimes, we may want different views to show different entities by default. The example above presents data disaggregated by income groups in the default view. A second view, uses indicators that donāt have these entities, hence I want to use other defaults. This is currently not supported.\n\nI think this is because MDIMs look at the top-level property `defaultSelection` and ignore the chart-config-level property. You can see the current config of the above MDIM here.\n\n## 3) Expand dimensions automatically\n \n \n\nWe should be able to generate very simple MDIMs without writing much in the accompanying YAML file. Simple MDIMs could be those where we just want to explore the dimensions of a certain indicator and show a view for each one. In such cases, we should be able to auto-generate them.\n\nThere have been two attempts at supporting this, but IMO, they both still have pain points:\n\n### Method `etl.multidim.expand_views`\n \n1. This method currently accesses the database to get the details on the dimensions in the table. \n2. This goes against our view on how MDIMs should work, which was recently discussed in #. Instead, the method should only rely on local files (ETL grapher datasets).\n\n### Method`etl.multidim.generate_views_for_dimensions`\n \n1. This function gets dimension information from local ETL grapher files\n2. This function assumes a particular, unstandardized naming convention of table column names.\n3. Currently, the only standard that is widely used in the team (by at least 5 of us) is different: \n - When using _long format_ In Garden, dimensions are part of the index. \n - Then, in Grapher, these are flattened out so that columns have names like `indicator__dimension1Name_dimension1Value__dimension2Name_dimension2Value`. Example: `population__sex_female__age_10`.","reference_answer":"It's hard to say where to draw the line. Python uses under_score and MySQL & TS camelCase. ETL uses mix of both - in most cases underscore, but for instance `display` is in camelCase because it's directly inserted into db.\n\nAs far as I know, this hasn't caused that many problems, as most of them were caught by our YAML linter. I'll leave it up to @lucasrodes and other data managers to decide what is the preferred casing and whether it's worth changing it.","answer_document_id":"gh_comment_2662322215","silver_evidence_path":["gh_comment_2660926121","gh_issue_2854221975","gh_comment_2662322215"],"known_context_document_ids":["gh_issue_2849350202"],"evidence_issue_ids":[2849350202,2854221975],"source_repo_name":"owid/etl","source_issue_id":2849350202,"source_issue_url":"https://github.com/owid/etl/issues/3969","target_repo_name":"owid/etl","target_issue_id":2854221975,"target_issue_url":"https://github.com/owid/etl/issues/3977","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0208","query":"`centos2alma` script fails on '/etc/fstab' ordering pre-conversion check?","query_context":"**Describe the bug**\nWhen attempting to run the centos2alma script following the instructions in the README ( URL the process fails during the pre-conversion checks phase.\n\n**Environment:**\n\nOS: CentOS Linux 7.9.2009 (Core)\nPlesk Version: Plesk Obsidian 18.0.68 Update #2\n\nThe script halts execution with the following specific error message, indicating an issue with the order of mount points listed in the `/etc/fstab` file:\n\nDoing preparation checks...\nRequired pre-conversion condition 'checking if /etc/fstab is ordered properly' not met:\n The /etc/fstab file entries is not ordered properly.\n - Mount point /proc should be placed after /\n - Mount point /dev/pts should be placed after /\n - Mount point /dev/shm should be placed after /\n - Mount point /sys should be placed after /\n - Mount point /boot should be placed after /\nConversion can't be performed due to the problems noted above\n\n**Feedback archive**\n\ncentos2alma_feedback.zip","reference_answer":"The issue seems to occur because the new kernel version changes the names of the RAID devices in the system.\n\nWe haven't encountered this issue previously, so I suggest manually setting the names of the RAID devices via the command line in the kernel. Alternatively, you could use the UUID of the RAID devices in the /etc/fstab file, which I believe is more reliable (as explained by Jeff Geerling, for example). Hereās how you can do it:\n1. Find out the UUID of the RAID device using the command `blkid /dev/md/125`.\n2. Replace `/dev/md/125` with the UUID in the `/etc/fstab` file.\n\nIt might also be a good idea to revert to a system snapshot taken before the conversion and modify the `/etc/fstab` before starting the conversion process.","answer_document_id":"gh_comment_2499718985","silver_evidence_path":["gh_comment_2775830167","gh_issue_2686014772","gh_comment_2499718985"],"known_context_document_ids":["gh_issue_2966832312"],"evidence_issue_ids":[2966832312,2686014772],"source_repo_name":"plesk/centos2alma","source_issue_id":2966832312,"source_issue_url":"https://github.com/plesk/centos2alma/issues/437","target_repo_name":"plesk/centos2alma","target_issue_id":2686014772,"target_issue_url":"https://github.com/plesk/centos2alma/issues/388","split":"test","quality_score":95.9,"annotation_level":"silver"}
{"query_id":"cross_issue_0209","query":"Erreur sur l'onglet service?","query_context":"Bonjour, \nSuite au passage à la version 2.101, nous avons un message d'erreur sur l'onglet service.\nEst-ce que ça vous parle ?\n\nimage\n\nInternal Server Error: /api/service/drf/services.datatables\n\nAttributeError at /api/service/drf/services.datatables\nGot AttributeError when attempting to get a value for field `name` on serializer `DatatablesSerializer`.\nThe serializer field might be named incorrectly and not match any attribute or key on the `Service` instance.\nOriginal exception text was: 'ServiceType' object has no attribute 'review'.","reference_answer":"Fixed in release 2.100.0\n\nIt is now possible to filter the list by searching directly for the id of an object.","answer_document_id":"gh_comment_1706471324","silver_evidence_path":["gh_comment_1758081246","gh_issue_1632375982","gh_comment_1706471324"],"known_context_document_ids":["gh_issue_1937128499"],"evidence_issue_ids":[1937128499,1632375982],"source_repo_name":"GeotrekCE/Geotrek-admin","source_issue_id":1937128499,"source_issue_url":"https://github.com/GeotrekCE/Geotrek-admin/issues/3795","target_repo_name":"GeotrekCE/Geotrek-admin","target_issue_id":1632375982,"target_issue_url":"https://github.com/GeotrekCE/Geotrek-admin/issues/3521","split":"test","quality_score":91.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0211","query":"Path with Fragment is not handled as expected?","query_context":"Consider this example spec:\n\nyaml\nopenapi: 3.1.0\ninfo:\n title: Test\n version: 0.1.0\nsecurity:\n - apiKeyAuth: []\npaths:\n /auth#basicAuth:\n post:\n operationId: basicAuth\n security:\n - basicAuth: []\n servers:\n - url: URL \n requestBody:\n content:\n application/json:\n schemas:\n type: object\n required: true\n responses:\n \"200\":\n description: OK\ncomponents:\n securitySchemes:\n basicAuth:\n type: http\n scheme: basic\n\nwiretap will return the below error when sending a request to `/auth`\n\njson\n{\"type\":\" URL to serve mocked response\",\"status\":404,\"detail\":\"Error: POST Path '/auth' not found, Reason: The POST request contains a path of '/auth' however that path, or the POST method for that path does not exist in the specification\"}\n\nUsing a fragment in the OpenAPI spec is a pretty common way of reusing a path multiple times ie `/auth#instance1` and `/auth#instance2` so for the same path & method combination a different schema can be provided instead of needing to use `oneOf` for example on the request/response bodies.","reference_answer":"As mentioned in #96 \n\nAfter attempting to solve this, I was confused as to why the correct path could not be found. \n\nThe `http.Request.URL.Fragment` was always missing when making a curl request or via postman etc. I was unable to perform any kind of lookup when a fragment was used, because any request made to wiretap using a fragment was just missing the fragment each time. \n\nSo then I looked a little deeper. I found this: \n\n URL \n\nFragments are never sent in HTTP. They're purely a local browser concept.\n\nThere is no way for me determine which path is being requested when the OpenAPI specification uses a fragment as a delimiter. The fragment is never picked up by the standard library. \n\nWhich pulls into question the legitimacy of using fragments at all in OpenAPI specs. They are quite useless it seems and should not be used as delimiters for paths.\n\nMarking this as a wontfix, because there is nothing I can do to make it work.","answer_document_id":"gh_comment_2091660269","silver_evidence_path":["gh_comment_2092446450","gh_issue_2105205809","gh_comment_2091660269"],"known_context_document_ids":["gh_issue_2080710689"],"evidence_issue_ids":[2080710689,2105205809],"source_repo_name":"pb33f/wiretap","source_issue_id":2080710689,"source_issue_url":"https://github.com/pb33f/wiretap/issues/78","target_repo_name":"pb33f/wiretap","target_issue_id":2105205809,"target_issue_url":"https://github.com/pb33f/wiretap/issues/88","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0212","query":"Update eth-json-rpc-middleware from 6.0.0 to latest version?","query_context":"Currently this repo uses an outdated version of the `eth-json-rpc-middleware` library as a dependency. This throws warnings regarding outdated dependencies and specifically causes an issue on Webpack 5 due to the middleware dependency's usage of the `safe-event-emitter` (requiring a node resolution of `util`) instead of the newer `@metamask/safe-event-emitter`.","reference_answer":"Hi there,\nwe are very open to do a quick bugfix release on our side if this helps, even if this package is deprecated, I just haven't identified if we can do something on our side.\n\nIf you follow-up the dependency path and find the right place where to post the issue \"on the other side\" feel free to mention me, then we can coordinate on how to fix this and see if we can also do something from the EthereumJS side of things.","answer_document_id":"gh_comment_1269723438","silver_evidence_path":["gh_comment_1306483055","gh_issue_356043524","gh_comment_1269723438"],"known_context_document_ids":["gh_issue_1219350538"],"evidence_issue_ids":[1219350538,356043524],"source_repo_name":"MetaMask/eth-json-rpc-filters","source_issue_id":1219350538,"source_issue_url":"https://github.com/MetaMask/eth-json-rpc-filters/issues/60","target_repo_name":"ethereumjs/ethereumjs-abi","target_issue_id":356043524,"target_issue_url":"https://github.com/ethereumjs/ethereumjs-abi/issues/67","split":"test","quality_score":84.61,"annotation_level":"silver"}
{"query_id":"cross_issue_0213","query":"Undelete account?","query_context":"Hey,\n\nI was experimenting with a hachyderm account as I wasnāt sure whether to move my mastodon.social account to it. As I wasnāt sure I ended up deleting my account. \n\nIāve since seen a lot of similar minded folk move over and so have decided Iād like to do the same, but am I able to reinstate the deleted account?\n\nI didnāt make any posts so itās just bringing back the account/username Iām trying to do. Is this possible?\n\nThe username was @mattbrailsford","reference_answer":"I don't understand if the account was deleted or suspended? Does the account still show up in the admin interface?\nNote that suspending an account also bans their email address.\n \n \n \n \n \n \n \n \n \n \n \n \n \n\nIt seems you're using a *different* username than that of the account which is to be re-used. If you want to re-use the email address but with a different name, you can delete the old account with `tootctl accounts delete USERNAME`.","answer_document_id":"gh_comment_903292147","silver_evidence_path":["gh_comment_1328178834","gh_issue_973319670","gh_comment_903292147"],"known_context_document_ids":["gh_issue_1457535685"],"evidence_issue_ids":[1457535685,973319670],"source_repo_name":"hachyderm/community","source_issue_id":1457535685,"source_issue_url":"https://github.com/hachyderm/community/issues/76","target_repo_name":"mastodon/mastodon","target_issue_id":973319670,"target_issue_url":"https://github.com/mastodon/mastodon/issues/16626","split":"test","quality_score":95.22,"annotation_level":"silver"}
{"query_id":"cross_issue_0214","query":"New release before end of 2023?","query_context":"Last one was from start of october 2023. Can we carve out a final release for this year before the end of the year?","reference_answer":"@Drakonas @fernandofig @Xmetalfanx @elmuz @ms178 @pixelpicnic No it is NOT dead. Im going to be completely honest, I was in inpatient rehab for alcohol, something I have struggled with since 15 years old.\n\nI also happen to have covid right now too (i caught it at the facility, as did 10 others), but I will get a release out as soon as I can (because I want a new version too for tha security fixes)\n\nI will be making a note on the previous release and upcoming release to explain why I was \"dead\" for a month.","answer_document_id":"gh_comment_1855133359","silver_evidence_path":["gh_comment_1870964816","gh_issue_2036951702","gh_comment_1855133359"],"known_context_document_ids":["gh_issue_2054628793"],"evidence_issue_ids":[2054628793,2036951702],"source_repo_name":"Alex313031/thorium","source_issue_id":2054628793,"source_issue_url":"https://github.com/Alex313031/thorium/issues/481","target_repo_name":"Alex313031/thorium","target_issue_id":2036951702,"target_issue_url":"https://github.com/Alex313031/thorium/issues/464","split":"test","quality_score":77.38,"annotation_level":"silver"}
{"query_id":"cross_issue_0215","query":"All databases are empty, possibly due to unintentional OrbStack reset?","query_context":"### Preliminary checklist\n\n- [x] I am using the latest stable version of DDEV (see upgrade guide)\n- [x] I have searched existing issues\n- [x] I have checked the troubleshooting guide\n- [x] I have run `ddev debug test` to include output below\n\n### Output of `ddev debug test`\n\nSince the upgrade to 1.24.5, all my databases are empty.\n\nUpgrade to 1.24.6 did not help.\n\nI run ddev debug test in one of my projects, here is th output.\n\n URL \n\n### Expected Behavior\n\nI expect that after upgrade all projects are still running with no problem (as it did all the uzpgrades before)\n\n### Actual Behavior\n\nAll databases are running and I can connect but are empty\n\n### Steps To Reproduce\n\n_No response_\n\n### Anything else?\n\n_No response_","reference_answer":"Thank you for the feedback @MattWilcox.\n \n\nIt can be disabled completely:\n\nbash\nddev config --disable-settings-management","answer_document_id":"gh_comment_2893966568","silver_evidence_path":["gh_comment_2903595495","gh_issue_3019954269","gh_comment_2893966568"],"known_context_document_ids":["gh_issue_3085301814"],"evidence_issue_ids":[3085301814,3019954269],"source_repo_name":"ddev/ddev","source_issue_id":3085301814,"source_issue_url":"https://github.com/ddev/ddev/issues/7328","target_repo_name":"ddev/ddev","target_issue_id":3019954269,"target_issue_url":"https://github.com/ddev/ddev/issues/7233","split":"test","quality_score":87.8,"annotation_level":"silver"}
{"query_id":"cross_issue_0217","query":"Mes compteurs d'Ć©nergie ne fonctionnent pas - There is no state available for this entity?","query_context":"Est-ce que ca vous dit qqch?\n\nOn dirait que Home assistant force la dĆ©finition de tyypes pour ces variables... mais j'y connais pas grand chose!\n\nJ'ai rĆ©cemment dĆ» rĆ©installer l'intĆ©gration aprĆØs plusieurs problĆØmes bizarres. Tout semble enfin se connecter et je suis capable de contrĆ“ler mes thermostats Ć partir de Home Asssistant. Par contre, aucune donnĆ©e statistiques au niveau Ćnergie.\n\nimage\n\nQuand je regarde les stats dans Developers tools, je vois ceci: \n\nimage\n\nimage\n\nJe n'ai pas essayĆ© de cliquer sur \"remove\", car je ne veux justement pas les enlever... mais peut-etre vont-ils se recrĆ©er ensuite?","reference_answer":"Bon j'ai rĆ©essayĆ© avec la version officielle 2022.5 qui sortait aujourd'hui et ca marche toujours pas.. j'ai l'impression que c'est vraiment un dĆ©tail que @valleedelisle pourrait rĆ©gler... as-tu des idĆ©es rapides? Merci\n\nSetup failed for custom integration hilo: Requirements for hilo not found: ['python-hilo>=2022.5.1'].\n14:55:43 ā (ERROR) setup.py\n\nLogger: homeassistant.util.package\nSource: util/package.py:99\nFirst occurred: 14:52:30 (3 occurrences)\nLast logged: 14:55:43\n\nUnable to install package python-hilo>=2022.5.1: ERROR: Cannot install python-hilo==2022.5.1 because these package versions have conflicting dependencies. ERROR: ResolutionImpossible: for help visit URL WARNING: You are using pip version 22.0.3; however, version 22.0.4 is available. You should consider upgrading via the '/usr/local/bin/python3 -m pip install --upgrade pip' command.","answer_document_id":"gh_comment_1117701017","silver_evidence_path":["gh_comment_1127678480","gh_issue_1218055088","gh_comment_1117701017"],"known_context_document_ids":["gh_issue_1234069615"],"evidence_issue_ids":[1234069615,1218055088],"source_repo_name":"dvd-dev/hilo","source_issue_id":1234069615,"source_issue_url":"https://github.com/dvd-dev/hilo/issues/121","target_repo_name":"dvd-dev/hilo","target_issue_id":1218055088,"target_issue_url":"https://github.com/dvd-dev/hilo/issues/112","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0219","query":"IDE0251 error in error list has no title?","query_context":"_This issue has been moved from a ticket on Developer Community._\n\n[severity:It bothers me. A fix would be nice] I just opened my project and noticed in the Error List window I have two IDE0251 errors with no descriptions. If I click to go to the location of the error, I see code is fine. Also, the link to the documentation around that error seems to be broken, I get a 404 on it ( URL \n\n### Original Comments\n#### Feedback Bot on 3/16/2023, 05:46 PM:\n(private comment, text removed)\n\n#### Feedback Bot on 3/17/2023, 06:31 AM:\n(private comment, text removed)\n\n### Original Solutions\n(no solutions)","reference_answer":"@DanTravison Apparently this was forgotten to be moved. I opened URL and will close this.","answer_document_id":"gh_comment_1520947345","silver_evidence_path":["gh_comment_1520947621","gh_issue_1644379241","gh_comment_1520947345"],"known_context_document_ids":["gh_issue_1682184961"],"evidence_issue_ids":[1682184961,1644379241],"source_repo_name":"dotnet/roslyn","source_issue_id":1682184961,"source_issue_url":"https://github.com/dotnet/roslyn/issues/67949","target_repo_name":"dotnet/roslyn-analyzers","target_issue_id":1644379241,"target_issue_url":"https://github.com/dotnet/roslyn-analyzers/issues/6552","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0220","query":"[Migrated] #167: Add Dockerfiles, plain Docker deployment instructions and minor fixes?","query_context":"**Original Pull Request #167**\n**Original Author:** @discordianfish\n**Created:** 2014-06-19 12:52:56 UTC\n**Updated:** 2014-08-12 20:25:13 UTC\n**Closed:** 2014-08-12 20:25:13 UTC\n**PR State:** closed\n**Merged:** No\n**Base Branch:** master\n**Head Branch:** various-fixes\n**Commits:** 4\n**Changed Files:** 10\n**Additions:** +106\n**Deletions:** -18\n\n**Note:** This was originally a Pull Request. The code changes are preserved in the forked repository's branches.\n\n---\n\nHi,\n\nI've put all this in one PR, hope that's okay. It's basically what I had to change to get it working in my everything-is-dockerized environment.\nI've tried to come up with \"good commits\". Let me know if you prefer single PRs for each of them.\n\nSo the idea here is to run kubernetes itself in Docker containers, therefor I created three Dockerfiles. The documentation assumes that this will be added as automated builds in the Google account. Guess that's up for discussion so let me know if I should change that.\nThe Dockerfile in / will create a kubernetes 'base image' which just includes the code/binaries and is used by kubernetes-node and kubernetes-server. This might not fit all all deployments but it's a good start and easy to understand.\nTo make this possible I added a `-docker` flag to point to the docker address (since with the bind-mount we can't use /var/run/docker.sock in the container). Beside that I made kubelet use the client lib for pulling the image instead of the binary (which isn't installed in the container).","reference_answer":"**Original comment by @proppy**\n**Posted:** 2014-06-14 17:11:39 UTC\n\n---\n\nNote of you just want to have a container to build the projects and get\nbinaries out.\n\nYou can also set the ENTRYPOINT to the build command.\n\ndocker build ; docker run # to build\ndocker cp # to get the file out of the container\nOn Jun 14, 2014 10:00 AM, \"Johan Euphrosine\" proppy@google.com wrote:","answer_document_id":"gh_comment_3153174964","silver_evidence_path":["gh_comment_3153654452","gh_issue_3291447575","gh_comment_3153174964"],"known_context_document_ids":["gh_issue_3291755480"],"evidence_issue_ids":[3291755480,3291447575],"source_repo_name":"adamzwickey/kubernetes","source_issue_id":3291755480,"source_issue_url":"https://github.com/adamzwickey/kubernetes/issues/168","target_repo_name":"adamzwickey/kubernetes","target_issue_id":3291447575,"target_issue_url":"https://github.com/adamzwickey/kubernetes/issues/19","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0221","query":"curl exited with code '6'?","query_context":"Hi antlafarge,\n\nI have tried to run your jdownloader container on a Raspi 4 with Bookworm arm64. Unfortunately the container does not come up. The Logfile says:\n\n2023-11-08T20:51:15+00:00| ________________________________________ CONTAINER STARTED _________________________________________\n2023-11-08T20:51:15+00:00| OS = \"Ubuntu 22.04.3 LTS\"\n2023-11-08T20:51:15+00:00| JAVA version = \"openjdk-17-jre-headless:arm64 17.0.8.1+1~us1-0ubuntu1~22.04\"\n2023-11-08T20:51:15+00:00| JAVA options = \"\"\n2023-11-08T20:51:15+00:00| Delete any existing JDownloader installation files\n2023-11-08T20:51:15+00:00| Download URL \n2023-11-08T20:51:31+00:00| JDownloader.jar download failed: curl exited with code '6'\n2023-11-08T20:51:31+00:00| Download URL \n2023-11-08T20:51:47+00:00| FATAL ERROR JDownloader.jar download failed: curl exited with code '6'\n2023-11-08T20:51:47+00:00| Get more informations here : URL \n2023-11-08T20:51:47+00:00| ________________________________________ CONTAINER EXITED __________________________________________\n\nI tried manually downloading JDownloader.jar on my network using the browser. It is working. Do you have any idea how to solve the problem?","reference_answer":"Maybe you have some privileges issues with this docker host? Maybe try the `--privileged` flag ? URL","answer_document_id":"gh_comment_1730344023","silver_evidence_path":["gh_comment_1803107857","gh_issue_1905335251","gh_comment_1730344023"],"known_context_document_ids":["gh_issue_1984392933"],"evidence_issue_ids":[1984392933,1905335251],"source_repo_name":"antlafarge/jdownloader","source_issue_id":1984392933,"source_issue_url":"https://github.com/antlafarge/jdownloader/issues/37","target_repo_name":"antlafarge/jdownloader","target_issue_id":1905335251,"target_issue_url":"https://github.com/antlafarge/jdownloader/issues/36","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0222","query":"The 1k context limit in Open-WebUI request is causing low-quality responses.","query_context":"### What is the issue?\n\nWhen using open-webui, I've noticed that long contextual messages sent to ollama consistently result in poor responses. After investigating the issue, it appears that the `/api/chat` and `/v1/chat/completions` endpoints are defaulting to a 1k context limit. This means that when the content exceeds this length, the system automatically discards the earlier portions, leading to subpar answers. What follows is the captured network request data for open-webui version 0.3.8.\n\ncurl ' URL \\\n-X POST \\\n-H 'Host: localhost:11434' \\\n-H 'Accept: */*' \\\n-H 'User-Agent: Python/3.11 aiohttp/3.9.5' \\\n-H 'Content-Type: text/plain; charset=utf-8' \\\n--data-raw '{\"model\": \"qwen1_5-4b-chat-q4_k_m\", \"messages\": [{\"role\": \"user\", \"content\": \" \"}], \"options\": {}, \"stream\": true}' \n\nBased on the final response, we can observe that the prompt_eval_count is 1026, which indicates that only approximately 1,000 tokens of context were processed. \n\n{\"role\":\"assistant\",\"content\":\"\"},\"done_reason\":\"stop\",\"done\":true,\"total_duration\":9987503333,\"load_duration\":28999667,\"prompt_eval_count\":1026,\"prompt_eval_duration\":1896469000,\"eval_count\":238,\"eval_duration\":8059779000}\n\nI'm uncertain whether I should submit an issue about this bug to the open-webui repository.\n\n### OS\n\nmacOS\n\n### GPU\n\nApple\n\n### CPU\n\nApple\n\n### Ollama version\n\n0.3.0","reference_answer":"It should be noted that changing the context size of a model via the Modelfile is mentioned, but in the OpenAI doc , not the FAQ.","answer_document_id":"gh_comment_2503474699","silver_evidence_path":["gh_comment_2271443664","gh_issue_2431255789","gh_comment_2503474699"],"known_context_document_ids":["gh_issue_2433920762"],"evidence_issue_ids":[2433920762,2431255789],"source_repo_name":"ollama/ollama","source_issue_id":2433920762,"source_issue_url":"https://github.com/ollama/ollama/issues/6026","target_repo_name":"ollama/ollama","target_issue_id":2431255789,"target_issue_url":"https://github.com/ollama/ollama/issues/5965","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0223","query":"[BUG] Compositor crash when using KVM and switching inputs with 2 monitors?","query_context":"Hey all,\n\nI finally got around to running the debug version of the compiler (really don't suggest running it like this all the time it's so slow :sob: ) and I was able to reproduce the crash I was seeing in URL Here's my logs for today after reproducing the issue:\n\ncosmic-comp-journal.log\n\nDisplay info:\n\n$ xrandr\nScreen 0: minimum 16 x 16, current 5120 x 1440, maximum 32767 x 32767\nDP-2 connected 2560x1440+0+0 (normal left inverted right x axis y axis) 600mm x 340mm\n 2560x1440 143.91*+\n 1920x1440 143.90\n 1600x1200 143.89\n 1440x1080 143.80\n 1400x1050 143.89\n 1280x1024 143.79\n 1280x960 143.86\n 1152x864 143.92\n 1024x768 143.87\n 800x600 143.83\n 640x480 143.85\n 320x240 142.05\n 1920x1200 143.89\n 1680x1050 143.88\n 1440x900 143.86\n 1280x800 143.84\n 1152x720 143.77\n 960x600 143.72\n 928x580 143.50\n 800x500 143.68\n 768x480 143.69\n 720x480 143.85\n 640x400 143.37\n 320x200 141.40\n 2048x1152 143.88\n 1920x1080 143.88\n 1600x900 143.93\n 1368x768 143.77\n 1280x720 143.85\n 1024x576 143.91\n 864x486 143.63\n 720x400 143.88\n 640x350 143.57\nDP-1 connected 2560x1440+2560+0 (normal left inverted right x axis y axis) 600mm x 340mm\n 2560x1440 59.91*+\n 1920x1440 59.90\n 1600x1200 59.87\n 1440x1080 59.87\n 1400x1050 59.86\n 1280x1024 59.89\n 1280x960 59.94\n 1152x864 59.78\n 1024x768 59.68\n 800x600 59.86\n 640x480 59.38\n 320x240 59.52\n 1920x1200 59.88\n 1680x1050 59.85\n 1440x900 59.89\n 1280x800 59.81\n 1152x720 59.75\n 960x600 59.63\n 928x580 59.88\n 800x500 59.50\n 768x480 59.38\n 720x480 59.71\n 640x400 59.20\n 320x200 58.96\n 2048x1152 59.90\n 1920x1080 59.88\n 1600x900 59.82\n 1368x768 59.88\n 1280x720 59.86\n 1024x576 59.90\n 864x486 59.45\n 720x400 59.55\n 640x350 59.77\n\n$ sudo lshw -C display\n *-display\n description: VGA compatible controller\n product: GA102 [GeForce RTX 3080 Ti]\n vendor: NVIDIA Corporation\n physical id: 0\n bus info: pci@0000:09:00.0\n version: a1\n width: 64 bits\n clock: 33MHz\n capabilities: pm msi pciexpress vga_controller bus_master cap_list rom\n configuration: driver=nvidia latency=0\n resources: iomemory:780-77f iomemory:7c0-7bf irq:80 memory:fb000000-fbffffff memory:7800000000-7bffffffff memory:7c00000000-7c01ffffff ioport:e000(size=128) memory:fc000000-fc07ffff\n\nI super appreciate y'all fixing the greeter in this aspect. If this can be fixed, I'll be able to go back to daily driving Cosmic! If you need more information from me, please let me know and I'll try to get it for you.","reference_answer":"I am pretty confident the last variant of this issue has now been resolved with URL \n\nThanks @hayandev for debugging this. The missing piece was, that this only happens, when the last output is disconnected (even if just temporarily), which is why I wasn't able to reproduce this earlier.\n\nI bunch of this code was refactored when focus-follows-cursor was introduced, which caused some subtle regressions, which only surfaced after some other fixes to output hotplug. At last that logic should be sound now.","answer_document_id":"gh_comment_2546443005","silver_evidence_path":["gh_comment_2539746931","gh_issue_2567949374","gh_comment_2546443005"],"known_context_document_ids":["gh_issue_2695937947"],"evidence_issue_ids":[2695937947,2567949374],"source_repo_name":"pop-os/cosmic-comp","source_issue_id":2695937947,"source_issue_url":"https://github.com/pop-os/cosmic-comp/issues/1014","target_repo_name":"pop-os/cosmic-comp","target_issue_id":2567949374,"target_issue_url":"https://github.com/pop-os/cosmic-comp/issues/906","split":"test","quality_score":86.66,"annotation_level":"silver"}
{"query_id":"cross_issue_0224","query":"Need some basic help!","query_context":"Hi,\n\nFirstly, I want to express my gratitude to the team for their outstanding work on this project. Over the past three years, I've had the pleasure of successfully utilizing Boost::Beast, which has given me a deep appreciation for the power of ASIO. Additionally, I've been intrigued by the potential of integrating gRPC into my projects, but I've found it challenging due to my lack of confidence in the build process. To address this, I took the initiative to learn tools such as CMake, Conan, and a bit of Bazel.\n\nYour work has particularly caught my attention because it combines the strengths of both ASIO and gRPC. I've spent several days attempting to integrate it into my projects using both CMake and Conan, but unfortunately, I haven't had much success. Despite this setback, I'm determined not to give up.\n\nI'm seeking your advice on how frameworks like this can be more easily integrated. Perhaps there's a secret sauce that I'm missing, and I'm struggling to identify where I can learn more about it.\n\nFor instance, my goal is to develop a C++ server using asio-grpc to serve clients written in PHP and Python, seamlessly exchanging protobuf messages. I'm also interested in creating a trimmed version of my server, which currently relies on Boost::Beast.\n\nGiven these use cases, the codebase appears somewhat daunting to me. Could you please provide guidance on the steps involved in building this library as a standalone component, enabling me to integrate it into my project effortlessly?\n\n1. Find the package using 'find_package'\n2. What paths to be added to \"target_include_directories\"\n3. What libs are to be added to \"target_link_libraries\"\n\nAs said, I tried with `Conan` and did \"install\" using the below CMakeLIsts.txt, but I ran into several LINK errors:\n\n**CMakeLists.txt**\n\ncmake_minimum_required(VERSION 3.15)\n\nproject(asio_example CXX)\n\n# Minimum C++ standard\nset(CMAKE_CXX_STANDARD 20)\n\nfind_package(ASIO-GRPC REQUIRED)\n\nadd_executable(${PROJECT_NAME} src/file-transfer-server.cpp)\n\ntarget_link_libraries(${PROJECT_NAME} PRIVATE asio-grpc::asio-grpc )\n\n**Install command**\n\nconan install . --output-folder=build --build=missing -s compiler.cppstd=20\n\n**LINK Errors**\n\nlibprotobuf-lite.lib(libprotobuf-lite.dll) : error LNK2005: \"public: virtual __cdecl google::protobuf::io::StringOutputStream::~StringOutputStream(void)\" (??1Str \ningOutputStream@io@protobuf@google@@UEAA@XZ) already defined in libprotobuf.lib(message_differencer.obj) [C:\\Users\\thavi\\.conan2\\p\\b\\grpc67bcbddea9216\\b\\bu \nild\\grpc_ruby_plugin.vcxproj]\nlibprotobuf.lib(libprotobuf.dll) : error LNK2005: \"public: bool __cdecl google::protobuf::ServiceDescriptor::GetSourceLocation(struct google::protobuf::SourceLoc \nation *)const \" (?GetSourceLocation@ServiceDescriptor@protobuf@google@@QEBA_NPEAUSourceLocation@23@@Z) already defined in libprotobuf.lib(descriptor.obj) [C:\\Use \nrs\\thavi\\.conan2\\p\\b\\grpc67bcbddea9216\\b\\build\\grpc_ruby_plugin.vcxproj]\nlibprotobuf.lib(libprotobuf.dll) : error LNK2005: \"public: class google::protobuf::Descriptor const * __cdecl google::protobuf::MethodDescriptor::input_type(void \n)const \" (?input_type@MethodDescriptor@protobuf@google@@QEBAPEBVDescriptor@23@XZ) already defined in libprotobuf.lib(descriptor.obj) [C:\\Users\\thavi\\.conan \n2\\p\\b\\grpc67bcbddea9216\\b\\build\\grpc_ruby_plugin.vcxproj]\nlibprotobuf.lib(libprotobuf.dll) : error LNK2005: \"public: class google::protobuf::Descriptor const * __cdecl google::protobuf::MethodDescriptor::output_type(voi \nd)const \" (?output_type@MethodDescriptor@protobuf@google@@QEBAPEBVDescriptor@23@XZ) already defined in libprotobuf.lib(descriptor.obj) [C:\\Users\\thavi\\.con \nan2\\p\\b\\grpc67bcbddea9216\\b\\build\\grpc_ruby_plugin.vcxproj]\nlibprotobuf.lib(libprotobuf.dll) : error LNK2005: \"public: bool __cdecl google::protobuf::MethodDescriptor::GetSourceLocation(struct google::protobuf::SourceLoca \ntion *)const \" (?GetSourceLocation@MethodDescriptor@protobuf@google@@QEBA_NPEAUSourceLocation@23@@Z) already defined in libprotobuf.lib(descriptor.obj) [C:\\Users \n\\thavi\\.conan2\\p\\b\\grpc67bcbddea9216\\b\\build\\grpc_ruby_plugin.vcxproj]\nlibprotobuf.lib(libprotobuf.dll) : error LNK2005: \"public: bool __cdecl google::protobuf::FileDescriptor::GetSourceLocation(class std::vector install projects by name\n\nimage\n\n \nWarning: array_merge(): Expected parameter 2 to be an array, null given in installer_browser_fetch_results() (line 240 of /app/docroot/core/modules/installer/installer.browser.inc).\nNotice: Trying to access array offset on value of type null in installer_browser_fetch_results() (line 248 of /app/docroot/core/modules/installer/installer.browser.inc).\nNotice: Trying to access array offset on value of type null in installer_browser_fetch_results() (line 256 of /app/docroot/core/modules/installer/installer.browser.inc).\nNotice: Undefined index: projects in installer_manager_install_form_validate() (line 688 of /app/docroot/core/modules/installer/installer.manager.inc).\nSorry, the project server is offline.\nNotice: Trying to access array offset on value of type null in installer_manager_install_form_validate() (line 723 of /app/docroot/core/modules/installer/installer.manager.inc).\nNotice: Trying to access array offset on value of type null in installer_manager_install_form_validate() (line 726 of /app/docroot/core/modules/installer/installer.manager.inc).\nNotice: Trying to access array offset on value of type null in installer_manager_install_form_validate() (line 744 of /app/docroot/core/modules/installer/installer.manager.inc).\nDismiss\nStatus messageEncountered an error when trying to fetch results from . Error -1002 : missing schema\n \n\n## Expected behavior\n\nProject installer lists projects and allows install by name\n\n## Additional information\n\nAdd any other information that could help, such as:\n- Backdrop CMS version: 1.22\n- Web server and its version: apache\n- Operating System and its version: n/a\n- Browser(s) and their versions: n/a","reference_answer":"@olafgrabienski:\n \n\n@findlabnet:\n \n\nYes, absolutely! I had this same thought today but you two beat me to suggesting it. Let's included this core update functionality in 1.11.0 but hide it. We can enable it by default in a later release.\n\nWe already have an `installer.settings.json` config file. We should add a new option for enabling core updates, e.g. `config_get('installer.settings', 'core_update')`.\n\nIn fact it would be great to have all of the various installation/updating options be able to be toggled (e.g. `\"module_update\", \"module_install\", \"theme_update\", \"theme_install\", \"layout_update\", \"layout_install\"`). But as we're in a time crunch, let's add the toggle for core only and expand that out later. Our primary concern here is just making it so that we can test this after release with a real example and the whole system together.\n\nSo we need the following:\n\n- Add `core_update: false` to `installer.settings.json`.\n- An update hook to set the default to `false` for existing sites.\n- A conditional check ensuring `config_get('installer.settings', 'core_update')` is TRUE before allowing any core updates.\n\nAt this point, I don't think any UI for toggling the option is needed.","answer_document_id":"gh_comment_417819553","silver_evidence_path":["gh_comment_1191096803","gh_issue_322612121","gh_comment_417819553"],"known_context_document_ids":["gh_issue_1310956353"],"evidence_issue_ids":[1310956353,322612121],"source_repo_name":"backdrop/backdrop-issues","source_issue_id":1310956353,"source_issue_url":"https://github.com/backdrop/backdrop-issues/issues/5690","target_repo_name":"backdrop/backdrop-issues","target_issue_id":322612121,"target_issue_url":"https://github.com/backdrop/backdrop-issues/issues/3105","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0233","query":"Daemon does not start without apparmor?","query_context":"### Description\n\nRunning on Debian 11 Bullseye, and using \n`deb URL bullseye stable`\nin sources.list.d.\n\nAfter upgrade from version 20.10.22 to 23. results in this error\n\nError response from daemon: AppArmor enabled on system but the docker-default profile could not be loaded: running `apparmor_parser apparmor_parser --version` failed with output: \nerror: exec: \"apparmor_parser\": executable file not found in $PATH\nError: failed to start containers: somecontainer\n\nThis seems to be connected with this ticket and this. There is a workaround below.\n\n### Reproduce\n\n1. apt update\n2. apt upgrade\n\nto install docker version 23. \n\n### Expected behavior\n\nUpgrade should run smoothly.\n\n### docker version\n\nbash\nClient: Docker Engine - Community\n Version: 23.0.0\n API version: 1.42\n Go version: go1.19.5\n Git commit: e92dd87\n Built: Wed Feb 1 17:43:17 2023\n OS/Arch: linux/amd64\n Context: default\n\nServer: Docker Engine - Community\n Engine:\n Version: 23.0.0\n API version: 1.42 (minimum version 1.12)\n Go version: go1.19.5\n Git commit: d7573ab\n Built: Wed Feb 1 17:43:17 2023\n OS/Arch: linux/amd64\n Experimental: false\n containerd:\n Version: 1.6.16\n GitCommit: 31aa4358a36870b21a992d3ad2bef29e1d693bec\n runc:\n Version: 1.1.4\n GitCommit: v1.1.4-0-g5fd4c4d\n docker-init:\n Version: 0.19.0\n GitCommit: de40ad0\n\n### docker info\n\nbash\nClient:\n Context: default\n Debug Mode: false\n\nServer:\n Containers: 5\n Running: 5\n Paused: 0\n Stopped: 0\n Images: 30\n Server Version: 23.0.0\n Storage Driver: overlay2\n Backing Filesystem: extfs\n Supports d_type: true\n Using metacopy: false\n Native Overlay Diff: true\n userxattr: false\n Logging Driver: json-file\n Cgroup Driver: systemd\n Cgroup Version: 2\n Plugins:\n Volume: local\n Network: bridge host ipvlan macvlan null overlay\n Log: awslogs fluentd gcplogs gelf journald json-file local logentries splunk syslog\n Swarm: inactive\n Runtimes: io.containerd.runc.v2 runc\n Default Runtime: runc\n Init Binary: docker-init\n containerd version: 31aa4358a36870b21a992d3ad2bef29e1d693bec\n runc version: v1.1.4-0-g5fd4c4d\n init version: de40ad0\n Security Options:\n apparmor\n seccomp\n Profile: builtin\n cgroupns\n Kernel Version: 5.10.0-21-amd64\n Operating System: Debian GNU/Linux 11 (bullseye)\n OSType: linux\n Architecture: x86_64\n CPUs: 24\n Total Memory: 125.8GiB\n Name: server\n ID: ASHT:IIYG:NTE5:MWJH:XKZH:LCB2:RYWI:EZQM:QNT6:SNKW:AQWU:UYDW\n Docker Root Dir: /var/lib/docker\n Debug Mode: false\n Registry: URL \n Experimental: false\n Insecure Registries:\n 127.0.0.0/8\n Live Restore Enabled: false\n\n### Additional Info\n\nWorkaround is to install apparmor package\n\n`apt install apparmor`","reference_answer":"Thanks everyone! I'm going to go ahead and lock this issue to prevent unnecessary notifications -- the issue is definitively solved, as confirmed by developer testing, formal QA, and end user reports.\n\nFor future users: please note that this behavior will **likely change in the future**. While it will likely always be possible to run Moby without AppArmor installed on an AppArmor-enabled kernel (e.g. to support a mixed userland/kernel situation), there is a strong likelihood that we will require an explicit opt-out in the future, as such configurations are the exception and not the rule.","answer_document_id":"gh_comment_1493418623","silver_evidence_path":["gh_comment_1427736646","gh_issue_1579280313","gh_comment_1493418623"],"known_context_document_ids":["gh_issue_1568034818"],"evidence_issue_ids":[1568034818,1579280313],"source_repo_name":"moby/moby","source_issue_id":1568034818,"source_issue_url":"https://github.com/moby/moby/issues/44900","target_repo_name":"moby/moby","target_issue_id":1579280313,"target_issue_url":"https://github.com/moby/moby/issues/44970","split":"test","quality_score":95.26,"annotation_level":"silver"}
{"query_id":"cross_issue_0234","query":"Out-of-date: lib32-gst-plugins-ugly?","query_context":"### é®é¢ē±»å / Type of issues\n\n* čæę软件å
/ out-of-date packages\n\n### åå½±åē软件å
/ Affected packages\n\n* lib32-gst-plugins-ugly\n\n----","reference_answer":"- lib32-gst-plugins-bad: deb lib32-ffmpeg build fails. AUR comment. AUR maintainer can't reproduce.\n- lib32-gst-plugins-ugly: mpeg2dec test fails. Nothing found in AUR comments.\n\nBoth of them need time to investigate.","answer_document_id":"gh_comment_1066169982","silver_evidence_path":["gh_comment_1442036876","gh_issue_1160406411","gh_comment_1066169982"],"known_context_document_ids":["gh_issue_1597064483"],"evidence_issue_ids":[1597064483,1160406411],"source_repo_name":"archlinuxcn/repo","source_issue_id":1597064483,"source_issue_url":"https://github.com/archlinuxcn/repo/issues/3186","target_repo_name":"archlinuxcn/repo","target_issue_id":1160406411,"target_issue_url":"https://github.com/archlinuxcn/repo/issues/2687","split":"test","quality_score":79.89,"annotation_level":"silver"}
{"query_id":"cross_issue_0235","query":"Test: workbench.view.dimUnfocused.*?","query_context":"Refs: URL \n\n- [x] macOS @bhavyaus\n- [x] linux @bpasero\n- [x] windows @justschen\n\nComplexity: 2\n\nCreate Issue\n\n---\n\nThere are new settings `workbench.view.dimUnfocused.enabled` and `workbench.view.dimUnfocused.opacity`, read the settings and verify they work as expected.","reference_answer":"It's 3/3 users that commented on it recently (see URL URL plus the requestor of the feature ( URL - \"Dim or otherwise indicate \"inactive\" editor/terminal\"). Additionally, almost all comments on the issue mention only terminals and editors.\n\nDimming all other views would make the feature less useful imo, the reason users want this is to dim less relevant editors and terminals (primary work areas), dimming other parts of the UI that show auxiliary information would harm the user experience as they often augment the active editor. I understand it seems somewhat arbitrary, but it's solving a targeted problem.\n\nWe can expand it later if needed `(accessibility|workbench.view).dimUnfocused.views: { terminal: true, ... }`, but right now that's solving a problem that no one is asking for and I wanted to solve the issue efficiently for those requesting it.","answer_document_id":"gh_comment_1697478907","silver_evidence_path":["gh_comment_1697457434","gh_issue_1871656075","gh_comment_1697478907"],"known_context_document_ids":["gh_issue_1870550555"],"evidence_issue_ids":[1870550555,1871656075],"source_repo_name":"microsoft/vscode","source_issue_id":1870550555,"source_issue_url":"https://github.com/microsoft/vscode/issues/191527","target_repo_name":"microsoft/vscode","target_issue_id":1871656075,"target_issue_url":"https://github.com/microsoft/vscode/issues/191610","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0236","query":"Bug: Unable to calculate team data Viz or data file in Data UI?","query_context":"**Next team meeting _MTL_ Blue Session 3 is Mon, Sept 19 9am**\n\nData UI - data set\nOn 8/23 and 8/30, I attempted to generate the team data file for team that would be uploaded to the SIM UI.\nI received the same error message both times. Screenshot 1 (image 4 in title) is the first screen I see after trying to generate the file. When I click on details, screenshot 2 (image 3) is the details for the error. @jwklocek attempted to do the same on 8/30 with the same dataset and received the same error.\n\n >\n\nMicrosoftTeams-image (4)\n\nMicrosoftTeams-image (3)\n\n1. When was the bug discovered? On 8/23 - two attempts early a.m. and early afternoon and 8/30 about 12:30 pm\n\n3. Is this an invidivual or shared world? Not in SIM UI, in Data UI/Power BI\n\n5. What is the name of the experiment? Not an experiment.\n \n**2. Click on the right:** \ni. **Pipelines** - prioritize in a TeamPSD (& Workgroup) pipeline \nii. **Assignee** - @jamesmrollins \niii. **Label**- assign workgroup (lead) responsible for tracking the task. If this is a bug, add \"Bug\" label. \niv. **Projects** - assign to domain-specific TeamPSD tracker (issues, features, document, manuscript, team) \nv. **Milestones** - select monthly sprint milestone within the workgroup \nvi. **Estimate** - Estimate task in complexity points \nvii. **Epics** - assign to team-wide epic and TeamPSD master plan project \niix. **Releases** - assign to key team release grouped with other relevant issues \n\n**3. If you anticipate that your **issue card** or **bug card** will have **dependencies** these can be added once the issue has been submitted. \nix. **Add dependencies** - assess for and add dependencies *blocking* & *blocked by* this issue","reference_answer":"Yeah, let's close this one. There is only one idea missing at this point, the propagation code, but I think that should be a separate issue: URL","answer_document_id":"gh_comment_526199897","silver_evidence_path":["gh_comment_1255665988","gh_issue_458717374","gh_comment_526199897"],"known_context_document_ids":["gh_issue_1357226936"],"evidence_issue_ids":[1357226936,458717374],"source_repo_name":"lzim/teampsd","source_issue_id":1357226936,"source_issue_url":"https://github.com/lzim/teampsd/issues/2723","target_repo_name":"lzim/teampsd","target_issue_id":458717374,"target_issue_url":"https://github.com/lzim/teampsd/issues/430","split":"test","quality_score":78.33,"annotation_level":"silver"}
{"query_id":"cross_issue_0237","query":"How long lived should a Client be?","query_context":"I'm not sure the best way to ask you a general question, so I'll pose it as an \"issue\"...\n\nHow long lived should a Client object be? Make one command and dispose of it? Or should it be possible to use one Client for an entire Bluetooth connection?","reference_answer":"To create a client, you need another package which provides Bluetooth connectivity.\nI've used flutter_blue in the past, but that looks like it's unmaintained, flutter_reactive_ble might be a good alternative.\n\nYou need to discover the service (`8d53dc1d-1db7-4cd3-868b-8a527460aa84`) and characteristic (`da2e7828-fbce-4e01-ae9e-261174997c48`). Then, you subscribe to notifications from the characteristic and pass that stream to the Client constructor - the client will read responses from there. To send requests, it also needs a callback which writes a byte array to the characteristic. There's an example for that in the README.md.\n\nAlso remember to increase the MTU of the connection, the default is way too low and probably won't work.\n\nAfter that, using the echo command looks like this:\n\ndart\nfinal response = await client.echo(\"Hello World\", Duration(seconds: 5));\n\nThis will throw an exception if the command times out or the device returns an error.\n\nOnly few commands are implemented yet (for example, I just added echo in 0.0.2), so depending on what you want to do, you might have to use `client.execute` (and/or create an issue). But everything that's needed for firmware uploads is there.\n\nThere's no full example yet, I'll probably write one for firmware uploads using flutter_reactive_ble this weekend.","answer_document_id":"gh_comment_1069117391","silver_evidence_path":["gh_comment_1090904510","gh_issue_1169045907","gh_comment_1069117391"],"known_context_document_ids":["gh_issue_1193683404"],"evidence_issue_ids":[1193683404,1169045907],"source_repo_name":"jkdhn/mcumgr-dart","source_issue_id":1193683404,"source_issue_url":"https://github.com/jkdhn/mcumgr-dart/issues/3","target_repo_name":"jkdhn/mcumgr-dart","target_issue_id":1169045907,"target_issue_url":"https://github.com/jkdhn/mcumgr-dart/issues/1","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0238","query":"Error when evaluating SSR module: \"Object.defineProperty is not a function\"?","query_context":"### Having below dependancies,\n\n \"@sjsf/ajv8-validator\": \"^2.0.0-next.11\",\n \"@sjsf/flowbite3-theme\": \"^2.0.0-next.11\",\n \"@sjsf/form\": \"^2.0.0-next.11\",\n \"ajv\": \"^8.17.1\",\n\n### included below in app.css\n\n @source \"../node_modules/@sjsf/flowbite3-theme/dist\";\n\n### tried running demo code from README. Getting below error:\n\n10:58:20 PM [vite] (ssr) Error when evaluating SSR module /src/routes/(widgets)/pages/sample/+page.svelte: Object.defineProperty is not a function\n at eval (/Users/gin/sample/node_modules/@sjsf/form/dist/fields/object/object.svelte:3:21)\n at ESModulesEvaluator.runInlinedModule (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1070:6)\n at SSRCompatModuleRunner.directRequest (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1284:82)\n at SSRCompatModuleRunner.directRequest (file:///Users/gin/sample/node_modules/vite/dist/node/chunks/dep-DBxKXgDP.js:25274:35)\n at SSRCompatModuleRunner.cachedRequest (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1179:28)\n at request (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1228:79)\n at async eval (/Users/gin/sample/node_modules/@sjsf/form/dist/fields/object/exports.js:2:1)\n at async ESModulesEvaluator.runInlinedModule (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1062:5)\n at async SSRCompatModuleRunner.directRequest (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1284:61)\n at async SSRCompatModuleRunner.directRequest (file:///Users/gin/sample/node_modules/vite/dist/node/chunks/dep-DBxKXgDP.js:25274:23)\nTypeError: Object.defineProperty is not a function\n at eval (/Users/gin/sample/node_modules/@sjsf/form/dist/fields/object/object.svelte:3:21)\n at ESModulesEvaluator.runInlinedModule (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1070:6)\n at SSRCompatModuleRunner.directRequest (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1284:82)\n at SSRCompatModuleRunner.directRequest (file:///Users/gin/sample/node_modules/vite/dist/node/chunks/dep-DBxKXgDP.js:25274:35)\n at SSRCompatModuleRunner.cachedRequest (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1179:28)\n at request (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1228:79)\n at async eval (/Users/gin/sample/node_modules/@sjsf/form/dist/fields/object/exports.js:2:1)\n at async ESModulesEvaluator.runInlinedModule (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1062:5)\n at async SSRCompatModuleRunner.directRequest (file:///Users/gin/sample/node_modules/vite/dist/node/module-runner.js:1284:61)\n at async SSRCompatModuleRunner.directRequest (file:///Users/gin/sample/node_modules/vite/dist/node/chunks/dep-DBxKXgDP.js:25274:23)\n\nKindly help!\n\nBelow is my full list of dependencies for reference:\n\n \"devDependencies\": {\n \"@eslint/compat\": \"^1.2.5\",\n \"@eslint/js\": \"^9.18.0\",\n \"@sveltejs/adapter-node\": \"^5.2.12\",\n \"@sveltejs/kit\": \"^2.16.0\",\n \"@sveltejs/vite-plugin-svelte\": \"^5.0.0\",\n \"@tailwindcss/vite\": \"^4.0.0\",\n \"eslint\": \"^9.18.0\",\n \"eslint-config-prettier\": \"^10.0.1\",\n \"eslint-plugin-svelte\": \"^3.0.0\",\n \"flowbite-svelte\": \"^1.0.5\",\n \"flowbite-svelte-icons\": \"^2.1.1\",\n \"globals\": \"^16.0.0\",\n \"prettier\": \"^3.4.2\",\n \"prettier-plugin-svelte\": \"^3.3.3\",\n \"prettier-plugin-tailwindcss\": \"^0.6.11\",\n \"svelte\": \"^5.0.0\",\n \"svelte-check\": \"^4.0.0\",\n \"tailwindcss\": \"^4.0.0\",\n \"typescript\": \"^5.0.0\",\n \"typescript-eslint\": \"^8.20.0\",\n \"vite\": \"^6.2.6\"\n },\n \"dependencies\": {\n \"@sjsf/ajv8-validator\": \"^2.0.0-next.11\",\n \"@sjsf/flowbite3-theme\": \"^2.0.0-next.11\",\n \"@sjsf/form\": \"^2.0.0-next.11\",\n \"ajv\": \"^8.17.1\",\n \"apexcharts\": \"^4.7.0\",\n \"date-fns\": \"^4.1.0\",\n \"knex\": \"^3.1.0\",\n \"mysql2\": \"^3.14.1\",\n \"unplugin-icons\": \"^22.1.0\"\n }","reference_answer":"@x0k Ah, yes. That's the \"slight\" difference. These two are semantically different and you probably have the latter. The former was broken for a long time but the latter just got broken since 6.3.3 due to our natural generalization and we should fix both.\n\njs\nexport default function Object() {}\n\njs\nfunction Object() {}\nexport default Object;","answer_document_id":"gh_comment_2848524390","silver_evidence_path":["gh_comment_2864153910","gh_issue_3036816344","gh_comment_2848524390"],"known_context_document_ids":["gh_issue_3049668350"],"evidence_issue_ids":[3049668350,3036816344],"source_repo_name":"x0k/svelte-jsonschema-form","source_issue_id":3049668350,"source_issue_url":"https://github.com/x0k/svelte-jsonschema-form/issues/103","target_repo_name":"vitejs/vite","target_issue_id":3036816344,"target_issue_url":"https://github.com/vitejs/vite/issues/19993","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0239","query":"hide .env file on the web?","query_context":"Hi, thanks for this package.\n\nI'm using it in a web project, but I noticed that the .env file is available via inspector, I think because it's in assets, is there any way I can hide it?\n\n
25.0.1\n[notice] To update, run: python3 -m pip install --upgrade pip\n\n[notice] A new release of pip is available: 23.2.1 -> 25.0.1\n[notice] To update, run: python3 -m pip install --upgrade pip\nPaddleOCR is not installed\nLibmagic version: file-5.41\nmagic file from /usr/share/file/magic\nTraceback (most recent call last):\nFileNotFoundError: [Errno 2] No such file or directory: 'libreoffice'\n\n**Additional context**\nOn further debugging found that for .docx processing, unstructured relies to unzip the file and look for a specific file called `word/document.xml` , but in certain versions of office365, .docx files are sent with `word/document2.xml`, adding this to the list of checks in URL fixes the issue. \nTried the same in local and found no issues.\n\nTried to understand the same from official microsoft docs, but there is no explicit mention about them","reference_answer":"Hello @speedpro , \n\nI have now fixed this issue for good, I do not look anymore at the filenames but instead look at the \"[Content_Types].xml\" file.\n\nThis should be fixed in the just released version (3.10.1).","answer_document_id":"gh_comment_481587389","silver_evidence_path":["gh_comment_2696702745","gh_issue_287129475","gh_comment_481587389"],"known_context_document_ids":["gh_issue_2891134543"],"evidence_issue_ids":[2891134543,287129475],"source_repo_name":"Unstructured-IO/unstructured","source_issue_id":2891134543,"source_issue_url":"https://github.com/Unstructured-IO/unstructured/issues/3937","target_repo_name":"open-xml-templating/docxtemplater","target_issue_id":287129475,"target_issue_url":"https://github.com/open-xml-templating/docxtemplater/issues/366","split":"test","quality_score":91.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0243","query":"Fix `selector-max-specificity` README examples of the `ignoreSelectors` secondary option?","query_context":"see : URL \n\nThese tests are problematic for multiple reasons:\n- `:global` and `:local` are non-standard and it isn't defined what their specificity is.\n- `:global` and `:local` don't have any specificity of their own in `@csstools/selector-specificity`, so ignoring them to reduce their specificity seems weird?\n- `:global` and `:local` do not support selector lists in implementations\n - `lightningcss` errors\n - `postcss-modules` mangles the output (`:global(.page, .bar)` -> `.page .bar`)\n\nThey also dominate the implementation of `selector-max-specificity`.\n\nAs far as I can tell the `ignoreSelectors` was also created with css modules too much in mind.\nIt acts like a hole punch. The AST node that matches doesn't contribute to specificity, but its child nodes do. Which works really well for `:global` and `:local` because they happen to be removed during compilation.\n\nBut I am not sure if this makes sense for any case other than css modules.\nThere isn't any test coverage for other pseudo selectors with child nodes, so I can't tell what the exact intention was here.\n\n--------------\n\nProposal :\n- fix the tests so that `:global` and `:local` are used as supported by implementations\n- better define how `ignoreSelectors` works when it matches AST nodes with child nodes","reference_answer":"Did you find the answer?\n\nIf you want to use RegExp, then it's always should be surrounded by `/`, e. g. `\"/.*/\"`.","answer_document_id":"gh_comment_499878534","silver_evidence_path":["gh_comment_1910175718","gh_issue_453495892","gh_comment_499878534"],"known_context_document_ids":["gh_issue_2098837543"],"evidence_issue_ids":[2098837543,453495892],"source_repo_name":"stylelint/stylelint","source_issue_id":2098837543,"source_issue_url":"https://github.com/stylelint/stylelint/issues/7495","target_repo_name":"stylelint/stylelint","target_issue_id":453495892,"target_issue_url":"https://github.com/stylelint/stylelint/issues/4105","split":"test","quality_score":81.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0245","query":"matrix-synapse doesn't start and crashes?","query_context":"### Describe the bug\n\nmatrix-synapse service keeps crashing since I updated it today. \n\n### Context\n\n- Hardware: Some Hetzner server. \n- YunoHost version: 11.2.5\n- I have access to my server: Through SSH | through the webadmin\n- Are you in a special context or did you perform some particular tweaking on your YunoHost instance?: no\n- Using, or trying to install package version/branch: using stable\n- If upgrading, current package version: Not applicable\n\n### Steps to reproduce\nmatrix-synapse crashes with the log below and restarts, this happens since I updates all apps (synapse was updated) an hour ago. \n\n### Expected behavior\n\nit used to run without any problem. \n\n### Logs\njournalctl\n\n### Remark\nI know this bug report is not very meaningful, sorry about that, not sure what else to write, please have a look in the log.","reference_answer":"Logging to `/homeserver.log` by default doesn't seem ideal regardless. I'm not 100% sure where we should put the log file by default (I don't know what the standard practice for docker containers are), but I think we'd be happy to have a PR to change the defaults. We probably do want to make sure that any changes here are backwards compatible? I.e. we don't change the location for existing deployments?","answer_document_id":"gh_comment_840463888","silver_evidence_path":["gh_comment_1813074702","gh_issue_888554281","gh_comment_840463888"],"known_context_document_ids":["gh_issue_1952894787"],"evidence_issue_ids":[1952894787,888554281],"source_repo_name":"YunoHost-Apps/synapse_ynh","source_issue_id":1952894787,"source_issue_url":"https://github.com/YunoHost-Apps/synapse_ynh/issues/420","target_repo_name":"matrix-org/synapse","target_issue_id":888554281,"target_issue_url":"https://github.com/matrix-org/synapse/issues/9970","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0247","query":"Replace Coptic example at embed.openhistoricalmap.org?","query_context":"**Bug description**\nThe README provides a link where I can \"see Roman Egypt labeled in Copt\". I don't know quite what to expect but when I click on that link I see labels in English and in what I take to be an Arabic script. I do expect that, if I remove `&language=cop` from ` URL the rendering should be different but the map appears the same.","reference_answer":"For now, a threshold of 50 may be necessary, but I think we would indeed want to eventually support languages with fewer features, if only because some regionally significant indigenous languages donāt have many features in the native name. Iād also expect ancient languages such as Sumerian and Phoenician to be represented by very few but very significant features. However, we can defer that consideration until we find an alternative solution that doesnāt incur a performance penalty per language. Once we implement bilingual labeling in #799, this will become somewhat less of an issue, because weād once again expose many of these names via `name=*` anyways.","answer_document_id":"gh_comment_2591500299","silver_evidence_path":["gh_comment_2874311407","gh_issue_2778328973","gh_comment_2591500299"],"known_context_document_ids":["gh_issue_3049954636"],"evidence_issue_ids":[3049954636,2778328973],"source_repo_name":"OpenHistoricalMap/issues","source_issue_id":3049954636,"source_issue_url":"https://github.com/OpenHistoricalMap/issues/issues/1048","target_repo_name":"OpenHistoricalMap/issues","target_issue_id":2778328973,"target_issue_url":"https://github.com/OpenHistoricalMap/issues/issues/948","split":"test","quality_score":94.57,"annotation_level":"silver"}
{"query_id":"cross_issue_0248","query":"OpenGL: Transition glitched on NVIDIA GPUs (Proprietary Driver)?","query_context":"On an NVIDIA GPU, the transition effect looks glitched with the OpenGL 1.5 and OpenGL ES 2.0 renderers\n\n URL \n\nOS: Arch Linux (6.12.34-1-lts)\nCPU: AMD FX-4300 (Yes I know this CPU is terrible)\nGPU: NVIDIA RTX 3050 8GB (nvidia-lts 575.64)","reference_answer":"Here was my effort, but since I'm not on Windows configuring things wasn't easy. URL","answer_document_id":"gh_comment_3025969343","silver_evidence_path":["gh_comment_3034578778","gh_issue_3158575874","gh_comment_3025969343"],"known_context_document_ids":["gh_issue_3176675341"],"evidence_issue_ids":[3176675341,3158575874],"source_repo_name":"isledecomp/isle-portable","source_issue_id":3176675341,"source_issue_url":"https://github.com/isledecomp/isle-portable/issues/430","target_repo_name":"isledecomp/isle-portable","target_issue_id":3158575874,"target_issue_url":"https://github.com/isledecomp/isle-portable/issues/337","split":"test","quality_score":86.67,"annotation_level":"silver"}
{"query_id":"cross_issue_0249","query":"Question: Dealing with filenames containing newlines?","query_context":"Cheers. I'm trying to use rhash to verify correct copies of various backup data (home folders with AppData, old saved webpages etc) which for one reason or another contain files with newlines in the middle. Is there a recommended way of dealing with these filenames? As in, how to create a sum file that will subsequently verify these files.\n\nMy first thought was to use `--printf` to replicate the oft-used `-0` switch from `find` and many other tools, but if I'm reading the manual correctly, rhash isn't actually able to process sum files created with the printf option. Is there some other way?","reference_answer":"The feature is supported by commits: 5ab59ef592826f91b59484a86072cc35b2e8d699, 357e7d37961f589278159cc9bff6fe9369cf4db7.","answer_document_id":"gh_comment_1258000802","silver_evidence_path":["gh_comment_1017261302","gh_issue_523535126","gh_comment_1258000802"],"known_context_document_ids":["gh_issue_1106264470"],"evidence_issue_ids":[1106264470,523535126],"source_repo_name":"rhash/RHash","source_issue_id":1106264470,"source_issue_url":"https://github.com/rhash/RHash/issues/191","target_repo_name":"rhash/RHash","target_issue_id":523535126,"target_issue_url":"https://github.com/rhash/RHash/issues/97","split":"test","quality_score":80.67,"annotation_level":"silver"}
{"query_id":"cross_issue_0250","query":"Playing a `StreamingSoundData` intermittently plays a scratchy, sped-up version of the sound?","query_context":"I tried playing this audio file as a `StreamingSoundData` with a loop point of 7.0. Occasionally, this would work, but sometimes, it would come out as a scratchy mess:\n\n URL \n\nUpon closer inspection, this seems to be a sped up version of the track. Sometimes this issue would correct itself at the loop point, but occasionally, it continues forever.\n\nThus far, I've only been able to reproduce this issue in debug builds (with optimized dependencies). Release builds seem to be unaffected.","reference_answer":"I went ahead and released v0.1.2, so this should be fixed now. Let me know if you have any more issues.","answer_document_id":"gh_comment_739115450","silver_evidence_path":["gh_comment_1347031682","gh_issue_753387912","gh_comment_739115450"],"known_context_document_ids":["gh_issue_1490327041"],"evidence_issue_ids":[1490327041,753387912],"source_repo_name":"tesselode/kira","source_issue_id":1490327041,"source_issue_url":"https://github.com/tesselode/kira/issues/36","target_repo_name":"tesselode/kira","target_issue_id":753387912,"target_issue_url":"https://github.com/tesselode/kira/issues/1","split":"test","quality_score":93.73,"annotation_level":"silver"}
{"query_id":"cross_issue_0251","query":"ST announcement still playing?","query_context":"Hi there!\nYour earlier fix removing the \"_Composite Clipper is used without license_\" indeed removes that message, however after exactly 4 hours of running ST9.92 still an audio advertisement clip is played (\"_This sound is processed by StereoTool ..._ blabla\") mixed through the FM-output), even after a fresh install on a computer without Internet connection.\nAll available licenses are marked green in ST and the only remaining nagging is that this audio advertisement is played after 4 hours run-time on FM-output. I am only using all FM-professional features, including Composite Clipper. I have µMPX, BIMP and other features disabled.","reference_answer":"Try adding -f 0x49f508df to the keygen. Might have to do with AGC 3/4 but I'm not sure.","answer_document_id":"gh_comment_1368144661","silver_evidence_path":["gh_comment_1636977678","gh_issue_1514868832","gh_comment_1368144661"],"known_context_document_ids":["gh_issue_1804756317"],"evidence_issue_ids":[1804756317,1514868832],"source_repo_name":"Anthony96922/st-keygen","source_issue_id":1804756317,"source_issue_url":"https://github.com/Anthony96922/st-keygen/issues/2","target_repo_name":"Anthony96922/st-keygen","target_issue_id":1514868832,"target_issue_url":"https://github.com/Anthony96922/st-keygen/issues/1","split":"test","quality_score":78.92,"annotation_level":"silver"}
{"query_id":"cross_issue_0252","query":"IsEnabled doesn't update visual state after being updated with INotifyPropertyChanged when displaying shell alert on Windows 10?","query_context":"### Description\n\nVisual state of button doesn't change after alert is displayed despite being enabled. It's visible as disable despite being clickable.\n\nIt works fine on Android.\n\nimage\n\nObservableProperty and ICommand is part of Microsoft.Toolkit.Mvvm.ComponentModel\n\ncs\n [ObservableProperty]\n [AlsoNotifyChangeFor(nameof(IsNotBusy))]\n private bool isBusy;\n public bool IsNotBusy => !IsBusy;\n\nxml\n \n\ncs\n[ICommand]\npublic async Task DisplayAlertAsync()\n {\n IsBusy = true;\n bool answer = await Shell.Current.DisplayAlert(\"Question?\", \"Would you like to play a game\", \"Yes\", \"No\");\n IsBusy = false;\n }\n\n### Steps to Reproduce\n\n1. Run app on Windows 10\n2. Click button\n3. Visual state doesn't update after alert is displayed.\n\n### Version with bug\n\n6.0.419 (current)\n\n### Last version that worked well\n\nUnknown/Other\n\n### Affected platforms\n\nWindows\n\n### Affected platform versions\n\nWindows 10\n\n### Did you find any workaround?\n\n_No response_\n\n### Relevant log output\n\n_No response_","reference_answer":"Closing this, as it just seems like an issue with MAUI (also I think I've seen this being mentioned in a separate issue as well though I don't have it handy right now). I'd recommend opening an issue in the MAUI repo (or finding one if it already exists) and possibly linking this one there for reference š","answer_document_id":"gh_comment_1356625388","silver_evidence_path":["gh_comment_1215354495","gh_issue_1333482707","gh_comment_1356625388"],"known_context_document_ids":["gh_issue_1313089419"],"evidence_issue_ids":[1313089419,1333482707],"source_repo_name":"dotnet/maui","source_issue_id":1313089419,"source_issue_url":"https://github.com/dotnet/maui/issues/8877","target_repo_name":"CommunityToolkit/dotnet","target_issue_id":1333482707,"target_issue_url":"https://github.com/CommunityToolkit/dotnet/issues/372","split":"test","quality_score":93.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0253","query":"Consider making the `version` field optional in Cargo.toml?","query_context":"**Describe the problem you are trying to solve**\n\nToday, the `version` field is required. However, in many (most?) cases it doesn't make sense:\n\n* when doing some casual rust hacking for fun or learning \n* inside \"live at HEAD\" company monorepo\n* when working on a large Rust projects not distributed via `cargo install`\n\nThis creates specific issues:\n\n* additional confusion -- there is a line in Cargo.toml which is there \"just because\", and not due to some specific reason\n* diluted meaning of versions: semver compatibility is a lot to promise, by having versions everywhere it's harder to notice where they matter and where you need to care about API compatibility\n* For projects which mix published and non-published crates in the same source tree, it becomes harder to know at a glance if a particular crate is published. \n\n**Describe the solution you'd like**\n\nMake the `version` field in Cargo.toml optional. Do populate it by default, as it is today. Prevent publishing the crates which (transitively) depend on non-versioned crates. \n\n**Notes**\n\nThere is `publish = false`, to my mind that serves a different purpose -- preventing accidental publishing of the crates. It doesn't help with solving confusion problem -- the version is still there, and it still doesn't have a meaning. Although, if we were to re-design Cargo from scratch, I would argue that we shouldn't have `publish` field at all, and insead define it as `publish = version.is_some()`. \n\nImplementation wise, it seems like we can desugar absence of version as `version = \"0.0.0\" publish = false`. I personally use `version = \"0.0.0\"` as a way to explicitly signal that there's no meaningful version.","reference_answer":"any lines at all between the `#!` shebang line and the code fence are not supported. in the future only blank lines will be allowed between them. you seem to have a bunch of doc comments which aren't supported, so you need to move the code-fenced Cargo.toml section to right after the shebang line and before any rust comments.","answer_document_id":"gh_comment_1955837476","silver_evidence_path":["gh_comment_1724168035","gh_issue_1733342552","gh_comment_1955837476"],"known_context_document_ids":["gh_issue_976847689"],"evidence_issue_ids":[976847689,1733342552],"source_repo_name":"rust-lang/cargo","source_issue_id":976847689,"source_issue_url":"https://github.com/rust-lang/cargo/issues/9829","target_repo_name":"rust-lang/cargo","target_issue_id":1733342552,"target_issue_url":"https://github.com/rust-lang/cargo/issues/12207","split":"test","quality_score":94.33,"annotation_level":"silver"}
{"query_id":"cross_issue_0254","query":"n8n Linkedin node?","query_context":"### Bug Description\n\n From LinkedIn\nError code\n\n426\n\nFull message\n\n{ \"status\": 426, \"code\": \"NONEXISTENT_VERSION\", \"message\": \"Requested version 20240401 is not active\" }\n\n### To Reproduce\n\npost to linkedin\n\n### Expected behavior\n\nnode is invalid:\n\n# Debug info\n\n## core\n\n- n8nVersion: 1.88.0\n- platform: docker (cloud)\n- nodeJsVersion: 20.19.0\n- database: sqlite\n- executionMode: regular\n- concurrency: 5\n- license: community\n- consumerId: 00000000-0000-0000-0000-000000000000\n\n## storage\n\n- success: all\n- error: all\n- progress: false\n- manual: true\n- binaryMode: filesystem\n\n## pruning\n\n- enabled: true\n- maxAge: 168 hours\n- maxCount: 2500 executions\n\n## client\n\n- userAgent: mozilla/5.0 (windows nt 10.0; win64; x64) applewebkit/537.36 (khtml, like gecko) chrome/135.0.0.0 safari/537.36\n- isTouchDevice: false\n\nGenerated at: 2025-04-16T11:37:43.341Z\n\n### Operating System\n\nwindows\n\n### n8n Version\n\n1.88\n\n### Node.js Version\n\n1.88\n\n### Database\n\nSQLite (default)\n\n### Execution mode\n\nmain (default)","reference_answer":"Hey @filipefmelo,\n\nWe have created an internal ticket to look into this which we will be tracking as \"GHC-1611\"","answer_document_id":"gh_comment_2808912927","silver_evidence_path":["gh_comment_2810448417","gh_issue_2998987533","gh_comment_2808912927"],"known_context_document_ids":["gh_issue_2999369459"],"evidence_issue_ids":[2999369459,2998987533],"source_repo_name":"n8n-io/n8n","source_issue_id":2999369459,"source_issue_url":"https://github.com/n8n-io/n8n/issues/14678","target_repo_name":"n8n-io/n8n","target_issue_id":2998987533,"target_issue_url":"https://github.com/n8n-io/n8n/issues/14670","split":"test","quality_score":75.14,"annotation_level":"silver"}
{"query_id":"cross_issue_0255","query":"Unable to resolve module when using path alias in environment with ESModule and TypeScript?","query_context":"Hello! First of all, thank you for your wonderful project. I'm having some problems using this template, so if you know where I can find a solution, could you please let me know?\n\nIn an environment using TypeScript and ESModule, importing using the path alias set on `tsconfig.json` gives the following error and does not work properly. \n\n/home/yupix/works/remix-v2-server/node_modules/.pnpm/ts-node@10.9.1_@swc+core@1.3.63_@types+node@20.8.4_typescript@5.0.4/node_modules/ts-node/dist-raw/node-internal-modules-esm-resolve.js:757\n throw new ERR_MODULE_NOT_FOUND(packageName, fileURLToPath(base));\n ^\nError: Cannot find package '~' imported from /home/yupix/works/remix-v2-server/build/index.js\n at packageResolve (/home/yupix/works/remix-v2-server/node_modules/.pnpm/ts-node@10.9.1_@swc+core@1.3.63_@types+node@20.8.4_typescript@5.0.4/node_modules/ts-node/dist-raw/node-internal-modules-esm-resolve.js:757:9)\n at moduleResolve (/home/yupix/works/remix-v2-server/node_modules/.pnpm/ts-node@10.9.1_@swc+core@1.3.63_@types+node@20.8.4_typescript@5.0.4/node_modules/ts-node/dist-raw/node-internal-modules-esm-resolve.js:798:18)\n at Object.defaultResolve (/home/yupix/works/remix-v2-server/node_modules/.pnpm/ts-node@10.9.1_@swc+core@1.3.63_@types+node@20.8.4_typescript@5.0.4/node_modules/ts-node/dist-raw/node-internal-modules-esm-resolve.js:912:11)\n at /home/yupix/works/remix-v2-server/node_modules/.pnpm/ts-node@10.9.1_@swc+core@1.3.63_@types+node@20.8.4_typescript@5.0.4/node_modules/ts-node/src/esm.ts:218:35\n at entrypointFallback (/home/yupix/works/remix-v2-server/node_modules/.pnpm/ts-node@10.9.1_@swc+core@1.3.63_@types+node@20.8.4_typescript@5.0.4/node_modules/ts-node/src/esm.ts:168:34)\n at /home/yupix/works/remix-v2-server/node_modules/.pnpm/ts-node@10.9.1_@swc+core@1.3.63_@types+node@20.8.4_typescript@5.0.4/node_modules/ts-node/src/esm.ts:217:14\n at addShortCircuitFlag (/home/yupix/works/remix-v2-server/node_modules/.pnpm/ts-node@10.9.1_@swc+core@1.3.63_@types+node@20.8.4_typescript@5.0.4/node_modules/ts-node/src/esm.ts:409:21)\n at resolve (/home/yupix/works/remix-v2-server/node_modules/.pnpm/ts-node@10.9.1_@swc+core@1.3.63_@types+node@20.8.4_typescript@5.0.4/node_modules/ts-node/src/esm.ts:197:12)\n at nextResolve (node:internal/modules/esm/hooks:833:28)\n at Hooks.resolve (node:internal/modules/esm/hooks:278:30)\nFailed running './server.ts'\n\n### Projects I have tested\n\n URL \n\n### Environment\n\nOS: Ubuntu 22.04.3\nRemix: v2.0.1\npnpm: v8.6.7\nnode: v20.8.0","reference_answer":"The whole idea of TypeScript is to add static types on top of JavaScript, not to be a higher-level language that builds to JS. The C# / IL comparison is not apt at all.\n\nThere's literally no line of undownleveled JavaScript code you can write where TS intercepts some *string* in it and changes it to be something else. This is 100% consistent with TS behavior in every other kind of JS construct; it would be frankly bizarre to have import paths be the one thing that we decide to go mess with.","answer_document_id":"gh_comment_702801220","silver_evidence_path":["gh_comment_1763116715","gh_issue_713122066","gh_comment_702801220"],"known_context_document_ids":["gh_issue_1942394191"],"evidence_issue_ids":[1942394191,713122066],"source_repo_name":"xHomu/remix-v2-server","source_issue_id":1942394191,"source_issue_url":"https://github.com/xHomu/remix-v2-server/issues/5","target_repo_name":"microsoft/TypeScript","target_issue_id":713122066,"target_issue_url":"https://github.com/microsoft/TypeScript/issues/40878","split":"test","quality_score":95.88,"annotation_level":"silver"}
{"query_id":"cross_issue_0256","query":"[frontend] logs and artifacts stored in different Minio locations and can't be accessed by frontent?","query_context":"### Environment\n\n* How did you deploy Kubeflow Pipelines (KFP)? from repo\n* KFP version: 1.7.0\nTo find the version number, See version number shows on bottom of KFP UI left sidenav. -->\n* KFP SDK version: \n\nkfp 1.7.0\nkfp-pipeline-spec 0.1.9\nkfp-server-api 1.7.0\n\n### Steps to reproduce\n\n* run a pipeline and store an artifact\n* delete the pod\n\nThen we see that:\n* The artifact (and its preview) can be seen in the output list of Input/Output tab\n* The metrics can be accessed by the visualisations tab\n* A wrong link to the metrics is found in the outputs list of the input/Outputs tab\n * details read `Failed to get object in bucket mlpipeline at path v2/artifacts/pipeline/example pipeline/e154ea68-d59c-46ba-aea4-ead5b9eb0ea8/square/metrics: S3Error: The specified key does not exist.`\n* The logs cannot be retrieved from minio in the logs tab\n * details read `Error response: Could not get main container logs: Error: Unable to find pod log archive information from workflow status.`\n\nLooking in MiniO it seems \n* the Artifact is stored at\n`mlpipeline/v2/artifacts/pipeline/example%20pipeline/e154ea68-d59c-46ba-aea4-ead5b9eb0ea8/square/`\n\n* and the logs and metrics are stored at\n`mlpipeline/artifacts/example-pipeline-ljzls/2021/08/25/example-pipeline-ljzls-1034021739/`\n\nminimal code sample:\n\npython\nimport kfp\nfrom kfp.v2.dsl import pipeline, component, Output, Metrics, Artifact\n\n@component(base_image='python:3')\ndef square(x: int, metrics: Output[Metrics], data: Output[Artifact]):\n metrics.log_metric('test_metrics', 1)\n metrics.log_metric(f'{x} squared', x**2)\n print(f'{x} squared is {x**2}')\n \n with open(data.path, 'w') as f:\n f.write(\"some content\")\n\n@pipeline(name='example pipeline')\ndef pipeline():\n square(4)\n\nclient = kfp.Client(host=' URL \nclient.create_run_from_pipeline_func(\n pipeline, arguments={}, run_name='Example run',\n experiment_name='Default', enable_caching=False,\n mode=kfp.dsl.PipelineExecutionMode.V2_COMPATIBLE\n)\n\n### Expected result\n\nThe logs and metrics can be retrieved from MiniO by the frontend even when pods are deleted\n\n### Materials and Reference\n\nIs this a configuration issue? Should I move things to point only to v2 path?\n\n---\n\n \nImpacted by this bug? Give it a š. We prioritise the issues with the most š.","reference_answer":"@kubeflow/pipelines @HumairAK @pdettori I would like to ask that we prioritize this issue, it is a significant regression for V2 pipelines.\n\nThe gist of the issue is that when Argo Workflows has the `archiveLogs` config set (which we do at the cluster level in our manifests), then Argo Workflows automatically creates a \"output artifact\" called `main-logs` which full Pod logs of each step as an S3/MinIO artifact.\n\nIn Kubeflow Pipelines V1, we used to capture this output artifact, which allowed users to see the old logs when the Pod had disappeared, but in V2 this was strangely omitted.\n\nFixing it should be very straightforward, we just need to capture the artifact location of the `main-logs` output of the `executor` step, and store it as an \"Output Artifact\" in the ML Metadata of the step.\n\nFor reference, we can retrieve this artifact by reading the status field of the `Workflow` resource:\n\nyaml\nstatus:\n nodes:\n pipeline-1-8g5bs-3160443754:\n displayName: executor\n outputs:\n artifacts:\n - name: main-logs\n s3:\n key: artifacts/team-1/pipeline-1-8g5bs/2024/06/13/pipeline-1-8g5bs-3160443754/main.log","answer_document_id":"gh_comment_2164166923","silver_evidence_path":["gh_comment_2164154245","gh_issue_1914251519","gh_comment_2164166923"],"known_context_document_ids":["gh_issue_978966541"],"evidence_issue_ids":[978966541,1914251519],"source_repo_name":"kubeflow/pipelines","source_issue_id":978966541,"source_issue_url":"https://github.com/kubeflow/pipelines/issues/6428","target_repo_name":"kubeflow/pipelines","target_issue_id":1914251519,"target_issue_url":"https://github.com/kubeflow/pipelines/issues/10036","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0259","query":"Fix aarch64 dmg (MacOS Silicon version)?","query_context":"This issue is being opened because the aarch64 version is damaged: URL \n\nAlso because a possible solution is referenced at:\n URL \n\nSo, I'll see if it's possible to fix it for the next version.","reference_answer":"This is macOS' gatekeeper (no idea why apple thought it's a good idea to show such a misleading error). It blocks all downloaded apps which are not signed, so the only real solution is to give Apple 100$ to buy \"trust\" :(","answer_document_id":"gh_comment_1341661707","silver_evidence_path":["gh_comment_3193908863","gh_issue_1482922638","gh_comment_1341661707"],"known_context_document_ids":["gh_issue_3311065428"],"evidence_issue_ids":[3311065428,1482922638],"source_repo_name":"angelespejo/macos-app-trial-extender","source_issue_id":3311065428,"source_issue_url":"https://github.com/angelespejo/macos-app-trial-extender/issues/9","target_repo_name":"tauri-apps/tauri","target_issue_id":1482922638,"target_issue_url":"https://github.com/tauri-apps/tauri/issues/5778","split":"test","quality_score":93.5,"annotation_level":"silver"}
{"query_id":"cross_issue_0260","query":"Deleted and then recreated Github repository can't be cloned?","query_context":"### Describe the bug\n\nAfter deleting and then creating another repository with the same name, I couldn't clone the new repository in Github Desktop.\n\n### Version & OS\n\nWindows 10, Github Desktop version 2.5.6\n\n### Steps to reproduce the behavior\n\n1. Create repository online\n2. Delete repository online\n3. Create new repository using the same name online\n4. Attempt to clone the new repository\n\n### Expected behavior\n\nIt should clone the repository just fine. \n\n### Actual behavior\n\nI got the message \"We couldn't find that repository. Check that you are logged in, the network is accessible, and the URL or repository alias are spelled correctly.\"\n\n### Screenshots\n\n### Logs\n\n2020-10-26T21:38:03.377Z - warn: [ui] fetchRepository: 'MasquitoWasTaken/masquito-backend' returned a 404\n2020-10-26T21:38:03.493Z - warn: [ui] fetchRepository: 'MasquitoWasTaken/masquito-backend' returned a 404\n2020-10-26T21:38:03.493Z - info: [ui] [AppStore.getAccountForRemoteURL] no generic credentials found for 'MasquitoWasTaken/masquito-backend'\n2020-10-26T21:38:03.494Z - info: [ui] proxy url not resolved, protocol not supported\n2020-10-26T21:38:03.568Z - error: [ui] `git -c credential.helper= clone --recursive --progress -- MasquitoWasTaken/masquito-backend C:\\Users\\Gabriel Pizarro\\Documents\\GitHub\\masquito-backend` exited with an unexpected code: 128.\nstderr:\nfatal: repository 'MasquitoWasTaken/masquito-backend' does not exist\n\n### Additional context\n\nCheck out my repository at URL it does exist. I can also manually clone the repo from CLI.","reference_answer":"Thanks for the update @AngeloSolusys. Can you try cloning the repository via the command line (`git clone `) to see if that succeeds? I","answer_document_id":"gh_comment_718315014","silver_evidence_path":["gh_comment_1151624553","gh_issue_730649865","gh_comment_718315014"],"known_context_document_ids":["gh_issue_729927861"],"evidence_issue_ids":[729927861,730649865],"source_repo_name":"desktop/desktop","source_issue_id":729927861,"source_issue_url":"https://github.com/desktop/desktop/issues/10923","target_repo_name":"desktop/desktop","target_issue_id":730649865,"target_issue_url":"https://github.com/desktop/desktop/issues/10930","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0261","query":"Gitpod in Mumbai region?","query_context":"_Issue tracked as part of URL \n\nThe latency experienced by me in Rajkot, Gujarat, India is about 300ms. This leads to a subpar experience. I'm on an FTTH connection whose bandwidth is 80Mbps down and 40Mbps up. Please refer to the attached screenshots. I've also attached a screenshot showing the latency of various GCP regions from my location. \n\nIt would be nice to see Gitpod deploying a cluster in India as India houses a sizeable proportion of developers and is one of the largest markets for off-shore development. \n\nScreenshot 2021-10-10 at 9 55 18 PM\ngcp_latency\n
Connect to Host ... -> Pick the remote)\n* Downgrade the Pylance extension to previous version (a week ago) or disable it for now\n\nWe will keep you posted once there is a new Pylance release.","answer_document_id":"gh_comment_1773202568","silver_evidence_path":["gh_comment_1773153239","gh_issue_1943004800","gh_comment_1773202568"],"known_context_document_ids":["gh_issue_1954415933"],"evidence_issue_ids":[1954415933,1943004800],"source_repo_name":"microsoft/vscode","source_issue_id":1954415933,"source_issue_url":"https://github.com/microsoft/vscode/issues/196089","target_repo_name":"microsoft/vscode","target_issue_id":1943004800,"target_issue_url":"https://github.com/microsoft/vscode/issues/195617","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0272","query":"Weird notification if local jdk is specified?","query_context":"Greetings,\n\nWhen I'm tying to spec path to local jdk installation, everytime, when I autocomplete code, bunch of notifications pop up, like in screenshot below. Also listing configuration script, maybe there is some misconfiguration\n\nlua\nreturn {\n \"nvim-java/nvim-java\",\n config = false,\n dependencies = {\n {\n \"neovim/nvim-lspconfig\",\n opts = {\n servers = {\n jdtls = {\n settings = {\n java = {\n runtimes = {\n name = \"JavaSE-21\",\n path = \"~/Library/Java/JavaVirtualMachines/corretto-21.0.5/Contents/Home\",\n },\n },\n },\n },\n },\n setup = {\n jdtls = function()\n require(\"java\").setup({\n jdk = {\n auto_install = false,\n },\n })\n end,\n },\n },\n },\n },\n}","reference_answer":"You can also tryout following with docker & devcontainer and compare your local setup to figure out what's wrong.\n URL","answer_document_id":"gh_comment_2428110123","silver_evidence_path":["gh_comment_3168356395","gh_issue_2479548965","gh_comment_2428110123"],"known_context_document_ids":["gh_issue_3045694867"],"evidence_issue_ids":[3045694867,2479548965],"source_repo_name":"nvim-java/nvim-java","source_issue_id":3045694867,"source_issue_url":"https://github.com/nvim-java/nvim-java/issues/375","target_repo_name":"nvim-java/nvim-java","target_issue_id":2479548965,"target_issue_url":"https://github.com/nvim-java/nvim-java/issues/293","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0273","query":"syntax error with phpstan starting with 2.6.7?","query_context":"I use phpstan in my project and after the update to 2.6.7 phpstan fails with a \"syntax error\":\n\n 44/44 [āāāāāāāāāāāāāāāāāāāāāāāāāāāā] 100%\n\n ------ ---------------------------------------------------------------------- \n Line tests/ApiTest.php \n ------ ---------------------------------------------------------------------- \n Internal error: syntax error, unexpected 'static' (T_STATIC) \n Run PHPStan with --debug option and post the stack trace to: \n URL \n ------ ---------------------------------------------------------------------- \n \n\nThe internal error is (I'm using php 7.4):\n \n\nDoes anyone know how to work around that?","reference_answer":"Hi, can you please create a small reproducing repository that shows this problem? Thanks.","answer_document_id":"gh_comment_1014632593","silver_evidence_path":["gh_comment_1014585628","gh_issue_1105903709","gh_comment_1014632593"],"known_context_document_ids":["gh_issue_1092603840"],"evidence_issue_ids":[1092603840,1105903709],"source_repo_name":"api-platform/core","source_issue_id":1092603840,"source_issue_url":"https://github.com/api-platform/core/issues/4614","target_repo_name":"phpstan/phpstan","target_issue_id":1105903709,"target_issue_url":"https://github.com/phpstan/phpstan/issues/6386","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0274","query":"index.html permission denied?","query_context":"Jellyfin is installed on TrueNas Scale. Used over Android as well as Windows Devices throughout the House.\n\nImage\n\nI tried the \"Windows\" Fix by adjusting the Permission of index.html in jellyfin-web for all users on my PC, didn“t do anything for JMP on the Device and obviously not for any phone or whatsoever. \n\nTried the docker fix but it got too technical for me as im not even sure what exactly a Docker is and over TrueNas Shell for Jellyfin Container i just get docker: not found. I think that means i don“t use dockers? \n\nImage\n\nAny help would be appreciated on how to move forward trying to fix it and please excuse any technical illiteracy on my part","reference_answer":"Hey, the way of modifing something for JMP is deprecated.\nJMP is using the frontend from the server now.\nIf you can't see the button. Check if you have the newest version of JMP 1.11.1 and this plugin","answer_document_id":"gh_comment_2453336232","silver_evidence_path":["gh_comment_2776098377","gh_issue_2172181632","gh_comment_2453336232"],"known_context_document_ids":["gh_issue_2967845508"],"evidence_issue_ids":[2967845508,2172181632],"source_repo_name":"Namo2/InPlayerEpisodePreview","source_issue_id":2967845508,"source_issue_url":"https://github.com/Namo2/InPlayerEpisodePreview/issues/51","target_repo_name":"Namo2/InPlayerEpisodePreview","target_issue_id":2172181632,"target_issue_url":"https://github.com/Namo2/InPlayerEpisodePreview/issues/10","split":"test","quality_score":91.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0276","query":"action button not working and sync error Android 14?","query_context":"The action button doesn't work and I'm only able to connect once, after that I have to forget the watch in the app and connect again. \n\nSteps to reproduce:\n\n1. open app\n2. connect watch as instructed \n3. all settings sync perfectly \n4. disconnect watch by short pressing either mode or 'action' button\n5. pressing the action button doesn't do anything\n6. try to connect watch again as instructed but watch displays 'ERR' in the top right matrix display after flashing 'CNCT' for 8 times, no reaction from the app\n7. press 'forget' in the app and connect watch again\n8. app works until watch is disconnected upon which watch won't connect again unless watch is forgotten in app\n\nExpected behavior:\n\n1.- 4. as above\n5. pressing action button launches set action\n6. watch can be reconnected without having to forget every time\n\nIf theres a way to send logs or provide u with other information please let me know. \n\nDevices:\nGW-B5600\nPixel 7 \nAndroid 14 UQ1A.231205.015\nApp ver. 12.1","reference_answer":"@tomasz-c OK, good point!\n\nHere is what the app currently does:\n\nThe first time a watch tries to connect, the app will pair with the watch automatically.\nFrom then on, it will only pair with the same watch until you press the \"FORGET\" button.\nIf you try to connect another watch, it will fail.\nYou can test this by resetting your watch to factory default and trying to connect. This will fail because the Bluetooth ID of the watch changes when reset, equivalent to connecting a new watch. To connect the watch, you must press the \"FORGET\" button. (Prior to version 11.9, I have gone back and forth allowing all watches to auto-connect because some people have requested auto-syncing multiple watches, but now only one watch can connect until \"FORGET\" is pressed).\n\nNow, the only way somebody else can connect to the watch is if they are running the app and have not yet paired it with a watch. This can happen when the watch auto-syncs, and they are nearby, like on a bus (a very rare event, I can only hope this app is popular enough for random people to run it on the same bus). In this case, they will not be able to see the Google reminders in the app, but it is possible to send their reminders to your watch, which is, of course, a problem.\n\nAuto-pair is generally a good feature. The app can connect to watches ad-hoc, even if they are not in the supported list. People like this feature, and I would like to keep it.\n\nTo address the rare possibility of sending the wrong reminders, I will arrange the app not to send reminders if this is the first time they have connected to this watch.","answer_document_id":"gh_comment_1928088632","silver_evidence_path":["gh_comment_1950798264","gh_issue_2119316305","gh_comment_1928088632"],"known_context_document_ids":["gh_issue_2140654827"],"evidence_issue_ids":[2140654827,2119316305],"source_repo_name":"izivkov/CasioGShockSmartSync","source_issue_id":2140654827,"source_issue_url":"https://github.com/izivkov/CasioGShockSmartSync/issues/75","target_repo_name":"izivkov/CasioGShockSmartSync","target_issue_id":2119316305,"target_issue_url":"https://github.com/izivkov/CasioGShockSmartSync/issues/70","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0278","query":"[š¹ļø] Feedback Fanatic?","query_context":"### What side quest or challenge are you solving?\n\nFill out our feedback survey after the hackathon with suggestions for improvement\n\n### Points\n\n150\n\n### Description\n\n_No response_\n\n### Provide proof that you've completed the task\n\nScreenshot 2024-10-18 121846","reference_answer":"/award 150 \n\nthanks for playing :) keep collecting points to increase your chances of winning!","answer_document_id":"gh_comment_2409302126","silver_evidence_path":["gh_comment_2448746583","gh_issue_2583765259","gh_comment_2409302126"],"known_context_document_ids":["gh_issue_2618662931"],"evidence_issue_ids":[2618662931,2583765259],"source_repo_name":"formbricks/formbricks","source_issue_id":2618662931,"source_issue_url":"https://github.com/formbricks/formbricks/issues/4086","target_repo_name":"formbricks/formbricks","target_issue_id":2583765259,"target_issue_url":"https://github.com/formbricks/formbricks/issues/3614","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0279","query":"Compatibility with JSR?","query_context":"I love this module and use it in almost every project.\n\nI've recently started using Deno and JSR, and this package can't be used in modules published there for the following reasons:\n\n1. Imports/export strings need to specify the extension (e.g, `export * from 'file.ts'`.\n2. `(... arguments: any[])` isn't allowed\n3. Module augmentations aren't allowed. \n\nProblems 1 & 2 are potentially solvable, but I don't know if (3) is solvable. Maybe this requires to make two different builds, one for JSR, one for npm?\n\nIn the meantime, and for my own needs, I've made a little conversion script, which may be useful to someone else, so I will post it here: ~~build script (it uses this to download and decompress the sources: downloadAndExtractFile)~~ repo is private, posted the files in a comment below.\n\nIf you'd rather use my version (no guarantees of updates, only building this for our own internal usage), you'll find it at URL","reference_answer":"@sindresorhus Do we want to update anything with the `If*` types, as suggested in URL \n\n \n \n\nI feel more inclined towards this, but `Is*` variants are likely much more common in codebases, so deprecating them could be annoying.","answer_document_id":"gh_comment_2693438035","silver_evidence_path":["gh_comment_2858728080","gh_issue_1353850512","gh_comment_2693438035"],"known_context_document_ids":["gh_issue_3046064353"],"evidence_issue_ids":[3046064353,1353850512],"source_repo_name":"sindresorhus/type-fest","source_issue_id":3046064353,"source_issue_url":"https://github.com/sindresorhus/type-fest/issues/1122","target_repo_name":"sindresorhus/type-fest","target_issue_id":1353850512,"target_issue_url":"https://github.com/sindresorhus/type-fest/issues/450","split":"test","quality_score":85.78,"annotation_level":"silver"}
{"query_id":"cross_issue_0280","query":"Configure the Log Level Colors?","query_context":"Hello, I really love this plugin but I am having trouble figuring out how to configure the coloring of various Log Levels. Currently, it seems that INFO logs are colored yellow but none of the other Log Levels are colored. I attempted to look through Intellij's menus for a configuration option regarding this and have had no luck thus far. Is this possible? Thank you!","reference_answer":"@metaruslan Thank you for using the plugin and submitting feedbacks! You can configure log colors from the **Settings > Editor > Color Scheme > Console Colors > Log console**. I also wonder why JetBrains uses white instead of yellow as the default warning color.\n\n
Worklog\n3. Click on any of the Dates\n4. The popup appears.\n\n### Error Log (Desktop only)\n \n\n### Console Output\n \n\n### Meta Info\nMETA: SP8.0.7 Browser ā en-US ā Win32 ā Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0\n\n### Stacktrace\n\ni0 (webpack:///src/app/features/worklog/worklog.component.html:134:34)\nsetSelectedIndex (webpack:///node_modules/@angular/core/fesm2015/core.mjs:12112:8)\nsetBindingIndex (webpack:///node_modules/@angular/core/fesm2015/core.mjs:11975:12)\nviewAttachedToChangeDetector (webpack:///node_modules/@angular/core/fesm2015/core.mjs:13025:16)\nexecuteCheckHooks (webpack:///node_modules/@angular/core/fesm2015/core.mjs:11999:29)\nviewAttachedToChangeDetector (webpack:///node_modules/@angular/core/fesm2015/core.mjs:13025:16)\nexecuteCheckHooks (webpack:///node_modules/@angular/core/fesm2015/core.mjs:11999:29)\nviewAttachedToChangeDetector (webpack:///node_modules/@angular/core/fesm2015/core.mjs:13025:16)\nexecuteCheckHooks (webpack:///node_modules/@angular/core/fesm2015/core.mjs:11999:29)\nviewAttachedToChangeDetector (webpack:///node_modules/@angular/core/fesm2015/core.mjs:13025:16)\n\n### Actions Before Error\n\n1718188298709: [Task] Add time spent \n1718188298712: [Tag] Update Work End for Tag \n1718188298714: [Persistence] Save to DB (2) \n1718188358710: [Task] Add time spent \n1718188358714: [Tag] Update Work End for Tag \n1718188358716: [Persistence] Save to DB (2) \n1718188418705: [Task] Add time spent \n1718188418709: [Tag] Update Work End for Tag \n1718188418711: [Persistence] Save to DB (2) \n1718188458169: [Task] Add time spent \n1718188458172: [Tag] Update Work End for Tag \n1718188458174: [Persistence] Save to DB (2) \n1718188458415: [Task] Add time spent \n1718188458418: [Tag] Update Work End for Tag \n1718188458419: [Persistence] Save to DB (2) \n1718188459425: [Task] Add time spent \n1718188459428: [Tag] Update Work End for Tag \n1718188459429: [Persistence] Save to DB (2) \n1718188460413: [Task] Add time spent \n1718188460415: [Tag] Update Work End for Tag \n1718188460416: [Persistence] Save to DB (2) \n1718188461422: [Task] Add time spent \n1718188461424: [Tag] Update Work End for Tag \n1718188461425: [Persistence] Save to DB (2) \n1718188462425: [Task] Add time spent \n1718188462427: [Tag] Update Work End for Tag \n1718188462428: [Persistence] Save to DB (2) \n1718188463559: [FocusMode] Set focus session elapsed time \n1718188463705: [SP_ALL] Load(import) all data \n1718188463708: [SP_ALL] All Data was loaded","reference_answer":"I think I was able to fix this. Hope to make a bug fix release tomorrow or on Monday! Sorry for the inconvenience!","answer_document_id":"gh_comment_2168329539","silver_evidence_path":["gh_comment_2165372579","gh_issue_2332795800","gh_comment_2168329539"],"known_context_document_ids":["gh_issue_2348427718"],"evidence_issue_ids":[2348427718,2332795800],"source_repo_name":"johannesjo/super-productivity","source_issue_id":2348427718,"source_issue_url":"https://github.com/johannesjo/super-productivity/issues/3214","target_repo_name":"johannesjo/super-productivity","target_issue_id":2332795800,"target_issue_url":"https://github.com/johannesjo/super-productivity/issues/3208","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0287","query":"netkit vs route tables?","query_context":"### Is there an existing issue for this?\n\n- [x] I have searched the existing issues\n\n### Version\n\nequal or higher than v1.17.1 and lower than v1.18.0\n\n### What happened?\n\nnode have two interface called private and public. both exist in cilium devices list.\npublic interface by default do not have IP address.\nit get ip address when kube-vip discovers a loadbalancer service, then kube-vip assign a public ip.\npublic ip not enough in this network environment, it also needs a route. since default route already exist in the private link we use SBR, so the system creates a new route table with the gateway for the public address and place an ip rule about if from address is the public ip then use that route table. this is how the node can respond requests on the public interface while still the default route belongs to the private interface.\n\nif the bpf.datapathMode set to veth all ok with cilium networking, all test run.\nif the bpf.datapathMode set to netkit every other node ok, but the node who have a public ip + routes goes wrong. in this node what we experienced that the node can't communicate with the pods which running on that node.\nif we move the public ip to another node, the node-pod network starts to work, and goes wrong on that node which got the public ip.\nThis is only reproducable in netkit mode.\nAny ideas? How we can debug this further?\n\n### How can we reproduce the issue?\n\ncilium installed with helm:\n\nautoDirectNodeRoutes: true\nbandwidthManager:\n enabled: true\nbgpControlPlane:\n secretsNamespace:\n create: false\nbpf:\n datapathMode: veth\n hostLegacyRouting: false\n lbExternalClusterIP: true\n masquerade: true\ncluster:\n id: 1\n name: sg1-kubego-io\nclusterDomain: k8s.sg1.example.com\ncni:\n exclusive: false\ndashboards:\n enabled: true\ndebug:\n enabled: false\ndevices: public private wg+\nenableIPv4Masquerade: true\nenableRuntimeDeviceDetection: true\nendpointRoutes:\n enabled: true\nenvoyConfig:\n secretsNamespace:\n create: false\nhostFirewall:\n enabled: true\nhostPort:\n enabled: true\nipam:\n mode: multi-pool\n operator:\n autoCreateCiliumPodIPPools:\n default:\n ipv4:\n cidrs:\n - 10.207.0.0/23\n maskSize: 28\n dashboards:\n enabled: true\n namespace: monitoring\n multiPoolPreAllocation: false\n prometheus:\n enabled: true\n labels:\n release: prometheus\n metricRelabelings: null\nipv4NativeRoutingCIDR: 10.207.0.0/19\nipv6:\n enabled: false\nk8s:\n requireIPv4PodCIDR: true\n requireIPv6PodCIDR: false\nk8sServiceHost: kube-api.example.com\nk8sServicePort: 443\nkubeProxyReplacement: true\nl7Proxy: true\nloadBalancer:\n acceleration: best-effort\n algorithm: maglev\n mode: dsr\nnodePort:\n enabled: true\noperator:\n dashboards:\n enabled: true\n namespace: monitoring\n prometheus:\n enabled: true\n interval: 60s\n labels:\n release: prometheus\n metricRelabelings: null\n replicas: 1\n rollOutPods: true\nprometheus:\n enabled: true\n serviceMonitor:\n enabled: true\n interval: 60s\n labels:\n release: prometheus\nrouting-mode: native\nroutingMode: native\nsecretsNamespace:\n create: false\n sync: false\nsocketLB:\n enabled: true\n hostNamespaceOnly: true\n\nwitch config above everything works as expected using public ip that way mentioned above.\nif you set this:\n\nbpf:\n datapathMode: netkit\n\neverything works as expected until a node get a public ip and sbr.\n\n### Cilium Version\n\n1.16.x/1.17.x\n\n### Kernel Version\n\n6.8.x\n\n### Kubernetes Version\n\n1.31.x\n\n### Regression\n\n_No response_\n\n### Sysdump\n\n_No response_\n\n### Relevant log output\n\nshell\n\n### Anything else?\n\n_No response_\n\n### Cilium Users Document\n\n- [ ] Are you a user of Cilium? Please add yourself to the Users doc\n\n### Code of Conduct\n\n- [x] I agree to follow this project's Code of Conduct","reference_answer":"Hah, okay, thanks for testing and taking a look. I presume NETKIT_SCRUB_NONE generally could be enough as an option anyway and if needed BPF prog could zero the data. I'll finalize and add a BPF selftest (next week) so that this can be submitted & merged then.","answer_document_id":"gh_comment_2378646870","silver_evidence_path":["gh_comment_2699445233","gh_issue_2551539057","gh_comment_2378646870"],"known_context_document_ids":["gh_issue_2892335118"],"evidence_issue_ids":[2892335118,2551539057],"source_repo_name":"cilium/cilium","source_issue_id":2892335118,"source_issue_url":"https://github.com/cilium/cilium/issues/37976","target_repo_name":"cilium/cilium","target_issue_id":2551539057,"target_issue_url":"https://github.com/cilium/cilium/issues/35060","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0288","query":"Ferdium won't launch after upgrading Ubuntu to 24.04 (using AppImage)?","query_context":"### Your issue\n\nFerdium is not opening anymore after upgrading ubuntu from 23.10 to the unreleased 24.04.\n\nThis is what I get. Even the help to get ferdium info is not available anymore.\n\nimage\n\nHowever this is the AppImage I am using.\n\nFerdium-linux-Portable-6.7.3-nightly.11-x86_64_4a1b12d6d452e18c9051545269e61317.AppImage\n\nLaunching it from the command line, this is the message I got.\n\nbash\nā ./Ferdium-linux-Portable-6.7.3-nightly.11-x86_64_4a1b12d6d452e18c9051545269e61317.AppImage \nQSocketNotifier: Can only be used with threads started with QThread\n[14565:0416/153718.391657:FATAL:setuid_sandbox_host.cc(158)] The SUID sandbox helper binary was found, but is not configured correctly. Rather than run without sandboxing I'm aborting now. You need to make sure that /tmp/.mount_FerdiuAUvtnU/chrome-sandbox is owned by root and has mode 4755.\n\nOS version\n\n~/Applications ā¦\nā lsb_release -a\nNo LSB modules are available.\nDistributor ID: Ubuntu\nDescription: Ubuntu Noble Numbat (development branch)\nRelease: 24.04\nCodename: noble","reference_answer":"Thank you for the suggestion!\n\nI have a few concerns about this:\n- It means that the installer will require root access.\n- Overwriting `/path/to/Joplin-2.14.20.AppImage` could give an attacker access to unprivileged user namespaces.\n - This would mean, however, that an attacker would already need to be able to write files and run code as a user with Joplin installed.\n- Uninstalling Joplin becomes a bit more complicated, particularly if multiple users on a computer have Joplin installed. In this case, the AppArmor profile also needs to be removed, but only if all users have uninstalled Joplin.\n - One solution could be to use a flag `--full-uninstall`.\n - Another solution could be to install the AppImage to a globally-accessible location (e.g. in `/usr`).\n\nSee also \n URL","answer_document_id":"gh_comment_2066582463","silver_evidence_path":["gh_comment_2067112679","gh_issue_2251907468","gh_comment_2066582463"],"known_context_document_ids":["gh_issue_2246674349"],"evidence_issue_ids":[2246674349,2251907468],"source_repo_name":"ferdium/ferdium-app","source_issue_id":2246674349,"source_issue_url":"https://github.com/ferdium/ferdium-app/issues/1694","target_repo_name":"laurent22/joplin","target_issue_id":2251907468,"target_issue_url":"https://github.com/laurent22/joplin/issues/10332","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0289","query":"Request to Submit Chinese Translation Documentation?","query_context":"### Description:\nI am ar0m(JinDongJie), and I am a big fan of the Hyprland project. I would like to help more Chinese users to better utilize this desktop manager. I plan to contribute by translating the project documentation into Chinese and am willing to dedicate my time and skills to complete this task.\n\n### Plan and Approach:\n\n1. I will translate the original project documentation into Chinese step by step, ensuring accuracy and fluency in the translation.\n2. I will create a new branch(or a better way) to submit the translated documentation and will maintain regular updates to keep it synchronized.\n3. I will collaborate with the community and maintainers to ensure the quality and accuracy of the translated documentation.\n4. I hope that this translated documentation will help more Chinese users to easily utilize the Hyprland project.\n\n### Inquiries:\n I have reviewed the current documentation website, and it seems that there is no language switch feature available. In the future, would it be possible to implement a language selection feature within the project? This feature could allow users to choose their preferred language for the documentation, enhancing accessibility for a wider audience.\n\n### Additional Information:\n If you believe that this translation work is valuable and approve of my contribution, I am eager to contribute to the project. I look forward to working with you to make the Hyprland project more user-friendly and inclusive.\n I have used the translation website weblate.org to translate some other open-source projects that I like. I believe I am capable of handling this task.\n\nThank you for your time and attention!","reference_answer":"we can't, I believe.\n\nBesides, the speed at which arch wikis get out of date is _far_ slower than hyprland. We've had like at least 3 breaking changes in your config alone since latest release 0.35 like 2-3 weeks ago.","answer_document_id":"gh_comment_1952272540","silver_evidence_path":["gh_comment_2026937642","gh_issue_2141917296","gh_comment_1952272540"],"known_context_document_ids":["gh_issue_2214838215"],"evidence_issue_ids":[2214838215,2141917296],"source_repo_name":"hyprwm/hyprland-wiki","source_issue_id":2214838215,"source_issue_url":"https://github.com/hyprwm/hyprland-wiki/issues/560","target_repo_name":"hyprwm/hyprland-wiki","target_issue_id":2141917296,"target_issue_url":"https://github.com/hyprwm/hyprland-wiki/issues/478","split":"test","quality_score":76.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0290","query":"p384: arithmetic + ECDSA support?","query_context":"Hi,\n\nIs there a way to compute and verify p384 signatures yet?\n\n`p384` has an `ecdsa` feature, but I couldn't get anything done with it.\n`ProjectiveArithmetic` is not implemented for `NistP384`. The `arithmetic` feature of the `elliptic_curve` crate isn't set, so I wasn't even able to manually compute a public key.\n\nIs it possible to use it in a similar way as `p256` and `k256`? Or to use it for ECDSA at all? Or is it still a work in progress?\n\nThanks for your help :)","reference_answer":"#589 adds `const fn` support to field elements\n\nAfter that it would be nice to expose `const fn` wrappers for the field arithmetic functions, and then rewrite the various constants back into canonical form, transforming them into Montgomery form at compile time.\n\nAnd after that, I'm good to ship it!","answer_document_id":"gh_comment_1145056951","silver_evidence_path":["gh_comment_1138824583","gh_issue_1249843697","gh_comment_1145056951"],"known_context_document_ids":["gh_issue_754581168"],"evidence_issue_ids":[754581168,1249843697],"source_repo_name":"RustCrypto/elliptic-curves","source_issue_id":754581168,"source_issue_url":"https://github.com/RustCrypto/elliptic-curves/issues/240","target_repo_name":"RustCrypto/elliptic-curves","target_issue_id":1249843697,"target_issue_url":"https://github.com/RustCrypto/elliptic-curves/issues/566","split":"test","quality_score":87.35,"annotation_level":"silver"}
{"query_id":"cross_issue_0291","query":"SQLalchemy cast to String not working anymore?","query_context":"first of all: I really appreciate this project, it helps me a lot everyday. Thank you @laughingman7743 and other contributors!\n\nI have a question/issue report: with the last realease (v2.5.0) some features changed (probabily this #286) and something that was working very well with version 2.4.0 is not working anymore.\n\nLet's say that I have an integer column '_integer_col_' in the table '_some_table_' in the database '_some_db_'.\n\nwith v2.4.0 the SQLalchemy query\n\npython\nselect(\n some_table.integer_col.cast(String)\n)\n\nproduces the following SQL\n\nSQL\nSELECT CAST(\"some_db\".\"some_table\".\"integer_col\" AS VARCHAR)\nFROM \"some_db\".\"some_table\"\n\nwhich is perfect.\n\nwhile with v2.5.0 the same query produces the following SQL\n\nSQL\nSELECT CAST(\"some_db\".\"some_table\".\"integer_col\" AS STRING)\nFROM \"some_db\".\"some_table\"\n\nwhich return the following error in Athena\n\n`SYNTAX_ERROR: line xxx:yyy: Unknown type: string`\n\nAs workround I could change the query as follows\n\npython\nselect(\n some_table.integer_col.cast(VARCHAR(n))\n)\n\nwhich, however, is not very convenient to use since sometimes is not possible to know the length of the string n.\n\nWhat I am missing?","reference_answer":"In the case of DDL, I get an error if the Integer type is not INT.\n\nI removed table constraints and fixed the INT type handling in the following branches.\n URL \nPlease check it out.","answer_document_id":"gh_comment_1046209519","silver_evidence_path":["gh_comment_1062512952","gh_issue_1139298327","gh_comment_1046209519"],"known_context_document_ids":["gh_issue_1162936391"],"evidence_issue_ids":[1162936391,1139298327],"source_repo_name":"laughingman7743/PyAthena","source_issue_id":1162936391,"source_issue_url":"https://github.com/laughingman7743/PyAthena/issues/289","target_repo_name":"laughingman7743/PyAthena","target_issue_id":1139298327,"target_issue_url":"https://github.com/laughingman7743/PyAthena/issues/279","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0292","query":"Hiding long sections partially?","query_context":"### Context\n\nThis request is a follow to a GitHub discussion.\n\n### Description\n\nI write documentation and tutorials which may have long sections, between two options. For example:\n\nmarkdown\nYou could do it this way:\n\n- long set of instructions\n\nOr this other way:\n\n- Another long set of instructions\n\nI would like the ability to show a preview of long sections of texts and fold/unfold to see the full text. \n\n### Related links\n\n- AWS documentation site with this capability\n\n### Use Cases\n\nOn a long documentation page, not all sections are relevant to the reader, or sections which contain explanations and long code blocks. I would like readers to judge whether they need to see and read those sections, or continue reading the rest of the documentation.\nI expect this to improve readability of long pages. \n\n### Visuals\n\nAn example on how this is done on this AWS documentation site:\n\nimage\n\nAs you can see, some sections are partially hidden, until the reader presses \"Show more\", which unfolds the section.\n\nimage\n\nOne can then click \"Show less\" to fold the section back.\n\n### Before submitting\n\n- [X] I have read and followed the change request guidelines.\n- [X] I have verified that my idea is a change request and not a bug report.\n- [X] I have ensured that, to the best of my knowledge, my idea will benefit the entire community.\n- [X] I have included relevant links to the documentation, related issues, and discussions to underline the need for my idea.","reference_answer":"Nice! If you find some time, could you isolate the necessary CSS changes and send a PR? One problem with the label approach is: it's not accessible. if you add `tabIndex=0` to both `label` elements, you can open it with keyboard. Also, proper ARIA attributes are probably a good idea.","answer_document_id":"gh_comment_1440356043","silver_evidence_path":["gh_comment_1793475561","gh_issue_1564074000","gh_comment_1440356043"],"known_context_document_ids":["gh_issue_1977254056"],"evidence_issue_ids":[1977254056,1564074000],"source_repo_name":"squidfunk/mkdocs-material","source_issue_id":1977254056,"source_issue_url":"https://github.com/squidfunk/mkdocs-material/issues/6289","target_repo_name":"squidfunk/mkdocs-material","target_issue_id":1564074000,"target_issue_url":"https://github.com/squidfunk/mkdocs-material/issues/4964","split":"test","quality_score":94.85,"annotation_level":"silver"}
{"query_id":"cross_issue_0293","query":"The reply url host my.home-assistant.io doesn't match with the ones configured on the application?","query_context":"### Checks\n\n- [X] I have searched the existing issues and no issue is describing my issue\n- [X] I have checked the documentation\n- [X] I have installed/try to install the latest version\n\n### The problem\n\nHi @andrea-mattioli I tried to install your integration several times but when I try to authorize the connection thought the link created in the installation phase I receive this message:\n\nI inserted all my datas different time but with now other results but this.\n\nI notice that in the link yo authorize the app (second picture down) there is still the \" URL is this normal?\n\nI the first window of configuration as url to access to HA I use my domain.\n\nsmall note to connect to Ha from internet I use cloudflared on Docker\n\nthanks for your help\n\n` \n \nĀ | Ā \n-- | --\nerror | \"invalid_request\"\nerror_description | \"The reply url host my.home-assistant.io doesn't match with the ones configured on the application\"\n\n \n \n `\n\nimmagine\n\nimmagine\n\n### On which thermostat you have the issue?\n\nX8000\n\n### Which version of the Bticino X8000 component are you using?\n\n0.2.0\n\n### Which version of Home Assistant are you using?\n\n2024.3.3\n\n### What type of installation are you running?\n\nHome Assistant Core\n\n### Anything in the logs that might be useful for me?\n\n_No response_\n\n### Additional information\n\n_No response_","reference_answer":"Make a test by adding all the subnets, if it works then write to Legrand and ask which ones you need to implement and remove the rest!\n\nAlso you can try make a POST (use internet connection):\n\nimport requests\nimport json\n\ndef send_post_request(url, payload):\n headers = {'Content-Type': 'application/json'}\n try:\n response = requests.post(url, data=json.dumps(payload), headers=headers)\n if response.status_code == 200:\n print(\"POST request successful!\")\n print(\"Response:\")\n print(response.json())\n else:\n print(\"POST request failed with status code:\", response.status_code)\n print(\"Response:\")\n print(response.text)\n except Exception as e:\n print(\"An error occurred:\", e)\n\n# payload JSON\npayload = {\n \"key1\": \"value1\",\n \"key2\": \"value2\"\n}\n\n# URL\nurl = \" URL \n\n# POST\nsend_post_request(url, payload)\n\nYou can find the correct endpoint url via Legrand API or via my old integration URL","answer_document_id":"gh_comment_1943458986","silver_evidence_path":["gh_comment_2033759793","gh_issue_2120555193","gh_comment_1943458986"],"known_context_document_ids":["gh_issue_2213661334"],"evidence_issue_ids":[2213661334,2120555193],"source_repo_name":"andrea-mattioli/bticino_x8000_component","source_issue_id":2213661334,"source_issue_url":"https://github.com/andrea-mattioli/bticino_x8000_component/issues/19","target_repo_name":"andrea-mattioli/bticino_x8000_component","target_issue_id":2120555193,"target_issue_url":"https://github.com/andrea-mattioli/bticino_x8000_component/issues/9","split":"test","quality_score":94.45,"annotation_level":"silver"}
{"query_id":"cross_issue_0294","query":"How to make snapshots work on self-hosted ?","query_context":"Hey there šš¼ \n\n@yohanboniface and I can't quite seem to figure out how to make snapshots work on our Grist instance š¤·š¼ \n\nEvery time we open the \"Document History\" tool, there is only one snapshot which is from a few seconds ago : \n\n
pystac_client.item_search.ItemSearch:\n location_point = Point(x_coord, y_coord)\n collection = 'sentinel-2-l2a'\n start_date = None # earliest available\n end_date = dt.today().strftime(\"%Y-%m-%d\")\n\n # get a pystac client going to search the images\n client = pystac_client.Client.open(\" URL \n # From all days available with less than 5% cloud cover, get the 5\n # least cloudy days.\n search_results = client.search(\n collections=[collection],\n intersects=location_point,\n datetime=[start_date, end_date],\n query=[\"eo:cloud_cover \n ds = stac.load(\n ^^^^^^^^^^\n File \"/Users/jkibele/miniforge3/envs/pystac_prob_min/lib/python3.11/site-packages/odc/stac/_stac_load.py\", line 360, in load\n _parsed = list(parse_items(items, cfg=stac_cfg, md_plugin=md_plugin))\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/Users/jkibele/miniforge3/envs/pystac_prob_min/lib/python3.11/site-packages/odc/stac/_mdtools.py\", line 745, in parse_items\n proc.update(item)\n File \"/Users/jkibele/miniforge3/envs/pystac_prob_min/lib/python3.11/site-packages/odc/stac/_mdtools.py\", line 574, in update\n self._bootstrap(item)\n File \"/Users/jkibele/miniforge3/envs/pystac_prob_min/lib/python3.11/site-packages/odc/stac/_mdtools.py\", line 557, in _bootstrap\n _, band2grid = compute_eo3_grids(data_bands)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/Users/jkibele/miniforge3/envs/pystac_prob_min/lib/python3.11/site-packages/odc/stac/_mdtools.py\", line 317, in compute_eo3_grids\n geoboxes = dicttoolz.valmap(asset_geobox, assets)\n ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n File \"/Users/jkibele/miniforge3/envs/pystac_prob_min/lib/python3.11/site-packages/toolz/dicttoolz.py\", line 85, in valmap\n rv.update(zip(d.keys(), map(func, d.values())))\n File \"/Users/jkibele/miniforge3/envs/pystac_prob_min/lib/python3.11/site-packages/odc/stac/_mdtools.py\", line 277, in asset_geobox\n raise ValueError(\nValueError: The asset must have the following fields (from the projection extension): shape, transform, and one of an epsg, wkt2, or projjson\npython-BaseException\n\nIf I force `pystac==1.11` (instead of version 1.12) by creating another conda env with this command: `mamba create -n pystac_prob_fix python=3.11 pystac=1.11 pystac-client odc-stac shapely` and run the same code, then I get the expected result which is an xarray Dataset containing the retrieved items. \n\nThe problem seems to have something to do with how the projection extension is working (the proj `crs_string` is coming back as `None`), but I haven't had time to dig any further at this point.\n\nIt seems that at least one other person was having the same problem: URL (I'm the one that commented there, not the original poster).","reference_answer":"Looks like this is due to `from_file` calling `from_dict` with `migrate = true` (o = cls.from_dict(d, href=href, migrate=True, preserve_dict=False)) but the actual default value (which **pystac-client** uses) is `False` (migrate: bool = False,). I thinking defaulting to `True` in `from_dict` _should_ make sense, as migration will become a more-and-more common operation as there is more hetergenous STAC (and STAC extension) versions in the wild. I'll cook up a PR.","answer_document_id":"gh_comment_2612469196","silver_evidence_path":["gh_comment_2614627101","gh_issue_2808463771","gh_comment_2612469196"],"known_context_document_ids":["gh_issue_2811773584"],"evidence_issue_ids":[2811773584,2808463771],"source_repo_name":"stac-utils/pystac","source_issue_id":2811773584,"source_issue_url":"https://github.com/stac-utils/pystac/issues/1507","target_repo_name":"stac-utils/pystac","target_issue_id":2808463771,"target_issue_url":"https://github.com/stac-utils/pystac/issues/1503","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0300","query":"AutoHUD Compatibility?","query_context":"When using this mod with the AutoHUD mod, i noticed that the items in the hotbar are misaligned. As shown here:\n2023-11-22_23 51 43\n\nAfter digging around in the AutoHUD settings a little bit, i found that if i turned off the Fade option then the items were aligned, but the item borders from the Item Borders mod were not:\n2023-11-23_00 05 04\n\nI am using version 1.20.1 of Minecraft on Quilt, with the newest version of both Raised and AutoHUD. And i have my Hud height at 10 in the Raised settings. (turning the Support option in the Raised settings on or off didn't seem to be changing anything)\n\nThanks!","reference_answer":"The reason this is not an issue with 2.x or earlier is because Raised worked differently back then. Raised modified the Y value which was inherited down the line all the way to the hotbar item's render method which this mod took its Y value from. Now Raised translates the matrix stacks instead. This mod does not use the stack for the hotbar for some reason. The two ways cannot be done at the same time or else it would just double the vanilla stuff.","answer_document_id":"gh_comment_1766454842","silver_evidence_path":["gh_comment_1823677525","gh_issue_1941600748","gh_comment_1766454842"],"known_context_document_ids":["gh_issue_2007184420"],"evidence_issue_ids":[2007184420,1941600748],"source_repo_name":"yurisuika/Raised","source_issue_id":2007184420,"source_issue_url":"https://github.com/yurisuika/Raised/issues/75","target_repo_name":"yurisuika/Raised","target_issue_id":1941600748,"target_issue_url":"https://github.com/yurisuika/Raised/issues/65","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0301","query":"`setTimeout().unref()` is not a function?","query_context":"Seeing in shared process:\n\nbootstrap-window.js:253 TypeError: setTimeout(...).unref is not a function\n at IncomingMessage. (Sender.ts:138)\n at IncomingMessage.emit (events.js:327)\n at endReadableNT (internal/streams/readable.js:1327)\n at processTicksAndRejections (internal/process/task_queues.js:80)\n\nOriginates from `Sender.ts` of app insights it seems.\n\nimage\n\n URL","reference_answer":"FYI we're still hitting this in VS Code where we run the module in an Electron window. URL \n\nEven though it doesn't look like you specifically target web, you can prevent this exception by supporting both environments like so:\n\nts\nconst x = setTimeout(...) as number | NodeJS.Timeout;\nif (typeof x !== 'number') {\n x.unref();\n}","answer_document_id":"gh_comment_1144972583","silver_evidence_path":["gh_comment_1098727526","gh_issue_292506429","gh_comment_1144972583"],"known_context_document_ids":["gh_issue_1101670653"],"evidence_issue_ids":[1101670653,292506429],"source_repo_name":"microsoft/vscode","source_issue_id":1101670653,"source_issue_url":"https://github.com/microsoft/vscode/issues/140624","target_repo_name":"Microsoft/ApplicationInsights-node.js","target_issue_id":292506429,"target_issue_url":"https://github.com/Microsoft/ApplicationInsights-node.js/issues/367","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0302","query":"Feature request: Code generate support R language (RCurl package or httr pachage)?","query_context":"1. Postman Version: Postman v4.10.7\n 2. App (Chrome app or Mac app): Windows APP\n 3. OS details: Windows 7 / 10 64 Bit \n\ncould it possible to add R Language support in code generation function?\nFor example, could support generate code for R Language's RCurl or httr package.","reference_answer":"@nviraj Thank you for sharing this. This was helpful.\nWe have decided we'll add support for both. Because even ~370k downloads a month is a good number. \n\nWe'll keep this thread up-to-date with the progress and also share sample snippets.","answer_document_id":"gh_comment_1077494599","silver_evidence_path":["gh_comment_1076363033","gh_issue_712110683","gh_comment_1077494599"],"known_context_document_ids":["gh_issue_223283519"],"evidence_issue_ids":[223283519,712110683],"source_repo_name":"postmanlabs/postman-app-support","source_issue_id":223283519,"source_issue_url":"https://github.com/postmanlabs/postman-app-support/issues/2968","target_repo_name":"postmanlabs/postman-code-generators","target_issue_id":712110683,"target_issue_url":"https://github.com/postmanlabs/postman-code-generators/issues/347","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0303","query":"Error with --snapshot-move-data Flag in Velero with Rook-Ceph Storage backup time?","query_context":"Description\nI am encountering an issue while attempting to back up and restore pods using Velero with Rook-Ceph as the storage backend. The error occurs when using the --snapshot-move-data flag for CSI snapshot data movement. Detailed steps and error messages are provided below.\n\nSteps to Reproduce\n\n- Setup Environment:\nVelero configured with Rook-Ceph as the storage backend.\nKubernetes cluster managed by Kubespray.\n- Backup Pod:\nExecute the backup command with the --snapshot-move-data flag.\nvelero backup create media6 --snapshot-move-data\n- Encounter Error:\nBackup process fails\n\nCurrent Issue\nThe backup processes fail with an error stating partially failed.\n\nExpected Outcome\n⢠Successful backup of pods using the --snapshot-move-data flag with Velero and Rook-Ceph.\n⢠Successful restore of the backed-up data without encountering the DataUpload error.\n\nActual Outcome\n⢠The backup process fails with an error related to partially failed.\n\nAdditional Information\n⢠Current Environment:\n- Kubernetes cluster managed by Kubespray.\n- Velero for backup operations.\n- Rook-Ceph as the storage backend.\n\nRequest for Assistance\nI would appreciate guidance on the following:\n1. Any additional configuration steps or best practices for using the --snapshot-move-data flag with Velero and Rook-Ceph.\n2. Clarification on whether this is a known issue and if there are any patches or updates available to address it.\n\nI have now installed the node-agent, and it is running. I attempted to back up, but I'm encountering a error.\n\nScreenshot_752\nScreenshot_749\nScreenshot_751\nScreenshot_750\n\nHere is the related bundle file:\nbundle-2024-08-06-17-38-42.tar.gz","reference_answer":"@Lyndon-Li given that even \"no nodes available\" isn't necessarily permanent, I'm wondering whether the message-parsing approach might be too error-prone, missing edge cases, etc.","answer_document_id":"gh_comment_2183289694","silver_evidence_path":["gh_comment_2272783663","gh_issue_2357436918","gh_comment_2183289694"],"known_context_document_ids":["gh_issue_2452560801"],"evidence_issue_ids":[2452560801,2357436918],"source_repo_name":"vmware-tanzu/velero","source_issue_id":2452560801,"source_issue_url":"https://github.com/vmware-tanzu/velero/issues/8092","target_repo_name":"vmware-tanzu/velero","target_issue_id":2357436918,"target_issue_url":"https://github.com/vmware-tanzu/velero/issues/7898","split":"test","quality_score":85.78,"annotation_level":"silver"}
{"query_id":"cross_issue_0304","query":"Feature requests - hotkeys for cycling spaces, mouse pointer warp with focus management?","query_context":"Love this app and excited to see where it goes. Using multiple spaces is a great way to organize but the delay when switching (especially bad at 120hz) is nearly intolerable. It also exposed me to your Snippety app which I will also have to check out now.\n\nI have a few suggestions, feel free to ignore if they do not fit with your plans for the app.\n\n1. I am very used to using the built-in gesture to switch spaces (3/4 finger swipe left right when enabled in settings) and would love a way to assign shortcuts to cycle between the different \"flash spaces\" that I have created, like Ctrl+Left|Right does for the built-in spaces feature. I used BetterTouchTool to configure the 3-finger swipe left/right to toggle between two defined spaces, but it would be nice to have it switch between all of the ones I've created. I could probably make this work with BTT using a variable to keep track of the current space but it seems worth asking.\n\n2. When switching app focus with the keyboard shortcuts it would be nice if the mouse pointer also moved to the focused application.\n\n3. While I'm still adjusting to the auto-hiding of apps I occasionally feel like I \"lose\" an app (like the settings menu I've opened to tweak something) because I switched spaces. Maybe there could be a way to assign windows that get created in an existing space to a specific defined space when you switch rather than hiding from all spaces? OTOH I will probably get used to the behavior and this may be unnecessary long term.","reference_answer":"This change shouldn't affect the performance. \n\nThe performance is the main goal of this project, I started it because Aerospace is too slow and there is no plan to fix it. See more here: #1 \n \n\nYes, I use native hiding, Aerospace hides apps by hiding them in screen corners, but I think the main issue with Aerospace is that it checks all windows every time you try changing something which is inefficient but probably necessary to implement tiling management. This project doesn't need to care about windows placement so it's easier to make it faster.","answer_document_id":"gh_comment_2610780059","silver_evidence_path":["gh_comment_2613453526","gh_issue_2807392113","gh_comment_2610780059"],"known_context_document_ids":["gh_issue_2810332423"],"evidence_issue_ids":[2810332423,2807392113],"source_repo_name":"wojciech-kulik/FlashSpace","source_issue_id":2810332423,"source_issue_url":"https://github.com/wojciech-kulik/FlashSpace/issues/12","target_repo_name":"wojciech-kulik/FlashSpace","target_issue_id":2807392113,"target_issue_url":"https://github.com/wojciech-kulik/FlashSpace/issues/3","split":"test","quality_score":78.12,"annotation_level":"silver"}
{"query_id":"cross_issue_0305","query":"Add small caps Ʀ and Ćø?","query_context":"If I download Besley* from URL I get an old version (1.8.3) which is useless in Norwegian because of the Ćø's. If I download from github I get version 2.000 which is equally useless for the same reason. But if I download from Google fonts I get version 2.001 which is perfect! This version is called Besley (without an asterisk) and contains no weight called fatface ā but a Ā«blackĀ» which looks very similiar. Will you update the fonts ā at least in indestructibletype.com?","reference_answer":"Stop being such a rude asshole to Owen.\n\nHe did fix it.\n\nimage\n\nIt's possible he didn't update the TTF's distributed, or for some other reason, you're still using an old font. Making a duplicate issue instead of replying in the existing one with something nicer like \"it still doesn't work for me, any idea why?\" will get you a lot more traction.\n\nClosed.","answer_document_id":"gh_comment_1377080794","silver_evidence_path":["gh_comment_1377117060","gh_issue_1527176268","gh_comment_1377080794"],"known_context_document_ids":["gh_issue_998409095"],"evidence_issue_ids":[998409095,1527176268],"source_repo_name":"indestructible-type/Besley","source_issue_id":998409095,"source_issue_url":"https://github.com/indestructible-type/Besley/issues/19","target_repo_name":"indestructible-type/Besley","target_issue_id":1527176268,"target_issue_url":"https://github.com/indestructible-type/Besley/issues/32","split":"test","quality_score":86.67,"annotation_level":"silver"}
{"query_id":"cross_issue_0306","query":"Update min LibCST version when it supports Python 3.9 relaxed decorator syntax?","query_context":"python\nwith (a() as b, c() as d):\n pass\n\n@(lambda f: f)\ndef g():\n pass\n\nis valid Python 3.9 syntax which triggers URL and, in `--refactor` mode, URL and URL Once these upstream bugs are fixed, we should:\n\n- [x] update the minimum version of Black\n- [x] update the minimum version of LibCST","reference_answer":"Progress update: I have a working CI job that produces binary wheels for LibCST with the new rust-based parser for any combination of python (3.6, 3.7, 3.8, 3.9, 3.10) & (macos x86_64, macos arm64, 32bit linux, 64bit linux, 32bit windows, 64bit windows).\n\nExample artifacts at URL (it's a zipfile with wheels in it).\nYou can `pip install` the relevant wheel from the zip on the above platforms and run\n\nLIBCST_PARSER_TYPE=native python -c 'import libcst; print(libcst.parse_module(\"foo(a, b)\"))'\n\nTo see the new parser in action. Note: match statement is not implemented yet in these.","answer_document_id":"gh_comment_996123089","silver_evidence_path":["gh_comment_1011485391","gh_issue_602426115","gh_comment_996123089"],"known_context_document_ids":["gh_issue_896314972"],"evidence_issue_ids":[896314972,602426115],"source_repo_name":"Zac-HD/shed","source_issue_id":896314972,"source_issue_url":"https://github.com/Zac-HD/shed/issues/18","target_repo_name":"Instagram/LibCST","target_issue_id":602426115,"target_issue_url":"https://github.com/Instagram/LibCST/issues/285","split":"test","quality_score":93.48,"annotation_level":"silver"}
{"query_id":"cross_issue_0307","query":"Create a bidscrambler for EEG data in the BrainVision Core format?","query_context":"The BrainVision Core file format is one of the file formats for EEG data supported in BIDS. Compared to the EEGLAB file format (which is also supported), it is much simpler to read and write. Hence I propose that we first implement a scrambler for this format. \n\nOne EEG recording consists of an ascii `.vhdr` (header) and `.vmrk` (marker/events/trigger) file, plus a data file with the actual EEG data. The data file often has the extension `.eeg`, but that extension is not required. The data file name (including extension) is specified _inside_ the header file. \n\nBoth header and marker file resemble the windows-ini and the TOML file format. \n\nIn principle the data file can be either ASCII or binary, and either serialized or multiplexed (and all those files exist in the wild), but the formal 1.0 specification PDF prescribes that it must be multiplexed binary (which makes things much simpler).","reference_answer":"Hi @schoffelen could you test the implemented scrambling of the BrainVision format EEG data? Starting from the original dataset of 2.4, you can use URL to make a BrainVision formatted version for some of the subjects, and then apply BIDScramble. Following scrambling of the EEG data (with the option `brainvision`, the code for that is in URL the EEG time series should contain random noise. It seems to work in my hands, so I hope that testing for you will be easy.","answer_document_id":"gh_comment_2522984199","silver_evidence_path":["gh_comment_2345198900","gh_issue_2515150307","gh_comment_2522984199"],"known_context_document_ids":["gh_issue_2469996292"],"evidence_issue_ids":[2469996292,2515150307],"source_repo_name":"SIESTA-eu/wp15","source_issue_id":2469996292,"source_issue_url":"https://github.com/SIESTA-eu/wp15/issues/28","target_repo_name":"SIESTA-eu/wp15","target_issue_id":2515150307,"target_issue_url":"https://github.com/SIESTA-eu/wp15/issues/31","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0308","query":"DenoisedPathTracer does not appear as an option in the Renderer drop-down menu?","query_context":"As stated. It is just not there. I got two other options though - ALBEDO and NORMAL. I have no idea what to do with this.","reference_answer":"The README that you read is for a WIP newer version of the plugin that is not yet released. The `DenoisedPathTracer` is not in the 0.4.0 version of the plugin. This README is for the 0.4.0 version of the Denoiser plugin.","answer_document_id":"gh_comment_1384481575","silver_evidence_path":["gh_comment_1500711719","gh_issue_1535398278","gh_comment_1384481575"],"known_context_document_ids":["gh_issue_1659169861"],"evidence_issue_ids":[1659169861,1535398278],"source_repo_name":"chunky-dev/chunky-denoiser","source_issue_id":1659169861,"source_issue_url":"https://github.com/chunky-dev/chunky-denoiser/issues/39","target_repo_name":"chunky-dev/chunky-denoiser","target_issue_id":1535398278,"target_issue_url":"https://github.com/chunky-dev/chunky-denoiser/issues/37","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0309","query":"FkProducer.java:12: Fake Producer implementation?","query_context":"The puzzle `10-404e50f4` from #10 has to be resolved: \n\n URL \n\nThe puzzle was created by @h1alexbel on 24-Feb-23. \n\nEstimate: 45 minutes, role: DEV. \n\nIf you have any technical questions, don't ask me, submit new tickets instead. The task will be \\\"done\\\" when the problem is fixed and the text of the puzzle is _removed_ from the source code. Here is more about PDD and about me.","reference_answer":"@h1alexbel this is your task now, please go ahead. Deadline (when this ticket should be closed) is ``2023-06-22T20:09:04.176448``.\n\nEstimation here is ``60 minutes``, that's how much you will be paid.\n\nRemember, you don't have to solve everything in this ticket - you can solve it partially and leave ``todo`` markers in the code, which will become future tasks.\n\nIf you have any questions don't ask me, I'm not a technical person. Open new tickets instead.\n\nIf you don't have time or simply don't want to work on this, you can always resign.","answer_document_id":"gh_comment_1588019589","silver_evidence_path":["gh_comment_1589384089","gh_issue_1753094223","gh_comment_1588019589"],"known_context_document_ids":["gh_issue_1598853645"],"evidence_issue_ids":[1598853645,1753094223],"source_repo_name":"eo-cqrs/eo-kafka","source_issue_id":1598853645,"source_issue_url":"https://github.com/eo-cqrs/eo-kafka/issues/44","target_repo_name":"eo-cqrs/eo-kafka","target_issue_id":1753094223,"target_issue_url":"https://github.com/eo-cqrs/eo-kafka/issues/364","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0310","query":"switch-input-source-backward need to be handled as well, in addition to switch-input-source?","query_context":"1) The \"switch-input-source-backward\" binding should be handled in addition to \"switch-input-source\".\n\nYou can see it using next command line output:\n\n gsettings list-recursively org.gnome.desktop.wm.keybindings|grep switch-input \n\nBy default Super+Space switches layout forward, while Super+Shift+Space switches it backward.\nSuppressing of the popup window works for \"forward\" switching at the moment, while Super+Shift+Space still shows the popup.\n\nIt also can be reproduced using next command line settings for Ctrl+Shift switch:\n\n gsettings set org.gnome.desktop.wm.keybindings switch-input-source \"[' Ctrl_L']\" \n gsettings set org.gnome.desktop.wm.keybindings switch-input-source-backward \"[' Shift_L']\" \n \nor next ones for Alt+Shift keystroke:\n\n gsettings set org.gnome.desktop.wm.keybindings switch-input-source \"[' Alt_L']\" \n gsettings set org.gnome.desktop.wm.keybindings switch-input-source-backward \"[' Shift_L']\" \n\nThat way Ctrl+Shift or Alt+Shift keystroke will act just like it works in Windows, but the popup window will still appear for each second Ctrl+Shift or Alt+Shift stroke from time to time (not each time though).\n\n2) Also it would be nice to integrate that Ctrl_L and Shift_L (or Alt_L and Shift_L) hack somewhere in plugin settings as option, because it's not obvious how to obtain Windows like keyboard layout switching \"out of the box\". \nThe default Super+Space combination is not so \"quick\" as for me.","reference_answer":"I can't reproduce :-( \nAt least not when tested on _Wayland_.\nAlso tested with AND without a custom key bound to the switching.","answer_document_id":"gh_comment_1656991037","silver_evidence_path":["gh_comment_1372802559","gh_issue_1521435240","gh_comment_1656991037"],"known_context_document_ids":["gh_issue_1511165170"],"evidence_issue_ids":[1511165170,1521435240],"source_repo_name":"ankostis/gnome-shell-quick-lang-switch","source_issue_id":1511165170,"source_issue_url":"https://github.com/ankostis/gnome-shell-quick-lang-switch/issues/4","target_repo_name":"ankostis/gnome-shell-quick-lang-switch","target_issue_id":1521435240,"target_issue_url":"https://github.com/ankostis/gnome-shell-quick-lang-switch/issues/5","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0311","query":"J2objc 3.0.0 and JDK 17?","query_context":"Hello J2OBJC team,\nI am new to J2OBJC. I saw that there was version 3.0 but it seems it is not an official release. I have two questions below:\n1. Does j2objc 3.0.0 support Java JDK 17?\n2. When will there be an official release?\n\nDeveloping and maintaining J2OBJC is a great thing, thank you for your effort. I am looking forward to your response.","reference_answer":"That's tough to answer with a yes or no, as there are really three questions with this one:\n\n1. Does j2objc support all Java 17 language features?\n2. Does j2objc support new Java 17 JRE API?\n3. Does j2objc run on Java 17?\n\n1) AFAIK, j2objc supports the latest language features, like text blocks and switch expression statements. Much of that support is free, because j2objc uses javac as its front-end; for example, javac converts text blocks into regular strings, so j2objc didn't need to be updated to support that feature.\n\n2) No, J2ObjC's JRE is a fork of Android's libcore library (its JRE), so if it's not available in Android, it's not available on iOS. That's intentional, as the purpose of J2ObjC is to support shared Java across an app's clients, not to be a complete Java platform (that's why we don't/can't call it \"Java\").\n\n3) No, because the javac team (see 1)) keeps changing access to its packages. So it works on Java 11, but it is currently broken on Java 17 until someone fixes the necessary flags (contributions welcome!).\n\nThe Android Gradle Plugin should be able to run command-line tools like j2objc in a separate shell (and likely already does). So try installing both Java 17 and Java 11 on your system, with the j2objc action defined by the flags in the j2objc.sh script. That script is also where the flags aren't correct for Java 17, so if you can fix them, great!","answer_document_id":"gh_comment_1552066470","silver_evidence_path":["gh_comment_2639265205","gh_issue_1714092926","gh_comment_1552066470"],"known_context_document_ids":["gh_issue_2325110356"],"evidence_issue_ids":[2325110356,1714092926],"source_repo_name":"google/j2objc","source_issue_id":2325110356,"source_issue_url":"https://github.com/google/j2objc/issues/2345","target_repo_name":"google/j2objc","target_issue_id":1714092926,"target_issue_url":"https://github.com/google/j2objc/issues/2095","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0312","query":"docs: Add a mention for how to glob image files (frontend bundler)?","query_context":"Currently it seems that if you want to use `webpack_path` with an image in `frontend/images/`, it's not possible if the same image isn't used in a JS or CSS file (e.g. `import \"../images/file.png\"` in `frontend/javascript/index.js`).\n\nThis limitation isn't mentioned anywhere in the docs, as far as I can see.\n\n**Bridgetown Version**: 0.21.5\n\n**To Reproduce**\n\n1. Create a fresh Bridgetown site\n2. Add an image to `frontend/images/`\n3. Try to use that file on a liquid page (e.g. ` `)\n\n**Current behavior**\n\nAn opaque error is printed to the logs:\n\n[Bridgetown] Webpack: There was an error parsing your images/favicon.png file. Please check your images/favicon.png file for any errors.\n[Bridgetown] Webpack: There was an error parsing your images/favicon.png file. Please check your images/favicon.png file for any errors.\n[Bridgetown] Webpack: There was an error parsing your images/favicon.png file. Please check your images/favicon.png file for any errors.\n[Bridgetown] Webpack: There was an error parsing your images/favicon.png file. Please check your images/favicon.png file for any errors.\n[Bridgetown] Webpack: There was an error parsing your images/favicon.png file. Please check your images/favicon.png file for any errors.\n[Bridgetown] Webpack: There was an error parsing your images/favicon.png file. Please check your images/favicon.png file for any errors.\n\nAnd the emitted mark-up is:\n\n \n\n**Expected behavior**\n\nI would expect, based on the documentation, to be able to use any image from `frontend/` with the `#webpack_path` helper to take advantage of file hashes etcā¦\n\n**Screenshots**\n\nā\n\n**Computing environment (please complete the following information):**\n - OS: macOS Big Sur\n - Browser: any browser\n - Browser Version ā\n - Ruby Version: 2.6.6\n\n**Additional context**\n\nā","reference_answer":"I looked into this a bit. For my own reference, here's a more concrete example:\n\n* `entry.js`:\n\n \njs\n console.log(import(\"./academic-cap.svg\"))\n \n\n* `academic-cap.svg`:\n\n \nsvg\n \n \n\nWhen the above files are bundled with `esbuild entry.js --bundle --format=esm --splitting --outdir=out --metafile=meta.json --loader:.svg=file`, I get the following `meta.json` file:\n\njson\n{\n \"inputs\": {\n \"academic-cap.svg\": {\n \"bytes\": 7,\n \"imports\": []\n },\n \"entry.js\": {\n \"bytes\": 42,\n \"imports\": [\n {\n \"path\": \"academic-cap.svg\",\n \"kind\": \"dynamic-import\"\n }\n ]\n }\n },\n \"outputs\": {\n \"out/entry.js\": {\n \"imports\": [\n {\n \"path\": \"out/academic-cap-JHXDOPWG.js\",\n \"kind\": \"dynamic-import\"\n }\n ],\n \"exports\": [],\n \"entryPoint\": \"entry.js\",\n \"inputs\": {\n \"entry.js\": {\n \"bytesInOutput\": 50\n }\n },\n \"bytes\": 63\n },\n \"out/academic-cap-55CCFTCE.svg\": {\n \"imports\": [],\n \"exports\": [],\n \"inputs\": {\n \"academic-cap.svg\": {\n \"bytesInOutput\": 7\n }\n },\n \"bytes\": 7\n },\n \"out/academic-cap-JHXDOPWG.js\": {\n \"imports\": [],\n \"exports\": [\n \"default\"\n ],\n \"entryPoint\": \"academic-cap.svg\",\n \"inputs\": {\n \"academic-cap.svg\": {\n \"bytesInOutput\": 56\n }\n },\n \"bytes\": 124\n }\n }\n}\n\nThis information lets you map from `out/entry.js` => `out/academic-cap-JHXDOPWG.js` => `academic-cap.svg` but there is no link to `out/academic-cap-55CCFTCE.svg` (the file referenced by the imported string).","answer_document_id":"gh_comment_1350426687","silver_evidence_path":["gh_comment_1347005502","gh_issue_1487580925","gh_comment_1350426687"],"known_context_document_ids":["gh_issue_1034768647"],"evidence_issue_ids":[1034768647,1487580925],"source_repo_name":"bridgetownrb/bridgetown","source_issue_id":1034768647,"source_issue_url":"https://github.com/bridgetownrb/bridgetown/issues/428","target_repo_name":"evanw/esbuild","target_issue_id":1487580925,"target_issue_url":"https://github.com/evanw/esbuild/issues/2731","split":"test","quality_score":82.29,"annotation_level":"silver"}
{"query_id":"cross_issue_0313","query":"Decimal * Uint128 treats Uint128 as a raw Decimal value?","query_context":"Seems to be a \"feature\" so raw `Uint128` values can be treated as decimals.\n\nrust\n// NOTE: using a custom Decimal fork here since the constructor is normally private\n unimplemented!(\n \"{} {} {} {}\",\n gas_cost * Decimal::one(), // decimal * decimal\n gas_cost * Uint128::from(1u128), // decimal * u128\n gas_cost * Decimal::from_ratio(Uint128::from(1u128), 1u128), // decimal * decimal(u128 / 1)\n gas_cost * Decimal(Uint128::from(1u128)), // decimal * decimal(u128)\n );\n//1 'not implemented: 0.00000000000338 0 0.00000000000338 0'\n\nThis is very surprising, since the `Div` implementation doesn't follow this behavior, and `Mul` doesn't this either.\n\nSimilar to #1155 I propose the `Decimal()` constructor to be made public. The `Mul` implementation should be fixed, then the old behavior can be more explicit via `decimal_val * Decimal(uint_val)`.","reference_answer":"Checked math only makes sense if the contract actually handles the error cases. If they just `?` them to top level, you can also just panic. In both cases the contract execution is terminated, the transaction is reverted and an error message is logged. When you multiply with constants like 1/3 you know the operation can never fail. So I'd implement both for consistency with other math operations.","answer_document_id":"gh_comment_1370604927","silver_evidence_path":["gh_comment_1313419079","gh_issue_1447759394","gh_comment_1370604927"],"known_context_document_ids":["gh_issue_1041839813"],"evidence_issue_ids":[1041839813,1447759394],"source_repo_name":"CosmWasm/cosmwasm","source_issue_id":1041839813,"source_issue_url":"https://github.com/CosmWasm/cosmwasm/issues/1156","target_repo_name":"CosmWasm/cosmwasm","target_issue_id":1447759394,"target_issue_url":"https://github.com/CosmWasm/cosmwasm/issues/1485","split":"test","quality_score":95.69,"annotation_level":"silver"}
{"query_id":"cross_issue_0314","query":"GraphServiceClient.Users.GetAsync() returns nothing or non-helpful value for Schema Extension Data?","query_context":"**Describe the bug**\nVery related to Issue #2305 when running the standard query and \"not\" explicitly including the schema extension data, nothing is returned for the schema extension data. One step more problematic than #2305 is when the schema extension **_is_** explicitly requested it returns non-helpful data instead of the actual data stored and that the documentation is referring to.\n\nWhen doing a regular/default query **GraphServiceClient.Users.GetAsync()** it is returning no extension data field/value/reference of any kind and only non-helpful data when the Schema Extension item is explicitly supplied by **QueryParameter.Select** \n\nimage\n\n**To Reproduce**\nSteps to reproduce the behavior:\n\n**IDE Setup**\n- Visual Studio 17.8.3\n- .NET 8.0 C# command line project\n\n**Expected behavior**\n**Issue 1**\nIf data exists in the specified Schema Extension for the user, the data should be returned by the default query. \nShould not require explicitly returning that field to display the data.\n\n**Issue 2**\nIf data exists in the specified Schema Extension for the user, the actual field values should be returned when explicitly requesting the schema extension data using QueryParameter.Select\n\n**Steps**\n- Created a GraphClient _graphClient (success)\n- Added values to a user for the Schema Extension (success)\n\n- Run GraphClient.Users[UserId].GetAsync() - returns nothing for schema extension (_failure_)\n\n- Run GraphClient.Users[UserId].GetAsync() with schema extension explicitly supplied in QueryParameters.Select (_success_ but also _failure_)\n\nimage\n\n**Code**\nThe following code returns no field/value/reference for an existing schema extension data when running the basic user query:\n\n`_graphClient.Users[UserId].GetAsync();`\n\nThe following code returns a non-helpful, non-informational value for the schema extension data when adding the explicitly select parameter (_but has the bug where every field is returned_)\n\n`requestConfiguration.QueryParameters.Select = new string[] { \"id\", \"displayName\", \"domain_schemaextensionname\" };`\n\nimage","reference_answer":"Thanks for raising this @drewid \n\nAny chance you can confirm the method you are verifying the properties returned from `result` object? If you are serializing the object the object, are you using this?\n\ncs\nvar jsonString = var jsonString = KiotaJsonSerializer.SerializeAsString(result);","answer_document_id":"gh_comment_1911554989","silver_evidence_path":["gh_comment_1914105461","gh_issue_2101221249","gh_comment_1911554989"],"known_context_document_ids":["gh_issue_2104650776"],"evidence_issue_ids":[2104650776,2101221249],"source_repo_name":"microsoftgraph/msgraph-sdk-dotnet","source_issue_id":2104650776,"source_issue_url":"https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/2308","target_repo_name":"microsoftgraph/msgraph-sdk-dotnet","target_issue_id":2101221249,"target_issue_url":"https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/2304","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0315","query":"[CRITICAL ISSUE] Standardization of formats, primarily NBT?","query_context":"Due to the recent shit with Meteor Client (see URL I think it's time to form some sort of standard for the Archives, specifically the NBT.\n\nCurrently all the NBT is sourced from Meteor Client's `.nbt copy`, and easiest to plug-and-play with Meteor Client's `.nbt set`, however the latter command is currently broken, and has led me to wonder if that's the right path anyway. Should the NBT be kept as is, or should it be updated to be plug-and-play with IBE Editor instead? This would involve updating some 81 kits, not counting open [New Kit] issues, but could make it easier. At the same time, the NBT can currently be used in IBE Editor, you just need to add or alter the `tag:{}` portion of the SNBT within IBE Editor.\n\nIf we update the 81 kits, I suggest simply adding `tag:` at the beginning of them all, and when users copy-paste they can choose to include or exclude that part.\n\nIn relation, the Using NBT guide should be updated accordingly with this.","reference_answer":"Closing this, as it's solved in the last few commits. NBT Editor allows loading of .nbt files, which store Infinity/NaN properly. Problem solved :D","answer_document_id":"gh_comment_1437840500","silver_evidence_path":["gh_comment_1440978527","gh_issue_1569176895","gh_comment_1437840500"],"known_context_document_ids":["gh_issue_1581362313"],"evidence_issue_ids":[1581362313,1569176895],"source_repo_name":"KadTheHunter/ShulkerArchives","source_issue_id":1581362313,"source_issue_url":"https://github.com/KadTheHunter/ShulkerArchives/issues/96","target_repo_name":"KadTheHunter/ShulkerArchives","target_issue_id":1569176895,"target_issue_url":"https://github.com/KadTheHunter/ShulkerArchives/issues/63","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0317","query":"DjVu documents (and potentially other cases) cause chafa to consume a lot cpu and memory?","query_context":"**Summary**:\nSince chafa seems to try to display as many file formats as possible, sometimes it might just be inappropriate and should be prevented or optimized.\n\n**Example**:\nOne such case is DjVu files, many-page djvu documents to be accurate.\n\nIn my exact case, I have set in my lf preview script to use chafa to preview any file of image/* type. Unfortunately, DjVu files are \"image/vnd.djvu\" type. However, I think the argument applies to more general use cases as well.\n\nWhen I use chafa to (pre)view a several-hundred-page djvu document, it consumes all the available memory and the system just hangs.\n\n**Discussion**:\nMaybe chafa should at least check for potential memory consumption.\n\nMaybe also optimize the preview, such as only preview the first page, which I believe will never cost many GBs of memory. This possibly applies to PDFs as well, which currently is very slow (a few seconds) to display.","reference_answer":"That would be nice to have, indeed. Since it's so little code, it would be easy to audit and fuzz test too.","answer_document_id":"gh_comment_1672396996","silver_evidence_path":["gh_comment_1825736530","gh_issue_1838426327","gh_comment_1672396996"],"known_context_document_ids":["gh_issue_2009144802"],"evidence_issue_ids":[2009144802,1838426327],"source_repo_name":"hpjansson/chafa","source_issue_id":2009144802,"source_issue_url":"https://github.com/hpjansson/chafa/issues/179","target_repo_name":"hpjansson/chafa","target_issue_id":1838426327,"target_issue_url":"https://github.com/hpjansson/chafa/issues/157","split":"test","quality_score":87.27,"annotation_level":"silver"}
{"query_id":"cross_issue_0318","query":"Always-onscreen keyboard bar?","query_context":"Firstly, thank you a million for this app. I've been looking for an open source alternative to the Remotix app and no one has ever even come close until yours, and I've looked regularly for a long time. Amazing work, I've officially uninstalled it and haven't looked back\n\nBut anyway one thing that'd be really great and cool and epic would be an option to keep that bottom keyboard row on screen at all times. I'm always reaching for it and it would be nice to just keep it there","reference_answer":"Hi @sudomain , I am working on full re-implementation of virtual keys. The new layout follows the same style as Termux. (There are some differences as the use case is different for AVNC). \n- 2-row layout similar to Termux\n- Meta keys are automatically released on next key press. Long-press to lock meta keys, as described in this particular issue.\n- There are three swipable \"pages\":\n - First two pages contain keys\n - Similar to Termux, third page contains an editbox. It allows you to have full-fledged Android editing experience in a session. When finished, you can send the whole text to server in one go.\n\nFirst page:\nScreenshot_2024-04-04-21-51-23-702_com gaurav avnc debug-edit\n\nEdit box:\nScreenshot_2024-04-04-21-52-25-104_com gaurav avnc debug-edit\n\n---\n\nWhile there are still some rough edges, I would appreciate if you guys can test it.\nTest APK: URL \n\ncc @dp-alvarez","answer_document_id":"gh_comment_2037693965","silver_evidence_path":["gh_comment_2139740534","gh_issue_1513106319","gh_comment_2037693965"],"known_context_document_ids":["gh_issue_1816629272"],"evidence_issue_ids":[1816629272,1513106319],"source_repo_name":"gujjwal00/avnc","source_issue_id":1816629272,"source_issue_url":"https://github.com/gujjwal00/avnc/issues/181","target_repo_name":"gujjwal00/avnc","target_issue_id":1513106319,"target_issue_url":"https://github.com/gujjwal00/avnc/issues/117","split":"test","quality_score":84.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0319","query":"Should there be optional `undesirable_object_name()` linter?","query_context":"A number of potential object names can cause trouble because they also represent commonly used function names. \nHere are a few that come to mind (can definitely be expanded based on feedback):\n\nr\nt, c, df, I # (from `{base}` package)\ndata # (from `{utils}` package)\n\nIn edge cases, these produce the cryptic `object of type 'closure' is not subsettable` error:\n\n r\ndf Error in df$x: object of type 'closure' is not subsettable\n\n Created on 2023-01-09 with reprex v2.0.2 \n\nSo should there be an `undesirable_object_name()` linter that would caution users to avoid such variable names?\nExamples that would produce lints:\n\nr\ndf Error in c(2, 2): unused argument (2)\n\n Created on 2023-01-09 with reprex v2.0.2","reference_answer":"I wrote something similar to this, the issue is there are several thousand names to check which would make the linter relatively heavy","answer_document_id":"gh_comment_770349416","silver_evidence_path":["gh_comment_1377470917","gh_issue_416404277","gh_comment_770349416"],"known_context_document_ids":["gh_issue_1526371184"],"evidence_issue_ids":[1526371184,416404277],"source_repo_name":"r-lib/lintr","source_issue_id":1526371184,"source_issue_url":"https://github.com/r-lib/lintr/issues/1897","target_repo_name":"r-lib/lintr","target_issue_id":416404277,"target_issue_url":"https://github.com/r-lib/lintr/issues/376","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0320","query":"New page that lists all Price tag proofs without any prices yet (= open for contribution)?","query_context":"### Story\n\nFollowing changes in the backend - URL - users are now allowed to add prices on PRICE_TAG proofs they do now own. Thus unlocking distributed contribution.\n\nTo kickstart this, we need a page that lists all available proofs open for contribution.\n\n### How\n\nA list of all proofs that have the following caracteristics:\n- type = PRICE_TAG\n- price_count = 0\n- location_id__isnull = False\n\nAnd clear actions for each proof : \n- view full size image\n- add prices\n- add prices via the contribution assistant\n\n### Questions\n\n- how to avoid users adding prices on the same proof ?\n- how to skip proofs that are unreable or without any barcodes displayed ? \n - allow users to tag proofs ?\n\n### Ideas\n\n- display proofs in a random order on each load, to mitigate the risk of having 2 users simultaneously adding prices on the same proof","reference_answer":"But I don't understand how with your current `price_tags` model proposal you can store multiple predictions ? It's missing a data JSONField, thus we could simply plug in the ProofPrediction model (or a dedicated `PricePrediction`)","answer_document_id":"gh_comment_2538221833","silver_evidence_path":["gh_comment_2536556615","gh_issue_2725479450","gh_comment_2538221833"],"known_context_document_ids":["gh_issue_2733276404"],"evidence_issue_ids":[2733276404,2725479450],"source_repo_name":"openfoodfacts/open-prices-frontend","source_issue_id":2733276404,"source_issue_url":"https://github.com/openfoodfacts/open-prices-frontend/issues/1115","target_repo_name":"openfoodfacts/open-prices","target_issue_id":2725479450,"target_issue_url":"https://github.com/openfoodfacts/open-prices/issues/611","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0322","query":"Mybatis INSERT foreach case SQLSyntaxErrorException?","query_context":"## Bug Report\n\n### Which version of ShardingSphere did you use?\n5.1.1\n### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?\nShardingSphere-Proxy\n### Expected behavior\nThe following INSERT statement can run normally when calling MySQL directly, but an exception is thrown after using Sharding-Proxy.\n\n@Insert(value = {\" insert into ${tableName} (shapeid, userid, groupid, create_userid, name, type, name_alias, \" +\n \"stringvalue, doublevalue, intvalue, blobvalue, version, datasize, createtime, modifytime, deleted) values\" +\n \" \" +\n \"(#{item.builder.serverPID}, #{item.userID}, #{item.groupID}, #{item.userID}, \" +\n \"#{item.builder.fieldName}, #{item.builder.type}, #{item.builder.fieldName2}, \" +\n \"#{item.builder.stringValue}, #{item.builder.doubleValue}, #{item.builder.intValue}, \" +\n \"#{item.blobValue}, #{item.builder.version}, #{item.dataSize}, \" +\n \"#{item.builder.createTime}, #{item.builder.modifyTime}, #{item.builder.deleted})\" +\n \" \"})\n@Options(useGeneratedKeys=true, keyProperty=\"propertyExList.builder.serverID\", keyColumn=\"id\")\nboolean insertBatchProperty(@Param(\"tableName\") String tableName,\n @Param(\"propertyExList\") List propertyExList);\n\n### Actual behavior\n\n### Error updating database. Cause: java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax'\n### The error may exist in xxx/cn/syncserver/dao/UploadShapeDao.java (best guess)\n### The error may involve xxx.cn.syncserver.dao.UploadShapeDao.insertBatchProperty-Inline\n### The error occurred while setting parameters\n### SQL: insert into shape_property_simple (shapeid, userid, groupid, create_userid, name, type, name_alias, stringvalue, doublevalue, intvalue, blobvalue, version, datasize, createtime, modifytime, deleted) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)\n### Cause: java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax'\n; bad SQL grammar []; nested exception is java.sql.SQLSyntaxErrorException: This version of ShardingSphere-Proxy doesn't yet support this SQL. 'You have an error in your SQL syntax'\n\n### Reason analyze (If you can)\nI found that the following insert statement can be executed. The only difference between it and the previous statements with errors is that it does not contain ` (?,?,...)`.\n\n[INFO ] 2022-05-23 15:20:37.162 [ShardingSphere-Command-0] ShardingSphere-SQL - Actual SQL: syncdb1 ::: insert into shape_simple (layerid, userid, create_userid, groupid, type, data, minlevel, maxlevel, version, datasize, legend, createtime, modifytime, deleted, create_version) values (0, 10232, 10232, -1, 1, x'0a1b09c240214c1bc45c4011ee44a401170b4440190000000000000000', 0, 0, 15, 120.0, '', '2022-05-23 15:18:54', '2022-05-23 15:18:54', 0, 15)","reference_answer":"Hi @tuichenchuxin \nThe value was recognized as `expr` instead of `blobValue`. I found this may be related to #16493. Could you take a look at this?\n\n
URL \n\nAnd whenever we need a break in api we just put new to v2 so v1 users still can continue to get values\nwith a warning that v1 is deprecated and will be removed","reference_answer":"This has been implement following the merge of #2080.\n \n \n\nIt will be difficult for us to do this. It would mean we would have to duplicate the API each time we decide to alter the products identifiers. @captn3m0 opened a discussion about that, let's continue there.","answer_document_id":"gh_comment_2848664145","silver_evidence_path":["gh_comment_2848667176","gh_issue_1550719185","gh_comment_2848664145"],"known_context_document_ids":["gh_issue_1499930096"],"evidence_issue_ids":[1499930096,1550719185],"source_repo_name":"endoflife-date/endoflife.date","source_issue_id":1499930096,"source_issue_url":"https://github.com/endoflife-date/endoflife.date/issues/2066","target_repo_name":"endoflife-date/endoflife.date","target_issue_id":1550719185,"target_issue_url":"https://github.com/endoflife-date/endoflife.date/issues/2331","split":"test","quality_score":77.5,"annotation_level":"silver"}
{"query_id":"cross_issue_0325","query":"Merge NDArray inits with fill and random?","query_context":"To reduce the number of initializer overloads for ndarray we could take the `__inits__` that are identical other than having either random or fill and make initializers that default to filling with zeros, and do not allow for the fill to be nonzero if the random argument is true.\n\nmojo\nfn __init__( inout self, *shape: Int, random: Bool = False, order: String = \"C\" ) raises:\n\nand\n\nmojo\nfn __init__( inout self, *shape: Int, fill: Scalar[dtype], order: String = \"C\" ) raises:\n\nbecomes \n\nmojo\nfn __init__( inout self, *shape: Int, fill: Scalar[dtype]=0, random:Bool=False, order: String = \"C\" ) raises:\n if random == True and fill !=0:\n raise Error(\"numojo/core/ndarray:NDArray: __init__(*shape, fill, random)): Error if random is true you cannot set a fill value\")\n\nThis would turn 8 of our initializers into 4 thus reducing our number of initializers from 14 to 10.\n\nThoughts?","reference_answer":"Reassigning to Lang as this requires compiler changes in how we import builtins. There's not much the library itself can do short of providing a smaller transitive closure set of builtins/prelude.","answer_document_id":"gh_comment_2106299448","silver_evidence_path":["gh_comment_2330194176","gh_issue_2279527356","gh_comment_2106299448"],"known_context_document_ids":["gh_issue_2497803248"],"evidence_issue_ids":[2497803248,2279527356],"source_repo_name":"Mojo-Numerics-and-Algorithms-group/NuMojo","source_issue_id":2497803248,"source_issue_url":"https://github.com/Mojo-Numerics-and-Algorithms-group/NuMojo/issues/96","target_repo_name":"modularml/mojo","target_issue_id":2279527356,"target_issue_url":"https://github.com/modularml/mojo/issues/2529","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0326","query":"async_task fails to run?","query_context":"Integration tests that rely on `async_task` started failing:\n \n\nTraceback (most recent call last):\n File \"/opt/venv/lib64/python3.8/site-packages/openeogeotrellis/async_task.py\", line 234, in main\n batch_jobs = get_batch_jobs(batch_job_id, user_id)\n File \"/opt/venv/lib64/python3.8/site-packages/openeogeotrellis/async_task.py\", line 201, in get_batch_jobs\n jvm.org.slf4j.MDC.put(jvm.org.openeo.logging.JsonLayout.UserId(), user_id)\n File \"/opt/venv/lib64/python3.8/site-packages/py4j/java_gateway.py\", line 1664, in __getattr__\n raise Py4JError(\"{0} does not exist in the JVM\".format(new_fqn))\npy4j.protocol.Py4JError: org.slf4j.MDC does not exist in the JVM\n\nRunning from the command line shows more details:\n\n`java.lang.NoSuchFieldError: mdc`\n\nProbably has to do with the recent upgrade to Spark 3.5, which upgraded its log4j and slf4j dependencies.","reference_answer":"These warnings seem to be from slf4j 1.x. Spark 3.5.0 updated its slf4j dependencies to 2.x and removed the log4j implementation that slf4j 1.x delegates to, hence the warnings.\n\nslf4j 2.x seems to be backwards compatible, so should be a matter of upgrading our own slf4j dependencies. Spark already brings in a suitable log4j implementation.\n\nI linked a branch that already fixes some submodules but there's more work left.","answer_document_id":"gh_comment_2682058397","silver_evidence_path":["gh_comment_2814776110","gh_issue_2878294172","gh_comment_2682058397"],"known_context_document_ids":["gh_issue_2862569938"],"evidence_issue_ids":[2862569938,2878294172],"source_repo_name":"Open-EO/openeo-geopyspark-driver","source_issue_id":2862569938,"source_issue_url":"https://github.com/Open-EO/openeo-geopyspark-driver/issues/1054","target_repo_name":"Open-EO/openeo-geotrellis-extensions","target_issue_id":2878294172,"target_issue_url":"https://github.com/Open-EO/openeo-geotrellis-extensions/issues/382","split":"test","quality_score":87.84,"annotation_level":"silver"}
{"query_id":"cross_issue_0327","query":"[FEATURE] Allow to disable SSL/TLS communication?","query_context":"**Is your feature request related to a problem?**\nThe `security` plugins comes with SSL/TLS communication out of the box. This certainly should be the default, but in certain environments which use other means of secure communication (for example, IPSec), it would be great to offer the option to disable SSL/TLS.\n\n**What solution would you like?**\nOffer the option to disable SSL/TLS.\n\n**What alternatives have you considered?**\nN/A\n\n**Do you have any additional context?**\nIt might not be easy to do but preliminary discussion hinted it is feasible, in general.","reference_answer":"Inter node request carries user context (which contains sensitive information like user credential details, roles etc..), hence for securing user's sensitive information we need to enable node to node encryption. \n\nSo, it is not possible to disable SSL at transport layer. \n\nDuplicate of URL","answer_document_id":"gh_comment_491981501","silver_evidence_path":["gh_comment_1671693347","gh_issue_438817381","gh_comment_491981501"],"known_context_document_ids":["gh_issue_1553693821"],"evidence_issue_ids":[1553693821,438817381],"source_repo_name":"opensearch-project/security","source_issue_id":1553693821,"source_issue_url":"https://github.com/opensearch-project/security/issues/2414","target_repo_name":"opensearch-project/security","target_issue_id":438817381,"target_issue_url":"https://github.com/opensearch-project/security/issues/37","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0329","query":"\"ValueError: value.index does not match parentās axis 0 names\" error when trying to read h5ad that was processed through scVI?","query_context":"Hi !\n\nI am new to the Scanpy/Anndata ecosystem, and trying to use scVI for data integration.\n\nI trained a scVI model on an Anndata object, saved the object as h5ad, and now I get an error when trying to read the file.\n\nThe error occurs when using scanpy.read_h5ad or scvi.data.read_h5ad, and I found someone else reporting the error in this repo before , so I am posting the issue here. Kindly let me know if I should post this somewhere else.\n\npy\nadipo_all = scvi.data.read_h5ad(\"/home/yyyyy/analysis/anndata_working/adipo_sn_01112021_trained_v1.h5ad\")\n\npytb\n/home/xxxxx/pyenv_custom/py_scanalysis_env/lib/python3.7/site-packages/anndata/_core/anndata.py:120: ImplicitModificationWarning: Transforming to str index.\n warnings.warn(\"Transforming to str index.\", ImplicitModificationWarning)\n\n---------------------------------------------------------------------------\nValueError Traceback (most recent call last)\n/scratch/33545574/ipykernel_5065/2292619582.py in \n----> 1 adipo_all = scvi.data.read_h5ad(\"/home/yyyyy/analysis/anndata_working/adipo_sn_01112021_trained_v1.h5ad\")\n\n/home/xxxxx/pyenv_custom/py_scanalysis_env/lib/python3.7/site-packages/anndata/_io/h5ad.py in read_h5ad(filename, backed, as_sparse, as_sparse_fmt, chunk_size)\n 435 _clean_uns(d) # backwards compat\n 436 \n--> 437 return AnnData(**d)\n 438 \n 439 \n\n/home/xxxxx/pyenv_custom/py_scanalysis_env/lib/python3.7/site-packages/anndata/_core/anndata.py in __init__(self, X, obs, var, uns, obsm, varm, layers, raw, dtype, shape, filename, filemode, asview, obsp, varp, oidx, vidx)\n 320 varp=varp,\n 321 filename=filename,\n--> 322 filemode=filemode,\n 323 )\n 324 \n\n/home/xxxxx/pyenv_custom/py_scanalysis_env/lib/python3.7/site-packages/anndata/_core/anndata.py in _init_as_actual(self, X, obs, var, uns, obsm, varm, varp, obsp, raw, layers, dtype, shape, filename, filemode)\n 508 \n 509 # TODO: Think about consequences of making obsm a group in hdf\n--> 510 self._obsm = AxisArrays(self, 0, vals=convert_to_dict(obsm))\n 511 self._varm = AxisArrays(self, 1, vals=convert_to_dict(varm))\n 512 \n\n/home/xxxxx/pyenv_custom/py_scanalysis_env/lib/python3.7/site-packages/anndata/_core/aligned_mapping.py in __init__(self, parent, axis, vals)\n 233 self._data = dict()\n 234 if vals is not None:\n--> 235 self.update(vals)\n 236 \n 237 \n\n/home/xxxxx/pyenv_custom/py_scanalysis_env/lib/python3.7/_collections_abc.py in update(*args, **kwds)\n Supraclavicular 839 if isinstance(other, Mapping):\n 840 for key in other:\n--> 841 self[key] = other[key]\n 842 elif hasattr(other, \"keys\"):\n 843 for key in other.keys():\n\n/home/xxxxx/pyenv_custom/py_scanalysis_env/lib/python3.7/site-packages/anndata/_core/aligned_mapping.py in __setitem__(self, key, value)\n 149 \n 150 def __setitem__(self, key: str, value: V):\n--> 151 value = self._validate_value(value, key)\n 152 self._data[key] = value\n 153 \n\n/home/xxxxx/pyenv_custom/py_scanalysis_env/lib/python3.7/site-packages/anndata/_core/aligned_mapping.py in _validate_value(self, val, key)\n 211 # Could probably also re-order index if itās contained\n 212 raise ValueError(\n--> 213 f\"value.index does not match parentās axis {self.axes[0]} names\"\n 214 )\n 215 return super()._validate_value(val, key)\n\nValueError: value.index does not match parentās axis 0 names\n\nThis is the offending anndata object. \n\nAnnData object with n_obs Ć n_vars = 123472 Ć 36795\n obs: 'orig.ident', 'nCount_RNA', 'nFeature_RNA', 'nCount_spliced', 'nFeature_spliced', 'nCount_unspliced', 'nFeature_unspliced', 'nCount_HTO', 'nFeature_HTO', 'HTO_maxID', 'HTO_secondID', 'HTO_margin', 'HTO_classification', 'HTO_classification.global', 'hash.ID', 'nCount_SCT', 'nFeature_SCT', 'batch', 'n_genes', 'annot', 'sample_origin', 'day', 'depot', 'tissue', 'timepoint', 'n_genes_by_counts', 'total_counts', 'total_counts_percent_ribo', 'pct_counts_percent_ribo', '_scvi_batch', '_scvi_labels'\n var: 'features', 'spliced_features', 'unspliced_features', 'n_cells', 'highly_variable', 'highly_variable_rank', 'means', 'variances', 'variances_norm', 'highly_variable_nbatches', 'percent_ribo', 'n_cells_by_counts', 'mean_counts', 'pct_dropout_by_counts', 'total_counts'\n uns: 'hvg', 'sample_origin_colors', 'depot_colors', '_scvi'\n obsm: '_scvi_extra_categoricals', '_scvi_extra_continuous', 'X_scVI'\n layers: 'counts', 'spliced', 'unspliced'\n \n\n \nWhereas the previous version below can be read just fine. scanpy.pp.highly_variable_genes and sc.pp.calculate_qc_metrics were run followed by model training in scVI to get the above anndata.\n\nAnnData object with n_obs Ć n_vars = 123472 Ć 36795\n obs: 'orig.ident', 'nCount_RNA', 'nFeature_RNA', 'nCount_spliced', 'nFeature_spliced', 'nCount_unspliced', 'nFeature_unspliced', 'nCount_HTO', 'nFeature_HTO', 'HTO_maxID', 'HTO_secondID', 'HTO_margin', 'HTO_classification', 'HTO_classification.global', 'hash.ID', 'nCount_SCT', 'nFeature_SCT', 'batch', 'n_genes', 'annot', 'sample_origin', 'day', 'depot', 'tissue', 'timepoint'\n var: 'features', 'spliced_features', 'unspliced_features', 'n_cells'\n layers: 'counts', 'spliced', 'unspliced'\n\n \n**Libraries: scanpy==1.8.1 anndata==0.7.6 umap==0.5.1 numpy==1.20.3 scipy==1.7.1 pandas==1.3.3 scikit-learn==0.24.2 statsmodels==0.13.0rc0 python-igraph==0.9.6 pynndescent==0.5.4**","reference_answer":"I'm not the biggest fan of it either, but it's hard to move away from. Ideally there would be entirely separate methods for positional indexing and label based indexing (i.e. `loc` and `iloc`) but that isn't our API. When I first came across this, implementing that kind of API would have been very difficult, though could be easier now. For backwards compatibility we could probably never support integer label based access with `adata[idx]` syntax. There are also a lot of assumptions built into the ecosystem about this.\n\n-------------------------------\n\npython\nadata = sc.AnnData(data)\nadata.obsm['X'] = data\n\n@flying-sheep, if the passed object has a numeric index, we could try converting it to strings and check if that matches?\n\n----------------------\n\n@dburkhardt, there are some previous issues on this topic you might be interested in:\n\n* URL \n* URL","answer_document_id":"gh_comment_582732350","silver_evidence_path":["gh_comment_1603993299","gh_issue_557066977","gh_comment_582732350"],"known_context_document_ids":["gh_issue_1041327967"],"evidence_issue_ids":[1041327967,557066977],"source_repo_name":"scverse/anndata","source_issue_id":1041327967,"source_issue_url":"https://github.com/scverse/anndata/issues/635","target_repo_name":"scverse/anndata","target_issue_id":557066977,"target_issue_url":"https://github.com/scverse/anndata/issues/311","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0330","query":"Ren'Py Launcher Not Responding?","query_context":"Hello!\n\nI recently got back into Renpy. I downloaded the latest build, Renpy 8.3.2. It worked fine at first, but now, for some reason, the launcher will not work. It instantly goes into \"not responding.\" I have tried reinstalling and installing it into a different folder path. Nothing has worked.\n\nThis issue started a bit after installing VS Code and its extensions for Renpy and Python, such as Pylance. However, I am not positive if its directly responsible for the issue, since after uninstalling it the issue stayed.\n\nThe log file says everything loaded fine, there is no traceback file.\n\nAny help would be much appreciated!","reference_answer":"I'm closing this, as it's likely to be some other process that's causing this problem.","answer_document_id":"gh_comment_1962783467","silver_evidence_path":["gh_comment_2422444337","gh_issue_2107939511","gh_comment_1962783467"],"known_context_document_ids":["gh_issue_2597005133"],"evidence_issue_ids":[2597005133,2107939511],"source_repo_name":"renpy/renpy","source_issue_id":2597005133,"source_issue_url":"https://github.com/renpy/renpy/issues/5846","target_repo_name":"renpy/renpy","target_issue_id":2107939511,"target_issue_url":"https://github.com/renpy/renpy/issues/5325","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0332","query":"What does this error mean and how do I resolve it?","query_context":"Hello,\n\nI am getting this error when running an analysis:\n\nError during simplification\nToo many variables used in Z^{n+1},\n12 are allowed variables but 19 were found.\n\nI haven't found any information on this issue and don't know how to resolve it. \n\nI've attached the file. I am trying to use this to upload to an ATF1504 CPLD.\n\nCPLD_RAM_2MB.zip\n\nThanks!","reference_answer":"When I played around with your equations, I was able to reproduce one of the exceptions.\n\nCould it be that you were trying to simplify the equation for C8 which has 17 input variables? Setting the memory 2GByte is not enough for that, even with 12GByte the equation can't be simplified with QMC.\n\nThe root cause of the error messages is a Java heap space error.","answer_document_id":"gh_comment_663865359","silver_evidence_path":["gh_comment_1031447958","gh_issue_665459692","gh_comment_663865359"],"known_context_document_ids":["gh_issue_1125325868"],"evidence_issue_ids":[1125325868,665459692],"source_repo_name":"hneemann/Digital","source_issue_id":1125325868,"source_issue_url":"https://github.com/hneemann/Digital/issues/913","target_repo_name":"hneemann/Digital","target_issue_id":665459692,"target_issue_url":"https://github.com/hneemann/Digital/issues/495","split":"test","quality_score":93.16,"annotation_level":"silver"}
{"query_id":"cross_issue_0333","query":"Invalid yaml?","query_context":"- `/income/verification/documents/download`\n- `/beta/credit/v1/bank_employment/get`\n- `/deposit_switch/get`\n\nAll have API errors in their yaml\n\nmost can be fixed with indentation; the beta one has `x-hidden-from-docs: true` outside of a method, which means some tooling treats it as a method and crashes.","reference_answer":"@henryobiaraije This option was deprecated couple uears ago with Improvements we made with import flow to handle larger specifications better.\n\nCould you explain the need to use this option and any issues that you might be running into?","answer_document_id":"gh_comment_2728182237","silver_evidence_path":["gh_comment_1548808891","gh_issue_1241809648","gh_comment_2728182237"],"known_context_document_ids":["gh_issue_1708474674"],"evidence_issue_ids":[1708474674,1241809648],"source_repo_name":"plaid/plaid-openapi","source_issue_id":1708474674,"source_issue_url":"https://github.com/plaid/plaid-openapi/issues/124","target_repo_name":"postmanlabs/postman-app-support","target_issue_id":1241809648,"target_issue_url":"https://github.com/postmanlabs/postman-app-support/issues/10928","split":"test","quality_score":94.38,"annotation_level":"silver"}
{"query_id":"cross_issue_0337","query":"Runners crashing frequently with CrashLoopBackOff?","query_context":"**Describe the bug**\n\nSuddenly GitHub Runners containers starts to crash with below errors and keeps in CrashLoopBackOff.\n\nAnd when we update the runner with the latest release it gets fixed but after sometime it starts throwing same error.\n\nmv: inter-device move failed: './externalstmp/node12' to './externals/node12'; unable to remove target: Directory not empty\n\nmv: inter-device move failed: './externalstmp/node12_alpine' to './externals/node12_alpine'; unable to remove target: Directory not empty\n\n## Runner Version and Platform\nKubernetes Cluster 1.20\nGitHub Runners version 2.280.3\n\nOS of the machine running the runner? OSX/Windows/Linux/...\nLinux","reference_answer":"@MichaelJJ the runner didn't call `git` directly, the `actions/checkout@v2` will call it.\nthe error seems related to the runner can't start the `actions/checkout@v2` actions.\n\nCan your runner run step? only `actions/checkout@v2` fail or all kinds of steps in the job are failing?\n\nAlso, make sure you don't have a really big environment set on the environment or in your job since a huge environment variable block might block creating a new process on the OS.","answer_document_id":"gh_comment_961169675","silver_evidence_path":["gh_comment_1063849582","gh_issue_1044892296","gh_comment_961169675"],"known_context_document_ids":["gh_issue_980432106"],"evidence_issue_ids":[980432106,1044892296],"source_repo_name":"actions/runner","source_issue_id":980432106,"source_issue_url":"https://github.com/actions/runner/issues/1290","target_repo_name":"actions/runner","target_issue_id":1044892296,"target_issue_url":"https://github.com/actions/runner/issues/1464","split":"test","quality_score":85.71,"annotation_level":"silver"}
{"query_id":"cross_issue_0339","query":"test(e2e): parallelize tests to improve CI times?","query_context":"## Background\n\nSince our tests are now independent, we can parallelize them to improve CI times\n\n## Suggested Design\n\nAdd `s.T().Parallel()` to the following:\n- `TestIBCTokenTransferAndCreatePool`\n- `TestSuperfluidVoting`\n- `TestAddToExistingLockPostUpgrade`\n- `TestAddToExistingLock`\n- `TestTWAP`\n- `TestExpeditedProposals`\n\nNote:\n`TestStateSync` cannot be parallelized\n\n## Acceptance Criteria\n- tests are parallelized\n- benchmark CI time improvement\n- ensure that the following still work locally:\n * `make test-e2e-debug`\n * `make test-e2e-short`","reference_answer":"Yes, this is not useful at all for regular cases. However, the goal here is to log so that we can see the reasons for failure _when it fails_\n \n\nThis is exactly the problem - it is hard to tell when a transaction is successful and when it is not **in a general way**\n\nOff the top of my head, the problems are:\n- success is sometimes logged to stdout, other times in stderr\n- Some CLI commands log \"error\" to the output when they are successful so it is non-trivial to do some regex/pattern matching.\n\nI'm open to investigating identifying the tx fails more. However, from my previous attempts, there are quite a few edge cases to work around. I can try looking into this again after v12","answer_document_id":"gh_comment_1242228262","silver_evidence_path":["gh_comment_1241773362","gh_issue_1366405261","gh_comment_1242228262"],"known_context_document_ids":["gh_issue_1365326459"],"evidence_issue_ids":[1365326459,1366405261],"source_repo_name":"osmosis-labs/osmosis","source_issue_id":1365326459,"source_issue_url":"https://github.com/osmosis-labs/osmosis/issues/2646","target_repo_name":"osmosis-labs/osmosis","target_issue_id":1366405261,"target_issue_url":"https://github.com/osmosis-labs/osmosis/issues/2653","split":"test","quality_score":85.06,"annotation_level":"silver"}
{"query_id":"cross_issue_0340","query":"Step-by-step guide to enable shortcuts in Ubuntu and other popular Linux distributions?","query_context":"Despite the mentions of D-Bus and the need to use system level shortcuts, the process for non-developers like myself is not entirely straightforward. So this may limit the user audience.\n\nI might try to make the PR adding to README.md myself. I just want to know if this makes sense.","reference_answer":"With this parameter it will run \"natively\" on Wayland. Without it will run through XWayland. It's a compatibility layer.\nOn my phone I set this variable globally for all Qt applications.","answer_document_id":"gh_comment_1847899337","silver_evidence_path":["gh_comment_1860009322","gh_issue_2028796120","gh_comment_1847899337"],"known_context_document_ids":["gh_issue_2035562135"],"evidence_issue_ids":[2035562135,2028796120],"source_repo_name":"crow-translate/crow-translate","source_issue_id":2035562135,"source_issue_url":"https://github.com/crow-translate/crow-translate/issues/640","target_repo_name":"crow-translate/crow-translate","target_issue_id":2028796120,"target_issue_url":"https://github.com/crow-translate/crow-translate/issues/638","split":"test","quality_score":94.57,"annotation_level":"silver"}
{"query_id":"cross_issue_0342","query":"UI stops functioning, but doesn't completely block/hang?","query_context":"Does this issue occur when all extensions are disabled?: I don't know, as this issue takes a while to happen and VS Code is unusable for me without extensions so I cannot use it long enough to see if the issue reproduces. I guess this is a downside of a minimal core system that favours functionality in plugins and not in the core.\n\n \n \n- VS Code Version:\nVersion: 1.76.1\nCommit: 5e805b79fcb6ba4c2d23712967df89a089da575b\nDate: 2023-03-08T16:31:31.010Z\nElectron: 19.1.11\nChromium: 102.0.5005.196\nNode.js: 16.14.2\nV8: 10.2.154.26-electron.0\nOS: Linux x64 6.1.15-200.fc37.x86_64\nSandboxed: Yes\n\n- OS Version: Fedora 37\n\nSteps to Reproduce:\n\n1. Use VS Code\n2. That's all I know at this point\n\nBut after a while of using it it will simply stop accepting any input, either in the form of keystrokes or mouse clicks. It is not completely hung/blocked though. There is an \"activity\" bar at the top of the _Source Control_ pane that is moving from right to left over and over again. The same \"activity\" bar seems to be happening on the _Commits_ sub-pane.\n\nI can change tabs. But I cannot edit in any of them. The _Source Control_ pane is not showing any files as being edited even though there are some. I can scroll in the _Commits_ subpane. I can click on new files in that subpane's \"Compare ...\" -> \"* files changed\" but the editor does not switch to that file.\n\nI do also have the following in the OUTPUT tab:\n\n[Error - 05:31:53] Sending notification cpptools/onIntervalTimer failed.\nError: Cannot call write after a stream was destroyed\n at new NodeError (node:internal/errors:371:5)\n at _write (node:internal/streams/writable:321:11)\n at Socket.Writable.write (node:internal/streams/writable:334:10)\n at /home/brian/.vscode/extensions/ms-vscode.cpptools-1.14.4-linux-x64/dist/main.js:59851:29\n at new Promise ( )\n at WritableStreamWrapper.write (/home/brian/.vscode/extensions/ms-vscode.cpptools-1.14.4-linux-x64/dist/main.js:59841:16)\n at StreamMessageWriter.doWrite (/home/brian/.vscode/extensions/ms-vscode.cpptools-1.14.4-linux-x64/dist/main.js:59053:33)\n at /home/brian/.vscode/extensions/ms-vscode.cpptools-1.14.4-linux-x64/dist/main.js:59044:29\n at runNextTicks (node:internal/process/task_queues:61:5)\n at processImmediate (node:internal/timers:437:9)\n[Error - 05:31:53] The language server crashed. Restarting...\n\nAbout the only thing that ever resolves this is a _Developer: Reload Window_ action. But even then, it only lasts a few minutes, or seconds even and it goes back to be unresponsive.\n\nI am sure there is nowhere near enough info here to diagnose, but I am happy to take guidance on collecting enough info.","reference_answer":"This issue has been closed automatically because it needs more information and has not had recent activity. See also our issue reporting guidelines.\n\nHappy Coding!","answer_document_id":"gh_comment_1868273464","silver_evidence_path":["gh_comment_1474266258","gh_issue_1626177883","gh_comment_1868273464"],"known_context_document_ids":["gh_issue_1623329919"],"evidence_issue_ids":[1623329919,1626177883],"source_repo_name":"microsoft/vscode","source_issue_id":1623329919,"source_issue_url":"https://github.com/microsoft/vscode/issues/177072","target_repo_name":"microsoft/vscode","target_issue_id":1626177883,"target_issue_url":"https://github.com/microsoft/vscode/issues/177282","split":"test","quality_score":86.57,"annotation_level":"silver"}
{"query_id":"cross_issue_0343","query":"Is Indexhibit dead?","query_context":"Hi,\n\nI've been contacted by an artist friend about migrating his indexhibit portfolio to wordpress so as to get a responsive version of his website. My first reflex was to go check on indexhibit.org whether there was new updates and possibly someone might have worked on responsive templates for indexhibit, but the front page of indexhibit.org is empty or nearly empty, and the last updates were done last year...\n\nMaybe it's time to announce that the project is not maintained anymore?\n\nAn official announcement would allow people to start planning for a migration.\n\nIt was a lovely project btw, I loved working with it a few years back!\n\nBest to you and thanks for everything,\n\nmaathieu","reference_answer":"It's amazing how much people know about me. The projects fail because it takes time and money. Where were all of you when I was trying to find donations? How many have emailed me begging for free help - not offering to hire me or pay me for working on your personal site? It's totally unfair that I am responsible and underappreciated. Can you afford to work for over a decade for free? I simply can't. When I have time...I have time...this is the reality. I really do not appreciate that my personal email was posted in this thread...","answer_document_id":"gh_comment_1010635166","silver_evidence_path":["gh_comment_1039743227","gh_issue_887336803","gh_comment_1010635166"],"known_context_document_ids":["gh_issue_1137887514"],"evidence_issue_ids":[1137887514,887336803],"source_repo_name":"Indexhibit/indexhibit","source_issue_id":1137887514,"source_issue_url":"https://github.com/Indexhibit/indexhibit/issues/29","target_repo_name":"Indexhibit/indexhibit","target_issue_id":887336803,"target_issue_url":"https://github.com/Indexhibit/indexhibit/issues/28","split":"test","quality_score":85.44,"annotation_level":"silver"}
{"query_id":"cross_issue_0344","query":"Populate the publication policy link, where missing?","query_context":"Some publication policies are good and have valuable information for the data users. It will be helpful to include the \"Publication Policy\" field on the dataset site. We can auto-populate the field with the pelican data or manually if the publisher is not publishing the publication policy link in their JSONs correctly. \n\n@sabahfromlondon what do you think?","reference_answer":"Note that the original discussion in this issue was about overriding the from/to date for existing jobs. However, for unretrieved publications, we don't have a job at all, and want to also set the other overview fields: ocid prefix and license, so for implementing this, we should:","answer_document_id":"gh_comment_3245382101","silver_evidence_path":["gh_comment_1326429511","gh_issue_1424359903","gh_comment_3245382101"],"known_context_document_ids":["gh_issue_1095525512"],"evidence_issue_ids":[1095525512,1424359903],"source_repo_name":"open-contracting/data-registry","source_issue_id":1095525512,"source_issue_url":"https://github.com/open-contracting/data-registry/issues/192","target_repo_name":"open-contracting/data-registry","target_issue_id":1424359903,"target_issue_url":"https://github.com/open-contracting/data-registry/issues/256","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0346","query":"Sentry integration is not working with Strapi 4?","query_context":"## Bug report\n\n### Describe the bug\nStrapi is not reporting any errors to the sentry. tried triggering errors by sending invalid graphql request and Rest API call in both cases it's not reporting errors to sentry.\n\nA clear and concise description of what the bug is.\n\n### Steps to reproduce the behavior\n\n1. Enable graphql plugin\n2. Install latest sentry plugin (one compatible with sentry 4)\n3. Configure sentry plugin in config/plugin.js as shown in step below \n\njavascript\n// path: ./config/plugins.js\n\nmodule.exports = {\n //\n graphql: {\n config: {\n endpoint: \"/graphql\",\n shadowCRUD: true,\n playgroundAlways: true,\n depthLimit: 7,\n amountLimit: 100,\n apolloServer: {\n tracing: false,\n },\n },\n },\n sentry: {\n enabled: true,\n config: {\n dsn: \" URL \n sendMetadata: true,\n },\n },\n};\n\n5. Create A collection\n6. Add Data\n7. Call graphql API / Rest API with invalid parameters \n8. It will return error response \n9. Error wont be logged in sentry\n\n### Expected behavior\n\nThe error should be reported to the sentry and should be visible in the sentry dashboard.\n\n### Screenshots\n\nIf applicable, add screenshots to help explain your problem.\n\n### Code snippets\n\nIf applicable, add code samples to help explain your problem.\n\n### System\n\n- Node.js version: v16.13.1\n- NPM version: 8.1.2\n- Strapi version: 4.0.3\n- Database: postgres / sqlite\n- Operating system: mac / linux\n\n### Additional context\n\nAdd any other context about the problem here.","reference_answer":"@VictorienTardif I don't know if your issue is already resolved. The Strapi folks fixed this in their `4.11.1` version - please update to at least that version (as you're still on `4.2.3`). Additionally, make sure that all your sentry deps are on the same version. (check in lockfile)","answer_document_id":"gh_comment_1200871170","silver_evidence_path":["gh_comment_1104809563","gh_issue_1209366926","gh_comment_1200871170"],"known_context_document_ids":["gh_issue_1155351818"],"evidence_issue_ids":[1155351818,1209366926],"source_repo_name":"strapi/strapi","source_issue_id":1155351818,"source_issue_url":"https://github.com/strapi/strapi/issues/12702","target_repo_name":"getsentry/sentry-javascript","target_issue_id":1209366926,"target_issue_url":"https://github.com/getsentry/sentry-javascript/issues/4956","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0348","query":"ReferenceError: \"AlternateLinks is not defined\" upon new SvelteKit install?","query_context":"ReferenceError: AlternateLinks is not defined\n at eval (/Users/.../node_modules/.pnpm/@inlang+paraglide-sveltekit@0.11.0_@sveltejs+kit@2.5.28_@sveltejs+vite-plugin-svelte@3.1.2_sv_bhgsp6l6qijmxfcyqggxzwsu2m/node_modules/@inlang/paraglide-sveltekit/dist/runtime/ParaglideJS.svelte:108:48)","reference_answer":"@ambios1 you have to create them yourself. you can use this pattern and adapt it for alternate links URL or create a sitemap with URL a PR that would introduce a `generateAlternateLinks(\"/path\")` would also be appreciated","answer_document_id":"gh_comment_2741672469","silver_evidence_path":["gh_comment_2673425106","gh_issue_2501881174","gh_comment_2741672469"],"known_context_document_ids":["gh_issue_2534517537"],"evidence_issue_ids":[2534517537,2501881174],"source_repo_name":"opral/inlang-paraglide-js","source_issue_id":2534517537,"source_issue_url":"https://github.com/opral/inlang-paraglide-js/issues/223","target_repo_name":"opral/inlang-paraglide-js","target_issue_id":2501881174,"target_issue_url":"https://github.com/opral/inlang-paraglide-js/issues/201","split":"test","quality_score":94.12,"annotation_level":"silver"}
{"query_id":"cross_issue_0349","query":"Design & discovery: Hazard stories for MVP?","query_context":"### Design & discovery: Hazard stories for MVP\nPreliminary MVP flow (in Figma)\nMVP user stories - design details\n\n**Supporting user flow:** Person clicks on a link from an NWS alert\n\n**Stories to include**\n- 4.1 As a member of the public who got a hazard alert through their weather app, I want to click a link and see the full WWA hazard\n- 4.2 ⦠I want to be made aware of any hazards for a specific location\n- 4.3 ⦠I want to understand at-a-glance what, where, and how bad the threat/impact level of a hazard for a 4.4 specific location\n- 4.4 ⦠I would like to know what to expect for the next 24 hours (could be more?) for a specific location\n- 4.5⦠I want to understand the actions or steps I could take to save my life or property at my location\n- 4.6⦠I'd like to know when and where the hazard is in order to see if the hazard is approaching me or near me/specific location\n\nRelated:\n- As an external user, I want to be made aware of the of any hazards for a specific location\n**Added just to capture broader need for the following 2 stories. \n\n## Tasks\n- Design and define molecules/layout\n- Collab w/content for hierarchy of content and content details\n- PO collab and review for organizational needs and feasibility\n- Feasibility collab and review w/eng\n- Determine if an user research is needed\n\n## By the end of this sprint\n- Designs ready for review: molecules and layout designed for each story supporting flow for hazard (link from outside source to full alert)\n- Beginning documentation of acceptance criteria and supporting need for each user story/molecule\n-- Wireframe and needed support (technical and organizational)\n-- Documentation of high level key implementation details\n\n**Continuous discovery**\n- What we might want to test with users and what we have less certainty about\n\nOut of scope - future sprint:\n- Secondary visual imagery discovery for hazards","reference_answer":"@janelx Updated this story to reflect the concept we talked about of this as a version/view of a weather story. I added a couple examples based on past hazard-based stories, but it might be a bit before I can grab some images to go with them because I'll need to wait for new ones or use wayback machine to find some that match. \nWith that missing piece in mind, does this otherwise reflect what we talked about? Is anything different or missing?","answer_document_id":"gh_comment_1750642834","silver_evidence_path":["gh_comment_1746988135","gh_issue_1877500048","gh_comment_1750642834"],"known_context_document_ids":["gh_issue_1859830898"],"evidence_issue_ids":[1859830898,1877500048],"source_repo_name":"weather-gov/weather.gov","source_issue_id":1859830898,"source_issue_url":"https://github.com/weather-gov/weather.gov/issues/148","target_repo_name":"weather-gov/weather.gov","target_issue_id":1877500048,"target_issue_url":"https://github.com/weather-gov/weather.gov/issues/155","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0350","query":"core java plugin - inconsistent version resolution?","query_context":"**Describe the bug**\n\nVersion resolution is inconsistent between JVM vendors.\nRoot cause being that the versions aren't consistent between vendors.\n\n**To Reproduce**\n\nMake sure to run this with no local installs of java\n\nsh\n \n...\nmise ~/foo/.mise.toml tools: java@17.0.2\n \nopenjdk version \"17.0.2\" 2022-01-18\nOpenJDK Runtime Environment (build 17.0.2+8-86)\nOpenJDK 64-Bit Server VM (build 17.0.2+8-86, mixed mode, sharing)\n\nā
You get the latest openjdk 17 release\n\n \n...\nmise ~/foo/.mise.toml tools: java@sapmachine-17\n \nopenjdk version \"17\" 2021-09-14 LTS\nOpenJDK Runtime Environment SapMachine (build 17+35-LTS-sapmachine)\nOpenJDK 64-Bit Server VM SapMachine (build 17+35-LTS-sapmachine, mixed mode)\n\nā You get the initial sapmachine 17 release, not the most recent which would be 17.0.10 at the time of writing\n\n⯠mise ls-remote java@sapmachine-17\nsapmachine-17\nsapmachine-17.0.1\n...\nsapmachine-17.0.10\nsapmachine-17.0.4-snapshot.0\nsapmachine-17.0.7-snapshot.1\n\n**Expected behavior**\n\nRegardless of the vendor, if I use just the major version, I get the latest patch release for said version as per \"fuzzy matching\"\n\n**`mise doctor` output**\n\n \n `mise doctor` \n\ntext\nversion: 2024.4.0 macos-arm64 (2024-04-02)\nactivated: yes\nshims_on_path: yes\n\nbuild_info:\n Target: aarch64-apple-darwin\n Features: DEFAULT, NATIVE_TLS\n Built: Tue, 2 Apr 2024 01:55:39 +0000\n Rust Version: rustc 1.77.1 (7cf61ebde 2024-03-27) (Homebrew)\n Profile: release\n\nshell:\n /bin/zsh\n zsh 5.9 (x86_64-apple-darwin23.0)\n\ndirs:\n data: ~/.../.mise\n config: ~/.../.mise\n cache: ~/.../.mise\n state: ~/.../.mise\n shims: ~/.../.mise/shims\n\nconfig_files:\n ~/.../.mise/config.toml\n ~/.../foo-mise-java/.mise.toml\n\nplugins:\n bun (core)\n deno (core)\n go (core)\n gradle URL \n java (core)\n maven URL \n node (core)\n python (core)\n ruby (core)\n vault URL \n\ntoolset:\n java@sapmachine-17\n maven@3.9.6\n node@18.20.1\n\nenv_vars:\n MISE_DIR=/Users/.../.mise\n MISE_CONFIG_DIR=/Users/.../.mise\n MISE_CACHE_DIR=/Users/.../.mise\n MISE_STATE_DIR=/Users/.../.mise\n MISE_DATA_DIR=/Users/.../.mise\n MISE_SHELL=zsh\n\nsettings:\n activate_aggressive = false\n all_compile = false\n always_keep_download = false\n always_keep_install = false\n asdf_compat = false\n cargo_binstall = true\n color = true\n disable_default_shorthands = false\n disable_tools = []\n experimental = false\n go_default_packages_file = \"~/.default-go-packages\"\n go_download_mirror = \" URL \n go_repo = \" URL \n go_set_gopath = false\n go_set_goroot = true\n go_skip_checksum = false\n jobs = 4\n legacy_version_file = true\n legacy_version_file_disable_tools = []\n node_compile = false\n not_found_auto_install = true\n paranoid = false\n plugin_autoupdate_last_check_duration = \"7d\"\n python_compile = false\n python_default_packages_file = \"/Users/I327130/.default-python-packages\"\n python_pyenv_repo = \" URL \n raw = false\n trusted_config_paths = []\n quiet = false\n verbose = false\n yes = false\n ci = false\n debug = false\n trace = false\n log_level = \"info\"\n python_venv_auto_create = false\n\n [status]\n missing_tools = \"if_other_versions_installed\"\n show_env = false\n show_tools = false\n\n1 problem found:\n\n1. new mise version 2024.4.3 available, currently on 2024.4.0\n\n \n\n**Additional context**\n\nHonestly I'm not quite sure if this should be a bug or a feature.\n\nInterestingly enough, the problem is already recognized, at least for `openjdk` where major versions _are_ normalized already:\n\n URL \n\notherwise `mise use java@17` would behave the same (incorrect) way š","reference_answer":"I am not sure why that check is there. I think maybe I expect that the version was resolved at that point or something so if it was ToolVersionRequest::Prefix in the past it should at this point be resolved to ToolVersionRequest::Version. I would try adding ToolVersionRequest::Prefix and seeing if everything works, if so we can add that to the assertion","answer_document_id":"gh_comment_2049990631","silver_evidence_path":["gh_comment_2049988527","gh_issue_2237963484","gh_comment_2049990631"],"known_context_document_ids":["gh_issue_2237187396"],"evidence_issue_ids":[2237187396,2237963484],"source_repo_name":"jdx/mise","source_issue_id":2237187396,"source_issue_url":"https://github.com/jdx/mise/issues/1887","target_repo_name":"jdx/mise","target_issue_id":2237963484,"target_issue_url":"https://github.com/jdx/mise/issues/1888","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0351","query":"How to use PicoScan ROS1 to run 2 PicoScan for negivation?","query_context":"Dear Teams,\nWould you please share with us the workflow how to use 2 PicoScan for negivation ?\nCustomer used our 2 PicoScan can't work well, they can't start together.\n\n266b894cce5fde5fec099c9cac76ba9d","reference_answer":"You are probably right. According to URL and URL you can use URL to create an odometry feedback. But I have not tested it (it is a bit beyond the scope of the driver).\n\nNevertheless, you can use the slam_toolbox to create an initial map. In navigational mode, the NAV-350 lidar generates pose- and landmark data, which are translated to TF messages. Using these TF messages, you can see in rviz, how the lidar moves on the map.","answer_document_id":"gh_comment_1706624087","silver_evidence_path":["gh_comment_2104955099","gh_issue_1874842043","gh_comment_1706624087"],"known_context_document_ids":["gh_issue_2287229718"],"evidence_issue_ids":[2287229718,1874842043],"source_repo_name":"SICKAG/sick_scan_xd","source_issue_id":2287229718,"source_issue_url":"https://github.com/SICKAG/sick_scan_xd/issues/326","target_repo_name":"SICKAG/sick_scan_xd","target_issue_id":1874842043,"target_issue_url":"https://github.com/SICKAG/sick_scan_xd/issues/206","split":"test","quality_score":92.67,"annotation_level":"silver"}
{"query_id":"cross_issue_0352","query":"Title does not seem to be correctly displayed anymore after updating to Nuxt 3.7?","query_context":"### Describe the bug\n\nIn a situation similar to this\n\nvue\n \n \n \n \n \n \n \n \n\n \nuseSeoMeta({\n title: () => 'Page Title',\n description: () => 'Page Description',\n ogImage: () => '/path/to/image.png',\n})\n \n\nAfter upgrading to Nuxt 3.7, the meta title does not seem to be correctly retrieved/displayed anymore.\n\nBefore the update, it was correctly `Page Title | Site Name`, while now is `| Site Name`.\n\nSeo Kit is updated to the latest version `1.3.10`\n\nPlease let me know if you need further details or info :)\n\n### Reproduction\n\n_No response_\n\n### System / Nuxt Info\n\nShell\nSystem:\n OS: Linux 6.4 openSUSE Tumbleweed 20230823\n CPU: (16) x64 AMD Ryzen 7 4800H with Radeon Graphics\n Memory: 5.22 GB / 15.03 GB\n Container: Yes\n Shell: 5.2.15 - /bin/bash\n Binaries:\n Node: 16.17.0 - ~/.nvm/versions/node/v16.17.0/bin/node\n Yarn: 1.22.19 - ~/.nvm/versions/node/v16.17.0/bin/yarn\n npm: 9.7.1 - ~/.nvm/versions/node/v16.17.0/bin/npm\n pnpm: 8.7.1 - ~/.nvm/versions/node/v16.17.0/bin/pnpm\n Browsers:\n Brave Browser: 116.1.57.53\n Chromium: 116.0.5845.96","reference_answer":"Thanks for the continued effort in helping me debug this, this seems to be fixed with Unhead 1.5.1.\n\nThe issue is basically that the client-side doesn't know what the original title is but is rendering a title template.","answer_document_id":"gh_comment_1705770688","silver_evidence_path":["gh_comment_1705287541","gh_issue_1872779758","gh_comment_1705770688"],"known_context_document_ids":["gh_issue_1875967054"],"evidence_issue_ids":[1875967054,1872779758],"source_repo_name":"harlan-zw/nuxt-seo-kit","source_issue_id":1875967054,"source_issue_url":"https://github.com/harlan-zw/nuxt-seo-kit/issues/92","target_repo_name":"harlan-zw/nuxt-seo-kit","target_issue_id":1872779758,"target_issue_url":"https://github.com/harlan-zw/nuxt-seo-kit/issues/87","split":"test","quality_score":93.94,"annotation_level":"silver"}
{"query_id":"cross_issue_0353","query":"Extend unit of measure symbol predicates to things other than units of measure?","query_context":"Currently we have three symbol-related datatype properties with domain `UnitOfMeasure`:\n\nunitSymbol\nunitSymbolHtml # as of 10.0.0\nunitSymbolUnicode\n\nThe proposal is to extend the predicates to apply to anything, since things other than units of measure may have symbols, such as chemical compounds (this could have been relevant to one of my past clients). Thus:\n\nsymbol\nsymbolHtml\nsymbolUnicode\n\nand modify `skos:definition` accordingly. We can include `domainIncludes gist:UnitOfMeasure` to indicate that one usage pertains to units of measure.","reference_answer":"Assigning to @Jamie-SA for review. If he approves, he can either implement or pass on to someone else.","answer_document_id":"gh_comment_1892863623","silver_evidence_path":["gh_comment_1782944179","gh_issue_1963897769","gh_comment_1892863623"],"known_context_document_ids":["gh_issue_971808580"],"evidence_issue_ids":[971808580,1963897769],"source_repo_name":"semanticarts/gist","source_issue_id":971808580,"source_issue_url":"https://github.com/semanticarts/gist/issues/531","target_repo_name":"semanticarts/gist","target_issue_id":1963897769,"target_issue_url":"https://github.com/semanticarts/gist/issues/992","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0354","query":"[Bug]: Recently Added - Random album order?","query_context":"### I confirm that:\n\n- [x] I have searched the existing open AND closed issues to see if an issue already exists for the bug I've encountered\n- [x] I'm using the latest version (your issue may have been fixed already)\n\n### Version\n\n0.55.0 (365df522)\n\n### Current Behavior\n\nWhen visiting \"Recently Added\" albums are placed in random order, with no seemingly good reason. I have checked music files (timestamps) and their content and nothing has changed since yesterdays Navidrome update. It affects all albums. Have run \"Full scan\" and \"Quick scan\".\n\n### Expected Behavior\n\nWhen visiting \"Recently Added\" newly added album should be shown in descending order, as it has always been.\n\n### Steps To Reproduce\n\n1. Log into Navidrome\n2. Visit Recently Added (does this automatically upon login)\n3. Random album sorting.\n\n### Environment\n\nmarkdown\n- OS: Debian 12.9 (6.1.0-31-amd64) / Docker version 28.0.1, build 068a01e\n- Browser: Brave \n- Client: play:Sub\n\n### How Navidrome is installed?\n\nDocker\n\n### Configuration\n\ntoml\nservices:\n navidrome:\n container_name: navidrome\n hostname: navidrome\n networks:\n prxnet:\n ipv4_address: 172.30.1.22\n user: 304:304\n volumes:\n - /mnt/ssd/music/sorted:/music:ro\n - ./data:/data\n - /etc/localtime:/etc/localtime:ro\n env_file:\n - container.env\n restart: unless-stopped\n pull_policy: always\n image: deluan/navidrome:latest\n healthcheck:\n interval: 5m\n start_period: 1m\n\nnetworks:\n prxnet:\n external: true\n\n### Relevant log output\n\nshell\n\n### Anything else?\n\n_No response_\n\n### Code of Conduct\n\n- [x] I agree to follow Navidrome's Code of Conduct","reference_answer":"This is only possible if your FS supports birth time. If you are using Linux, use `stat` to check that. You should see a line saying `Birth`\n\nExample of FS that does support it:\n\n$ stat docker-compose.yml\n File: docker-compose.yml\n Size: 484 Blocks: 8 IO Block: 4096 regular file\nDevice: 254,1 Inode: 750 Links: 1\nAccess: (0644/-rw-r--r--) Uid: ( 1000/corintio) Gid: ( 1000/corintio)\nAccess: 2024-12-21 15:06:32.012000000 -0800\nModify: 2024-11-24 11:03:32.700000000 -0800\nChange: 2024-11-24 11:03:32.820000000 -0800\n Birth: 2024-11-24 10:34:49.188000000 -0800\n\nIf it is supported, set `RecentlyAddedByModTime=false`. If not, there's nothing I can do about it, and the option will fallback to using the time the file was added to the DB.","answer_document_id":"gh_comment_2560595788","silver_evidence_path":["gh_comment_2726034790","gh_issue_2005547238","gh_comment_2560595788"],"known_context_document_ids":["gh_issue_2919892298"],"evidence_issue_ids":[2919892298,2005547238],"source_repo_name":"navidrome/navidrome","source_issue_id":2919892298,"source_issue_url":"https://github.com/navidrome/navidrome/issues/3823","target_repo_name":"navidrome/navidrome","target_issue_id":2005547238,"target_issue_url":"https://github.com/navidrome/navidrome/issues/2650","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0355","query":"Feature request Add some placeholders?","query_context":"### What feature would you like to request?\n\nAdd some placeholders,such as the team name,team prefix\n\n### Are you able to help implement the feature?\n\n_No response_\n\n### Is your feature request related to an existing bug or issue?\n\n_No response_\n\n### Please enter any additional comments below.\n\n_No response_","reference_answer":"It's out now in the latest snapshot, but it is disabled by default. To enable it set the `extended-toggle` value in Essence's configuration (it's in the teleportation section) to `true`.\n\nAs of this version /tptoggle toggles both, but I might change that to /tptoggle in the future. I'll update the Wiki and drop a message here if that's the case.\n\nDownload: URL \nWiki: URL \n\nWhilst this is a snapshot build it is tested and considered stable. However, as always I recommend backing up your server first. This version also contains #201","answer_document_id":"gh_comment_2888933328","silver_evidence_path":["gh_comment_2888979112","gh_issue_3071280202","gh_comment_2888933328"],"known_context_document_ids":["gh_issue_2793501806"],"evidence_issue_ids":[2793501806,3071280202],"source_repo_name":"LewMC/Essence","source_issue_id":2793501806,"source_issue_url":"https://github.com/LewMC/Essence/issues/187","target_repo_name":"LewMC/Essence","target_issue_id":3071280202,"target_issue_url":"https://github.com/LewMC/Essence/issues/200","split":"test","quality_score":92.28,"annotation_level":"silver"}
{"query_id":"cross_issue_0357","query":"simulations stopping with assert currentTimes.simTime <= simTime()?","query_context":"All the simulations are failing with this error on the latest code. \ngradys-error\n\nThe simulations were working in an old version which was part of the pre-created VM (OVA file). But none of the showcase ini files are working in the latest version. I have changed the paths for ArduCopter/ArduPlane/ArduRover in ini file to appropriate values and the SITL processes are running in the background.","reference_answer":"@klonikar hello! I am also having trouble setting up GrADyS-SIM with OMNeT++ 6 on Windows. While I haven't quite figured out the root cause yet, I have created a new .ova virtual machine image in case you want to use it: URL \n\nI saw that you also got the same idea as me of setting the simulator up on a Linux virtual machine, that's great! If you have any trouble, try the .ova image above and see if that helps.\n\nAlso, replied to you on your other issue about the SITL integration.","answer_document_id":"gh_comment_1925578543","silver_evidence_path":["gh_comment_1929358542","gh_issue_2097474488","gh_comment_1925578543"],"known_context_document_ids":["gh_issue_2114749797"],"evidence_issue_ids":[2114749797,2097474488],"source_repo_name":"Project-GrADyS/gradys-simulations","source_issue_id":2114749797,"source_issue_url":"https://github.com/Project-GrADyS/gradys-simulations/issues/32","target_repo_name":"Project-GrADyS/gradys-simulations","target_issue_id":2097474488,"target_issue_url":"https://github.com/Project-GrADyS/gradys-simulations/issues/31","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0358","query":"DeclareStrictTypesFixer split?","query_context":"So far, we have a (risky) fixer that adds/relocate `declare(strict_types=1)`.\n\nI think we should split it.\n1. fixer to add `declare` statement if missing (risky)\n2. fixer to relocate declaration (non-risky) - here, with option what should be the position (same line with opening tag or next one).\n\nWe will be more generic and allow to have better user experience, like allowing to move declaration to same place for all files but not enforcing adding it to every single file. Or allow to place the declaration to place defined by `Extended Coding Style Guide` proposal.\n\nAlso, a ref: URL","reference_answer":"Hey! I'm closing this as no traffic around anymore. The idea could be valid, yet it didn't get any movement around.\nIf any of you see a value in it and are ready to implement it, please draft mini-RFC what you would like to achieve and how.","answer_document_id":"gh_comment_1492512388","silver_evidence_path":["gh_comment_1330826946","gh_issue_397768023","gh_comment_1492512388"],"known_context_document_ids":["gh_issue_164638946"],"evidence_issue_ids":[164638946,397768023],"source_repo_name":"PHP-CS-Fixer/PHP-CS-Fixer","source_issue_id":164638946,"source_issue_url":"https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues/2062","target_repo_name":"PHP-CS-Fixer/PHP-CS-Fixer","target_issue_id":397768023,"target_issue_url":"https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues/4252","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0361","query":"`let` indexes using noUncheckedIndexedAccess in TS 5.5.2?","query_context":"### š Search Terms\n\n\"array\", \"noUncheckedIndexedAccess\", \"5.5\"\n\n### š Version & Regression Information\n\n- This changed between versions 5.4.5 and 5.5.2\n\n### ⯠Playground Link\n\n URL \n\n### š» Code\n\nts\nconst a: number[] = [1, 2, 3];\nlet i: number = 1;\n\nif(typeof a[i] === \"number\")\n a[i]++\n\n### š Actual behavior\n\nTypescript reports the following error:\n\nObject is possibly 'undefined'.(2532)\nconst a: number[]\n\n### š Expected behavior\n\nIt should not report an error for such cases\n\n### Additional information about the issue\n\nThis obviously requires `noUncheckedIndexedAccess` to be enabled in the tsconfig.\n\nThis only happens when the variable used to access the array is non const (`let` in this case).\n\nI think that TS 5.5 actually fixed the original behavior because in 5.4 if we remove the check:\n\nts\nconst a: number[] = [1, 2, 3];\nlet i: number = 1;\na[i]++\n\nTS does not raise the same error (which would be expected as `a[i]` could be undefined).\nThe current workaround:\n\nts\nconst j = i;\nif (typeof digits[j] === \"number\") {\n digits[j]++;\n}","reference_answer":"If this is just an array, I don't see why you need `crypto-js` as part of the repro. Please provide a minimal example, with config, that shows what's happening","answer_document_id":"gh_comment_2168659231","silver_evidence_path":["gh_comment_2184974540","gh_issue_2340975470","gh_comment_2168659231"],"known_context_document_ids":["gh_issue_2367744540"],"evidence_issue_ids":[2367744540,2340975470],"source_repo_name":"microsoft/TypeScript","source_issue_id":2367744540,"source_issue_url":"https://github.com/microsoft/TypeScript/issues/58972","target_repo_name":"microsoft/TypeScript","target_issue_id":2340975470,"target_issue_url":"https://github.com/microsoft/TypeScript/issues/58803","split":"test","quality_score":83.8,"annotation_level":"silver"}
{"query_id":"cross_issue_0362","query":"Improvement: Update the `URL` database model?","query_context":"Do the following to improve the definition of the `URL` database model.\n\n- [x] 1. Rename it. A good choice to rename to is `DatasetURL`\n- [x] 2. Remove any field that is no longer needed. For example, `update_announced` can be remove once all the code for the V1 API is removed.\n- [x] 3. Rename some of the fields to make them more informative. For example, `info_ts` can be renamed to `last_update`.\n\nNote: The fulfillment of this issue should be done after the removal of V1 API and support of SQLAlchemy in put in place.","reference_answer":"I am aware of this. Last time I checked, the logic in handling update was not fully implemented. The idea of using a central dispatcher with an dedicated queue I mentioned today should solve the problem, but I may use a more expedient solution for now.","answer_document_id":"gh_comment_1449310849","silver_evidence_path":["gh_comment_1613430901","gh_issue_1604148441","gh_comment_1449310849"],"known_context_document_ids":["gh_issue_1753969026"],"evidence_issue_ids":[1753969026,1604148441],"source_repo_name":"datalad/datalad-registry","source_issue_id":1753969026,"source_issue_url":"https://github.com/datalad/datalad-registry/issues/186","target_repo_name":"datalad/datalad-registry","target_issue_id":1604148441,"target_issue_url":"https://github.com/datalad/datalad-registry/issues/112","split":"test","quality_score":94.71,"annotation_level":"silver"}
{"query_id":"cross_issue_0363","query":"Won't load the seed I input?","query_context":"Hello, when I input a seed, the game still ends up generating a new seed instead of loading the seed I inputted","reference_answer":"This is likely due to what I do here\n\nI set the seed override to false when you're not at a MoonOfTheDay moon.\n\nLooking at their code (which they mention is heavily inspired by MoonOfTheDay), they seem to touch that variable at the same time. So it'd be down to whichever mod loads first, as that one will be overridden iirc.\n\nI think they can fix it by adding a soft dependency to MoonOfTheDay, which should cause their mod to be loaded after mine. Alternatively, they can set their patch to run last.","answer_document_id":"gh_comment_1927527876","silver_evidence_path":["gh_comment_1937840437","gh_issue_2106981213","gh_comment_1927527876"],"known_context_document_ids":["gh_issue_2104934882"],"evidence_issue_ids":[2104934882,2106981213],"source_repo_name":"FlooflesDev/LCSeedPicker","source_issue_id":2104934882,"source_issue_url":"https://github.com/FlooflesDev/LCSeedPicker/issues/10","target_repo_name":"MaxWasUnavailable/MoonOfTheDay","target_issue_id":2106981213,"target_issue_url":"https://github.com/MaxWasUnavailable/MoonOfTheDay/issues/3","split":"test","quality_score":90.2,"annotation_level":"silver"}
{"query_id":"cross_issue_0364","query":"How can I get my output address like rtsp or file address?","query_context":"ENV: \nNVIDIA Jetson Xavier NX (Developer Kit Version)\n Jetpack 4.6 [L4T 32.6.1]\n Board info:\n Type: Xavier NX (Developer Kit Version)\n Libraries:\n CUDA: 10.2.300\n cuDNN: 8.2.1.32\n TensorRT: 8.0.1.6\n Visionworks: 1.6.0.501\n OpenCV: 4.5.1 compiled CUDA: YES\n VPI: ii libnvvpi1 1.1.15 arm64 NVIDIA Vision Programming Interface library\n Vulkan: 1.2.70\n jetson-stats:\n Version 3.1.2\n Works on Python 3.6.9\n\nDeepStream Version 6.0.1\nTensorRT Version 8.0.1.6\n\nmy config file is belowļ¼\n\n[application]\nenable-perf-measurement=1\nperf-measurement-interval-sec=5\n\n[tiled-display]\nenable=1\nrows=1\ncolumns=1\n#width=704\n#height=576\n\nwidth=1920\nheight=1080\ngpu-id=0\nnvbuf-memory-type=0\n\n[source0]\nenable=1\ntype=3\n#uri=file:///opt/nvidia/deepstream/deepstream/samples/streams/sample_1080p_h264.mp4\n#uri=file:///home/dvadmin/wxp/safeHat/video/show-hat.avi\nuri=rtsp://admin:be92319@192.168.0.641:554\nnum-sources=1\ngpu-id=0\ncudadec-memtype=0\n\n[sink0]\nenable=1\ntype=3\ncodec=1\nenc-type=0\nbitrate=4000000\nrtsp-port=8554\nudp-port=5400\nsync=0\n#gpu-id=0\nsource-id=1\n#nvbuf-memory-type=0\n#profile=1\noutput-file=out_res.mp4\nudp-buffer-size=100000\n\n[osd]\nenable=1\ngpu-id=0\nborder-width=5\ntext-size=15\ntext-color=1;1;1;1;\ntext-bg-color=0.3;0.3;0.3;1\nfont=Serif\nshow-clock=0\nclock-x-offset=800\nclock-y-offset=820\nclock-text-size=12\nclock-color=1;0;0;0\nnvbuf-memory-type=0\n\n[streammux]\ngpu-id=0\nlive-source=0\nbatch-size=1\nbatched-push-timeout=40000\nwidth=1920\nheight=1080\nenable-padding=0\nnvbuf-memory-type=0\n\n[primary-gie]\nenable=1\ngpu-id=0\ngie-unique-id=1\nnvbuf-memory-type=0\nconfig-file=config_infer_primary_yoloV5.txt\n\n[tests]\nfile-loop=0\n\nrun log is below:\n\nWARNING: [TRT]: Using an engine plan file across different models of devices is not recommended and is likely to affect performance or even cause errors.\nDeserialize yoloLayer plugin: yolo_93\nDeserialize yoloLayer plugin: yolo_96\nDeserialize yoloLayer plugin: yolo_99\n0:00:05.616159735 5167 0x4219600 INFO nvinfer gstnvinfer.cpp:638:gst_nvinfer_logger: NvDsInferContext[UID 1]: Info from NvDsInferContextImpl::deserializeEngineAndBackend() [UID = 1]: deserialized trt engine from :/home/dvadmin/wxp/tensorrtx/DeepStream-Yolo/model_b1_gpu0_fp32.engine\nINFO: [Implicit Engine Info]: layers num: 4\n0 INPUT kFLOAT data 3x640x640\n1 OUTPUT kFLOAT yolo_93 255x80x80\n2 OUTPUT kFLOAT yolo_96 255x40x40\n3 OUTPUT kFLOAT yolo_99 255x20x20\n\n0:00:05.616422771 5167 0x4219600 INFO nvinfer gstnvinfer.cpp:638:gst_nvinfer_logger: NvDsInferContext[UID 1]: Info from NvDsInferContextImpl::generateBackendContext() [UID = 1]: Use deserialized engine model: /home/dvadmin/wxp/tensorrtx/DeepStream-Yolo/model_b1_gpu0_fp32.engine\n0:00:05.627614037 5167 0x4219600 INFO nvinfer gstnvinfer_impl.cpp:313:notifyLoadModelStatus: [UID 1]: Load new model:/home/dvadmin/wxp/tensorrtx/DeepStream-Yolo/config_infer_primary_yoloV5.txt sucessfully\n\nRuntime commands:\n h: Print this help\n q: Quit\n\n p: Pause\n r: Resume\n\n**PERF: FPS 0 (Avg)\n**PERF: 0.00 (0.00)\n** INFO: : Pipeline ready\n\n** INFO: : Pipeline running\n\n**PERF: 28.15 (27.98)\n**PERF: 25.00 (26.41)\n**PERF: 25.00 (25.92)\n**PERF: 25.00 (25.68)\n**PERF: 25.00 (25.54)\n**PERF: 25.00 (25.45)\n**PERF: 25.01 (25.38)\n**PERF: 24.99 (25.34)\nq\nQuitting\nApp run successful\n\nbut I can not find out put file out_res.mp4\nwhen I set sink0 type is 4, but I can not find out put rtsp url. I try to use rtsp://localhost:8554/ds_test but fail.\nplease help me think you very much","reference_answer":"You can use DeepStream with C++ or Python. My repo shows how to compile DeepStream to use Yolo models. You need edit deepstream apps code (deepstream-test1, deepstream-test2, etc.) as you needed and use compiled files.","answer_document_id":"gh_comment_608170658","silver_evidence_path":["gh_comment_1154643141","gh_issue_592992284","gh_comment_608170658"],"known_context_document_ids":["gh_issue_1264362590"],"evidence_issue_ids":[1264362590,592992284],"source_repo_name":"marcoslucianops/DeepStream-Yolo","source_issue_id":1264362590,"source_issue_url":"https://github.com/marcoslucianops/DeepStream-Yolo/issues/185","target_repo_name":"marcoslucianops/DeepStream-Yolo","target_issue_id":592992284,"target_issue_url":"https://github.com/marcoslucianops/DeepStream-Yolo/issues/1","split":"test","quality_score":92.59,"annotation_level":"silver"}
{"query_id":"cross_issue_0365","query":"HttpMessageHandler Passed To Constructor Of FhirClient Gets Disposed When FhirClient Is Disposed?","query_context":"**Describe the bug**\nWe are using the firely-net-sdk in a project and are experiencing port exhaustion when the server-web-api using the sdk is under high load. To deal with the issue, I tried to reuse the HttpMessageHandler that gets passed into the constructor of the FhirClient. However, the HttpMessageHandler gets disposed with the HttpClientRequester, that is created in the FhirClient's constructor. \n\n**Expected behavior**\nIf I am not mistaken, a class instance passed into a constructor should in general not be disposed by the class using it. The BaseFhirClient should therefore only dispose the HttpMessageHandler if the class BaseFhirClient or the FhirClient created it. If the HttpMessageHandler was passed as a constructor parameter, the handler should not be disposed with the BaseFhirClient.\n\n**Version used:**\n - FHIR Version: R4, maybe other versions are also affected\n - Version: 3.8.0\n\nKind regards,\nAshwani Mehlem","reference_answer":"Noting through those posts it makes the point that it's not the actual HttpClient that is the issue, its the HttpMessageHandler that is the problem, and that's the thing you need to hang onto and the Factory helps manage things better.","answer_document_id":"gh_comment_1090826026","silver_evidence_path":["gh_comment_1095589141","gh_issue_1194225965","gh_comment_1090826026"],"known_context_document_ids":["gh_issue_1186469655"],"evidence_issue_ids":[1186469655,1194225965],"source_repo_name":"FirelyTeam/firely-net-sdk","source_issue_id":1186469655,"source_issue_url":"https://github.com/FirelyTeam/firely-net-sdk/issues/2029","target_repo_name":"FirelyTeam/firely-net-sdk","target_issue_id":1194225965,"target_issue_url":"https://github.com/FirelyTeam/firely-net-sdk/issues/2036","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0366","query":"Fields with `setAllowedCharPattern` do not support some cases of removed `setPreventInvalidInput`?","query_context":"### Describe your motivation\n\nUsing a pattern like \"[0-9]{1,10}\" to restrict the input to maximum 10 digits worked for TextField::setPattern, but not for TextField::setAllowedCharPattern. The new method only seems to check if every part of the input string fulfills the pattern, which an e.g. 15 digit long number does in the above example. But Regex already provides a mechanism to match a pattern multiple times by encapsulating it in a capturing group.\n\n### Describe the solution you'd like\n\nsetAllowedCharPattern should not check if all parts of the input fulfill the pattern, but if the whole input fulfills the pattern. Same behavior as setPattern.","reference_answer":"We removed `setPreventInvalidInput` API in V24 since it was essentially broken. Closing this as no longer relevant.","answer_document_id":"gh_comment_2775858371","silver_evidence_path":["gh_comment_1340982930","gh_issue_1195749639","gh_comment_2775858371"],"known_context_document_ids":["gh_issue_1481837160"],"evidence_issue_ids":[1481837160,1195749639],"source_repo_name":"vaadin/flow-components","source_issue_id":1481837160,"source_issue_url":"https://github.com/vaadin/flow-components/issues/4307","target_repo_name":"vaadin/flow-components","target_issue_id":1195749639,"target_issue_url":"https://github.com/vaadin/flow-components/issues/2986","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0368","query":"Login with UniversalLinkFlow auto direct Safari browser?","query_context":"Hello, I'm applying Line login flow, but when I tried to call Login with UniversalLinkFlow when the Line app was installed before without login, when the Line App opened then auto-directed to the Safari browser.\n- So In this case how to configure to Line app to keep that session without directing it to the browser?\n- I have referred to another app like TikTok when logging Line no login yet, but the Line app still keeps that session.\n- I also tried the example on Line SDK, whose behavior is still directed to the browser.","reference_answer":"Sorry for the delay of syncing up. With discussion of the team, we think the current behavior is expected and there is no plan to make a change for it currently.\n\nI am closing this issue due to the conclusion. Thanks for the report and your understanding.","answer_document_id":"gh_comment_2390478241","silver_evidence_path":["gh_comment_1868694182","gh_issue_2025193932","gh_comment_2390478241"],"known_context_document_ids":["gh_issue_2055310054"],"evidence_issue_ids":[2055310054,2025193932],"source_repo_name":"line/line-sdk-ios-swift","source_issue_id":2055310054,"source_issue_url":"https://github.com/line/line-sdk-ios-swift/issues/202","target_repo_name":"line/flutter_line_sdk","target_issue_id":2025193932,"target_issue_url":"https://github.com/line/flutter_line_sdk/issues/90","split":"test","quality_score":93.38,"annotation_level":"silver"}
{"query_id":"cross_issue_0369","query":"bug: `npm run build` produces non functioning app...","query_context":"One of the recent commits URL that I assume was supposed to reduce disk space and network traffic went wrong and broke the build.\n\nBuilding the HTML5 app uses URL as a last step to compress files exceeding certain size.\n\nThe plugin works in a way where during the `npm run build` it leaves original files produced by `webpack` in place, and produces a `.gz` versions of all files that exceed the threshold specified in webpack config:\n\n URL \n\nWhen using `deleteOriginalAssets: true` the plugin actually removes the uncompressed original files as they are not actually needed on the server\n\nSo a directory produced with `deleteOriginalAssets: false`:\n\n-rw-r--r-- 1 mman staff 1423307 May 21 11:42 60.96569f9e.js\n-rw-r--r-- 1 mman staff 2881 May 21 11:42 60.96569f9e.js.LICENSE.txt\n-rw-r--r-- 1 mman staff 421274 May 21 11:42 60.96569f9e.js.gz\n-rw-r--r-- 1 mman staff 160371 May 21 11:42 main.c742e74d.js\n-rw-r--r-- 1 mman staff 1818 May 21 11:42 runtime-main.17566f78.js\n\nWill look like this when `deleteOriginalAssets: true` is used:\n\n-rw-r--r-- 1 mman staff 421274 May 21 11:42 60.96569f9e.js.gz\n-rw-r--r-- 1 mman staff 160371 May 21 11:42 main.c742e74d.js\n-rw-r--r-- 1 mman staff 1818 May 21 11:42 runtime-main.17566f78.js\n\nThis all looks nice and shiny, until we realise there is \n\n## Problem 1: LICENSE.txt file gets deleted as well\n\nWe can see that it not only deleted the original `.js` file, but it also accidentally got rid of the `.js.LICENSE.txt` file that gets shipped along... This is probably a bug in the `CompressionPlugin`.\n\n## Problem 2: Deleted original `.js` file does not get injected into `index.html`\n\nThere seems to be a race condition between the `CompressionPlugin` and the `HtmlWebpackPlugin` where `HTMLWebpackPlugin` does not properly inject required `.js` files into the `index.html` when they are removed by the `CompressionPlugin`. This should not happen as `CompressionPlugin` is mentioned last in our `webpack.config` but it does happen.\n\nThe result is that running either the `npm run build` or `npm run start` both result in an empty HTML5 app...\n\n
ctx.v1)\nconst v2 = useContextSelector((ctx) => ctx.v2)\nconst v3 = useContextSelector((ctx) => ctx.v3)\n...\n\n...which seems quite verbose to me. Couldn't we simply use a single call such as:\n\nconst { v1, v2, v3 } = useContextSelector(({ v1, v2, v3 }) => ({ v1, v2, v3 }))\n\nThx a lot for your answer! :pray:","reference_answer":"`useSelectorWithEqlFn` creates memoized selector (and you need to pass stable `selector` and `eqlFn`).\n\nI'm not sure if I understand your point. (and I'm not sure if I responded well to your concern.)\n\nBTW, if you are interested in a full implementation with useMutableSource for Redux. I developed this URL . The API is not backward compatible and more like proposing a new pattern.","answer_document_id":"gh_comment_622582548","silver_evidence_path":["gh_comment_1273257451","gh_issue_608689125","gh_comment_622582548"],"known_context_document_ids":["gh_issue_1402988994"],"evidence_issue_ids":[1402988994,608689125],"source_repo_name":"dai-shi/use-context-selector","source_issue_id":1402988994,"source_issue_url":"https://github.com/dai-shi/use-context-selector/issues/93","target_repo_name":"dai-shi/use-context-selector","target_issue_id":608689125,"target_issue_url":"https://github.com/dai-shi/use-context-selector/issues/19","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0375","query":"[Bug]: UnboundLocalError: local variable 'date' referenced before assignment?","query_context":"### Describe the bug.\n\n\"UnboundLocalError: local variable 'date' referenced before assignment\" I am getting this error after trying to load installed models or load outdated models in browser.\n\n### Steps to reproduce the problem.\n\n1. Go to sd-civitai-browser-plus\n2. Press update models\n3. scan for models you need\n4. press load Outdated models to browser\n\n### Expected behavior\n\nnothing works after that\n\n### System info\n\n* Extension version: fbdbc336\n* OS: Windows 11 professional\n* SD-WebUI version: Forge f0.0.17v1.8.0rc-latest-276-g29be1da7\n* Python: 3.10.9\n\n### Console logs\n\nShell\nLaunching Web UI with arguments: --skip-torch-cuda-test --xformers --pin-shared-memory --cuda-malloc --cuda-stream\nUsing cudaMallocAsync backend.\nTotal VRAM 12288 MB, total RAM 32694 MB\nWARNING:xformers:A matching Triton is not available, some optimizations will not be enabled.\nError caught was: No module named 'triton'\nxformers version: 0.0.23.post1\nSet vram state to: NORMAL_VRAM\nAlways pin shared GPU memory\nDevice: cuda:0 NVIDIA GeForce RTX 3060 : cudaMallocAsync\nVAE dtype: torch.bfloat16\nCUDA Stream Activated: True\nUsing xformers cross attention\nControlNet preprocessor location: F:\\Forge\\webui\\models\\ControlNetPreprocessor\n[-] ADetailer initialized. version: 24.3.0, num models: 12\nCivitAI Browser+: Aria2 RPC started\nCivitai: API loaded\nLoading weights [488aab7bd7] from F:\\Forge\\webui\\models\\Stable-diffusion\\mklanArtVersion_mklan201art.safetensors\n2024-03-16 13:37:37,015 - ControlNet - INFO - ControlNet UI callback registered.\nmodel_type EPS\nUNet ADM Dimension 2816\nRunning on local URL: URL \n\nTo create a public link, set `share=True` in `launch()`.\nCivitai: Check resources for missing info files\nCivitai: Check resources for missing preview images\nStartup time: 17.6s (prepare environment: 3.9s, import torch: 4.1s, import gradio: 0.9s, setup paths: 0.7s, initialize shared: 0.1s, other imports: 0.5s, load scripts: 4.9s, create ui: 2.1s, gradio launch: 0.2s).\nUsing xformers attention in VAE\nWorking with z of shape (1, 4, 32, 32) = 4096 dimensions.\nUsing xformers attention in VAE\nCivitai: Found 0 resources missing info files\nCivitai: No info found on Civitai\nCivitai: Found 29 resources missing preview images\nCivitai: Found 16 hash matches\nCivitai: Updated 0 preview images\nextra {'cond_stage_model.clip_l.text_projection', 'cond_stage_model.clip_l.logit_scale', 'cond_stage_model.clip_g.transformer.text_model.embeddings.position_ids'}\nTo load target model SDXLClipModel\nBegin to load 1 model\n[Memory Management] Current Free GPU Memory (MB) = 11228.910247802734\n[Memory Management] Model Memory (MB) = 2144.3546981811523\n[Memory Management] Minimal Inference Memory (MB) = 1024.0\n[Memory Management] Estimated Remaining GPU Memory (MB) = 8060.555549621582\nMoving model(s) has taken 0.53 seconds\nModel loaded in 7.0s (load weights from disk: 0.3s, forge load real models: 5.8s, calculate empty prompt: 0.8s).\nCivitAI Browser+: model: \"PontiusMIX.safetensors\" not found on CivitAI servers.\nCivitAI Browser+: \"Mklan Anime version\" is currently outdated.\nCivitAI Browser+: \"RealCartoon3D\" is currently outdated.\nCivitAI Browser+: \"Cora from Mass Effect: Andromeda\" is currently outdated.\nTraceback (most recent call last):\n File \"F:\\Forge\\webui\\venv\\lib\\site-packages\\gradio\\routes.py\", line 488, in run_predict\n output = await app.get_blocks().process_api(\n File \"F:\\Forge\\webui\\venv\\lib\\site-packages\\gradio\\blocks.py\", line 1431, in process_api\n result = await self.call_function(\n File \"F:\\Forge\\webui\\venv\\lib\\site-packages\\gradio\\blocks.py\", line 1103, in call_function\n prediction = await anyio.to_thread.run_sync(\n File \"F:\\Forge\\webui\\venv\\lib\\site-packages\\anyio\\to_thread.py\", line 33, in run_sync\n return await get_asynclib().run_sync_in_worker_thread(\n File \"F:\\Forge\\webui\\venv\\lib\\site-packages\\anyio\\_backends\\_asyncio.py\", line 877, in run_sync_in_worker_thread\n return await future\n File \"F:\\Forge\\webui\\venv\\lib\\site-packages\\anyio\\_backends\\_asyncio.py\", line 807, in run\n result = context.run(func, *args)\n File \"F:\\Forge\\webui\\venv\\lib\\site-packages\\gradio\\utils.py\", line 707, in wrapper\n response = f(*args, **kwargs)\n File \"F:\\Forge\\webui\\extensions\\sd-civitai-browser-plus\\scripts\\civitai_file_manage.py\", line 1144, in load_to_browser\n model_list_return = _api.update_model_list(from_ver=True, tile_count=tile_count)\n File \"F:\\Forge\\webui\\extensions\\sd-civitai-browser-plus\\scripts\\civitai_api.py\", line 542, in update_model_list\n HTML = model_list_html(gl.json_data)\n File \"F:\\Forge\\webui\\extensions\\sd-civitai-browser-plus\\scripts\\civitai_api.py\", line 325, in model_list_html\n model_card = f' '\nUnboundLocalError: local variable 'date' referenced before assignment\n\n### Additional information\n\n_No response_","reference_answer":"I've now published an update which fixes the paging issues with the new API! v3.5.0\n\nDo note, it's no longer possible to jump directly to a specific page unless that page has already been visited, this is the result of the new \"cursor\" based paging system which was required due to the amount of models on CivitAI.\n\nAlso another note, currently the API returns the error:\n\nError: 500 Server Error: Internal Server Error for url\n\nQuite often, there is nothing I can do about this, as this is an issue caused by the CivitAI API.\nI assume this will get fixed after some time! :)\nFor the time being, I've made a bug report for it here: #233\n\nOther than that, everything should be working again!\nPlease feel free to create a bug report if you encounter any other issues.","answer_document_id":"gh_comment_2002172350","silver_evidence_path":["gh_comment_2001975092","gh_issue_2189284931","gh_comment_2002172350"],"known_context_document_ids":["gh_issue_2189847980"],"evidence_issue_ids":[2189847980,2189284931],"source_repo_name":"BlafKing/sd-civitai-browser-plus","source_issue_id":2189847980,"source_issue_url":"https://github.com/BlafKing/sd-civitai-browser-plus/issues/231","target_repo_name":"BlafKing/sd-civitai-browser-plus","target_issue_id":2189284931,"target_issue_url":"https://github.com/BlafKing/sd-civitai-browser-plus/issues/229","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0377","query":"Add comment button should move focus to the new comment?","query_context":"Issues reported by @albinazs as part of WCAG 2.2 accessibility audit.\n\n### Issue Summary\n\nWhen editing pages and adding the first comment, focus doesn't move to the comment box. This works as expected when the comment panel is already opened, but not when itās closed.\n\nIllustration:\n\nadd comment interaction recording\n\n### Steps to Reproduce\n\n1. Go to any page editing form (for example URL \n2. With the keyboard or mouse, active a \"Add comment\" button next to a field\n3. Observe focus isnāt moving to the commenting box\n\n### Working on this\n\nThis requires investigating the comment implementation in JS/React/Redux. Anyone can contribute to this. View our contributing guidelines, add a comment to the issue once youāre ready to start.","reference_answer":"Update - I closed URL as it was not able to be reviewed and was painful to keep rebasing.\n\nHappy to re-raise this PR again if there is capacity to review.","answer_document_id":"gh_comment_2456829271","silver_evidence_path":["gh_comment_1891430738","gh_issue_1933570370","gh_comment_2456829271"],"known_context_document_ids":["gh_issue_2078410239"],"evidence_issue_ids":[2078410239,1933570370],"source_repo_name":"wagtail/wagtail","source_issue_id":2078410239,"source_issue_url":"https://github.com/wagtail/wagtail/issues/11450","target_repo_name":"wagtail/wagtail","target_issue_id":1933570370,"target_issue_url":"https://github.com/wagtail/wagtail/issues/11021","split":"test","quality_score":86.85,"annotation_level":"silver"}
{"query_id":"cross_issue_0378","query":"Numbers don't update correctly when reordering list items?","query_context":"### Description\n\n**Expected behavior:** When moving items up or down in an ordered list, the list content should move while the list numbers don't, maintaining a proper sequence. \n\n**Buggy behavior:** When moving items up or down in an ordered list, the list numbers follow the content, breaking the proper sequence of the list. \n\n### Reproducing\n\nWrite a list:\n\n1- apple\n2- banana\n3- coconut\n4- daikon\n\nNavigate the caret to list item #2, press `Alt`+`ā` to move that item into #1 position. That yields the following output:\n\n2- banana\n1- apple\n3- coconut\n4- daikon\n\n(I'm using \"2-\", \"1-\" etc. because if I use \"2.\", \"1.\" etc. then github will render them sequentially rather than in my custom order, above.)\n\n### Zettlr Version\n\nBeta (if applicable)\n\n### Specify version\n\n3.0.0-beta.4\n\n### Installation Method\n\nFrom the Website or GitHub\n\n### Your Platform\n\n- [X] Windows\n- [ ] macOS\n- [ ] Linux\n\n### Architecture\n\n- [X] Intel 64bit\n- [ ] ARM 64bit\n\n### Operating System Version\n\nWindows 10\n\n### Additional Information\n\n_No response_","reference_answer":"@MediocrityXT The PR you referenced was about continuing the correct numbering, not when you delete an item. And yes, it is hard to fix it and that's why it has not yet been fixed.","answer_document_id":"gh_comment_986778477","silver_evidence_path":["gh_comment_1583844473","gh_issue_639839427","gh_comment_986778477"],"known_context_document_ids":["gh_issue_1709060658"],"evidence_issue_ids":[1709060658,639839427],"source_repo_name":"Zettlr/Zettlr","source_issue_id":1709060658,"source_issue_url":"https://github.com/Zettlr/Zettlr/issues/4327","target_repo_name":"Zettlr/Zettlr","target_issue_id":639839427,"target_issue_url":"https://github.com/Zettlr/Zettlr/issues/937","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0379","query":"remove political capital from the game?","query_context":"the system where you unlock scenarios and upgrade units is now out of scope\n\nwhat can be fun instead is a simple high score system. we can display it to the player on the score tally modal\n\n(the reason i suggest anything in its stead is because _earning_ political capital is already implemented. players just can't buy anything with it)","reference_answer":"implemented in:\n- eccf122960cbb15ef3c68fbe0670b261a5d8ba61\n- 09e5f28222c91772c1776f6c45b4d1faabf2a5bb\n- b3b5fa039f57194bb1d550fa1844a28242ab668c\n- other surrounding commits","answer_document_id":"gh_comment_1592045757","silver_evidence_path":["gh_comment_1586499131","gh_issue_1740636955","gh_comment_1592045757"],"known_context_document_ids":["gh_issue_1718621665"],"evidence_issue_ids":[1718621665,1740636955],"source_repo_name":"mucrow/MobileTowerDefense","source_issue_id":1718621665,"source_issue_url":"https://github.com/mucrow/MobileTowerDefense/issues/46","target_repo_name":"mucrow/MobileTowerDefense","target_issue_id":1740636955,"target_issue_url":"https://github.com/mucrow/MobileTowerDefense/issues/57","split":"test","quality_score":70.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0380","query":"Unclear TensorRT version match?","query_context":"**Description**\nI use the docker containers to export an ONNX model to TenosrRT to use with the triton server. Each release of URL always expects a specific version of TensorRT, but this version does not exactly match the version of the Triton server. So it is unclear to me which release of onnx-tensorrt I should match with which release of triton-infernce-server?","reference_answer":"I would recommend using trtexec over onnx2trt as the CLI interface for converting ONNX models into TensorRT engines since it is more actively maintained. \n\nonnx2trt hasn't been updated in a while, and we are planning to deprecate it in favor of trtexec soon.","answer_document_id":"gh_comment_752759384","silver_evidence_path":["gh_comment_1033238586","gh_issue_654488247","gh_comment_752759384"],"known_context_document_ids":["gh_issue_1127531600"],"evidence_issue_ids":[1127531600,654488247],"source_repo_name":"triton-inference-server/server","source_issue_id":1127531600,"source_issue_url":"https://github.com/triton-inference-server/server/issues/3904","target_repo_name":"onnx/onnx-tensorrt","target_issue_id":654488247,"target_issue_url":"https://github.com/onnx/onnx-tensorrt/issues/500","split":"test","quality_score":86.67,"annotation_level":"silver"}
{"query_id":"cross_issue_0381","query":"Editing with Synchronised Clips Causes Random Glitches During Playback?","query_context":"Hi there,\nI am doing my first project with BrawTool in FCPX and i have a huge problem. When i trim a clip on the timeline the trimviewer don't move and it doesn't trim either. Strangely enough it trims when i do it at the end of the clip. See screenVid of the problem.\nI hope this is some weird glitch which can be solve soon or i have to revert back to resolve to edit. Please help.\nI restarted fcpx several times and also my mac studio. No solution. \n\n URL","reference_answer":"@tangierc - You'll find this interesting...\n\nApple has gotten back to us after reviewing this, and believe it or not, it's actually got nothing to do with BRAW Toolbox itself, it's because we're applying it to a static generator! If you add keyframes to the generator or if you replace the generator with something like \"Clouds\" it'll fix the issue!\n\nWe'll investigate a proper fix in BRAW Toolbox soon, and try and find a solution for fixing existing libraries - which should be easy, as we can just replace the static generator with Clouds, etc.","answer_document_id":"gh_comment_1579617836","silver_evidence_path":["gh_comment_1539271014","gh_issue_1701164620","gh_comment_1579617836"],"known_context_document_ids":["gh_issue_1676906261"],"evidence_issue_ids":[1676906261,1701164620],"source_repo_name":"latenitefilms/BRAWToolbox","source_issue_id":1676906261,"source_issue_url":"https://github.com/latenitefilms/BRAWToolbox/issues/116","target_repo_name":"latenitefilms/BRAWToolbox","target_issue_id":1701164620,"target_issue_url":"https://github.com/latenitefilms/BRAWToolbox/issues/128","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0382","query":"bug(@vtmn/react) `VtmnDropdown` component always display label although it is not configured?","query_context":"**Describe the bug**\nIn the React Showcase of the VtmnDropdown component, it say that if the label is not set, it will not disayed but it's still here\n\n**Steps to reproduce**\n- install React \n- install Vtmn package for React\n\n**Expected behavior**\nNormally, if the label is not set, it does not appear\n\n**Version affected**\n@react: 18.2.0\n@vtmn/react: 0.67.0\n\nScreenshot from 2023-03-24 11-30-26\nScreenshot from 2023-03-24 11-30-08","reference_answer":"Thanks @jdeca-decat for this issue.\nAs the `@vtmn/react` is a community library, I hope someone will take this issue to help you.\nIf you want, feel free to contribute also! We are there to help you if needed regarding launching & contributing on the vitamin-web stack.","answer_document_id":"gh_comment_1482725724","silver_evidence_path":["gh_comment_1485739651","gh_issue_1639250838","gh_comment_1482725724"],"known_context_document_ids":["gh_issue_1639131903"],"evidence_issue_ids":[1639131903,1639250838],"source_repo_name":"Decathlon/vitamin-web","source_issue_id":1639131903,"source_issue_url":"https://github.com/Decathlon/vitamin-web/issues/1399","target_repo_name":"Decathlon/vitamin-web","target_issue_id":1639250838,"target_issue_url":"https://github.com/Decathlon/vitamin-web/issues/1401","split":"test","quality_score":79.35,"annotation_level":"silver"}
{"query_id":"cross_issue_0383","query":"Issue: nmap plugin misses HTTP services?","query_context":"## Issue description\nA large part of existing Tsunami plugins identifies vulnerabilities in HTTP based web services. Thus, it is important that these services are identified correctly. Turns out the nmap plugin (or more precise nmap itself) is really bad at this.\n\nFor example, I'm currently developing a plugin for a vulnerability in MinIO. MinIO runs a HTTP based API, usually on TCP port 9000. Here the output from nmap (version 7.93), using the same parameters as the nmap plugin:\n\nnmap --unprivileged -Pn -n -sT -sV --version-intensity 5 -T4 --script banner 172.21.0.4 -p 9000\nStarting Nmap 7.93 ( URL ) at 2023-04-06 08:46 CEST\nNmap scan report for 172.21.0.4\nHost is up (0.00029s latency).\n\nPORT STATE SERVICE VERSION\n9000/tcp open cslistener?\n| fingerprint-strings: \n| GenericLines, Help, Kerberos, RTSPRequest, SIPOptions, SSLSessionReq, TLSSessionReq: \n| HTTP/1.1 400 Bad Request\n| Content-Type: text/plain; charset=utf-8\n| Connection: close\n| Request\n| GetRequest: \n| HTTP/1.0 400 Bad Request\n| Accept-Ranges: bytes\n| Content-Length: 232\n| Content-Type: application/xml\n| Server: MinIO\n| Vary: Origin\n| Date: Thu, 06 Apr 2023 06:46:32 GMT\n| \n| InvalidRequest Invalid Request (invalid argument) / ed2576f8-f43d-4c0d-8bf5-60fd0bf780cc \n| HTTPOptions: \n| HTTP/1.0 200 OK\n| Vary: Origin\n| Date: Thu, 06 Apr 2023 06:46:32 GMT\n|_ Content-Length: 0\n1 service unrecognized despite returning data. If you know the service/version, please submit the following fingerprint at URL :\nSF-Port9000-TCP:V=7.93%I=5%D=4/6%Time=642E6AC8%P=x86_64-unknown-linux-gnu%\nSF:r(GenericLines,67,\"HTTP/1\\.1\\x20400\\x20Bad\\x20Request\\r\\nContent-Type:\\\nSF:x20text/plain;\\x20charset=utf-8\\r\\nConnection:\\x20close\\r\\n\\r\\n400\\x20B\nSF:ad\\x20Request\")%r(GetRequest,190,\"HTTP/1\\.0\\x20400\\x20Bad\\x20Request\\r\\\nSF:nAccept-Ranges:\\x20bytes\\r\\nContent-Length:\\x20232\\r\\nContent-Type:\\x20\nSF:application/xml\\r\\nServer:\\x20MinIO\\r\\nVary:\\x20Origin\\r\\nDate:\\x20Thu,\nSF:\\x2006\\x20Apr\\x202023\\x2006:46:32\\x20GMT\\r\\n\\r\\n \\n InvalidRequest Invalid\\x20Request\\x20\\(invalid\\x20argument\\) / ed2576f8-f43d-4c0d-8bf5-60fd0bf7\nSF:80cc \")%r(HTTPOptions,59,\"HTTP/1\\.0\\x20200\\x20OK\\r\\nVar\nSF:y:\\x20Origin\\r\\nDate:\\x20Thu,\\x2006\\x20Apr\\x202023\\x2006:46:32\\x20GMT\\r\nSF:\\nContent-Length:\\x200\\r\\n\\r\\n\")%r(RTSPRequest,67,\"HTTP/1\\.1\\x20400\\x20\nSF:Bad\\x20Request\\r\\nContent-Type:\\x20text/plain;\\x20charset=utf-8\\r\\nConn\nSF:ection:\\x20close\\r\\n\\r\\n400\\x20Bad\\x20Request\")%r(Help,67,\"HTTP/1\\.1\\x2\nSF:0400\\x20Bad\\x20Request\\r\\nContent-Type:\\x20text/plain;\\x20charset=utf-8\nSF:\\r\\nConnection:\\x20close\\r\\n\\r\\n400\\x20Bad\\x20Request\")%r(SSLSessionReq\nSF:,67,\"HTTP/1\\.1\\x20400\\x20Bad\\x20Request\\r\\nContent-Type:\\x20text/plain;\nSF:\\x20charset=utf-8\\r\\nConnection:\\x20close\\r\\n\\r\\n400\\x20Bad\\x20Request\"\nSF:)%r(TLSSessionReq,67,\"HTTP/1\\.1\\x20400\\x20Bad\\x20Request\\r\\nContent-Typ\nSF:e:\\x20text/plain;\\x20charset=utf-8\\r\\nConnection:\\x20close\\r\\n\\r\\n400\\x\nSF:20Bad\\x20Request\")%r(Kerberos,67,\"HTTP/1\\.1\\x20400\\x20Bad\\x20Request\\r\\\nSF:nContent-Type:\\x20text/plain;\\x20charset=utf-8\\r\\nConnection:\\x20close\\\nSF:r\\n\\r\\n400\\x20Bad\\x20Request\")%r(SIPOptions,67,\"HTTP/1\\.1\\x20400\\x20Bad\nSF:\\x20Request\\r\\nContent-Type:\\x20text/plain;\\x20charset=utf-8\\r\\nConnect\nSF:ion:\\x20close\\r\\n\\r\\n400\\x20Bad\\x20Request\");\n\nService detection performed. Please report any incorrect results at URL .\nNmap done: 1 IP address (1 host up) scanned in 36.58 seconds\n\nWhen the nmap scanner plugin parses the XML output, the extractServiceFromNmapRun method is invoked. To identify web services, it calls Tsunamies NetworkServiceUtils.isWebService which simply checks the service name against a list of known \"nmap patterns\":\n\njava\n private static final ImmutableMap IS_PLAIN_HTTP_BY_KNOWN_WEB_SERVICE_NAME =\n ImmutableMap. builder()\n .put(\"http\", true)\n .put(\"http-alt\", true) // Some http server are identified as this rather than \"http\".\n .put(\"http-proxy\", true)\n .put(\"https\", false)\n .put(\"radan-http\", true) // Port 8088, Hadoop Yarn web UI identified as this.\n .put(\"ssl/http\", false)\n .put(\"ssl/https\", false)\n .put(\"ssl/http-proxy\", false)\n .build();\n\nThis requires that nmap identifies the HTTP service correctly. However, the basic fingerprinting of nmap is less \"advanced\" as most people assume. To my knowledge the fingerprinting does not allow \"dynamic values\" (for example the hostname/IP address) in the request. This would be required to send a HTTP 1.1 request. Nmap is therefore only uses a simple \"HTTP 1.0\" request that does not require a \"Host:\" header field.\n\nThis works fine if the HTTP service still fully supports HTTP 1.0 but for many modern web service implementations, this is no longer the case. The MinIO server for example returns with a HTTP 400 error, which does not match with the service fingerprints from nmap:\n\nGET / HTTP/1.0\n\nHTTP/1.0 400 Bad Request\nAccept-Ranges: bytes\nContent-Length: 232\nContent-Type: application/xml\nServer: MinIO\nVary: Origin\nDate: Thu, 06 Apr 2023 07:06:03 GMT\n\n \n InvalidRequest Invalid Request (invalid argument) / ed2576f8-f43d-4c0d-8bf5-60fd0bf780cc \n\n \nAs a result, the service is not identified as a web service and is not scanned by plugins that should actually be executed.\n\n## Suggested solution/improvement\n\nI think the best solution would to improve the code in the `extractServiceFromNmapRun`. The code should take the additional scan data from the NMAP output into account and use that to perform additional HTTP / service fingerprinting by analyzing the \"GetRequest\" output that is also included in the scan:\n\n| GetRequest: \n| HTTP/1.0 400 Bad Request\n| Accept-Ranges: bytes\n| Content-Length: 232\n| Content-Type: application/xml\n| Server: MinIO\n| Vary: Origin\n| Date: Thu, 06 Apr 2023 06:46:32 GM\n\nI can implement this, but I thought I might discuss this first.","reference_answer":"Hi @fmunozs,\n\nSorry I realized that I did not answer. This is intentional, when performing tests internally we found that this is the best trade-off for us.\n\n_~tooryx_","answer_document_id":"gh_comment_3052838334","silver_evidence_path":["gh_comment_1500801988","gh_issue_1651173103","gh_comment_3052838334"],"known_context_document_ids":["gh_issue_1656817413"],"evidence_issue_ids":[1656817413,1651173103],"source_repo_name":"google/tsunami-security-scanner-plugins","source_issue_id":1656817413,"source_issue_url":"https://github.com/google/tsunami-security-scanner-plugins/issues/303","target_repo_name":"google/tsunami-security-scanner-plugins","target_issue_id":1651173103,"target_issue_url":"https://github.com/google/tsunami-security-scanner-plugins/issues/298","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0384","query":"vsyscall=emulate not working anymore ?","query_context":"WslLogs-2025-06-02_17-40-38.zip\n\n### Windows Version\n\n10.0.19045.5854\n\n### WSL Version\n\n2.5.7.0\n\n### Are you using WSL 1 or WSL 2?\n\n- [x] WSL 2\n- [ ] WSL 1\n\n### Kernel Version\n\n6.6.87.1-1\n\n### Distro Version\n\nUbuntu 22.04LTS\n\n### Other Software\n\nSince some days / weeks (cannot say it precisely), a binary program that used to work thanks to the vsyscall emulation, fails now with a segmentation fault. i have tried all possible values for vsyscall, with no success.\nHas anything changed in WSL kernel lately that breaks backward compatibility ?\n\nHere is the gdb backtrace:\n`\nProgram received signal SIGSEGV, Segmentation fault.\n0xffffffffff600000 in ?? ()\n(gdb) bt full\n#0 0xffffffffff600000 in ?? ()\nNo symbol table info available.\n#1 0x00000000004daa2d in gettimeofday () at ../sysdeps/unix/sysv/linux/x86_64/gettimeofday.S:37\nNo locals.\n#2 0x000000000043f4ab in for_since_epoch_t ()\nNo symbol table info available.\n#3 0x000000000041e0ff in for_rtl_init_ ()\nNo symbol table info available.\n#4 0x0000000000400359 in main ()\nNo symbol table info available.\n#5 0x00000000004c1e94 in __libc_start_main (main=0x400330 , argc=1, ubp_av=0x7fffffffd788, init=0x4c2380 , fini=0x4c2340 , rtld_fini=0x0, stack_end=0x7fffffffd778)\n at libc-start.c:226\n self = \n result = \n ubp_ev = \n auxvec = \n stack_chk_guard = \n unwind_buf = {cancel_jmp_buf = {{jmp_buf = {0, 0, 0, 4989760, 4989824, 0, -1386217472, 653851885568}, mask_was_saved = 0}}, priv = {pad = {0x0, 0x0, 0x0, 0x0}, data = {prev = 0x0, cleanup = 0x0,\n canceltype = 0}}}\n not_first_call = \n#6 0x0000000000400239 in _start () at ../sysdeps/x86_64/elf/start.S:113\nNo locals.\n`\n\n### Repro Steps\n\nRun an old binary on an Ubuntu 22.04 running on the latest wsl2. fails with a Segmentation Fault\n\n### Expected Behavior\n\nThe program shall run normally. (as it used to)\n\n### Actual Behavior\n\nThe program ends with a Segmentation fault issue\n\n### Diagnostic Logs\n\n_No response_","reference_answer":"We're planning to fix this issue in the next kernel release. In the meantime, you can build a custom kernel with the config enabled as a workaround.","answer_document_id":"gh_comment_2932365126","silver_evidence_path":["gh_comment_2931862502","gh_issue_3096876409","gh_comment_2932365126"],"known_context_document_ids":["gh_issue_3110684800"],"evidence_issue_ids":[3110684800,3096876409],"source_repo_name":"microsoft/WSL","source_issue_id":3110684800,"source_issue_url":"https://github.com/microsoft/WSL/issues/13031","target_repo_name":"microsoft/WSL","target_issue_id":3096876409,"target_issue_url":"https://github.com/microsoft/WSL/issues/12987","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0385","query":"[Lab messages] Using the 'Person search' option when creating new entities, via processing lab messages, creates a new person?","query_context":"### Bug Description\n \nWhen processing lab messages to create new entities (cases and contacts), if the user uses the 'Person Search' option, the newly created entity is not associated with the selected person, but instead a new person gets created.\n\n### Steps to Reproduce\n \n1. Create a person by creating a new entity (i.e. 'person1');\n2. Navigate to 'Lab messages' in the 'Samples' directory and click 'Process' on an unprocessed lab message;\n3. In the first pop-up for 'Pick or create person' select 'Create new person' and click 'Confirm';\n4. In the second pop-up for 'Pick or create entry' select 'Create new case' or 'Create new contact';\n5. In the 'Create new case/contact' form, for the person related fields, use the 'Person search' option to select the person created at step1 ('person1');\n6. Save the new entity (case or contact);\n7. Navigate to the 'Persons' directory and observe the entities.\n\n### Actual Behavior\n \nThere are 2 persons with the details of 'person1', but one of them is associated with the entity created at step1 and one of them is associated with the entity created at step6.\n\n### Expected Behavior\n \nThere is 1 person with the details of 'person1' and it has 2 entities associated: the entity created at step1 and the entity created at step6.\n\n### Screenshots\n \nimage\n\nimage\n\n### System Details\n \n* Device: Windows 10\n* SORMAS version: 1.69.0-SNAPSHOT\n* Android version/Browser: Chrome\n* Server URL: test-de2.sormas.netzlink.com\n* User Role: Admin, NatUser\n\n### Additional Information\n \nNote 1: When processing a lab message and choosing to create a new event participant, the behavior described in the ticket does not reproduce.\n\nNote 2: This issue might be related to ticket #8012","reference_answer":"@bernardsilenou Almost. I think what you need to realize is that using the search function is totally different than triggering duplicate detection. The search will merely serve as a selection option of existing persons. Selecting a person will basically fill the person_id in the case table with an existing reference and therefore, duplicate detection would not be triggered, yes.\n\nThink of converting contacts or ep's to cases, the person link is already there. It will work the same way when selecting existing persons.","answer_document_id":"gh_comment_913758296","silver_evidence_path":["gh_comment_1044048061","gh_issue_987152905","gh_comment_913758296"],"known_context_document_ids":["gh_issue_1138657743"],"evidence_issue_ids":[1138657743,987152905],"source_repo_name":"hzi-braunschweig/SORMAS-Project","source_issue_id":1138657743,"source_issue_url":"https://github.com/hzi-braunschweig/SORMAS-Project/issues/8013","target_repo_name":"hzi-braunschweig/SORMAS-Project","target_issue_id":987152905,"target_issue_url":"https://github.com/hzi-braunschweig/SORMAS-Project/issues/6599","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0387","query":"Ensure that all codeowners are members of the OpenTelemetry organization?","query_context":"### Component(s)\n\n_No response_\n\n### Describe the issue you're reporting\n\n_See URL for the last campaign_\n\nNot all codeowners of this repository are members of the OpenTelemetry github organization, which membership is associated with membership of the OpenTelemetry project.\n\nThe guidelines enforce membership because it allows to assign and ping codeowners on issues or pull requests. Unfortunately, if you try to create an issue or assign a PR to a codeowner who is not member of OpenTelemetry, the workflow fails. I would like to fix this issue.\n\nGoing forward, I would also ideally like to make sure that we check that codeowners are members of the github organization whenever the codeowners file is touched.\n\nThe process to become a member of OpenTelemetry is straightforward. Open this issue template on the community project to get started.\n\nI have identified a list of codeowners who are not currently members of OpenTelemetry. I will ping them in this issue below.\n1. Please cross your name to indicate you have seen this message.\n2. (optional) Please get in touch over Slack: I have created a slack channel for the purpose of codeowner discussions, #otel-collector. Feel free to reply here as well and provide clarifications if any information is incorrect.\n3. Please work towards membership. Feel free to use 2. for any questions.\n4. If I don't hear from you in the next 60 days (tentative), I will open an issue to follow up. The issue will offer to either help you become a member or open a pull request to move to emeritus status.\n\n* [ ] @Caleb-Hurshman\n* [ ] @MaxKsyunz\n* [ ] @MitchellGale\n* [ ] @YANG-DB\n* [ ] @asaharn\n* [x] @billmeyer\n* [x] @emreyalvac\n* [ ] @shaochengwang\n* [ ] @yiyang5055\n* [ ] @am-kinetica\n* [x] @mcube8\n* [x] @sokoide\n* [x] @zdaratom\n* [x] @braydonk\n\nThank you and apologies for the inconvenience.","reference_answer":"I would prefer to remove the old account, since having multiple accounts may imply multiple votes during elections for example.\n\n@open-telemetry/governance-committee what is your take here?","answer_document_id":"gh_comment_1894897390","silver_evidence_path":["gh_comment_1894100385","gh_issue_2083273582","gh_comment_1894897390"],"known_context_document_ids":["gh_issue_2081282258"],"evidence_issue_ids":[2081282258,2083273582],"source_repo_name":"open-telemetry/opentelemetry-collector-contrib","source_issue_id":2081282258,"source_issue_url":"https://github.com/open-telemetry/opentelemetry-collector-contrib/issues/30552","target_repo_name":"open-telemetry/community","target_issue_id":2083273582,"target_issue_url":"https://github.com/open-telemetry/community/issues/1876","split":"test","quality_score":78.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0388","query":"Expected to read 4 header bytes but only received 0.","query_context":"### The issue\nThis error is thrown on `SaveChanges` in one Web Api Action, every time. Other Actions don't have this issue.\nI am updating about 20 entries in this SaveChanges, more than in others. After getting this error in this one place a few times, other actions also starts throwing it. After a few seconds they go back to normal.\n\nI am using the latest MySQL on Google Cloud, and I am using **SSL** for connections.\nI am surprised at how little info on this issue is on the web, and this seems to be a completely generic error.\n\n**connect_timeout** 10\n**delayed_insert_timeout** 300\n**have_statement_timeout** YES\n**innodb_flush_log_at_timeout** 1\n**innodb_lock_wait_timeout** 50\n**innodb_rollback_on_timeout** OFF\n**interactive_timeout** 28800\n**lock_wait_timeout** 31536000\n**net_read_timeout** 30\n**net_write_timeout** 600\n**rpl_stop_slave_timeout** 31536000\n**slave_net_timeout** 30\n**wait_timeout** 28800\n\nException message:\nStack trace:\n\nSystem.IO.EndOfStreamException: Expected to read 4 header bytes but only received 0.\n at MySqlConnector.Protocol.Serialization.ProtocolUtility. g__AddContinuation|5_0(ValueTask`1 readPacketTask, BufferedByteReader bufferedByteReader, IByteHandler byteHandler, Func`1 getNextSequenceNumber, ArraySegmentHolder`1 previousPayloads, ProtocolErrorBehavior protocolErrorBehavior, IOBehavior ioBehavior) in /_/src/MySqlConnector/Protocol/Serialization/ProtocolUtility.cs:line 476\n at MySqlConnector.Core.ServerSession.ReceiveReplyAsyncAwaited(ValueTask`1 task) in /_/src/MySqlConnector/Core/ServerSession.cs:line 943\n\n### Further technical details\n\nMySQL version: 8.0.18-google\nPomelo.EntityFrameworkCore.MySql version: 6.0.1\nMicrosoft.AspNetCore.App version: 6.0","reference_answer":"The general meaning of this error is that the library is waiting for data from the server, but none has arrived (and I think the connection has been closed, otherwise a timeout would have occurred). \n\nI note that this seems to be coming from `CreateMinimumPooledSessions`; is there any improvement if you set `MinPoolSize=0` in your connection string?\n\nFinally, these code style issues are unlikely to be contributing to the problem, but you have unnecessary patterns in your code. The `try`/`catch { throw; }`/`finally` code can all be deleted; `using (var conn = new MySqlConnection())` will correctly close (Dispose) the connection when control leaves the `using` block. You should also add a second `using` block around `using (var grid = await conn.QueryMultipleAsync())` because Dapper's GridReader is `IDisposable`.","answer_document_id":"gh_comment_429013538","silver_evidence_path":["gh_comment_1023765792","gh_issue_368923078","gh_comment_429013538"],"known_context_document_ids":["gh_issue_1116814296"],"evidence_issue_ids":[1116814296,368923078],"source_repo_name":"PomeloFoundation/Pomelo.EntityFrameworkCore.MySql","source_issue_id":1116814296,"source_issue_url":"https://github.com/PomeloFoundation/Pomelo.EntityFrameworkCore.MySql/issues/1610","target_repo_name":"mysql-net/MySqlConnector","target_issue_id":368923078,"target_issue_url":"https://github.com/mysql-net/MySqlConnector/issues/571","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0389","query":"build: 16 KB native library alignment on Android?","query_context":"**Description**\n\nThe Google Play console gives the following warning on `flutter_soloud` native artefacts:\n\n* Recompile your app with 16 KB native library alignment\n\nI'm not exactly sure what's needed to be changed. Here is the Android reference on this:\n URL \n\nLibraries that do not support 16 KB:\n\nbase/lib/arm64-v8a/libflutter_soloud_plugin.so\nbase/lib/arm64-v8a/libogg.so\nbase/lib/arm64-v8a/libopus.so\nbase/lib/x86_64/libflutter_soloud_plugin.so\nbase/lib/x86_64/libogg.so\nbase/lib/x86_64/libopus.so\n\n**Requirements**\n\n- [ ] The build system is passing","reference_answer":"On Android gradle decides, with the building tasks, what needs to be built. If you change some native sources or the CMakeLists, the native build is for sure triggered, but if you change an environment variable, nothing is changed for gradle and nothing is rebuilt.\n\nTo trigger the rebuild when an environment variable is changed, I have added this task which triggers the `externalNativeBuild` with a cmake argument. If this argument changes, the rebuild is performed.\n\nThis is what I understood looking around, but maybe I am wrong. Anyway it works :)\n\nI tried this solution in the app gradle without success, I think because the app does not need to build native code.","answer_document_id":"gh_comment_2710272126","silver_evidence_path":["gh_comment_2962548761","gh_issue_2904915070","gh_comment_2710272126"],"known_context_document_ids":["gh_issue_3080513619"],"evidence_issue_ids":[3080513619,2904915070],"source_repo_name":"alnitak/flutter_soloud","source_issue_id":3080513619,"source_issue_url":"https://github.com/alnitak/flutter_soloud/issues/248","target_repo_name":"alnitak/flutter_soloud","target_issue_id":2904915070,"target_issue_url":"https://github.com/alnitak/flutter_soloud/issues/198","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0390","query":"Determine BIDS-friendly naming scheme for Webknossos datasets with multiple imaging layers?","query_context":"## Description\n\nWe are working towards naming all assets on the LINC Data Platform according to the BIDS specification. Webknossos datasets will consist of several assets from the LINC Data Platform as imaging/color layers. Let's aim to name these Webknossos datasets according to the BIDS specification (or as close as possible).\n\n## Goals\n\n1. Determine a standard way to name these Webknossos datasets with multiple imaging layers.\n2. Document this naming scheme on the LINC docs.\n\nThank you.","reference_answer":"After discussion with the team, we decided that these annotations will be performed on a single layer, so I updated the initial comment.","answer_document_id":"gh_comment_2445041699","silver_evidence_path":["gh_comment_2445097707","gh_issue_2558107784","gh_comment_2445041699"],"known_context_document_ids":["gh_issue_2558067132"],"evidence_issue_ids":[2558067132,2558107784],"source_repo_name":"lincbrain/webknossos","source_issue_id":2558067132,"source_issue_url":"https://github.com/lincbrain/webknossos/issues/19","target_repo_name":"lincbrain/webknossos","target_issue_id":2558107784,"target_issue_url":"https://github.com/lincbrain/webknossos/issues/20","split":"test","quality_score":82.55,"annotation_level":"silver"}
{"query_id":"cross_issue_0391","query":"Translator Mode: The original subtitle cannot be recovered in a file?","query_context":"When working in translator mode, SE opens both translated subtitle and the original subtitle with the File/Reopen command which displays a list of files. Among them, it shows translated.srt + original.srt as a single item file. SE works ok.\nBut, I cannot get the original.srt file as I see it in the translator mode Window. This has happened, probably, after my using the File/Save original subtitle command.\nThe original subtitle file looks like a file generated by the File/Restore auto-backup command with twice more lines including many empty ones.\n\nSpas Velev\nEnemy at the Gates 2001 2160p.copy.txt","reference_answer":"Ctrl+C copies the translation row(s) to clipboard in SRT format:\n\nE.g. like:\n\n3\n00:00:06,222 --> 00:00:07,835\nLine3\n\nFor this to work, that would require SE to include the original text... like:\n\n3\n00:00:06,222 --> 00:00:07,835\nLine3 O3\n\nWhere ` ` is some separator symbol... \n\nAny comments? @darnn @LeonCheung","answer_document_id":"gh_comment_1368386217","silver_evidence_path":["gh_comment_1510148582","gh_issue_1077655392","gh_comment_1368386217"],"known_context_document_ids":["gh_issue_1669418078"],"evidence_issue_ids":[1669418078,1077655392],"source_repo_name":"SubtitleEdit/subtitleedit","source_issue_id":1669418078,"source_issue_url":"https://github.com/SubtitleEdit/subtitleedit/issues/6833","target_repo_name":"SubtitleEdit/subtitleedit","target_issue_id":1077655392,"target_issue_url":"https://github.com/SubtitleEdit/subtitleedit/issues/5597","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0392","query":"FSL recipe generation never completes?","query_context":"tried to run the following and nothing ever happens\n\nthe command never terminates\n\nbash\ndocker run --rm -it kaczmarj/neurodocker:0.9.1 \\\n generate docker \\\n --base-image bids/base_validator \\\n --pkg-manager apt \\\n --fsl method=binaries version=6.0.3 > Dockerfile","reference_answer":"@mateuszpawlik - i'm glad it's working now.\n\none note on the line `RUN . ${FSLDIR}/etc/fslconf/fsl.sh`. the sourced variables will not persist to future instructions. each `RUN` instruction starts up its own shell and then tears down that shell when it's finished.\n\nyou could get around this in two ways: either source the `fsl.sh` file when you start the container, or hardcode the environment variables in `fsl.sh` with `ENV` instructions.","answer_document_id":"gh_comment_1128915388","silver_evidence_path":["gh_comment_1370202531","gh_issue_1232935588","gh_comment_1128915388"],"known_context_document_ids":["gh_issue_1517687469"],"evidence_issue_ids":[1517687469,1232935588],"source_repo_name":"ReproNim/neurodocker","source_issue_id":1517687469,"source_issue_url":"https://github.com/ReproNim/neurodocker/issues/485","target_repo_name":"ReproNim/neurodocker","target_issue_id":1232935588,"target_issue_url":"https://github.com/ReproNim/neurodocker/issues/450","split":"test","quality_score":82.96,"annotation_level":"silver"}
{"query_id":"cross_issue_0393","query":"Investigate failing example tests?","query_context":"URL \n\nNo idea why \n\n(assertion for unit tests seems to fail)\n\nxtend examples fail too\n URL \n\n(also test fails here)","reference_answer":"Caused by: java.lang.Error: Unresolved compilation problem: \n SANITY CHECK: Invalid opcode -88 at pc 162 for stackmap table attribute for method foo()\n\n at foo.Test.foo(Test.java:7)\n ... 59 more","answer_document_id":"gh_comment_2336717557","silver_evidence_path":["gh_comment_2354587712","gh_issue_2512361262","gh_comment_2336717557"],"known_context_document_ids":["gh_issue_2526049731"],"evidence_issue_ids":[2526049731,2512361262],"source_repo_name":"eclipse/xtext","source_issue_id":2526049731,"source_issue_url":"https://github.com/eclipse/xtext/issues/3193","target_repo_name":"eclipse/xtext","target_issue_id":2512361262,"target_issue_url":"https://github.com/eclipse/xtext/issues/3188","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0394","query":"AltTab silently crashing since 7.20?","query_context":"_This issue was opened by a bot after a user submitted feedback through the in-app form._\n\n__From:__ steve.hoek@gmail.com\n\n__Message:__\n \n \n \n\n \n Debug profile \n \n\n* App version: 7.20.0\n* App preferences: \n * MSAppCenter310AppCenterUserDefaultsMigratedKey: 1\n * MSAppCenter310CrashesUserDefaultsMigratedKey: 1\n * MSAppCenterInstallId: A8C808E7-34D7-4E34-8CA7-EDAE97A0228D\n * MSAppCenterNetworkRequestsAllowed: 0\n * MSAppCenterPastDevices: {length = 1149, bytes = 0x62706c69 73743030 d4010203 04050607 ... 00000000 00000389 }\n * MSAppCenterSessionIdHistory: {length = 460, bytes = 0x62706c69 73743030 d4010203 04050607 ... 00000000 00000156 }\n * MSAppCenterUserIdHistory: {length = 455, bytes = 0x62706c69 73743030 d4010203 04050607 ... 00000000 00000151 }\n * NSNavLastRootDirectory: /Applications\n * NSNavPanelExpandedSizeForOpenMode: {800, 448}\n * NSStatusItem Preferred Position Item-0: 12268\n * NSWindow Frame NSFontPanel: 997 176 445 235 0 0 1512 944 \n * NSWindow Frame NSNavPanelAutosaveName: 356 255 800 448 0 0 1512 944 \n * NSWindow Frame SUStatusFrame: 556 624 400 135 0 0 1512 944 \n * NSWindow Frame SUUpdateAlert: 446 427 620 398 0 0 1512 944 \n * SUAutomaticallyUpdate: 1\n * SUEnableAutomaticChecks: 1\n * SUHasLaunchedBefore: 1\n * SULastCheckTime: 2025-02-19 18:12:14 +0000\n * SUUpdateRelaunchingMarker: 0\n * alignThumbnails: 0\n * appearanceVisibility: 2\n * appsToShow: 0\n * arrowKeysEnabled: true\n * blacklist: [{\"hide\":\"2\",\"ignore\":\"0\",\"bundleIdentifier\":\"com.apple.finder\"},{\"bundleIdentifier\":\"com.microsoft.rdc.macos\",\"hide\":\"0\",\"ignore\":\"2\"},{\"hide\":\"0\",\"ignore\":\"2\",\"bundleIdentifier\":\"com.teamviewer.TeamViewer\"},{\"bundleIdentifier\":\"org.virtualbox.app.VirtualBoxVM\",\"hide\":\"0\",\"ignore\":\"2\"},{\"bundleIdentifier\":\"com.parallels.\",\"ignore\":\"2\",\"hide\":\"0\"},{\"bundleIdentifier\":\"com.vmware.fusion\",\"hide\":\"0\",\"ignore\":\"2\"},{\"ignore\":\"2\",\"bundleIdentifier\":\"com.apple.ScreenSharing\",\"hide\":\"0\"},{\"ignore\":\"0\",\"hide\":\"1\",\"bundleIdentifier\":\"cools.wins.main\"}]\n * cancelShortcut: ā\n * closeWindowShortcut: \n * crashPolicy: 2\n * fadeOutAnimation: true\n * focusWindowShortcut: \n * hideAppBadges: false\n * hideShowAppShortcut: \n * hideStatusIcons: false\n * hideWindowlessApps: true\n * holdShortcut: ā\n * minDeminWindowShortcut: \n * mouseHoverEnabled: false\n * nextWindowShortcut2: ā„\n * preferencesVersion: 7.20.0\n * previewFocusedWindow: false\n * previousWindowShortcut: ā§ā\n * quitAppShortcut: \n * screensToShow: 1\n * screensToShow2: 1\n * showHiddenWindows: 1\n * showHiddenWindows2: 2\n * showMinimizedWindows: 2\n * showMinimizedWindows2: 2\n * showTabsAsWindows: false\n * showTitles: 0\n * spacesToShow: 0\n * startAtLogin: true\n * theme: 0\n * titleTruncation: 0\n * toggleFullscreenWindowShortcut: \n * updatePolicy: 2\n * windowMaxWidthInRow: 30\n* Applications: 122\n* Windows: 15\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 4, spaceIndexes: 2}\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 6, spaceIndexes: 4}\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: true, isOnAllSpaces: false, shouldShowTheUser: false, spaceIds: , spaceIndexes: }\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 5, spaceIndexes: 3}\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 5, spaceIndexes: 3}\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 1, spaceIndexes: 1}\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 1, spaceIndexes: 1}\n * {isFullscreen: true, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 1235, spaceIndexes: 7}\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 1, spaceIndexes: 1}\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 7, spaceIndexes: 5}\n * {isFullscreen: true, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 1269, spaceIndexes: 6}\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 1, spaceIndexes: 1}\n * {isFullscreen: true, isWindowlessApp: false, isMinimized: false, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 1407, spaceIndexes: 8}\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: true, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 5, spaceIndexes: 3}\n * {isFullscreen: false, isWindowlessApp: false, isMinimized: true, isHidden: false, isTabbed: false, isOnAllSpaces: false, shouldShowTheUser: true, spaceIds: 5, spaceIndexes: 3}\n* OS version: Version 15.3.1 (Build 24D70)\n* OS architecture: arm64\n* Locale: en_US (fixed en_US)\n* Spaces: 8\n* Dark mode: Dark\n* \"Displays have separate Spaces\": checked\n* Hardware model: Mac15,8\n* Screens: 1\n * {x: 0.0, y: 0.0, width: 1512.0, height: 982.0}\n* CPU model: Apple M3 Max\n* Memory size: 68.72 GB\n* Active CPU count: 16\n* Current CPU frequency: nil\n* Resource utilization: \n * CPU: 0.0%\n * Memory: 156M-\n * Threads count: 26","reference_answer":"I think you're experiencing URL \n\nCould you please try out the latest release? I think it will fix this issue š","answer_document_id":"gh_comment_2675593074","silver_evidence_path":["gh_comment_2675593659","gh_issue_2868506291","gh_comment_2675593074"],"known_context_document_ids":["gh_issue_2865065194"],"evidence_issue_ids":[2865065194,2868506291],"source_repo_name":"lwouis/alt-tab-macos","source_issue_id":2865065194,"source_issue_url":"https://github.com/lwouis/alt-tab-macos/issues/4244","target_repo_name":"lwouis/alt-tab-macos","target_issue_id":2868506291,"target_issue_url":"https://github.com/lwouis/alt-tab-macos/issues/4252","split":"test","quality_score":85.33,"annotation_level":"silver"}
{"query_id":"cross_issue_0395","query":"[ECR] [Bug]: Creation of two untagged images when pulling an image through ECR Cache?","query_context":"### Community Note\n\n* Please vote on this issue by adding a š reaction to the original issue to help the community and maintainers prioritize this request\n* Please do not leave \"+1\" or \"me too\" comments, they generate extra noise for issue followers and do not help prioritize the request\n* If you are interested in working on this issue or have submitted a pull request, please leave a comment\n\n \n\n \n\n**Tell us about your request**\nI had observed a bug with pulling images using ECR Cache \n\n**Which service(s) is this request for?**\nECR\n\n**Tell us about the problem you're trying to solve. What are you trying to do, and why is it hard?**\nThe issue is when I pull an image from the upstream repository in the public registry using ECR cache it creates two additional untagged images along with the image with the tag mentioned in the \"docker pull\" command.\n\n**Are you currently working around this issue?**\nHow are you currently solving this problem?\nI am currently implementing life cycle policies for the repositories to delete un tagged images \n URL \n\n**Additional context**\nAnything else we should know?\nBelow is my replication scenario for more understanding of the issue :\n\n $ docker pull .dkr.ecr. .amazonaws.com/ecr-public/amazonlinux/amazonlinux:latest\n latest: Pulling from ecr-public/amazonlinux/amazonlinux\n xxx: Pull complete \n Digest: sha256:xxxxxxxxxxxxxxx\n Status: Downloaded newer image for .dkr.ecr. .amazonaws.com/ecr-public/amazonlinux/amazonlinux:latest\n .dkr.ecr. .amazonaws.com/ecr-public/amazonlinux/amazonlinux:latest\n\n$ aws ecr list-images --repository-name ecr-public/amazonlinux/amazonlinux --filter tagStatus=UNTAGGED --region \n{\n \"imageIds\": [\n {\n \"imageDigest\": \"sha256:xxxxxxxxxxxx\"\n },\n {\n \"imageDigest\": \"sha256:xxxxxxxxxxxx\"\n }\n ]\n}\n\n**Attachments**\nIf you think you might have additional information that you'd like to include via an attachment, please do - we'll take a look. (Remember to remove any personally-identifiable information.)","reference_answer":"I'm surprised you see it working in containerd. This has been a known error of containerd pusher that it repushes the tag multiple times. Maybe something has changed or containerd case is not quite the same.","answer_document_id":"gh_comment_790329331","silver_evidence_path":["gh_comment_2010595120","gh_issue_818862586","gh_comment_790329331"],"known_context_document_ids":["gh_issue_1091031544"],"evidence_issue_ids":[1091031544,818862586],"source_repo_name":"aws/containers-roadmap","source_issue_id":1091031544,"source_issue_url":"https://github.com/aws/containers-roadmap/issues/1612","target_repo_name":"moby/buildkit","target_issue_id":818862586,"target_issue_url":"https://github.com/moby/buildkit/issues/2004","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0396","query":"Can I beta test?","query_context":"Hi! Thanks so much for working on this. Could we put this on HACS to beta test it, even if it's not ready for HA Core yet? There are so many Snoo integration repos, but this one looks the most promising!","reference_answer":"Yes! \n\nI have that figured out in the python library. and I can set the level very easily\n\nThe tricky thing is just that I need the current value which gets a bit weird in their event based system as it shares its value with other things - so HA would get confused when the level suddenly changes to 'sticky_white_noise' instead of 'level1'.\n\nThey have a 'up_transition' and a 'down_transition' entry in the event and I think I can use those to determine what the current level is reliably. I'll try to add it when i can!","answer_document_id":"gh_comment_2605765523","silver_evidence_path":["gh_comment_2603590459","gh_issue_2800620994","gh_comment_2605765523"],"known_context_document_ids":["gh_issue_2798276709"],"evidence_issue_ids":[2798276709,2800620994],"source_repo_name":"Lash-L/python-snoo","source_issue_id":2798276709,"source_issue_url":"https://github.com/Lash-L/python-snoo/issues/13","target_repo_name":"Lash-L/snoo-hacs","target_issue_id":2800620994,"target_issue_url":"https://github.com/Lash-L/snoo-hacs/issues/1","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0397","query":"Streaming results: error appears as a result row?","query_context":"### Describe the bug\n\nWhen using `.stream()` to stream rows as JSON, if an error occurs mid-query, the \"exception\" appears as a row in the results. This effectively means you need to scan the results for a row containing only `\"exception\"`. This is costly (not much, but every bit counts) and silly.\n\nIf you have a scenario where the query legitimately returns a column named `exception`, then...well you get the point.\n\nInitially I used `StreamReadable.on('error', ...)` expecting that listener to be invoked, but it wasn't. On one hand, I guess it makes sense since it wasn't a stream/read related error, but the fact that errors aren't surfaced in a first-class way is a design limitation.\n\n### Steps to reproduce\n\nRun a query that will produce an error mid-way through, i.e.\n\nsql\nSELECT \n number, \n if(number > 420000, throwIf(1, 'BOOM!'), number) AS value\nFROM \n numbers(1000000)\n\nStream that via `ClickHouseClient.query().stream()`. You'll see the row with `\"exception\"` appears among the results.\n\n### Expected behaviour\n\nErrors should be surfaced in a more first-class way. Proposals:\n\n- Ideally each data chunk of results should have an envelope indicating whether an error occurred. That way you would only need to check for an error once per chunk, rather than once per row. Think millions+ of rows, think compression enabled -- it's only a handful of chunks. This would be a difference maker -- and much more elegant.\n- Consider having the SDK intercept the error (in a performant way, one way or another) and surface it via the `StreamReadable.on('error', ...)` listener.\n- Dirt simple: instead of `\"text\"` you could distinguish it as `\"error\"`. This would still require checking each row, far from ideal, but a step in the right direction.\n\nThank you!!","reference_answer":"ClickHouse seems to attach `X-ClickHouse-Exception-Code` header, which can be used to detect the problem. see URL and URL","answer_document_id":"gh_comment_2441111408","silver_evidence_path":["gh_comment_2596079142","gh_issue_2551311750","gh_comment_2441111408"],"known_context_document_ids":["gh_issue_2792692569"],"evidence_issue_ids":[2792692569,2551311750],"source_repo_name":"ClickHouse/clickhouse-js","source_issue_id":2792692569,"source_issue_url":"https://github.com/ClickHouse/clickhouse-js/issues/378","target_repo_name":"ClickHouse/clickhouse-js","target_issue_id":2551311750,"target_issue_url":"https://github.com/ClickHouse/clickhouse-js/issues/332","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0398","query":"Just some feedback and a litte warning :)?","query_context":"Hi,\n\nfirst of all I love this project. Fantastic work.\n\nI would like to give some feedback about my problems getting it to run on my multisplit configuration.\n1x oudoor \"SCM 45 ZS-W\" and 2x indoor units one \"SRK 25 ZS-W and one SRK 35 ZS-W\".\n\nThe OpData for the outdoor unit is the same on both, but OpData for indoor unit differs. I think that's totally okay.\n\nI had some problems getting MHI-AC-Ctrl to work, first I had a little mistake in defining MQTT topic, but my main problem was different.\nI always got a WDT Soft reset/boot loop. I tried diffenet things on the software side including the freqency messurement INO. Nothing helped.\n\nHere are the errors I got:\n\n- frequency was correct (3.2 kHz), boot loop\n- frequency was wrong (1.7 kHz), boot loop\n- frequency was correct, connect to wifi, boot loop\n- frequency was correct, connect to wifi, connect to mqtt, boot loop\n- frequency was correct, connect to wifi, connect to mqtt, publich data (Yeah!), boot loop (That happend only ONCE an then never again)\n- finally my ESP was unable to connect to Wifi again, fully erased, no change\n\nAll of them WITHOUT changing anythin on the hardware! Then I decided to have a more comfortable access to the serial console by connection a second ESP with \"esp-link\" to RX/TX (Serial2 WIFI) instead of laying on the floor with a laptop ...\n\nAs I got 3 WEMOS from china (labeld as \"ESP12-F\") I was thinking that would be easy. Well I was wrong. \"esp-link\" also boot-looped on my WEMOS, on all 3 (!). WTF?! I flashed ESPEasy and Tasmoto, just for reference, and they seems to work.\nWell taht took me \"Nahe einem Nervenzusammenbruch\", but okay, I had one older NodeMCU and some naked ESP8266, lets try them.\n\nThe NodeMCU just worked fine, no boot loop. Okay, lets go a step further, I desoldered the \"ESP12-F\" from the WEMOS and replaced it by a naked ESP8266 ... and ... it workes fine. And it is still working!\n\nLong story short, be aware that there are maybe some cheap WEMOS D1 mini with \"ESP12-F\" which are NOT working for MHI-AC-Ctrl. Don't ask me why, but that's what I found out.\n\nMay I try to sniff some SPI packets next to see if \"3D Auto\" or some other function reflected on SPI as well.","reference_answer":"If you have a logic analyser this will help.\nOtherwise maybe with the oscilloscoop you can monitor the behavior of the MISO line at the board without the esp. It should be steady 0 Volt. \nOtherwise strip the program to only measure the frequency repeatly and look with the oscilloscoop.","answer_document_id":"gh_comment_1646877376","silver_evidence_path":["gh_comment_1668402137","gh_issue_1816886894","gh_comment_1646877376"],"known_context_document_ids":["gh_issue_1579897217"],"evidence_issue_ids":[1579897217,1816886894],"source_repo_name":"absalom-muc/MHI-AC-Ctrl","source_issue_id":1579897217,"source_issue_url":"https://github.com/absalom-muc/MHI-AC-Ctrl/issues/134","target_repo_name":"absalom-muc/MHI-AC-Ctrl","target_issue_id":1816886894,"target_issue_url":"https://github.com/absalom-muc/MHI-AC-Ctrl/issues/151","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0399","query":"[Feature] Context aware alias interpretation?","query_context":"I managed to spend two hours trying to solve a \"bug\" with my keyboard specific mappings. I tried to define a device/application specific \"leader\" key in this manner:\n\nperl\n[default]\n Leader = Comma !150ms\n\n[device=/Keychron K15 Pro/]\n Leader = EscMiddle !150ms # Esc between a split spacebar\n\n[device=/Keychron K3 Pro/]\n Leader = Comma !150ms\n\n[class=\"slack\"]\n Leader F >> slack_switch_channel\n Leader 1 >> slack_goto_workspace1\n Leader 2 >> slack_goto_workspace2\n Leader H >> slack_goto_home\n Leader A >> slack_goto_activity\n\nInitially I thought the device specific aliases aren't applying at all as the leader key was `Comma` regardless of the keyboard. I removed the default block which didn't help. I then made sure the device specific blocks are handled with a `T >> 'K3' and 'K15'` debug print which worked as expected.\n\nI then thought the issue is with having both keyboards connected as it's just for testing anyway, but after disconnecting my K3 Pro, I still got `Comma` as the leader. I made sure to check `xinput list` to verify only K15 Pro is visible and just in case restarted both the daemon and the app. No diffference.\n\nI then replaced the block for K3 with this:\n\nperl\n[device=\"Foobar\"]\n Leader = Comma !150ms\n\n...but still got the `Leader` reassigned. (A bug perhaps?).\n\nThe workaround I found was to name the leader key differently and duplicate the keymappings separately for each keyboard which is not an ideal solution as my config file seems to grow at a rapid pace. :sweat_smile:\n\nSo, it'd be great if the aliases could be context aware in some way. I can see it gettting messy given on how the config works now, so let's say device specific context awareness would be the most useful (IMHO). But just skipping the non-matching sections would be a slight* improvement.\n\n*) I assume most dual keyboard use cases would include differentiating an external keyboard and a laptop keyboard which isn't exactly simple to disconnect. Another relatively common use case could be sharing a config file between two or more computers.","reference_answer":"Yes, multiple devices with identical names should not cause problems.\nMaybe you can start `keymapperd` with `-v` and check if the devices are un/grabbed as expected when plugging in/out.","answer_document_id":"gh_comment_1887779135","silver_evidence_path":["gh_comment_1889761686","gh_issue_1385513000","gh_comment_1887779135"],"known_context_document_ids":["gh_issue_2066063121"],"evidence_issue_ids":[2066063121,1385513000],"source_repo_name":"houmain/keymapper","source_issue_id":2066063121,"source_issue_url":"https://github.com/houmain/keymapper/issues/97","target_repo_name":"houmain/keymapper","target_issue_id":1385513000,"target_issue_url":"https://github.com/houmain/keymapper/issues/41","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0400","query":"Using `externals` as `script` generate unexpected code?","query_context":"# Bug report\n\n \n \n \n \n\n**What is the current behavior?**\n\nResulting bundle contains unexpected non-es5 instruction: `async`/`await`, arrow function; that does not match expected target, e.g., having defaults target `browserslist` with `android 36`, result:\n \n \n \nmodule.exports = (async () => {\n__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var foo_bar__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(299);\nfoo_bar__WEBPACK_IMPORTED_MODULE_0__ = await Promise.resolve(foo_bar__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var foo_bar__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(foo_bar__WEBPACK_IMPORTED_MODULE_0__);\n\nfoo_bar__WEBPACK_IMPORTED_MODULE_0___default()();\n \n \n\n(function webpackUniversalModuleDefinition(root, factory) {\n if(typeof exports === 'object' && typeof module === 'object')\n module.exports = factory();\n else if(typeof define === 'function' && define.amd)\n define([], factory);\n else if(typeof exports === 'object')\n exports[\"myLib\"] = factory();\n else\n root[\"myLib\"] = factory();\n})(globalThis, function() {\nreturn /******/ (() => { // webpackBootstrap\n/******/ var __webpack_modules__ = ({\n\n/***/ 5579:\n/***/ ((module, __webpack_exports__, __webpack_require__) => {\n\n\"use strict\";\nmodule.exports = (async () => {\n__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var core_js_modules_es_object_to_string_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1539);\n/* harmony import */ var core_js_modules_es_object_to_string_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8674);\n/* harmony import */ var core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var regenerator_runtime_runtime_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(5666);\n/* harmony import */ var regenerator_runtime_runtime_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(regenerator_runtime_runtime_js__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var foo_bar__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(5299);\nfoo_bar__WEBPACK_IMPORTED_MODULE_3__ = await Promise.resolve(foo_bar__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var foo_bar__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(foo_bar__WEBPACK_IMPORTED_MODULE_3__);\n\nfunction asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = genkey; var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }\n\nfunction _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"next\", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"throw\", err); } _next(undefined); }); }; }\n\nfoo_bar__WEBPACK_IMPORTED_MODULE_3___default()();\n\n/*\n skip other code\n\nAdded following core-js polyfills:\n es.object.to-string { \"android\":\"36\" }\n es.promise { \"android\":\"36\" }\n\nBased on your code and targets, added regenerator-runtime.\n*/\n});\n\n \n\n**STR**\n\nConfigure webpack to resolve some package as external via `script`\n\n externalsType: \"script\",\n externals: {\n 'foo-bar': 'FooBar@ URL \n },\n\n \nConfigure target via `target: ['web', 'es5']` or via browserslist:\n\n \"browserslist\": [\n \"android >= 36\"\n ],\n\nRun on code:\n\nimport Foo from 'foo-bar';\n\nFoo();\n\n(async () => {\n await Promise.resolve();\n})();\n\n \n \n \n \n \n \n\n**What is the expected behavior?**\n\nResulting bundle does not contains unexpected instruction. Expecting to have bundle where **all** code match expected target, via `target`: ['web', es5']` or default, based on browserslist, as same as transpiled source. \n\n \n \n\n**Other relevant information:**\nwebpack version: 5.16.0\nNode.js version: 14","reference_answer":"at least as I know there is no plan to support code transformation since this will require huge internal webpack changes. old `Dependency` design will no longer work since dependencies operate not on AST level of source code, but only insert/remove/change strings inside source code.\n\nUnfortunately, I am not familiar with babel, but I guess transforming top level await does not help.. since it is required to `await` module import. e.g. in example:\n\nmodule A\n\nconst a = await somePromise;\nexport { a }\n\nmodule B\n\nimport { a } from 'module-a';\n// here we should wait for promise 'somePromise'\n\nconsole.log(a);\n\nin case of transformation just async/await this will not work correctly since you need to transform hole module tree ( thats an issue with currect webpack design, we dont have all code as an AST internally )\n\nTo sum up. as a user you can do things that I mentions above + chunk transformation ( this will bring additional code unfortunately )","answer_document_id":"gh_comment_1859788502","silver_evidence_path":["gh_comment_1100593235","gh_issue_732602098","gh_comment_1859788502"],"known_context_document_ids":["gh_issue_790328298"],"evidence_issue_ids":[790328298,732602098],"source_repo_name":"webpack/webpack","source_issue_id":790328298,"source_issue_url":"https://github.com/webpack/webpack/issues/12465","target_repo_name":"webpack/webpack","target_issue_id":732602098,"target_issue_url":"https://github.com/webpack/webpack/issues/11874","split":"test","quality_score":95.86,"annotation_level":"silver"}
{"query_id":"cross_issue_0401","query":"[Feature Request] Add support for NovelAI v4 structure?","query_context":"NovelAI's v4 model features a new png data format, and chooses to use this new form and the older form that DiffusionToolkit recognizes seemingly at random. I tested with the same prompts, changing no settings, but generated images will still switch between the two formats.\n\nDiffusionToolkit will recognize and display the image with this format: \n\nImage\n\nBut does not detect another image that has the same prompt and settings, but in this format:\n\nImage\n\nThis is the only difference I can find between the two images, but I'm not very savvy with this kind of stuff.\nIf you could take a look and see if you could make DiffusionToolkit able to detect and display images with this new format, it would be greatly appreciated. Thanks :)","reference_answer":"Thanks for finding this.\n\nThis build should resolve your issue while I am adding features and bug fixes for the next release.\n\n URL","answer_document_id":"gh_comment_2365310179","silver_evidence_path":["gh_comment_2741592696","gh_issue_2537846635","gh_comment_2365310179"],"known_context_document_ids":["gh_issue_2892616500"],"evidence_issue_ids":[2892616500,2537846635],"source_repo_name":"RupertAvery/DiffusionToolkit","source_issue_id":2892616500,"source_issue_url":"https://github.com/RupertAvery/DiffusionToolkit/issues/279","target_repo_name":"RupertAvery/DiffusionToolkit","target_issue_id":2537846635,"target_issue_url":"https://github.com/RupertAvery/DiffusionToolkit/issues/259","split":"test","quality_score":86.67,"annotation_level":"silver"}
{"query_id":"cross_issue_0403","query":"The window is not responding?","query_context":"Type: Performance Issue \n\nThe window is not responding, You can reopen the window or keep writing.\n\nVS Code version: Code 1.78.2 (b3e4e68a0bc097f0ae7907b217c1119af9e03435, 2023-05-10T14:39:26.248Z)\nOS version: Windows_NT x64 10.0.19045\nModes:\nSandboxed: Yes\n\n \n System Info \n\n|Item|Value|\n|---|---|\n|CPUs|AMD Ryzen 5 3500U with Radeon Vega Mobile Gfx (8 x 2096)|\n|GPU Status|2d_canvas: enabled canvas_oop_rasterization: disabled_off direct_rendering_display_compositor: disabled_off_ok gpu_compositing: enabled multiple_raster_threads: enabled_on opengl: enabled_on rasterization: enabled raw_draw: disabled_off_ok video_decode: enabled video_encode: enabled vulkan: disabled_off webgl: enabled webgl2: enabled webgpu: enabled|\n|Load (avg)|undefined|\n|Memory (System)|5.95GB (2.28GB free)|\n|Process Argv|C:\\\\Users\\\\m4n0c\\\\OneDrive\\\\Desktop --crash-reporter-id 46fc3c4d-4e2c-46c3-bdbe-81104efea636|\n|Screen Reader|no|\n|VM|0%|\n \n Process Info \n\nCPU % Mem MB PID Process\n 0 96 1380 code main\n 1 87 1424 window [2] (Issue Reporter)\n 0 48 2056 utility-network-service\n 0 133 2132 extensionHost [1]\n 0 27 5924 crashpad-handler\n 0 132 6596 window [1] (Welcome - Desktop - Visual Studio Code)\n 0 82 6776 fileWatcher [1]\n 0 164 7284 shared-process\n 0 80 4672 ptyHost\n 1 123 9992 gpu-process\n\n \n \n Workspace Info \n\n| Window (Welcome - Desktop - Visual Studio Code)\n| Folder (Desktop): 3 files\n| File types: lnk(2) ini(1)\n| Conf files:;\n\n \n Extensions (14) \n\nExtension|Author (truncated)|Version\n---|---|---\nblackbox|Bla|0.10.94\nbracket-pair-color-dlw|Bra|0.0.6\npython|ms-|2023.8.0\nvscode-pylance|ms-|2023.5.30\njava|red|1.18.0\nLiveServer|rit|5.7.9\nintellicode-api-usage-examples|Vis|0.2.7\nvscodeintellicode|Vis|1.2.30\nvscode-java-debug|vsc|0.50.0\nvscode-java-dependency|vsc|0.22.0\nvscode-java-pack|vsc|0.25.11\nvscode-java-test|vsc|0.38.2\nvscode-maven|vsc|0.41.0\nJavaScriptSnippets|xab|1.8.0\n\n \n A/B Experiments \n\nvsliv368cf:30146710\nvsreu685:30147344\npython383cf:30185419\nvspor879:30202332\nvspor708:30202333\nvspor363:30204092\nvslsvsres303:30308271\nvserr242cf:30382550\npythontb:30283811\nvsjup518:30340749\npythonptprofiler:30281270\nvshan820:30294714\nvstes263:30335439\nvscorecescf:30445987\nvscod805cf:30301675\nbinariesv615:30325510\nbridge0708:30335490\nbridge0723:30353136\ncmake_vspar411:30581797\nvsaa593cf:30376535\npythonvs932:30410667\ncppdebug:30492333\nvsclangdc:30486549\nc4g48928:30535728\ndsvsc012:30540252\npynewext54:30695312\nazure-dev_surveyone:30548225\nvscccc:30610679\n3biah626:30602489\npyind779:30671433\n89544117:30613380\npythonsymbol12:30671437\nshowlangstatbar:30737416\nvsctsb:30748421\npythonms35:30701012\npythonfmttext:30731395\nfixshowwlkth:30730052\nhidesbindicator:30730055\npythongtdpath:30739704\n\n \n\n \n\n[tasklist]\n### Tasks","reference_answer":"Thanks for creating this issue! We figured it's missing some basic information or in some other way doesn't follow our issue reporting guidelines. Please take the time to review these and update the issue.\n\nHappy Coding!","answer_document_id":"gh_comment_1495910578","silver_evidence_path":["gh_comment_1560458262","gh_issue_1651278957","gh_comment_1495910578"],"known_context_document_ids":["gh_issue_1723159846"],"evidence_issue_ids":[1723159846,1651278957],"source_repo_name":"microsoft/vscode","source_issue_id":1723159846,"source_issue_url":"https://github.com/microsoft/vscode/issues/183290","target_repo_name":"microsoft/vscode","target_issue_id":1651278957,"target_issue_url":"https://github.com/microsoft/vscode/issues/178962","split":"test","quality_score":79.55,"annotation_level":"silver"}
{"query_id":"cross_issue_0404","query":"[Android] Android x86 emulator failures in System.Diagnostics.DiagnosticSource runtime metrics?","query_context":"## Build Information\nBuild: URL \nBuild error leg or test failing: `System.Diagnostics.DiagnosticSource.Tests`\nAffected CI: `android_x86_release_allsubsets_mono` (`runtime-extra-platforms`)\n\nStack trace example:\n\n07-20 10:08:58.329 16840 16860 I DOTNET : 1) [FAIL] System.Diagnostics.Metrics.Tests.RuntimeMetricsTests.GcCollectionsCount Test name: System.Diagnostics.Metrics.Tests.RuntimeMetricsTests.GcCollectionsCount\n07-20 10:08:58.329 16840 16860 I DOTNET : Assembly: [System.Diagnostics.DiagnosticSource.Tests, Version=9.0.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51]\n07-20 10:08:58.329 16840 16860 I DOTNET : Exception messages: Expected to find a measurement for 'gen0'. Exception stack traces: at System.Diagnostics.Metrics.Tests.RuntimeMetricsTests.GcCollectionsCount() in /_/src/libraries/System.Diagnostics.DiagnosticSource/tests/RuntimeMetricsTests.cs:line 111\n07-20 10:08:58.329 16840 16860 I DOTNET : at System.Reflection.MethodBaseInvoker.InterpretedInvoke_Method(Object obj, IntPtr* args)\n07-20 10:08:58.329 16840 16860 I DOTNET : at System.Reflection.MethodBaseInvoker.InvokeWithNoArgs(Object obj, BindingFlags invokeAttr)\n\n \n## Error Message\n\nFill the error message using step by step known issues guidance.\n\n \n\njson\n{\n \"ErrorMessage\": \"Expected to find a measurement for 'gen0'\",\n \"BuildRetry\": false,\n \"ExcludeConsoleLog\": false\n}\n\n \n ### Known issue validation\n**Build: :mag_right:** URL \n**Error message validated:** `[Expected to find a measurement for 'gen0'`]\n**Result validation:** :white_check_mark: Known issue matched with the provided build.\n**Validation performed at:** 7/21/2024 4:49:54 PM UTC\n \n \n\n### Report\n\n|Build|Definition|Test|Pull Request|\n|---|---|---|---|\n|758343|dotnet/runtime|System.Diagnostics.Metrics.Tests.RuntimeMetricsTests.GcCollectionsCount||\n|748618|dotnet/runtime|System.Diagnostics.Metrics.Tests.RuntimeMetricsTests.GcCollectionsCount||\n#### Summary\n|24-Hour Hit Count|7-Day Hit Count|1-Month Count|\n|---|---|---|\n|0|1|2|","reference_answer":"Thank you, would you like to open a PR to disable them or should I take a look?\n\nDo you know if this is an issue that should be fixed on the Mono runtime side or is it by design of the test? It looks like only a few tests are failing so I suppose the `RuntimeMetricsTests` suit isn't CoreCLR specific.","answer_document_id":"gh_comment_2243499324","silver_evidence_path":["gh_comment_2241710909","gh_issue_2421513481","gh_comment_2243499324"],"known_context_document_ids":["gh_issue_2421519076"],"evidence_issue_ids":[2421519076,2421513481],"source_repo_name":"dotnet/runtime","source_issue_id":2421519076,"source_issue_url":"https://github.com/dotnet/runtime/issues/105203","target_repo_name":"dotnet/runtime","target_issue_id":2421513481,"target_issue_url":"https://github.com/dotnet/runtime/issues/105202","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0406","query":"Bad integer for large problems with `--kron-mode sparse`?","query_context":"**Describe the bug**\nI believe a int overflow is causing higher level 1x3v mixed grid runs to fail when using `--kron-mode sparse`. This does not happen with `--kron-mode dense`\n\nHere's the result upon debugging: \n\nasgard: ~/asgard/src/distribution.hpp:269: double asgard::get_MB(int64_t) [with P = int; int64_t = long int]: Assertion `num_elems > 0' failed.\n\n**To Reproduce**\nSteps to reproduce the behavior:\nRun command \n\n./asgard -p riemann_1x3v -d 3 -l \"7 6 6 6\" -x -t 2.3419e-4 -n 210 -m 7 --kron-mode sparse --wave_freq 7 --inner_it 10 --tol 1e-8 --mixed_grid_group 1\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**System:**\n - andremarie","reference_answer":"currently we are:\n\ncasting unsigned quantities (like `.size()` returns from STL) to signed quantities. where it is possible that `size()` is `>=INT_MAX`, we precede this case with an assertion.\n\nswitching to `ssize()` in C++20: URL should help.","answer_document_id":"gh_comment_569778305","silver_evidence_path":["gh_comment_1738064670","gh_issue_453943285","gh_comment_569778305"],"known_context_document_ids":["gh_issue_1916128056"],"evidence_issue_ids":[1916128056,453943285],"source_repo_name":"project-asgard/asgard","source_issue_id":1916128056,"source_issue_url":"https://github.com/project-asgard/asgard/issues/641","target_repo_name":"project-asgard/asgard","target_issue_id":453943285,"target_issue_url":"https://github.com/project-asgard/asgard/issues/8","split":"test","quality_score":82.15,"annotation_level":"silver"}
{"query_id":"cross_issue_0408","query":"`stork-service-discovery-kubernetes` extension requires some extra configutation that is not documented?","query_context":"### Describe the bug\n\n`stork-service-discovery-kubernetes` requires `org.bouncycastle:bctls-jdk15on` dependency and also some extra configuration on your application.properties:\n\nExample \n\n# application properties should be here\nquarkus.security.security-providers=BCJSSE\n\nquarkus.http.ssl.certificate.key-store-file=server-keystore.jks\nquarkus.http.ssl.certificate.key-store-password=password\nquarkus.http.ssl.certificate.trust-store-file=server-truststore.jks\nquarkus.http.ssl.certificate.trust-store-password=password\n\nquarkus.native.additional-build-args=--allow-incomplete-classpath\n\nAlso, end-user must be sure that has the following K8s/ocp cluster roles binding (JVM and native mode):\n\nCluster Role\n\nkind: ClusterRole\napiVersion: rbac.authorization.k8s.io/v1\nmetadata:\n namespace: \"${NAMESPACE}\"\n name: endpoints-reader\nrules:\n - apiGroups: [\"\"] # \"\" indicates the core API group\n resources: [\"endpoints\"]\n verbs: [\"get\", \"watch\", \"list\"]\n\nClusterRoleBinding\n\napiVersion: rbac.authorization.k8s.io/v1\nkind: ClusterRoleBinding\nmetadata:\n name: fabric8-rbac\nsubjects:\n - kind: ServiceAccount\n # Reference to upper's `metadata.name`\n name: default\n namespace: \"${NAMESPACE}\"\nroleRef:\n kind: ClusterRole\n name: cluster-admin\n apiGroup: rbac.authorization.k8s.io\n\nI think that these requirements should be documented:\nDocRef: URL \n\nAlso would be great to understand why `org.bouncycastle:bctls-jdk15on` is needed and check if we could do something in order to avoid this extra dependency\n\nReproducer: URL \n\n### Expected behavior\n\n_No response_\n\n### Actual behavior\n\n_No response_\n\n### How to Reproduce?\n\n_No response_\n\n### Output of `uname -a` or `ver`\n\n_No response_\n\n### Output of `java -version`\n\n_No response_\n\n### GraalVM version (if different from Java)\n\n_No response_\n\n### Quarkus version or git rev\n\n_No response_\n\n### Build tool (ie. output of `mvnw --version` or `gradlew --version`)\n\n_No response_\n\n### Additional information\n\n_No response_","reference_answer":"Hi @edeandrea ,\n\nI've checked and seems that #25750 fixes this problem.\nLet me know if you need anything else.","answer_document_id":"gh_comment_1144756811","silver_evidence_path":["gh_comment_1131907234","gh_issue_1241990411","gh_comment_1144756811"],"known_context_document_ids":["gh_issue_1175257864"],"evidence_issue_ids":[1175257864,1241990411],"source_repo_name":"quarkusio/quarkus","source_issue_id":1175257864,"source_issue_url":"https://github.com/quarkusio/quarkus/issues/24444","target_repo_name":"quarkusio/quarkus","target_issue_id":1241990411,"target_issue_url":"https://github.com/quarkusio/quarkus/issues/25688","split":"test","quality_score":75.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0410","query":"Consequences / support for access policy?","query_context":"The DaSSCo access policy introduces various restrictions on access / publishing of records. How well is this supported in Specify?","reference_answer":"After talking this through with @Sosannah we came to the following: \n\nAbout half of the required metadata fields are already supported by Specify out of the box (see mapping table below). \nThe other half could in principle be added as singular records in the `attachmentmetadata` table of which multiple entries can be associated with a single attachment record. In the following, these will be referred to as \"extra metadata\" records. \n\n| **Metadate field** | **Specify Table** | **Specify Field name** |**Notes** | **DarwinCore (Simple Multimedia extension)** | \n|-------------------|-----------------|-------------------|----|----|\n| Copyright owner | attachment | CopyrightHolder | | URL |\n|Copyright license | attachment | License | | URL |\n| Whether the attachment will be visible externally | attachment | IsPublic | | |\n|Persistent identifier for media which is resolvable (link) | attachment | AttachmentLocation | Only the terminal end of a \"persistent\" identifier prefixed by the URL of the attachment server + collection name e.g. URL | URL | \n|Date media created | attachment | FileCreatedDate | | URL | \n|File format (jpeg, tiff etc) | attachment | MimeType | | URL | | \n|Type/description of attachment (CT scan, specimen image etc) | attachment | Remarks / Type | | URL | \n|Type of exception (see data access policy) | | | | |\n|Person responsible for exception | | | | |\n|Details of exception ā e.g., requested by for x reason, authorized by | | | how big must the field be? | |\n|Exception review date | | | | \n|Date media deleted | | | | \n|Deletion reason | | | how big must the field be? | |\n\n**Generation of extra metadata records**\nThe question is how these extra metadata records can be created. We understood that the mass digitization pipeline process can be adapted to do that, and in principle we could add these extra metadata fields to the Specify Interface to enable manual editing. However, otherwise we can't think of an automatic process for doing that. \n\n**Publication** \nAlthough we are unsure of how many of these metadata fields will be parsed and visible on sites like GBIF, in principle the information _is_ published digitally online as the DarwinCore Archive generated by Specify7 (retrieved by GBIF). The DarwinCore (DwC) Archive is a zip file of csv files and can be both machine read and human read. The images are published in the archive as links that are accessible through the web asset server. _However_ only fields that can be mapped to DarwinCore fields can be made public this way. The currently used DwC Extension Simple MultiMedia does not (see above table), but Audubon Media Description may have better options. \n\n**\"Deletion\"**\nAfter discussion the matter of \"deletion\" with @PipBrewer it turned out that instead of actual deletion of attachments, rather a kind of modal \"hiding\" is meant where the actual image would be replaced by a thumbnail. However, we cannot see how an images is represented externally by a thumbnail yet internally by the actual image. Perhaps the replacement of the web asset server can be adapted to provide that functionality. For instance, the replacement web asset server could be programmed to represent the \"deleted\" image as a thumbnail to the outside, but as the actual image when requests originate internally.","answer_document_id":"gh_comment_1549559599","silver_evidence_path":["gh_comment_1568409786","gh_issue_1625476655","gh_comment_1549559599"],"known_context_document_ids":["gh_issue_1625481675"],"evidence_issue_ids":[1625481675,1625476655],"source_repo_name":"NHMDenmark/DanSpecify","source_issue_id":1625481675,"source_issue_url":"https://github.com/NHMDenmark/DanSpecify/issues/222","target_repo_name":"NHMDenmark/DanSpecify","target_issue_id":1625476655,"target_issue_url":"https://github.com/NHMDenmark/DanSpecify/issues/221","split":"test","quality_score":86.15,"annotation_level":"silver"}
{"query_id":"cross_issue_0411","query":"Base table or view not found: 1146 Table 'prevarisc.platauconsultation' doesn't exist?","query_context":"Bonjour,\n\nNous rencontrons un problème avec la passerelle depuis la dernière mise à jour.\nle message d'erreur parle d'une table \"'prevarisc.platauconsultation\" qu'on a pas dans notre base prevarisc ! est ce qu'on a raté une mise à jour ?\n\n**Le Healthcheck affiche le message suivant :**\n\"Base de données Prevarisc incompatible. Avez-vous pensé à la mise à jour ?\"\n\n**Dans email de confirmation on a le message suivant :**\n\nRecherche de toutes les consultations en attente d'avis ou traitées ...\nPHP Warning: Undefined variable $pieces in /var/www/html/prevarisc-passerelle-platau/src/Command/ExportAvis.php on line 107 PHP Warning: foreach() argument must be of type array|object, null given in /var/www/html/prevarisc-passerelle-platau/src/Command/ExportAvis.php on line 107\n\nIn ExceptionConverter.php line 49:\n \n An exception occurred while executing a query: SQLSTATE[42S02]: Base table \n or view not found: 1146 Table 'prevarisc.platauconsultation' doesn't exist \n \n\nIn Exception.php line 28:\n \n SQLSTATE[42S02]: Base table or view not found: 1146 Table 'prevarisc.platau \n consultation' doesn't exist \n \n\nIn Statement.php line 134:\n \n SQLSTATE[42S02]: Base table or view not found: 1146 Table 'prevarisc.platau \n consultation' doesn't exist \nRecherche de toutes les consultations en attente d'avis ou traitées ...\nPHP Warning: Undefined variable $pieces in /var/www/html/prevarisc-passerelle-platau/src/Command/ExportAvis.php on line 107 PHP Warning: foreach() argument must be of type array|object, null given in /var/www/html/prevarisc-passerelle-platau/src/Command/ExportAvis.php on line 107\n\nIn ExceptionConverter.php line 49:\n \n An exception occurred while executing a query: SQLSTATE[42S02]: Base table \n or view not found: 1146 Table 'prevarisc.platauconsultation' doesn't exist \n \n\nIn Exception.php line 28:\n \n SQLSTATE[42S02]: Base table or view not found: 1146 Table 'prevarisc.platau \n consultation' doesn't exist \n \n\nIn Statement.php line 134:\n \n SQLSTATE[42S02]: Base table or view not found: 1146 Table 'prevarisc.platau \n consultation' doesn't exist \n\n \nMerci d'avance pour votre retour,\nCordialement,\nLe webmaster de sdis91","reference_answer":"effectivement, la fonctionnalité d'export de documents est livrée ! URL \n\nnous maintenons activement la passerelle, mais pas le dépot prevarisc. Pas de merge de prévu de notre cÓté, mais vous pouvez le faire directement sur votre version de prevarisc en utilisant la branche de travail URL","answer_document_id":"gh_comment_1819286402","silver_evidence_path":["gh_comment_1827514186","gh_issue_1162771253","gh_comment_1819286402"],"known_context_document_ids":["gh_issue_2009743833"],"evidence_issue_ids":[2009743833,1162771253],"source_repo_name":"SDIS62/prevarisc-passerelle-platau","source_issue_id":2009743833,"source_issue_url":"https://github.com/SDIS62/prevarisc-passerelle-platau/issues/54","target_repo_name":"SDIS62/prevarisc-passerelle-platau","target_issue_id":1162771253,"target_issue_url":"https://github.com/SDIS62/prevarisc-passerelle-platau/issues/21","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0412","query":"Benchmark: Experiment with different slot durations?","query_context":"Benchmark how the worker behaves with different slot lengths. Especially regarding transactions per block.","reference_answer":"How does this behave if we increase block time to 1s? Does it also go down to near zero tps or does it approach a steady level?","answer_document_id":"gh_comment_1150705446","silver_evidence_path":["gh_comment_1158824122","gh_issue_1258106304","gh_comment_1150705446"],"known_context_document_ids":["gh_issue_1273560758"],"evidence_issue_ids":[1273560758,1258106304],"source_repo_name":"integritee-network/worker","source_issue_id":1273560758,"source_issue_url":"https://github.com/integritee-network/worker/issues/798","target_repo_name":"integritee-network/worker","target_issue_id":1258106304,"target_issue_url":"https://github.com/integritee-network/worker/issues/775","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0413","query":"FR: Is there a way to disable end-of-chapter footnotes?","query_context":"Whether I enable or disable \"Show footnotes in popup\", footnotes still show at the end of chapter. The In-page EPUB footnotes options are disabled.\n\nIs there a way to disable that? The behavior I want is to show footnotes only in the popup. If they must be shown, then at the end of the document.\n\nThanks","reference_answer":"There's a CRe callcache implemented in the Lua frontend, yeah.\n\nI'd say it's in credocument, but I'm not at my dev box right now ;).\n\nIn the meantime, you can disable it in the developer options menu ;).","answer_document_id":"gh_comment_719952767","silver_evidence_path":["gh_comment_2613920029","gh_issue_726525270","gh_comment_719952767"],"known_context_document_ids":["gh_issue_2810826397"],"evidence_issue_ids":[2810826397,726525270],"source_repo_name":"koreader/koreader","source_issue_id":2810826397,"source_issue_url":"https://github.com/koreader/koreader/issues/13135","target_repo_name":"koreader/koreader","target_issue_id":726525270,"target_issue_url":"https://github.com/koreader/koreader/issues/6809","split":"test","quality_score":92.9,"annotation_level":"silver"}
{"query_id":"cross_issue_0414","query":"Consider adding a marker file like /.flatpak-info?","query_context":"This was suggested to my by Christian Hergert.\n\nIt would help him to improve debugging and tracing apps running in toolboxes.\n\nSomething like /.toolbox-info would be a nice parallel to what flatpak does. Alternatively, the already existing /run/.containerenv could maybe add enough information to clearly identify a container as a toolbox. E.g., it could show the container-init process.","reference_answer":"Toolbox already uses `--privileged`, so that's fine. Any other flag that we can specify as a command-line argument is also fine.","answer_document_id":"gh_comment_737172518","silver_evidence_path":["gh_comment_1262350068","gh_issue_616644906","gh_comment_737172518"],"known_context_document_ids":["gh_issue_1390623803"],"evidence_issue_ids":[1390623803,616644906],"source_repo_name":"containers/toolbox","source_issue_id":1390623803,"source_issue_url":"https://github.com/containers/toolbox/issues/1129","target_repo_name":"containers/podman","target_issue_id":616644906,"target_issue_url":"https://github.com/containers/podman/issues/6192","split":"test","quality_score":87.55,"annotation_level":"silver"}
{"query_id":"cross_issue_0415","query":"GameCube Blueretro conflicts with Wavebird?","query_context":"### BlueRetro firmware version\n\n24.10\n\n### BlueRetro firmware specification\n\nHW1\n\n### BlueRetro firmware variant\n\nSystem specific\n\n### BlueRetro hardware type\n\nInternal install DIY\n\n### Manufacturer\n\nMyself\n\n### System used\n\nNintendo GameCube\n\n### Bluetooth controller brand & name\n\nWavebird\n\n### What is problem? (only list ONE problem per report)\n\nAfter I soldered the ESP32 HW1 on my Cube's controller board it works as it should with modern BT controllers but strangely enough the Wavebird controller stopped functioning since then. The analog stick does not work at all, I tried different frequencies like 1,6,8,16 but the issue persists.\nWhen I plug in a wired OEM controller it works perfectly fine.\n\nI also tried to add a small switch on the negative of ESP32 so that I can turn it OFF when I want to use Wavebird but when I do turn off the ESP32 the controller board does not work at all, it does not recognize any controllers at all!\n\nIf ESP32 can not coexist with Wavebird in peace thenn please provide instructions on how to disable ESP32 before using Wavebird.\n\n### What did you expect to happen?\n\nWavebird should function properly with ESP32 Blueretro\n\n### Attach files like logs or Bluetooth traces here\n\n_No response_","reference_answer":"This is definetly an HW issues best to contact Greg, maybe he can test to see it's something specific to your board or not.","answer_document_id":"gh_comment_2816474332","silver_evidence_path":["gh_comment_2435497356","gh_issue_2571472369","gh_comment_2816474332"],"known_context_document_ids":["gh_issue_2594290900"],"evidence_issue_ids":[2594290900,2571472369],"source_repo_name":"darthcloud/BlueRetro","source_issue_id":2594290900,"source_issue_url":"https://github.com/darthcloud/BlueRetro/issues/1102","target_repo_name":"darthcloud/BlueRetro","target_issue_id":2571472369,"target_issue_url":"https://github.com/darthcloud/BlueRetro/issues/1088","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0416","query":"Login Failing with utils.py?","query_context":"Kept receiving the error \"mechanicalsoup.utils.LinkNotFoundError\" when following the login instructions on your page using my Kenpom credentials. I noticed I was able to fix it when I commented out these two lines in utils.py:\n\n8 from ._DESAdapter import DESAdapter, environment_requires_DES_adapter\n24 if environment_requires_DES_adapter():\n25 session.mount(' URL DESAdapter())\n\nHope this helps!","reference_answer":"Absolutely brilliant analysis @nickostendorf! Really appreciate you providing this info.\n\nAt first glance I am ok with the solution as proposed but would like to take some time to fully understand the (primarily security-related) implications (if any) of the fix for my own knowledge. I also want to make sure we logically gate this to apply only for those running Python 3.10.x and below.\n\nOnce I've gotten a grasp on it I plan to branch `master` and test in my own Azure environment. If you have time of your own in the next day or so and you're so inclined, feel free to take a stab at a PR for this.","answer_document_id":"gh_comment_1362884106","silver_evidence_path":["gh_comment_1442391609","gh_issue_1423798537","gh_comment_1362884106"],"known_context_document_ids":["gh_issue_1586758329"],"evidence_issue_ids":[1586758329,1423798537],"source_repo_name":"j-andrews7/kenpompy","source_issue_id":1586758329,"source_issue_url":"https://github.com/j-andrews7/kenpompy/issues/43","target_repo_name":"j-andrews7/kenpompy","target_issue_id":1423798537,"target_issue_url":"https://github.com/j-andrews7/kenpompy/issues/33","split":"test","quality_score":92.45,"annotation_level":"silver"}
{"query_id":"cross_issue_0417","query":"build: Ram usage spike and potential stalling at 637/650 (linking?)?","query_context":"When building cosmic-applets, I and some other users experience a ram usage spike at this step. The step also takes longer than 30 minutes and still does not complete on my machine with 16 GB of ram. I had to quit the process because it was going nowhere for > 30 minutes.\n\nExtra note: This is when using `just build-release`. `just build-debug` has the same problem but at a different number (588/611 iirc)\n\nI talked with someone who knows a little more about rust than I do and it seems to be a problem when linking starts.","reference_answer":"This might be made worse by building all the applets in parallel. Maybe limiting the amount of parallel jobs to one would help? `CARGO_BUILD_JOBS=1`","answer_document_id":"gh_comment_1941381645","silver_evidence_path":["gh_comment_1952160542","gh_issue_2131002754","gh_comment_1941381645"],"known_context_document_ids":["gh_issue_2141489273"],"evidence_issue_ids":[2141489273,2131002754],"source_repo_name":"pop-os/cosmic-applets","source_issue_id":2141489273,"source_issue_url":"https://github.com/pop-os/cosmic-applets/issues/236","target_repo_name":"pop-os/cosmic-applets","target_issue_id":2131002754,"target_issue_url":"https://github.com/pop-os/cosmic-applets/issues/221","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0418","query":"`ivy.flatten`?","query_context":"ivy codebase lacks ivy.flatten method to flatten a matrix or a tensor which I feel is relevant for a lot of frontend/backend methods that would be added in future","reference_answer":"Hello @Viditagarwal7479\nThanks for the suggestion but we have this function on Ivy API ivy.max()š","answer_document_id":"gh_comment_1290805227","silver_evidence_path":["gh_comment_1236080714","gh_issue_1356871035","gh_comment_1290805227"],"known_context_document_ids":["gh_issue_1342170655"],"evidence_issue_ids":[1342170655,1356871035],"source_repo_name":"unifyai/ivy","source_issue_id":1342170655,"source_issue_url":"https://github.com/unifyai/ivy/issues/3161","target_repo_name":"unifyai/ivy","target_issue_id":1356871035,"target_issue_url":"https://github.com/unifyai/ivy/issues/3856","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0420","query":"No connection?","query_context":"Hi,\n\nI just installed Owntracks on my server yesterday. The server installed is not exposed to the Internet directly but behind a firewall and a reverse proxy. \nOn installation I didn't state a mail address to disable let's encrypt and configured my reverse proxy to do the SSL things as well as receive the (anyway optional) traffic on http/https and Forward it to my owntracks server. \nThe MQTT port 8883 is forwarded directly. \nI can access the frontend via Internet and my configured domain.\n\nMy problem is, that the app cannot connect to the app. In the firewall I see the traffic is going through. On the server I don't see anything listening on 0.0.0.0:8883 using `ss -l`.\nThere is just something listening on 127.0.0.1:1883 which turned out to be the mosquito broker. I am now unsure what should be and what the issue may be. \nAll of the three services are running. \nBtw: when I change to HTTP connection instead of MQTT nothing changes.\nReading the MQTT messages on the server I just see the ones from otrec.\n\nAny ideas?","reference_answer":"Can you please verify that the Recorder is actually running?\n\n$ ps ax | grep recorder\n\nand can you see if you can query it from the command line of your Raspi?\n\n$ curl URL \n\nAs to the configuration you created in `configuration.yaml`: did you originally add an email address for Let's Encrypt to be activated?","answer_document_id":"gh_comment_2297314264","silver_evidence_path":["gh_comment_2308558778","gh_issue_2473963931","gh_comment_2297314264"],"known_context_document_ids":["gh_issue_2479989335"],"evidence_issue_ids":[2479989335,2473963931],"source_repo_name":"owntracks/quicksetup","source_issue_id":2479989335,"source_issue_url":"https://github.com/owntracks/quicksetup/issues/59","target_repo_name":"owntracks/quicksetup","target_issue_id":2473963931,"target_issue_url":"https://github.com/owntracks/quicksetup/issues/57","split":"test","quality_score":93.17,"annotation_level":"silver"}
{"query_id":"cross_issue_0421","query":"[v2 QUESTION]: Ray \"Failed to start the dashboard\"?","query_context":"**What are you trying to do?**\nI'm a beginner for chemprop and machine learning. I recently started trying out the hyperparameter optimization feature. After installing the ray package, I attempted to run the command \"chemprop hpopt --data-path --task-type --search-parameter-keywords --hpopt-save-dir \". However, I always encountered errors\"Failed to start the dashboard , return code 3221226505\". It seems to be a problem with Ray.\nray 2.46.0\nchemprop 2.1.2\ngrpcio 1.71.0\naiohttp 3.11.16\nprotobuf 6.30.2\nPrevious attempts\n\n**Previous attempts**\nI tried to uninstall ray and used \"pip install ray[default]\". However, the problem is still there.\n\n**Screenshots**\nImage","reference_answer":"@kolcker Could you try the following wheel depending on your Python version and see if it works for you:\n\n URL \n\n URL \n\n URL \n\n URL","answer_document_id":"gh_comment_2980956749","silver_evidence_path":["gh_comment_2922948417","gh_issue_3036241069","gh_comment_2980956749"],"known_context_document_ids":["gh_issue_3101822811"],"evidence_issue_ids":[3101822811,3036241069],"source_repo_name":"chemprop/chemprop","source_issue_id":3101822811,"source_issue_url":"https://github.com/chemprop/chemprop/issues/1241","target_repo_name":"ray-project/ray","target_issue_id":3036241069,"target_issue_url":"https://github.com/ray-project/ray/issues/52739","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0422","query":"July 2022 LWG issues?","query_context":"(Previous meta-issue: #2527)\n\nAt the July 2022 virtual plenary meeting, the resolutions of the following LWG issues were merged into the C++ Working Paper. \n\n# ā Not yet analyzed\n\n# ā Not applicable\n\nIf an issue requires no action from implementers, we mark it as N/A. Categories:\n* Pure wording clarifications with nothing to implement (these can be changes to non-normative text like examples and informative notes, or wording cleanups to normative text that don't impact observable behavior)\n * [x] LWG-3659 Consider `ATOMIC_FLAG_INIT` undeprecation\n * MSVC STL has never deprecated this macro, and it might be impossible to reflect such deprecation in a library implementation\n* Something that increases the restrictions placed on users, but implementers aren't expected to enforce those restrictions.\n* Fixes for obviously broken wording, where implementers would have done the right thing anyways\n * [x] LWG-3709 LWG-3703 was underly ambitious\n * [x] LWG-3713 Sorted with respect to comparator (only)\n\n# šø Already implemented\nSometimes we cite LWG issues in product code comments as we're implementing their proposed resolutions. When the resolutions are officially accepted, we should remove the citations (as the default assumption is that we're implementing what the Standard says). If something is especially subtle, we can convert the citation to mention the relevant Standard section.\n\nSometimes we should add test coverage - e.g. when the Standard begins requiring something that we were already doing, but weren't explicitly testing for.\n\n* Already implemented, comments need to be removed and messages need to cite the Standard\n * [x] LWG-3670 *Cpp17InputIterator*s don't have integer-class difference types\n * [x] LWG-3705 Hashability shouldn't depend on `basic_string`'s allocator\n* Implemented without comments\n * [x] LWG-3687`expected ` move constructor should move\n * [x] LWG-3703 Missing requirements for `expected requires is_void `\n * [x] LWG-3704 LWG-2059 added overloads that might be ill-formed for sets\n * [x] LWG-3708 `take_while_view::`_`sentinel`_'s conversion constructor should move\n\n# 𩹠Patches an unimplemented feature\nWe should record this LWG issue in the GitHub issue tracking the feature. That way, we'll remember to verify it, but it doesn't represent net new work.\n * [x] LWG-3692 `zip_view::`_`iterator`_'s `operator ` is overconstrained\n * [x] LWG-3702 Should `zip_transform_view::`_`iterator`_ remove `operator ::value_type` and `iterator_category` should use `const F&`\n * [x] LWG-3617 `function`/`packaged_task` deduction guides and deducing `this`\n * Note that WG21-P1169 (static `operator()`) also changes these deduction guides.\n * [x] LWG-3701 Make `formatter , charT>` requirement explicit\n * PR out for review\n * [ ] LWG-3656 Inconsistent bit operations returning a count (implemented in #2880 )\n * [ ] LWG-3671 `atomic_fetch_xor` missing from `stdatomic.h` (implemented in #2905 )\n * [ ] LWG-3672 `common_iterator::operator->()` should return by value (implemented in #2907 )\n * [ ] LWG-3683 `operator==` for `polymorphic_allocator` cannot deduce template argument in common cases (implemented in #2879 )\n * [ ] LWG-3707 `chunk_view::`_`outer-iterator`_`::value_type::size` should return unsigned type (implemented in #2883 )\n * [ ] LWG-3710 The `end` of `chunk_view` for input ranges can be `const` (implemented in #2878 )\n * [ ] LWG-3711 Missing preconditions for `slide_view` constructor (implemented in #2946)\n * [ ] LWG-3712 `chunk_view` and `slide_view` should not be `default_initializable` (implemented in #2943 )\n * [ ] LWG-3715 `view_interface::empty` is overconstrained (implemented in #2946 )\n * [ ] LWG-3719 Directory iterators should be usable with default sentinel (implemented in #2902 )\n * [ ] LWG-3721 Allow an _arg-id_ with a value of zero for width in _std-format-spec_ (implemented in #2906 )\n * [ ] LWG-3724 _`decay-copy`_ should be constrained (implemented in #2903 )","reference_answer":"I will add a note to the OP to make sure that `zip` implementation doesn't miss the changes from P2165R4. There's enough to P2165R4 that I think of it as more a standalone feature than simply a patch on `zip`, so I'll leave the separate feature issue.","answer_document_id":"gh_comment_1197686029","silver_evidence_path":["gh_comment_1196172596","gh_issue_1015818300","gh_comment_1197686029"],"known_context_document_ids":["gh_issue_1307419181"],"evidence_issue_ids":[1307419181,1015818300],"source_repo_name":"microsoft/STL","source_issue_id":1307419181,"source_issue_url":"https://github.com/microsoft/STL/issues/2872","target_repo_name":"microsoft/STL","target_issue_id":1015818300,"target_issue_url":"https://github.com/microsoft/STL/issues/2252","split":"test","quality_score":87.56,"annotation_level":"silver"}
{"query_id":"cross_issue_0423","query":"Getting an ERR_UNSUPPORTED_ESM_URL_SCHEME error?","query_context":"### Describe the bug\n\nI'm currently following the guide and at chapter 1 where I am now trying to run: \n\n`npm run start` but getting the following error:\n\nError: Only URLs with a scheme in: file, data, and node are supported by the default ESM loader. On Windows, absolute paths must be valid file:// URLs. Received protocol 'f:'\n\nI'm currently using `node 20.10.0`\n\nHere's my `server.ts`\n\nimport { MikroORM } from \"@mikro-orm/mysql\";\nimport express from \"express\";\nconst app = express();\nconst port = 3000;\n\n// initialize the ORM, loading the config file dynamically\nconst orm = await MikroORM.init();\nconsole.log(orm.em); // access EntityManager via `em` property\nconsole.log(orm.schema); // access SchemaGeneartor via `schema` property\n\napp.get(\"/\", (req, res) => {\n res.send(\"Hello World!\");\n});\n\napp.listen(port, () => {\n return console.log(`Express is listening at URL \n});\n\nand my `package.json`\n\n{\n \"name\": \"server\",\n \"version\": \"1.0.0\",\n \"description\": \"\",\n \"scripts\": {\n \"build\": \"tsc && npx mikro-orm-esm cache:generate --combined\",\n \"start\": \"node --no-warnings=ExperimentalWarning --loader ts-node/esm src/server.ts\",\n \"test\": \"vitest\"\n },\n \"keywords\": [],\n \"author\": \"\",\n \"license\": \"ISC\",\n \"type\": \"module\",\n \"dependencies\": {\n \"@mikro-orm/core\": \"^6.4.15\",\n \"@mikro-orm/mysql\": \"^6.4.15\",\n \"express\": \"^5.1.0\",\n \"un\": \"^0.0.0\",\n \"zod\": \"^3.25.20\"\n },\n \"devDependencies\": {\n \"@eslint/js\": \"^9.27.0\",\n \"@mikro-orm/cli\": \"^6.4.15\",\n \"@mikro-orm/reflection\": \"^6.4.15\",\n \"@types/express\": \"^5.0.2\",\n \"@types/node\": \"^22.15.19\",\n \"eslint\": \"^9.27.0\",\n \"globals\": \"^16.1.0\",\n \"ts-node\": \"^10.9.2\",\n \"typescript\": \"^5.8.3\",\n \"typescript-eslint\": \"^8.32.1\",\n \"vitest\": \"^3.1.4\"\n }\n}\n\n### Reproduction\n\nFollow the guide and after setting up a basic entity, run `npm run start` \n\n### What driver are you using?\n\nMySQL (mikro-oorm/mysql 6.4.15)\n\n### MikroORM version\n\n6.4.15\n\n### Node.js version\n\n20.10.0\n\n### Operating system\n\nWindows 11\n\n### Validations\n\n- [x] Read the Contributing Guidelines.\n- [x] Read the docs.\n- [x] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.\n- [x] Check that this is a concrete bug. For Q&A open a GitHub Discussion or join our Discord.\n- [x] The provided reproduction is a minimal reproducible example of the bug.","reference_answer":"Absolute paths (either unix or windows style) aren't valid URLs, though.\n\nsh-session\n$ node -p 'new URL(\"/Users/user/file.js\").href'\ninternal/url.js:243\n throw new ERR_INVALID_URL(input);\n ^\n\nTypeError [ERR_INVALID_URL]: Invalid URL: /Users/user/file.js\n\n(same behavior in Chrome)\n\nI 100% agree with passing the path through `url.pathToFileURL` first (that's the fixed I've applied in Jest), but I think it should be required on _all_ platforms, not just Windows.","answer_document_id":"gh_comment_587364286","silver_evidence_path":["gh_comment_2900456007","gh_issue_562234617","gh_comment_587364286"],"known_context_document_ids":["gh_issue_3081998122"],"evidence_issue_ids":[3081998122,562234617],"source_repo_name":"mikro-orm/mikro-orm","source_issue_id":3081998122,"source_issue_url":"https://github.com/mikro-orm/mikro-orm/issues/6670","target_repo_name":"nodejs/node","target_issue_id":562234617,"target_issue_url":"https://github.com/nodejs/node/issues/31710","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0424","query":"Drag-and-drop doesn't work under chromium (wayland)?","query_context":"### Regression?\n\nYes\n\n### System Info and Version\n\n System/Version info \n\nsh\nHyprland, built from branch main at commit 688fe5c14781c63a1db23d4d02bf239283068ff6 dirty (windowrules: add fullscreenstate field (7466)).\nDate: Sat Aug 24 03:42:14 2024\nTag: v0.42.0-62-g688fe5c1, commits: 5131\n\nflags: (if any)\n\nSystem Information:\nSystem name: Linux\nNode name: Arch\nRelease: 6.10.5-2-cachyos-lto\nVersion: #1 SMP PREEMPT_DYNAMIC Thu, 15 Aug 2024 08:14:57 +0000\n\nGPU information: \n64:00.0 VGA compatible controller [0300]: Advanced Micro Devices, Inc. [AMD/ATI] Phoenix1 [1002:15bf] (rev c7) (prog-if 00 [VGA controller])\n\nos-release: NAME=\"Arch Linux\"\nPRETTY_NAME=\"Arch Linux\"\nID=arch\nBUILD_ID=rolling\nANSI_COLOR=\"38;2;23;147;209\"\nHOME_URL=\" URL \nDOCUMENTATION_URL=\" URL \nSUPPORT_URL=\" URL \nBUG_REPORT_URL=\" URL \nPRIVACY_POLICY_URL=\" URL \nLOGO=archlinux-logo\n\nplugins:\n\n \n\n### Description\n\nI tried bisect and went back to aquamarine before drag-and-drop didn't work either, probably influenced by other factors.\n\n### How to reproduce\n\n1. with `chromium --ozone-platform=wayland` command startup chromium\n2. Click on a link tag and drag\n\n### Crash reports, logs, images, videos\n\n URL","reference_answer":"hm, odd. it surely works for me. Anything else you can find to trigger this? Some config opt?","answer_document_id":"gh_comment_2170381330","silver_evidence_path":["gh_comment_2308629805","gh_issue_2354762310","gh_comment_2170381330"],"known_context_document_ids":["gh_issue_2484564567"],"evidence_issue_ids":[2484564567,2354762310],"source_repo_name":"hyprwm/Hyprland","source_issue_id":2484564567,"source_issue_url":"https://github.com/hyprwm/Hyprland/issues/7496","target_repo_name":"hyprwm/Hyprland","target_issue_id":2354762310,"target_issue_url":"https://github.com/hyprwm/Hyprland/issues/6509","split":"test","quality_score":89.64,"annotation_level":"silver"}
{"query_id":"cross_issue_0425","query":"Vue + Markdown example not working?","query_context":"npm init vitebook vitebook\n\nSelect Vue & Markdown.\n\nnpm install\necho \"# Hello World\" > src/test.md\nnpm run vitebook:dev\n\nThe Markdown file will not show up.","reference_answer":"I finally found some time to fix it all and also finished upgrading to Vite 3 :) Everything should be working in latest, feel free to give it a try and let me know how you go. Raise a new issue if there's any problems.","answer_document_id":"gh_comment_1192129257","silver_evidence_path":["gh_comment_1091249655","gh_issue_1195480260","gh_comment_1192129257"],"known_context_document_ids":["gh_issue_1189682532"],"evidence_issue_ids":[1189682532,1195480260],"source_repo_name":"vitebook/vitebook","source_issue_id":1189682532,"source_issue_url":"https://github.com/vitebook/vitebook/issues/64","target_repo_name":"vitebook/vitebook","target_issue_id":1195480260,"target_issue_url":"https://github.com/vitebook/vitebook/issues/72","split":"test","quality_score":75.85,"annotation_level":"silver"}
{"query_id":"cross_issue_0426","query":"Explain how to use `git pr list --template` feature, or at least give some hints and an example?","query_context":"### Describe the feature or problem youād like to solve\n\nThe `gh pr list` command has an argument `--template`; the only documentation for it that I could find states:\n \n\nBut what does that mean? For Go aficionados this might be crystal clear, but others (including me) may have no clue at all what that means.\n\n### Proposed solution\n\nExplain this more. At the very least, perhaps a link to an external site could be inserted that explains what a \"Go template\" is. A minimal example would also be very nice.","reference_answer":"@heaths Looks pretty good! I think you're definitely on to something here.\n\nDoes `text/tabwriter` work when the lines passed in contain ANSI escape sequences? I would have guessed that it doesn't recognize these escape sequences as non-printable and that they can mess up horizontal alignment.","answer_document_id":"gh_comment_826695955","silver_evidence_path":["gh_comment_1219364500","gh_issue_864493180","gh_comment_826695955"],"known_context_document_ids":["gh_issue_1341961946"],"evidence_issue_ids":[1341961946,864493180],"source_repo_name":"cli/cli","source_issue_id":1341961946,"source_issue_url":"https://github.com/cli/cli/issues/6089","target_repo_name":"cli/cli","target_issue_id":864493180,"target_issue_url":"https://github.com/cli/cli/issues/3488","split":"test","quality_score":77.08,"annotation_level":"silver"}
{"query_id":"cross_issue_0427","query":"WebSocket Disconnection Issue After Running for Some Time the Companion Web API Service?","query_context":"**Describe the bug**\nWe are experiencing an issue where WebSocket connections in our application are getting disconnected after running for some time. The application initially runs without any issues, but after a certain period, WebSockets stop functioning, and we receive the following error in the logs when performing certain API calls:\n\n`\nfail: Microsoft.AspNetCore.Server.Kestrel[13]\n Connection id \"*****\", Request id \"*****:00000001\": An unhandled exception was thrown by the application.\n {\"type\":\"WebSocketException\",\"title\":\"HttpRequestException\",\"status\":500,\"detail\":\"-2147467259\"}\n`\n\nAfter a restart of the service, everything works correctly again.\n\n**To Reproduce**\n1. Deploy mcr.microsoft.com/iot/industrial-iot-services-all:2.9.11\n2. Perform an API call to get history values: history/v2/read/ /values\n3. At the beginning is working properly, after some time it stops working\n\n**Expected behavior**\nWebSocket connections should remain stable without unexpected disconnections.\n\n**Actual Behavior**\nWebSockets disconnect after a certain period, and the application logs the error mentioned above.\n\n**Version**\nThe version used is mcr.microsoft.com/iot/industrial-iot-services-all:2.9.11","reference_answer":"@NoTuxNoBux, the plan proposed here would be to stop releasing the \"cloud webapp\" container, which would include the Twin API you are referencing. But this companion webapp just wraps the device twin and device methods behind a REST interface (with retries etc.) so apps in the cloud do not need to call any IoT Hub device methods directly. So that you are not seeing the same behavior is surprising and would need to be looked at. You could use the code in the web app in your Azure function, would that work? \n\nYou could also use 2.9.14 of the container on MCR, but there would not be any more security fixes published, nor would we run end to end tests with 2.9.15+ of OPC Publisher then. \n\nAnyway, we could slice the webapp to just what you need and make it a sample, if that is ok for you, a list of API you are using would be great.\n\nThe core issue is that we just do not have cycles to update the deployment scripts and e2e devops pipelines to comply with security requirements for hosting on Microsoft build system. we are forced to turn off our builds/tests for this component at some point or muster time to stay in compliance. \n\nI want to say this too, so it is not misconstrued: The OPC Publisher is not affected by this at all, we did all the work to be compliant internally already. It can still be controlled via Device Methods from IoT Hub, the API will not change, and no support timelines/conditions are affected, it remains fully integrated there and no changes are planned there. The OPC Publisher module will also retain all its capabilities, nothing will be removed which includes its HTTPS API endpoint if you enable it. \n\nThere was very limited feedback here until yesterday, nor did we ever get a support ticket on this component, which indicates that usage is very light. It would be great if we can come up with a plan quickly that does not break anyone.","answer_document_id":"gh_comment_2969400034","silver_evidence_path":["gh_comment_2970338769","gh_issue_2795610304","gh_comment_2969400034"],"known_context_document_ids":["gh_issue_2924720437"],"evidence_issue_ids":[2924720437,2795610304],"source_repo_name":"Azure/Industrial-IoT","source_issue_id":2924720437,"source_issue_url":"https://github.com/Azure/Industrial-IoT/issues/2385","target_repo_name":"Azure/Industrial-IoT","target_issue_id":2795610304,"target_issue_url":"https://github.com/Azure/Industrial-IoT/issues/2370","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0428","query":"Assertion fails if cancellation is requested before connection establish?","query_context":"It seems when we send cancellation signal during the connection phase this assertion fails.\ni'm using URL \n`\n: ~/third_party/aedis/include/aedis/detail/connection_ops.hpp:536: void aedis::detail::reader_op >::operator()(Self &, boost::system::error_code, std::size_t) [Conn = aedis::connection<>, Self = boost::asio::detail::composed_op >, boost::asio::detail::composed_work , boost::asio::experimental::detail::parallel_group_op_handler >, boost::asio::detail::composed_work , boost::asio::detail::composed_op >, boost::asio::detail::composed_work , boost::asio::detail::as_tuple_handler >>, void (boost::system::error_code)>, void (boost::system::error_code)>, (lambda at ~/third_party/aedis/include/aedis/detail/connection_ops.hpp:358:13), (lambda at ~/third_party/aedis/include/aedis/detail/connection_ops.hpp:359:13), (lambda at ~/third_party/aedis/include/aedis/detail/connection_ops.hpp:360:13), (lambda at ~/third_party/aedis/include/aedis/detail/connection_ops.hpp:361:13)>, void (boost::system::error_code)>]: Assertion !conn->read_buffer_.empty()' failed.\n`","reference_answer":"All forms of cancellation are now supported, for example, implicit with operator || and && or explicit with the cancel member function.","answer_document_id":"gh_comment_1288109993","silver_evidence_path":["gh_comment_1264578732","gh_issue_1393678666","gh_comment_1288109993"],"known_context_document_ids":["gh_issue_1382432703"],"evidence_issue_ids":[1382432703,1393678666],"source_repo_name":"mzimbres/aedis","source_issue_id":1382432703,"source_issue_url":"https://github.com/mzimbres/aedis/issues/28","target_repo_name":"mzimbres/aedis","target_issue_id":1393678666,"target_issue_url":"https://github.com/mzimbres/aedis/issues/32","split":"test","quality_score":85.71,"annotation_level":"silver"}
{"query_id":"cross_issue_0429","query":"[QUESTION] \"Could not find prepared statement with handle 1\" - probably, it was fixed?","query_context":"## Question\n \nRandom exception: \"Could not find prepared statement with handle 1\", mssql-jdbc-11.2.3.jre11.jar\nProbably, it was fixed in latest versions?\n\nStack:\nCaused by: com.microsoft.sqlserver.jdbc.SQLServerException: Could not find prepared statement with handle 1.\n at com.microsoft.sqlserver.jdbc.SQLServerException.makeFromDatabaseError(SQLServerException.java:265) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.SQLServerStatement.getNextResult(SQLServerStatement.java:1676) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.doExecutePreparedStatement(SQLServerPreparedStatement.java:620) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement$PrepStmtExecCmd.doExecute(SQLServerPreparedStatement.java:540) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.TDSCommand.execute(IOBuffer.java:7620) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.SQLServerConnection.executeCommand(SQLServerConnection.java:3916) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeCommand(SQLServerStatement.java:268) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.SQLServerStatement.executeStatement(SQLServerStatement.java:242) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.SQLServerPreparedStatement.executeQueryInternal(SQLServerPreparedStatement.java:473) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.SQLServerDatabaseMetaData.getResultSetFromStoredProc(SQLServerDatabaseMetaData.java:360) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.SQLServerDatabaseMetaData.getResultSetWithProvidedColumnNames(SQLServerDatabaseMetaData.java:374) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n at com.microsoft.sqlserver.jdbc.SQLServerDatabaseMetaData.getIndexInfo(SQLServerDatabaseMetaData.java:1162) ~[mssql-jdbc-11.2.3.jre11.jar:?]\n## Relevant Issues and Pull Requests","reference_answer":"The 12.7 preview release is available. The next stable release to include this will either be the 12.6.2 hotfix and/or the 12.8 GA release. We have not finalized a date for the hotfix, but the GA can be expected at the end of July (July 31).","answer_document_id":"gh_comment_2101011289","silver_evidence_path":["gh_comment_2018565042","gh_issue_2196682312","gh_comment_2101011289"],"known_context_document_ids":["gh_issue_2203498485"],"evidence_issue_ids":[2203498485,2196682312],"source_repo_name":"microsoft/mssql-jdbc","source_issue_id":2203498485,"source_issue_url":"https://github.com/microsoft/mssql-jdbc/issues/2362","target_repo_name":"microsoft/mssql-jdbc","target_issue_id":2196682312,"target_issue_url":"https://github.com/microsoft/mssql-jdbc/issues/2356","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0430","query":"Don't pass test data to `.predict()`?","query_context":"@eschrom We talked about the possibility for `.augment_data()` to leak information about the future into models. But I'm realizing that `.predict()` explicitly takes the *test* data? Presumably this is something about target dates, but it's something we should change because (1) this is incompatible with doing prospective forecasts and (2) it's a real bad smell w.r.t. leakage.","reference_answer":"This is a very useful mental framework. We should keep in mind that a refactor of the autoregressive model is imminent, after which (1) and (2) will be cleanly separable just like for the Hill model. The soon-to-be-refactored AR model will have parameters which govern the true latent incident uptake from week to week, and separate parameters which govern the observation process. Thus, in both cases, we will be able to use the $n$ posterior samples generated during fitting to produce retrospective estimates or future forecasts of true latent uptake, and then \"add\" observation uncertainty to that, using $k=1$ draws per posterior sample as you've suggested. Does this sound correct, @afmagee42?","answer_document_id":"gh_comment_2695924139","silver_evidence_path":["gh_comment_2714696032","gh_issue_2816566349","gh_comment_2695924139"],"known_context_document_ids":["gh_issue_2903630654"],"evidence_issue_ids":[2903630654,2816566349],"source_repo_name":"CDCgov/cfa-immunization-uptake-projection","source_issue_id":2903630654,"source_issue_url":"https://github.com/CDCgov/cfa-immunization-uptake-projection/issues/134","target_repo_name":"CDCgov/cfa-immunization-uptake-projection","target_issue_id":2816566349,"target_issue_url":"https://github.com/CDCgov/cfa-immunization-uptake-projection/issues/110","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0432","query":"[FP]: jackson-databind-2.13.2?","query_context":"### Package URl\n\npkg:maven/com.fasterxml.jackson.core/jackson-databind@2.13.2\n\n### CPE\n\ncpe:2.3:a:fasterxml:jackson-databind:2.13.2:*:*:*:*:*:*:* and cpe:2.3:a:fasterxml:jackson-modules-java8:2.13.2:*:*:*:*:*:*:*)\n\n### CVE\n\nCVE-2020-36518\n\n### ODC Integration\n\n_No response_\n\n### ODC Version\n\n7.0.1\n\n### Description\n\nFrom URL \n \n\nWhen reporting this CVE for jackson-databind 2.13.2 it seems like a false positive.","reference_answer":"One final thing: I also went ahead and released `jackson-bom:2.13.2.1` just so that Gradle Module Metadata issue for `jackson-databind:2.13.2.1` SHOULD be fully resolved. So while there is also `2.13.2.2` of `jackson-databind` (with actual already valid GMM) it seems better not to leave 2.13.2.1 with dangling reference to non-existing module info.","answer_document_id":"gh_comment_1082617258","silver_evidence_path":["gh_comment_1079640365","gh_issue_678075273","gh_comment_1082617258"],"known_context_document_ids":["gh_issue_1181590386"],"evidence_issue_ids":[1181590386,678075273],"source_repo_name":"jeremylong/DependencyCheck","source_issue_id":1181590386,"source_issue_url":"https://github.com/jeremylong/DependencyCheck/issues/4267","target_repo_name":"FasterXML/jackson-databind","target_issue_id":678075273,"target_issue_url":"https://github.com/FasterXML/jackson-databind/issues/2816","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0433","query":"Pi-hole admin pages will load in an iFrame, but table data will not (Invalid JSON response)?","query_context":"### Versions\n\n- Pi-hole: [v5.12.2]\n- AdminLTE: [v5.18.1]\n- FTL: [v5.15.1]\n\n### Platform\n\n- OS and version: Raspbian Buster\n\n- Platform: Raspberry Pi 4B\n\n### Expected behavior\n\nNormal functionality in an Organizr iFrame after commenting out \"X-Frame-Options\" => \"DENY\" in lighttpd.conf on the Pi-hole host machine.\n\n### Actual behavior / bug\n\nPi-hole AdminLTE pages will load, but table data will not. Also, if a password is enabled, one can never get past the login screen -- the login page just keeps reappearing. With the Pi-hole password disabled, any pages that contain table data generate an error of \"DataTables warning: table id=groupsTable - Invalid JSON response.\", or similar depending on which DataTable is applicable to a given AdminLTE page.\n\n### Steps to reproduce\n\nSteps to reproduce the behavior:\n\n1. Go to /etc/lighttpd/lighttpd.conf and comment out \"X-Frame-Options\" => \"DENY\" (as shown below), remove Pi-hole password using pihole -a -p\n\n# If the URL starts with /admin, it is the Web interface\n$HTTP[\"url\"] =~ \"^/admin/\" {\n # X-Pi-hole is a response header for debugging using curl -I\n # X-Frame-Options prevents clickjacking attacks and helps ensure your content is not embedded into other sites via , or .\n # X-XSS-Protection sets the configuration for the cross-site scripting filters built into most browsers. This is important because it tells the browser to block the response if a malicious script has been inserted from a user input.\n # X-Content-Type-Options stops a browser from trying to MIME-sniff the content type and forces it to stick with the declared content-type. This is important because the browser will only load external resources if their content-type matches what is expected, and not malicious hidden code.\n # Content-Security-Policy tells the browser where resources are allowed to be loaded and if itĆ¢ā¬ā¢s allowed to parse/run inline styles or Javascript. This is important because it prevents content injection attacks, such as Cross Site Scripting (XSS).\n # X-Permitted-Cross-Domain-Policies is an XML document that grants a web client, such as Adobe Flash Player or Adobe Acrobat (though not necessarily limited to these), permission to handle data across domains.\n # Referrer-Policy allows control/restriction of the amount of information present in the referral header for links away from your pageĆ¢ā¬āthe URL path or even if the header is sent at all.\n setenv.add-response-header = (\n \"X-Pi-hole\" => \"The Pi-hole Web interface is working!\",\n# \"X-Frame-Options\" => \"DENY\",\n \"X-XSS-Protection\" => \"1; mode=block\",\n \"X-Content-Type-Options\" => \"nosniff\",\n \"Content-Security-Policy\" => \"default-src 'self' 'unsafe-inline';\",\n \"X-Permitted-Cross-Domain-Policies\" => \"none\",\n \"Referrer-Policy\" => \"same-origin\"\n\n2. Configure Pi-hole admin pages to load through an Organizr iFrame tab\n3. Click on 'Groups'\n4. See error\n\n## Debug Token\n\n- URL: \n\n URL \n\n### Screenshots\n\nScreenshot 2022-09-27 082202\n\n### Additional context\n\nOrganizr is such a great tool for organizing web-based setup pages for applications on one's LAN. Pi-hole isn't the only application that requires minor tweaks to work in an iFrame, but it would be nice to know what those tweaks are for full Pi-hole admin page functionality. Any help would be greatly appreciated!","reference_answer":"At this moment in time its:\n\nroot@222b35f401b9:/# lighttpd -v\nlighttpd/1.4.53 (ssl) - a light and fast webserver\n\nSo you should be good to go\n\nThere are still a few things to look at around env vars before we can think about looking at this, but it is probably worth noting that `lighttpd` will be dropped in the future with Pi-hole 6.0 (no ETA) - so not 100% sure it's worth the work for this particular use case which has a perfectly adequate workaround in using `external.conf` for now","answer_document_id":"gh_comment_1010267713","silver_evidence_path":["gh_comment_1263760684","gh_issue_355637145","gh_comment_1010267713"],"known_context_document_ids":["gh_issue_1388070841"],"evidence_issue_ids":[1388070841,355637145],"source_repo_name":"pi-hole/AdminLTE","source_issue_id":1388070841,"source_issue_url":"https://github.com/pi-hole/AdminLTE/issues/2377","target_repo_name":"pi-hole/docker-pi-hole","target_issue_id":355637145,"target_issue_url":"https://github.com/pi-hole/docker-pi-hole/issues/327","split":"test","quality_score":95.17,"annotation_level":"silver"}
{"query_id":"cross_issue_0435","query":"Bug: view on open sauced location?","query_context":"### Describe the bug\n\nWhen you open a profile that does not have a bio, the view on open source will not show. \n\n### Steps to reproduce\n\n1. go to your profile\n2. remove your bio \n3. refresh the page :) \n\n### Affected services\n\nbrowser-extension\n\n### Platforms\n\n_No response_\n\n### Browsers\n\n_No response_\n\n### Environment\n\n_No response_\n\n### Additional context\n\n_No response_\n\n### Code of Conduct\n\n- [X] I agree to follow this project's Code of Conduct\n\n### Contributing Docs\n\n- [ ] I agree to follow this project's Contribution Docs","reference_answer":"For first contributors to work on this you can do the next: \n1. š Search for the keyword in the broken button (View On OpenSauced) \n2. š¤ Try to understand the component and code written within it. \n3. š Figure out where did we use this component Solution/spoiler š The needed function: injectViewOnOpenSaucedButton \n4. š When you find the function related to this component, you can add extra logic to check whether it's the same logged-in user profile. (you can do this by finding a unique selector for user profile) Solution/spoiler š \nYou can do this by checking the Edit profile button, Solution/spoiler š \nthe related class selector: js-profile-editable-edit-button\n \n \n\n@bdougie @Anush008 @diivi, what's your input about this? I am considering labeling it as a good-first-issue if it's clear and not blocking any business logic.","answer_document_id":"gh_comment_1556304165","silver_evidence_path":["gh_comment_1565416522","gh_issue_1718648839","gh_comment_1556304165"],"known_context_document_ids":["gh_issue_1728707593"],"evidence_issue_ids":[1728707593,1718648839],"source_repo_name":"open-sauced/ai","source_issue_id":1728707593,"source_issue_url":"https://github.com/open-sauced/ai/issues/146","target_repo_name":"open-sauced/ai","target_issue_id":1718648839,"target_issue_url":"https://github.com/open-sauced/ai/issues/97","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0437","query":"Reference to `this` is unknown inside cloud.Api method definition?","query_context":"### Community Note\n \n \n\n### I tried this:\n\n`wing it`\n\nts\nbring cloud;\n\nclass TaskList { \n init() {\n }\n \n inflight add(title: str): str {\n let id = \"1\";\n return id;\n }\n}\n \nclass TaskListApi {\n api: cloud.Api;\n task_list: TaskList;\n \n init(task_list: TaskList) {\n this.task_list = task_list;\n this.api = new cloud.Api();\n \n this.api.post(\"/tasks\", inflight (req: cloud.ApiRequest): cloud.ApiResponse => {\n let id = this.task_list.add(\"title\");\n return cloud.ApiResponse { status:201, body: id };\n });\n }\n}\n\nlet task_list = new TaskList();\nlet t = new TaskListApi(task_list);\n\nThen in wing console I tried to `POST` to `/tasks` a simple request with `body: {\"title\": \"Yossarian\"}` and `content-type` header `application/json`.\n\n### I expected this:\n\nWing console to print: success.\n\n### Instead, this happened:\n\nsh\nevalmachine. :19\n async handle(req) { const { this } = this; {\n ^^^^\n\nSyntaxError: Unexpected token 'this'\n at new Script (node:vm:100:7)\n at createScript (node:vm:265:10)\n at Object.runInContext (node:vm:296:10)\n at /Applications/Wing Console.app/Contents/Resources/app.asar/dist/vite/electron/main/index.js:238:149\n at new Promise ( )\n at n2t (/Applications/Wing Console.app/Contents/Resources/app.asar/dist/vite/electron/main/index.js:237:9364)\n at Object.activity (/Applications/Wing Console.app/Contents/Resources/app.asar/dist/vite/electron/main/index.js:237:8767)\n at Object.withTrace (/Applications/Wing Console.app/Contents/Resources/app.asar/dist/vite/electron/main/index.js:238:8269)\n at XH.invoke (/Applications/Wing Console.app/Contents/Resources/app.asar/dist/vite/electron/main/index.js:237:8689)\n at /Applications/Wing Console.app/Contents/Resources/app.asar/dist/vite/electron/main/index.js:237:2531\n\n### Is there a workaround?\n\nYes, this seems to work (notice assignment of `self`):\n\nts\nbring cloud;\n\nclass TaskList { \n init() {\n }\n \n inflight add(title: str): str {\n let id = \"1\";\n return id;\n }\n}\n \nclass TaskListApi {\n api: cloud.Api;\n task_list: TaskList;\n \n init(task_list: TaskList) {\n this.task_list = task_list;\n this.api = new cloud.Api();\n\n let self = this;\n \n this.api.post(\"/tasks\", inflight (req: cloud.ApiRequest): cloud.ApiResponse => {\n let id = self.task_list.add(\"title\");\n return cloud.ApiResponse { status:201, body: id };\n });\n }\n}\n\nlet task_list = new TaskList();\nlet t = new TaskListApi(task_list);\n\nThis code now runs into a different issue #1969\n\n### Component:\n\nCompiler\n\n### Wing Version:\n\n0.8.26\n\n### Node.js Version:\n\n19.3.0\n\n### Platform(s):\n\nMacOS\n\n### Anything else?\n\n_No response_","reference_answer":"@Chriscbr \n\nSince my technical knowledge here is very limited, it might be that this suggestion is really off, so please don't take me too seriously. \n\nWhat if we take a slightly different approach and treat all global variables as Root members making:\n1. Create a $FILE_ resource\n2. Put all code inside the init function\n3. transform all global `let`/`let var` statements into members\n5. Instantiate $FILE_ resource \n\nMaking this:\n\nts (wing)\nbring cloud;\n\nlet b = new cloud.Bucket();\n\nlet handler = inflight (payload: str) => {\n assert(b.list().length == 0);\n b.put(\"hello.txt\", \"world\");\n assert(b.list().length == 1);\n});\nnew cloud.Function(handler) as \"test:put\";\n\nInto this:\n\nts (wing)\nbring cloud;\n\nresource $FILE_AppW {\n b: cloud.Bucket;\n handler: inflight (str);\n init(){\n this.b = new cloud.Bucket();\n this.handler = inflight (payload: str) => {\n assert(this.b.list().length == 0);\n this.b.put(\"hello.txt\", \"world\");\n assert(this.b.list().length == 1);\n }; \n new cloud.Function(this.handler) as \"test:put\"; \n }\n \n}\nnew $FILE_AppW();\n\nThe above code doesn't work because of #1966 (and maybe other stuff) and I don't see how it solves your `TypeAnnotation` problem... so I don't know how useful it is for you š¤·","answer_document_id":"gh_comment_1512203533","silver_evidence_path":["gh_comment_1510351090","gh_issue_1572524251","gh_comment_1512203533"],"known_context_document_ids":["gh_issue_1651890096"],"evidence_issue_ids":[1651890096,1572524251],"source_repo_name":"winglang/wing","source_issue_id":1651890096,"source_issue_url":"https://github.com/winglang/wing/issues/1966","target_repo_name":"winglang/wing","target_issue_id":1572524251,"target_issue_url":"https://github.com/winglang/wing/issues/1448","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0438","query":"d405 calibration issue?","query_context":"| | |\n|---|---|\n|**librealsense**|2.56.3 RELEASE|\n|**OS**|Windows|\n\nIntel RealSense Viewer / Depth Quality Tool has crashed with the following error message:\n\nUnhandled exception escaping from a worker thread!\nError type: Access Violation!","reference_answer":"You are very welcome. It's great to hear that you had a successful outcome. Thanks very much for the update!","answer_document_id":"gh_comment_2818352786","silver_evidence_path":["gh_comment_2900634930","gh_issue_3007507777","gh_comment_2818352786"],"known_context_document_ids":["gh_issue_3082776098"],"evidence_issue_ids":[3082776098,3007507777],"source_repo_name":"IntelRealSense/librealsense","source_issue_id":3082776098,"source_issue_url":"https://github.com/IntelRealSense/librealsense/issues/14020","target_repo_name":"IntelRealSense/librealsense","target_issue_id":3007507777,"target_issue_url":"https://github.com/IntelRealSense/librealsense/issues/13955","split":"test","quality_score":75.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0439","query":"Cursor has problems in Wayland?","query_context":"Hi,\n\nI don't know if it's related to RetroArch apparently lacking pointer confinement on Wayland, as I commented here:\n URL \n\n...But for example, Lemmings or Ishar have major problems with cursor movement on Wayland, like cursor is stuck on the right half of the screen, or in a certain area.\nThis happens on all Wayland compositors I tried: Weston, Sway and tinywl.\n\nHas anybody tried this core on Wayland compositors?","reference_answer":"Are you running the latest master branch. We very recently (<2 weeks) applied a patch on pointer constraints.\n\nIf running the latest doesn't solve this, could you try `sway` and/or `weston` before we start looking too deep.","answer_document_id":"gh_comment_1452549786","silver_evidence_path":["gh_comment_1454705334","gh_issue_1605843036","gh_comment_1452549786"],"known_context_document_ids":["gh_issue_1379715867"],"evidence_issue_ids":[1379715867,1605843036],"source_repo_name":"realnc/dosbox-core","source_issue_id":1379715867,"source_issue_url":"https://github.com/realnc/dosbox-core/issues/48","target_repo_name":"labwc/labwc","target_issue_id":1605843036,"target_issue_url":"https://github.com/labwc/labwc/issues/809","split":"test","quality_score":85.38,"annotation_level":"silver"}
{"query_id":"cross_issue_0440","query":"Data Wrangler view does not remember hidden side bar / bottom panel?","query_context":"Type: Bug \n\n \n \n\n# Behaviour\n\n## Expected vs. Actual\n\nWhen I hide the side bar and the panel in the Data Wrangler view, change the tab to an open notebook and return to the Data Wrangler view, the side bar and the panel show up again. I expect, them to stay hidden upon tab switch.\n\n \n\n# Diagnostic data\n\n- Jupyter extension version: 2023.10.1100000000\n- Python extension version: 2023.20.0\n- .NET Install Tool for Extension Authors extension version: 2.0.0\n- Python package dependencies:\n\njson\n{\n \"satisfied\": {\n \"pandas\": {\n \"installedVersion\": \"2.1.3\",\n \"requiredVersion\": \"0.25.2\"\n }\n },\n \"unsatisfied\": {}\n}\n\nExtension version: 0.20.0\nVS Code version: Code 1.84.2 (1a5daa3a0231a0fbba4f14db7ec463cf99d7768e, 2023-11-09T10:50:47.800Z)\nOS version: Linux x64 6.5.9-1-MANJARO\nModes:","reference_answer":"Hi folks! Thank you very much for your patience and for providing great feedback on this issue.\n\nWe've just added a setting to disable the automatic panel behaviour in pre-release version 1.13.3. The following setting needs to be disabled to prevent the panels from appearing on startup and on tab focus:\nImage\n\nPlease feel free to give this a try and let us know if you have any additional feedback. Thanks!","answer_document_id":"gh_comment_2487056292","silver_evidence_path":["gh_comment_2487081464","gh_issue_1943467909","gh_comment_2487056292"],"known_context_document_ids":["gh_issue_1996791710"],"evidence_issue_ids":[1996791710,1943467909],"source_repo_name":"microsoft/vscode-data-wrangler","source_issue_id":1996791710,"source_issue_url":"https://github.com/microsoft/vscode-data-wrangler/issues/103","target_repo_name":"microsoft/vscode-data-wrangler","target_issue_id":1943467909,"target_issue_url":"https://github.com/microsoft/vscode-data-wrangler/issues/96","split":"test","quality_score":84.71,"annotation_level":"silver"}
{"query_id":"cross_issue_0441","query":"š - Deprecated -moz-any and -webkit-any pseudo-classes used in Taiga UI CSS?","query_context":"### Description\n\nDear Taiga UI Team,\n\nI've encountered warnings during the build process of my Angular 19 or from version 17+ applications that uses Taiga UI. These warnings indicate the use of deprecated -moz-any and -webkit-any pseudo-classes in Taiga UI's CSS.\n\nDuring the Angular build process (using ng build), the following warnings are generated:\n\n[WARNING] 391 rules skipped due to selector errors:\n[tuiAppearance][data-appearance=accent]:-webkit-any(a,button,select,textarea,input,label):not([data-state]) -> Unknown pseudo-class :-webkit-any\n[tuiAppearance][data-appearance=accent]:-moz-any(a,button,select,textarea,input,label):not([data-state]) -> Unknown pseudo-class :-moz-any\n... (many similar warnings for different appearances)....\n\nDescription of the issue:\n\nThese warnings stem from the use of -webkit-any and -moz-any, which are non-standard and deprecated. The standard replacement is the :is() pseudo-class.\n\nExpected behavior:\n\nTaiga UI's CSS should use the standard :is() pseudo-class to ensure compatibility with modern browsers and avoid build warnings.\n\nCurrent behavior:\n\nThe build process generates warnings due to the presence of -webkit-any and -moz-any in Taiga UI's CSS. While the application may still function, these warnings clutter the build output and indicate the use of outdated CSS.","reference_answer":"Closing this issue because ownership of Critters has moved to the Nuxt team, who will be maintaining the project going forward. This repo is archived and won't receive any future updates.\n \nIf the issue is still relevant, please re-post it to the actively-maintained fork at URL","answer_document_id":"gh_comment_2438545636","silver_evidence_path":["gh_comment_2585310996","gh_issue_2099419852","gh_comment_2438545636"],"known_context_document_ids":["gh_issue_2781390562"],"evidence_issue_ids":[2781390562,2099419852],"source_repo_name":"taiga-family/taiga-ui","source_issue_id":2781390562,"source_issue_url":"https://github.com/taiga-family/taiga-ui/issues/10145","target_repo_name":"GoogleChromeLabs/critters","target_issue_id":2099419852,"target_issue_url":"https://github.com/GoogleChromeLabs/critters/issues/153","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0442","query":"Pluto.TV Addon: DAZN Channels could no longer played?","query_context":"Hi @matthuisman , I noticed in the Pluto.TV addon that the DAZN (for examle \"DAZN Darts x Pluto TV\" or \"DAZN International Football x Pluto TV\") channels could no longer be played. The error message āUnable to playā always appears. Do you have an idea why that is?\n\nkodi_slyg_pluto_dazn.log\n\nGreetings Weri","reference_answer":"oh wow. i dont get that all.\nIs that a cloudflare message or their site returning it?","answer_document_id":"gh_comment_1882360453","silver_evidence_path":["gh_comment_1920714110","gh_issue_2069930924","gh_comment_1882360453"],"known_context_document_ids":["gh_issue_2110022173"],"evidence_issue_ids":[2110022173,2069930924],"source_repo_name":"matthuisman/slyguy.addons","source_issue_id":2110022173,"source_issue_url":"https://github.com/matthuisman/slyguy.addons/issues/673","target_repo_name":"matthuisman/slyguy.addons","target_issue_id":2069930924,"target_issue_url":"https://github.com/matthuisman/slyguy.addons/issues/657","split":"test","quality_score":76.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0444","query":"Epic: Implement remaining JetBrains IDE's (CLion, WebStorm, Rider, RubyMine)?","query_context":"We are currently only supporting the following JetBrains IDE's\n- [x] GoLand\n- [x] IntelliJ\n- [x] PHPStorm\n- [x] PyCharm\n\nHowever, we need to add remote development backends support for: \n- [x] CLion ( URL \n- [x] Rider ( URL \n- [x] RubyMine ( URL \n- [x] WebStorm ( URL \n\nRelated:\n- URL \n\n Front conversations\n\n**Callout:** š Are you interested in this feature? We would be interested to talk to you to hear your feedback.\n\nInternal conversation [1]","reference_answer":"It should be in `.gitpod.yml` if we create a dependency from the init task. \nWould it as an intermediate solution be ok to simply download the binaries (in docker or init task) instead of configuring the IDE on project level?","answer_document_id":"gh_comment_1038756406","silver_evidence_path":["gh_comment_1268131819","gh_issue_1055875912","gh_comment_1038756406"],"known_context_document_ids":["gh_issue_1110276915"],"evidence_issue_ids":[1110276915,1055875912],"source_repo_name":"gitpod-io/gitpod","source_issue_id":1110276915,"source_issue_url":"https://github.com/gitpod-io/gitpod/issues/7751","target_repo_name":"gitpod-io/gitpod","target_issue_id":1055875912,"target_issue_url":"https://github.com/gitpod-io/gitpod/issues/6740","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0445","query":"macos local run fails?","query_context":"### Can we access your project?\n\n- [X] I give permission for members of the FlutterFlow team to access and test my project for the sole purpose of investigating this issue.\n\n### Current Behavior\n\nflutterflow local run gives below error : CocoaPods's specs repository is too out-of-date to satisfy dependencies. To update the CocoaPods specs, run: pod repo update\n\nif i do pod install --repo-update then i get error : \\[!\\] Unable to find a specification for `firebase_core` depended upon by `cloud_functions`\n\nYou have either:\n\n* mistyped the name or version.\n* not added the source repo that hosts the Podspec to your Podfile.\n\n### Expected Behavior\n\nI did followed everything from internet and tried all possible upgrading , deleting , cleaning , ruby upgrade , cocoappod upgrading , even manual symlinks creation from firebase and nothing helps. I have latest M4 chip macbook , latest os : sequoia 15.5 , with latest xcode 16.4 , latest cocoapod 1.16.2 , latest ruby 3.4.4 , ios 18.5 , simulator with device iphone 16 plus. there is nothing to upgrade. And basic simple local run doesnt works\n\n### Steps to Reproduce\n\n1.just simple local launch doesnt work in any macos even the latest one available in the world.\n\n### Reproducible from Blank\n\n- [ ] The steps to reproduce above start from a blank project.\n\n### Bug Report Code (Required)\n\n\\[!\\] Unable to find a specification for `firebase_core` depended upon by `cloud_functions` You have either: \\* mistyped the name or version. \\* not added the source repo that hosts the Podspec to your Podfile.\n\n### Visual documentation\n\n \n\n### Environment\n\nmarkdown\n- FlutterFlow version: latest desktop APP\n- Platform:MACOS\n- Browser name and version:NA\n- Operating system and version affected: latest M4 chip macbook , latest os : sequoia 15.5 , with latest xcode 16.4 , latest cocoapod 1.16.2 , latest ruby 3.4.4 , ios 18.5 , simulator with device iphone 16 plus.\n\n### Additional Information\n\n*No response*","reference_answer":"**Hi there!**\n\nThanks for reporting this issue. It has already been submitted previously, so Iāll go ahead and link both reports and close this one as a duplicate.\n\nI recommend following the main thread here: URL This will help us keep all updates in one place and ensure clearer communication as we work on a resolution.\n\nThanks for your understanding!","answer_document_id":"gh_comment_3020357008","silver_evidence_path":["gh_comment_3023834655","gh_issue_3188689067","gh_comment_3020357008"],"known_context_document_ids":["gh_issue_3157837594"],"evidence_issue_ids":[3157837594,3188689067],"source_repo_name":"FlutterFlow/flutterflow-issues","source_issue_id":3157837594,"source_issue_url":"https://github.com/FlutterFlow/flutterflow-issues/issues/6023","target_repo_name":"FlutterFlow/flutterflow-issues","target_issue_id":3188689067,"target_issue_url":"https://github.com/FlutterFlow/flutterflow-issues/issues/6085","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0446","query":"Standardising some of the synonym types?","query_context":"Typical ones we use are:\n\n- layperson\n- acronyms\n- abbreviation\n\nWe may also need things like:\n\n- machine-translated (google translate etc).\n\nAFAIK, there is this problem with OBO format that it translated these:\n\nsynonym: \"IGHD\" EXACT ABBREVIATION [DOID:0060870]\n\nInto:\n\n \n \n\nThis is very unfortunate, as it creates incompatible properties all across the OBO sphere.. What is least painful strategy to get out of this problem?","reference_answer":"@dosumis, regarding order of operations, do you recommend opening a ticket in OMO to incorporate Uberon's abbreviation AP and then pulling that into CL?","answer_document_id":"gh_comment_1046746964","silver_evidence_path":["gh_comment_1046942347","gh_issue_1121886401","gh_comment_1046746964"],"known_context_document_ids":["gh_issue_984824173"],"evidence_issue_ids":[984824173,1121886401],"source_repo_name":"information-artifact-ontology/ontology-metadata","source_issue_id":984824173,"source_issue_url":"https://github.com/information-artifact-ontology/ontology-metadata/issues/70","target_repo_name":"obophenotype/cell-ontology","target_issue_id":1121886401,"target_issue_url":"https://github.com/obophenotype/cell-ontology/issues/1441","split":"test","quality_score":83.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0447","query":"Some font will cause line break in -?","query_context":"If using `xeCJK` and `\\setmainfont{TeX Gyre Termes}`, `{-}` is right, but `-` will cause breakline. I found some in #257 and #145, but the situation is not quite the same.\n\nlatex\n\\documentclass{article}\n\\usepackage{xeCJK}\n% \\usepackage{fontspec}\n\\setmainfont{TeX Gyre Termes}\n% \\setmainfont{Latin Modern Roman}\n\\usepackage{tabularray}\n\\begin{document}\n\\begin{tblr}{colspec={l},hlines,vlines}\nW-ADAPT\\cite{test} \\\\\nW{-}ADAPT\\cite{test} \\\\\n\\end{tblr}\n\\begin{tabular}{|l|}\n\\hline\nW-ADAPT\\cite{test} \\\\\n\\hline\nW{-}ADAPT\\cite{test} \\\\\n\\hline\n\\end{tabular}\n\\end{document}\n\nimage\n\nIf I change `\\setmainfont{TeX Gyre Termes}` to `\\setmainfont{Latin Modern Roman}`. All is normal.\n\nimage\n\nBut if I change it to `\\usepackage{fontspec}` and `\\setmainfont{TeX Gyre Termes}` without using `xeCJK`.\n\nimage","reference_answer":"Titled \"Bug in 3.141592653-2.6-0.999995 (TeX Live 2023) with fontspec and tabularray?\"","answer_document_id":"gh_comment_1974117604","silver_evidence_path":["gh_comment_1455043899","gh_issue_912095835","gh_comment_1974117604"],"known_context_document_ids":["gh_issue_1610105883"],"evidence_issue_ids":[1610105883,912095835],"source_repo_name":"lvjr/tabularray","source_issue_id":1610105883,"source_issue_url":"https://github.com/lvjr/tabularray/issues/377","target_repo_name":"lvjr/tabularray","target_issue_id":912095835,"target_issue_url":"https://github.com/lvjr/tabularray/issues/16","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0449","query":"test PPC with LLVM_IAS=1?","query_context":"@aik sent a series for enabling LLVM_IAS=1. @mpe accepted it, so it should be in linux-next soon. The cover letter mentions we need URL that @nemanjai is working on. As soon as that lands, we should be able to start testing probably our ppc64le configs on linux-next with clang-14 with LLVM_IAS=1 enabled.","reference_answer":"@MaskRay noted\n \ngit://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git\nmaster and got a conflict.\nSeems that URL \n(\"[PATCH kernel v4] powerpc/64: Add UADDR64 relocation support\") fixed\nthe issue.\nIt just doesn't change arch/powerpc/boot/crt0.S\n\nSo this seems implicitly fixed in -next.\ncommit d79976918852 (\"powerpc/64: Add UADDR64 relocation support\")\n \n\nfedora and suse CI green runs.","answer_document_id":"gh_comment_1064541550","silver_evidence_path":["gh_comment_1059786077","gh_issue_1126635462","gh_comment_1064541550"],"known_context_document_ids":["gh_issue_1090119776"],"evidence_issue_ids":[1090119776,1126635462],"source_repo_name":"ClangBuiltLinux/continuous-integration2","source_issue_id":1090119776,"source_issue_url":"https://github.com/ClangBuiltLinux/continuous-integration2/issues/265","target_repo_name":"ClangBuiltLinux/linux","target_issue_id":1126635462,"target_issue_url":"https://github.com/ClangBuiltLinux/linux/issues/1581","split":"test","quality_score":93.33,"annotation_level":"silver"}
{"query_id":"cross_issue_0450","query":"2-way sync maybe possible now?","query_context":"With the higher accuracy, maybe a 2-way sync like the trakt plugin is now possible?\n\nMaybe there is a somewhat reasonable way to-do this now, its just super convienent to have all your watched status in trakt and simply do a sync on a fresh install, so everything is back where you left.\n\nSo for normal shows/movies using the trakt plugin i dont have to care about any backup or library state, i can just reinstall the server point it to my libs and via a trakt resync all watched states are set to where i left off.\n\nWould be super cool to have this also for Anime, but i understand that this can be more complex to get right.","reference_answer":"Hi, unfortunately it only updates MAL after you have actively watched something. \nThat being said I will add this to the main project as a possible addition later on down the line, as it seems to be a good feature to add to the plugin.","answer_document_id":"gh_comment_1100630288","silver_evidence_path":["gh_comment_1152965802","gh_issue_1206059249","gh_comment_1100630288"],"known_context_document_ids":["gh_issue_1267750981"],"evidence_issue_ids":[1267750981,1206059249],"source_repo_name":"vosmiic/jellyfin-ani-sync","source_issue_id":1267750981,"source_issue_url":"https://github.com/vosmiic/jellyfin-ani-sync/issues/20","target_repo_name":"vosmiic/jellyfin-ani-sync","target_issue_id":1206059249,"target_issue_url":"https://github.com/vosmiic/jellyfin-ani-sync/issues/12","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0452","query":"INC0112560 - NR 3606562 showing as rejected and also \"refund requested\"?","query_context":"### Description\n\nGot this report from Debbie today, Oct 6th (**INC0112560**). Don't think there is any ops work, but created a bug to prevent this from occurring again.\n \n \n \n\nIt seems that this NR was able to be cancelled even though it was rejected first.\nOR\nIt was rejected, even though it was cancelled first?\nI can't tell from the transaction history.\n\nAlso in the transaction history, it says that when the client went to edit their NR, the entity type is \"N/A\". That is kinda weird, is that related?\n\n### Reproduce\nTry rejecting a cancelled name\nAlso try \"cancel and refund\"ing a rejected name\n\n### Expected behavior\n* Clients **can't** see the \"Cancel and refund\" button, or use the feature, if the NR has already been approved OR rejected\n\n* Staff **Can't** reject or approve an NR that has been \"cancel and refund\"ed\n\n### Impact\nBad data, incorrect actions being taken, breaking business rules\n\n### Chance of occurring\nUnsure","reference_answer":"From @yuisotozaki :\n\nHere's the preview of the messages:\n\n \n\nScenario 1 - When a user attempts to edit or request refund, if the following conditions are met:\n\na. the request is in examination or has been examined but the screen the user is viewing does not yet reflect this state,\n\nb. OR the request is being editing by another user.\n\n \n\nMessage: Please refresh the page or try again later, as there may be simultaneous updates in progress. This can happen if a name examiner is examining this name request. This can also happen if there is another user making changes to this name request or there is another tab on your browser with this name request in edit mode.\n\n \n\nScenario 2 - When a user is about to confirm the NR content and go to payment, to avoid duplicate request, an error shows up when the following conditions are met:\n\na. there exists an NR requested by the same user,\n\nb. AND all the names exact match the names of the current request,\n\nc. AND in pending for review or payment pending status.\n\n \n\nMessage: You have already created an identical name request. To request a different name, please go back and change the name to request and try again.","answer_document_id":"gh_comment_1766634887","silver_evidence_path":["gh_comment_1736386924","gh_issue_1914303075","gh_comment_1766634887"],"known_context_document_ids":["gh_issue_1018919808"],"evidence_issue_ids":[1018919808,1914303075],"source_repo_name":"bcgov/entity","source_issue_id":1018919808,"source_issue_url":"https://github.com/bcgov/entity/issues/9392","target_repo_name":"bcgov/entity","target_issue_id":1914303075,"target_issue_url":"https://github.com/bcgov/entity/issues/17945","split":"test","quality_score":94.15,"annotation_level":"silver"}
{"query_id":"cross_issue_0453","query":"Deprecate use of $smoothLine as well as $plotStyle='lineMarker' in Chart/DataSeries for ScatterCharts?","query_context":"This is:\n\n- [x] a bug report\n- [x] a feature request\n- [ ] **not** a usage question (ask them on URL or URL \n\nN.B. DataSeries->plotStyle property value STYLE_LINEMARKER (='lineMarker') is currently examined only in Chart/Renderer/JpGraph.php, whose use is deprecated. Otherwise, DataSeries property value 'lineMarker' is unused.\n\nSimilarly, the DataSeries->smoothLine property is never tested, but its presence potentially confuses users who mistakenly use this (identically named) property and its (identically named) getter/setter methods in both DataSeries as well as DataSeriesValues.\n\n### What is the expected behavior?\nWhen the user assigns the 'smoothLine' property to a DataSeriesValues array [via $DSV->set_smoothLine(true) ] then the Chart line should be displayed as a smooth Bezier line regardless of any property in its DataSeries, (in my opinion).\n\n### What is the current behavior?\nIf DataSeriesValues->smoothLine == TRUE its line will be straight if its DataSeries->plotStyle == 'lineMarker' (regardless of the value of DataSeries->smoothLine,) This is because Chart/Writer/Xlsx qualifies its writing of the element with a logical AND of '$plotType ===DataSeries::TYPE_SCATTERCHART' and '$plotStyle' === 'smoothMarker'. Therefore, a DataSeriesValues array with a specified property value of TRUE for 'smoothLine' will not be expressed in the xml as unless the DataSeries' plotStyle == 'smoothMarker'. Instead, will be absent from the xml.\n\n### What are the steps to reproduce?\nIn example file samples/Chart/33_Chart_create_scatter2.php, change as follows:\nWAS: DataSeries::STYLE_SMOOTHMARKER // plotStyle\n\n1. IS: DataSeries::STYLE_LINEMARKER // plotStyle\nThis changes the original smooth (Bezier) line nature of the first DataSeriesValues series to a straight line point connection (which is the default behavior).\n\n2. IS: // DataSeries::STYLE_LINEMARKER // plotStyle\nSame result.\n\nNeither result is affected by any value of property DataSeries->smoothLine, including null.\n\nPlease provide a Minimal, Complete, and Verifiable example of code that exhibits the issue without relying on an external Excel file or a web server:\n\nphp\n8080/tcp, :::8080->8080/tcp, 9000/tcp keycloak-keycloakify\n\nAre there any steps that I'm missing?","reference_answer":"Well I've updated URL so that it display an alert when using Safari. \n\n
(\n \n )\n\ncode of component is as as below\n\njs\nimport React, { Component } from \"react\";\nimport { View, Text } from \"react-native\";\nexport default class Article extends Component {\n public constructor(props) {\n super(props);\n this.state= {\n content: ''\n };\n }\n componentDidMount() {\n const getContent = new Promise((resolve) => {\n setTimeout(() => {\n resolve('Hello World')\n },3000)\n })\n getContent.then(res => {\n this.setState({content: res})\n }).catch(e => {\n console.log(e)\n });\n }\n\n render() {\n const { content } = this.state;\n return (\n \n {content} \n \n );\n }\n}\n\nThe function of setTimeout has been called,but getContent.then didn't work.I test same scene in \nstorybook for React, the then of promise works.Did storybook for React Native do something for promise so that it can't work?","reference_answer":"@pke patching the addons dependency to remove the corejs promise polyfill works as a workaround as far as I know. \n\nAlso there was a new version yesterday to fix some issues in the latest version of react native, not sure if its related to any issues you're having.","answer_document_id":"gh_comment_1296245501","silver_evidence_path":["gh_comment_1050820331","gh_issue_558649376","gh_comment_1296245501"],"known_context_document_ids":["gh_issue_632423082"],"evidence_issue_ids":[632423082,558649376],"source_repo_name":"storybookjs/react-native","source_issue_id":632423082,"source_issue_url":"https://github.com/storybookjs/react-native/issues/57","target_repo_name":"storybookjs/react-native","target_issue_id":558649376,"target_issue_url":"https://github.com/storybookjs/react-native/issues/20","split":"test","quality_score":93.58,"annotation_level":"silver"}
{"query_id":"cross_issue_0464","query":"node-feature-discovery-workers sometimes fail and restart on the new joined nodes?","query_context":"**What happened**:\nHi! We noticed that node-feature-discovery-workers pods sometimes fail with the following error on the new nodes and even though we restart them, it takes couple of minutes to synchronize all the related labels. I'm not so sure how the whole node-feature-discovery works, so maybe you can help us to find the root cause of this.\n\ntext\nE0808 09:07:46.113306 1 main.go:83] \"error while running\" err=\"failed to advertise features (via CRD API): failed to update NodeFeature object \\\"gpu.worker12\\\": Operation cannot be fulfilled on nodefeatures.nfd.k8s-sigs.io \\\"gpu.worker12\\\": StorageError: invalid object, Code: 4, Key: /registry/nfd.k8s-sigs.io/nodefeatures/node-feature-discovery/gpu.worker12, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: 5576298f-79f6-40af-9ff0-ffd5944bd794, UID in object meta: \"\n\n**What you expected to happen**:\nI expect node-feature-discovery would work as it is assigned to the new node.\n\n**How to reproduce it (as minimally and precisely as possible)**:\n-\n**Anything else we need to know?**:\nhelm chart version is `0.15.3`\n**Environment**:\n- Kubernetes version (use `kubectl version`): v1.29\n- Cloud provider or hardware configuration: onprem\n- OS (e.g: `cat /etc/os-release`): -\n- Kernel (e.g. `uname -a`): -\n- Install tools: -\n- Network plugin and version (if this is a network-related bug): -\n- Others: -","reference_answer":"leaving in the milestone for visibility as we root cause whether this is a test-only issue or not","answer_document_id":"gh_comment_527539940","silver_evidence_path":["gh_comment_2276628454","gh_issue_487013930","gh_comment_527539940"],"known_context_document_ids":["gh_issue_2455351183"],"evidence_issue_ids":[2455351183,487013930],"source_repo_name":"kubernetes-sigs/node-feature-discovery","source_issue_id":2455351183,"source_issue_url":"https://github.com/kubernetes-sigs/node-feature-discovery/issues/1828","target_repo_name":"kubernetes/kubernetes","target_issue_id":487013930,"target_issue_url":"https://github.com/kubernetes/kubernetes/issues/82130","split":"test","quality_score":90.27,"annotation_level":"silver"}
{"query_id":"cross_issue_0465","query":"Maui -9.0.40 error : Failed to AOT compile SkiaSharp.Views.iOS.dll, the AOT compiler exited with code 139.","query_context":"### Description\n\nUpdated to the latest 9.0.40 maui \nRun our Azure pipeline and we get in iOS build\nerror : Failed to AOT compile SkiaSharp.Views.iOS.dll, the AOT compiler exited with code 139.\n\nwe do not have Microsoft.Maui.Controls.Compatibility anymore and not sure how to fix this.\n\n### Steps to Reproduce\n\nApologies, not sure how to reproduce as I cannot put my all azure pipeline\n\n### Link to public reproduction project repository\n\n_No response_\n\n### Version with bug\n\n9.0.30 SR3\n\n### Is this a regression from previous behavior?\n\nYes, this used to work in .NET MAUI\n\n### Last version that worked well\n\n9.0.30 SR3\n\n### Affected platforms\n\niOS\n\n### Affected platform versions\n\n_No response_\n\n### Did you find any workaround?\n\nno\nis this todo with SkiaSharp.Extended.UI.Maui , would using the preview version fix this. @mattleibow any suggestions please\n\n### Relevant log output\n\nshell\nerror : Failed to AOT compile SkiaSharp.Views.iOS.dll, the AOT compiler exited with code 139.\nerror : Failed to AOT compile aot-instances.dll, the AOT compiler exited with code 139","reference_answer":"This I agree with - I'm guessing that when we deprecated the assembly on non-Windows we didn't really do work to correctly annotate the APIs (that's actually quite a lot of work). We can open a bug on it, not sure if it will be fixed though.\n\nThe analyzer would have a hard time with this - mostly due to technical limitations. It's a Roslyn analyzer, which only sees your source code and metadata about references. If the code you're calling directly is not in the references, then C# compiler itself will fail - no need to analyze for that. And if you're calling code which has the problem, the analyzer doesn't see that code. Ultimately there are a set of problems which the analyzer can't see, missing references in dependencies is one such set.","answer_document_id":"gh_comment_2796347396","silver_evidence_path":["gh_comment_2669135101","gh_issue_2672738371","gh_comment_2796347396"],"known_context_document_ids":["gh_issue_2859582494"],"evidence_issue_ids":[2859582494,2672738371],"source_repo_name":"dotnet/maui","source_issue_id":2859582494,"source_issue_url":"https://github.com/dotnet/maui/issues/27867","target_repo_name":"dotnet/runtime","target_issue_id":2672738371,"target_issue_url":"https://github.com/dotnet/runtime/issues/109966","split":"test","quality_score":93.83,"annotation_level":"silver"}
{"query_id":"cross_issue_0466","query":"Private libs end up in public provides?","query_context":"yaml\ngcc-12-test-sca.yaml\npackage:\n name: gcc-12-test-sca\n version: 12.4.0\n epoch: 0\n description: \"the GNU compiler collection - version 12\"\n copyright:\n - license: GPL-3.0-or-later\n\nenvironment:\n contents:\n packages:\n - busybox\n - gcc-12\n\npipeline:\n - runs: |\n mkdir -p ${{targets.destdir}}/usr/lib\n cp -r /usr/lib/gcc ${{targets.destdir}}/usr/lib\n\nbuild output:\n\nconsole\n024/07/11 18:58:44 INFO generating package gcc-12-test-sca-12.4.0-r0\n2024/07/11 18:58:44 INFO scanning for shared object dependencies...\n2024/07/11 18:58:44 INFO found lib libc.so.6 for usr/lib/gcc/x86_64-pc-linux-gnu/12.4.0/libgomp.so.1.0.0\n2024/07/11 18:58:44 INFO found lib libc.so.6 for usr/lib/gcc/x86_64-pc-linux-gnu/12.4.0/libitm.so.1.0.0\n2024/07/11 18:58:44 INFO found lib libm.so.6 for usr/lib/gcc/x86_64-pc-linux-gnu/12.4.0/libquadmath.so.0.0.0\n2024/07/11 18:58:44 INFO found lib libc.so.6 for usr/lib/gcc/x86_64-pc-linux-gnu/12.4.0/libquadmath.so.0.0.0\n2024/07/11 18:58:44 INFO found lib libc.so.6 for usr/lib/gcc/x86_64-pc-linux-gnu/12.4.0/libssp.so.0.0.0\n2024/07/11 18:58:44 INFO scanning for commands...\n2024/07/11 18:58:44 INFO scanning for pkg-config data...\n2024/07/11 18:58:44 INFO scanning for python modules...\n2024/07/11 18:58:44 INFO scanning for shbang deps...\n2024/07/11 18:58:44 INFO runtime:\n2024/07/11 18:58:44 INFO so:libc.so.6\n2024/07/11 18:58:44 INFO so:libm.so.6\n2024/07/11 18:58:44 INFO provides:\n2024/07/11 18:58:44 INFO so:libgomp.so.1=1\n2024/07/11 18:58:44 INFO so:libitm.so.1=1\n2024/07/11 18:58:44 INFO so:libquadmath.so.0=0\n2024/07/11 18:58:44 INFO so:libssp.so.0=0\n2024/07/11 18:58:44 INFO installed-size: 74429639\n2024/07/11 18:58:44 INFO data.tar.gz digest: f4370156bd67b791b8c0cb8eb0856a4a25a6a0301cad1f2ee85cfc26aa308e93\n2024/07/11 18:58:44 INFO wrote packages/x86_64/gcc-12-test-sca-12.4.0-r0.apk\n\nExpecting this to not happen:\n\n2024/07/11 18:58:44 INFO provides:\n2024/07/11 18:58:44 INFO so:libgomp.so.1=1\n2024/07/11 18:58:44 INFO so:libitm.so.1=1\n2024/07/11 18:58:44 INFO so:libquadmath.so.0=0\n2024/07/11 18:58:44 INFO so:libssp.so.0=0\n\nAs these libraries are in the private `/usr/lib/gcc/` location, these are not public libraries and should not conflict with `gcc` which ships them publically. As intention is for `gcc-12` to be co-installable with `gcc`.\n\nSeems like we check for `usr/lib/` prefix, but then we have unlimited depth, and subdirs shouldn't typically be included in automatic SCA provides as typically they are outside of the ldconfig.conf paths.\n\n(cc @smoser @imjasonh @jonjohnsonjr )","reference_answer":"That sounds right based on the diff. We can fix this today, I don't remember why I exited early on no provides alone.","answer_document_id":"gh_comment_2222965398","silver_evidence_path":["gh_comment_2223557998","gh_issue_2403209917","gh_comment_2222965398"],"known_context_document_ids":["gh_issue_2403762914"],"evidence_issue_ids":[2403762914,2403209917],"source_repo_name":"chainguard-dev/melange","source_issue_id":2403762914,"source_issue_url":"https://github.com/chainguard-dev/melange/issues/1370","target_repo_name":"chainguard-dev/melange","target_issue_id":2403209917,"target_issue_url":"https://github.com/chainguard-dev/melange/issues/1366","split":"test","quality_score":87.17,"annotation_level":"silver"}
{"query_id":"cross_issue_0467","query":"Importing 24 word seed phrase throws \"Language not detected\" error?","query_context":"**Describe the bug**\nWhen importing a 24 word seed phrase as Bitcoin core hot wallet, instead of creating the \"device\" it will throw a language not detected error. \n\n**To Reproduce**\nSteps to reproduce the behavior:\n1. Go to 'Add New Device'\n2. Click on 'Bitcoin Core'\n3. Select 'Import'\n4. Paste 24 word seed phrase\n5. Click 'Continue'\n\n**Expected behavior**\nThe device should be created.\n\n**Screenshots**\nimage\n\n**Desktop (please complete the following information):**\n - Where is your node running: umbrel\n - Where is your specter running: umbrel\n - If you're running a binary, which OS: Linux\n - Browser: Brave\n - Specter Version: v1.14.3\n\n**Additional context**\nI tried separating the words with whitespace and newline but either attempt failed. I'm using the English dictionary.\n\nActually, when using newline => `Language not detected`\nwhen using whitespace => `ERROR: Invalid mnemonic entered.`","reference_answer":"Just saw that you used the english language. So i just tried to reproduce on the master branch with \n\nghost ghost ghost ghost ghost ghost ghost ghost ghost ghost ghost machine\n\nThat worked without an issue. Can you test that?!","answer_document_id":"gh_comment_1398194497","silver_evidence_path":["gh_comment_1398182592","gh_issue_1195481802","gh_comment_1398194497"],"known_context_document_ids":["gh_issue_1536756716"],"evidence_issue_ids":[1536756716,1195481802],"source_repo_name":"cryptoadvance/specter-desktop","source_issue_id":1536756716,"source_issue_url":"https://github.com/cryptoadvance/specter-desktop/issues/2064","target_repo_name":"cryptoadvance/specter-desktop","target_issue_id":1195481802,"target_issue_url":"https://github.com/cryptoadvance/specter-desktop/issues/1658","split":"test","quality_score":81.81,"annotation_level":"silver"}
{"query_id":"cross_issue_0468","query":"PCRE2 support?","query_context":"Does this package support PCRE2? Reading the code I canāt see any reference to PCRE2. Do you have any knowledge of another Haskell package with pcre2 support?","reference_answer":"Thanks for the report.\n\nI have no intuition about what the issue is. Maybe dig into uses of `Text.fromPtr`, `Text.copy`, `Text.dropWhile8`, `Text.useAsPtr`, etc.\n\nThat's great you got use out of the library for Ormolu, at least for a little while! ā¤ļø","answer_document_id":"gh_comment_1371787158","silver_evidence_path":["gh_comment_2156434501","gh_issue_1519665110","gh_comment_1371787158"],"known_context_document_ids":["gh_issue_558555479"],"evidence_issue_ids":[558555479,1519665110],"source_repo_name":"haskell-hvr/regex-pcre","source_issue_id":558555479,"source_issue_url":"https://github.com/haskell-hvr/regex-pcre/issues/1","target_repo_name":"sjshuck/hs-pcre2","target_issue_id":1519665110,"target_issue_url":"https://github.com/sjshuck/hs-pcre2/issues/34","split":"test","quality_score":85.63,"annotation_level":"silver"}
{"query_id":"cross_issue_0469","query":"No way to configure ALPN settings?","query_context":"Hi, while trying to use `rustls-acme` with `tonic`, we ran into problems that I think are related to not having the ability to configure `rustls` ALPN settings. (Full context is here: URL \n\nCurrently, the `rustls-acme` API doesn't allow setting `rustls` `ServerConfig` at all.\n\nWould it be preferable to expose the entire `ServerConfig` as part of the `AcmeConfig` builder API, or just the ALPN settings?","reference_answer":"It's been a while, I'll close here, assuming there's no interest anymore. Feel free to reopen.","answer_document_id":"gh_comment_1761425453","silver_evidence_path":["gh_comment_1505864814","gh_issue_1665180471","gh_comment_1761425453"],"known_context_document_ids":["gh_issue_1664104480"],"evidence_issue_ids":[1664104480,1665180471],"source_repo_name":"FlorianUekermann/rustls-acme","source_issue_id":1664104480,"source_issue_url":"https://github.com/FlorianUekermann/rustls-acme/issues/37","target_repo_name":"FlorianUekermann/rustls-acme","target_issue_id":1665180471,"target_issue_url":"https://github.com/FlorianUekermann/rustls-acme/issues/38","split":"test","quality_score":73.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0470","query":"Vscode does not persist workspace state on closing?","query_context":"Related issue - #160077\n\nSystem Configuration\n- macOS Sonoma - Version 14.5 (23F79)\n- Apple M3 Chip\n\nVscode\n- Version: 1.91.0 (Universal)\n- Date: 2024-07-01T18:54:18.541Z (4 days ago)\n- Electron: 29.4.0\n- ElectronBuildId: 9728852\n- Chromium: 122.0.6261.156\n- Node.js: 20.9.0\n- V8: 12.2.281.27-electron.0\n- OS: Darwin arm64 23.5.0\n\nIssue - when closing VSCode via \"cmd + w\" / red-close button via GUI(this way of closing is the regular way) the previously opened folders/workspaces are not persisted when re-opening VSCode\n\nInstead after reopen every time the \"Welcome page\" is opened and all previous file changes / opened folders are lost and need to open them again.\n\nIf instead the VSCode window is closed via \"cmd + q\" / right-click -> quit via GUI then the workspaces / opened files are persisted on the next open, so the issue is only for \"cmd + w\" / close button quit.\n\nExpected: - \nPreviously opened workspaces / files should persist on close and reopen when reopening VSCode.\n\nActual: -\nPreviously opened workspaces / files are not persisted when closing VSCode, instead \"Welcome page\" opens everytime.","reference_answer":"Hey @joaomoreno, this issue might need further attention.\n\n@degtiaan, you can help us out by closing this issue if the problem no longer exists, or adding more information.","answer_document_id":"gh_comment_2129293730","silver_evidence_path":["gh_comment_2232004074","gh_issue_2140184133","gh_comment_2129293730"],"known_context_document_ids":["gh_issue_2393453354"],"evidence_issue_ids":[2393453354,2140184133],"source_repo_name":"microsoft/vscode","source_issue_id":2393453354,"source_issue_url":"https://github.com/microsoft/vscode/issues/220140","target_repo_name":"microsoft/vscode","target_issue_id":2140184133,"target_issue_url":"https://github.com/microsoft/vscode/issues/205440","split":"test","quality_score":94.33,"annotation_level":"silver"}
{"query_id":"cross_issue_0471","query":"Update rules for author auto-notifications?","query_context":"1) When a curator edits a data submission, regardless of status, upon rebuilding/refreshing I believe the author receives an automatic confirmation email. \n\nFor example, this submission (10.7272/Q6Q23XH9) was edited multiple times by a curator in a matter of minutes. I believe that the author received email notifications each time the submission returned to PPR status after being edited. Visit SF case #18031.\n\nIs there a way to eliminate unnecessary auto-emails from being sent to the author? Specifically those notifications that are sent after curators have edited a submission? Perhaps create a rule based on operator? It might be helpful to view a list of rules set up for the auto-emails. \n\n2) Additionally, would it be possible to capture all auto-notifications sent in the Activity Log? It would be helpful to view all actions in the history for each dataset.","reference_answer":"@jleighherzog That's exactly the confusion Ryan was talking aboutāthis ticket is only about notifications sent by the system to journals and authors, so we have used the wording \"Status change notification was sent to [recipient]\" as Ryan suggested","answer_document_id":"gh_comment_1362773486","silver_evidence_path":["gh_comment_1338031408","gh_issue_1477278492","gh_comment_1362773486"],"known_context_document_ids":["gh_issue_1428990988"],"evidence_issue_ids":[1428990988,1477278492],"source_repo_name":"CDL-Dryad/dryad-product-roadmap","source_issue_id":1428990988,"source_issue_url":"https://github.com/CDL-Dryad/dryad-product-roadmap/issues/2083","target_repo_name":"CDL-Dryad/dryad-product-roadmap","target_issue_id":1477278492,"target_issue_url":"https://github.com/CDL-Dryad/dryad-product-roadmap/issues/2153","split":"test","quality_score":74.36,"annotation_level":"silver"}
{"query_id":"cross_issue_0472","query":"Need to change loggers location.","query_context":"As we have added logger's functionality, but these are saving logs in the same directory of code so whenever we pull latest code, we need to either stash or checkout, so I have two solutions:\n\n- Change the default location of logger (preferable)\n- adds these loggers to git ignore so they won't affect any more.","reference_answer":"I have currently solve this issue by granting access to local user access by:\n`chmod +x ngrok_logger.txt` and one more file so i don't get this error for ttgo logger by\n`chmod +x logs.txt`","answer_document_id":"gh_comment_1894530572","silver_evidence_path":["gh_comment_1892780967","gh_issue_2082694322","gh_comment_1894530572"],"known_context_document_ids":["gh_issue_2073082391"],"evidence_issue_ids":[2073082391,2082694322],"source_repo_name":"mhamidjamil/orangePi","source_issue_id":2073082391,"source_issue_url":"https://github.com/mhamidjamil/orangePi/issues/67","target_repo_name":"mhamidjamil/orangePi","target_issue_id":2082694322,"target_issue_url":"https://github.com/mhamidjamil/orangePi/issues/71","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0473","query":"`ctrl-backspace` not working after swapping the `fn` and `ctrl` keys?","query_context":"Hey, I have an Asahi linux installed on an M1. I am using the below config to swap the `fn` and `ctrl` keys:\n\n[ids]\n*\n\n[main]\nfn = layer(control)\nleftcontrol = fn\n\n2 observations I had after applying the above config:\n1. `ctrl-backspace` no longer deletes one word to the left.\n2. In a text field, `ctrl-shift-left` selects all characters until the start of the text field instead of just selecting up to the start of the current line.\n\nI understand that I can play a little with macros, but I'd really like to use the native functionality to preserve the contextual behaviors of these keybindings; i.e. they should natively behave differently in vim than in a Firefox window.","reference_answer":"Those above are correct, `fn` is usually handled in firmware so you will need to change it to another key like `control` in your bios before it can be detected and remapped by the OS.","answer_document_id":"gh_comment_1464356687","silver_evidence_path":["gh_comment_1668438988","gh_issue_1481552679","gh_comment_1464356687"],"known_context_document_ids":["gh_issue_1837765878"],"evidence_issue_ids":[1837765878,1481552679],"source_repo_name":"rvaiya/keyd","source_issue_id":1837765878,"source_issue_url":"https://github.com/rvaiya/keyd/issues/549","target_repo_name":"rvaiya/keyd","target_issue_id":1481552679,"target_issue_url":"https://github.com/rvaiya/keyd/issues/401","split":"test","quality_score":86.19,"annotation_level":"silver"}
{"query_id":"cross_issue_0475","query":"Is it compatible with Expo 50?","query_context":"### Prerequisites\n\n- [X] I checked the documentation and FAQ without finding a solution\n- [X] I checked to make sure that this issue has not already been filed\n- [X] I'm sure that question is related to the library itself and not Bluetooth Low Energy or Classic in general. If that so, please post your question on StackOverflow.\n- [X] I'm running the latest version\n\n### Question\n\nHello,\n\nI am using expo 50.\n\n\"dependencies\": {\n \"expo\": \"~50.0.14\",\n...\n\nWhen I tried to run `npx expo install @config-plugins/react-native-ble-plx`, I got the following error:\n\nāŗ Installing 1 other package using npm\n \nnpm ERR! code ERESOLVE\nnpm ERR! ERESOLVE unable to resolve dependency tree\nnpm ERR!\nnpm ERR! While resolving: expo-ble@1.0.0\nnpm ERR! Found: expo@50.0.17\nnpm ERR! node_modules/expo\nnpm ERR! expo@\"~50.0.14\" from the root project\nnpm ERR!\nnpm ERR! Could not resolve dependency:\nnpm ERR! peer expo@\"^49\" from @config-plugins/react-native-ble-plx@7.0.0 \nnpm ERR! node_modules/@config-plugins/react-native-ble-plx\nnpm ERR! @config-plugins/react-native-ble-plx@\"*\" from the root project \nnpm ERR!\nnpm ERR! Fix the upstream dependency conflict, or retry\nnpm ERR! this command with --force or --legacy-peer-deps\nnpm ERR! to accept an incorrect (and potentially broken) dependency resolution.\n...\n\nI can see - it is compatible with Expo 49 in the readme, but I can't install the package with Expo 50. Isn't it compatible with 50?\n\nThank you,","reference_answer":"This wasn't overlooked, this was the reason why I pointed out old config-plugins versions in my initial response. The ones with the correct version for this SDK version has been updated to use the correct AppDelegate. Older versions are not.\n\nI'm confused about your contribution to the thread. Were you having the same or a similar issue?","answer_document_id":"gh_comment_1537527489","silver_evidence_path":["gh_comment_2088136708","gh_issue_1246805056","gh_comment_1537527489"],"known_context_document_ids":["gh_issue_2255051405"],"evidence_issue_ids":[2255051405,1246805056],"source_repo_name":"dotintent/react-native-ble-plx","source_issue_id":2255051405,"source_issue_url":"https://github.com/dotintent/react-native-ble-plx/issues/1190","target_repo_name":"expo/expo-cli","target_issue_id":1246805056,"target_issue_url":"https://github.com/expo/expo-cli/issues/4391","split":"test","quality_score":95.17,"annotation_level":"silver"}
{"query_id":"cross_issue_0476","query":"(JP) Yomitan only scanning the last word in a sentence?","query_context":"The last day my Japanese yomitan setup hasn“t been working, and I can only scan the last word or kana of a sentence. Spanish yomitan settings are working fine, but for some reason I cannot scan the majority of words in Japanese. All permissions are given, this is a brand new issue. Image shows that yomitan isn“t completely turned off, but when I scan a sentence and come to the last word it will usually scan it.","reference_answer":"Scan resolution isnt an issue here since it's forcibly turned off when switching to Japanese.","answer_document_id":"gh_comment_2698075397","silver_evidence_path":["gh_comment_2708493271","gh_issue_2894011314","gh_comment_2698075397"],"known_context_document_ids":["gh_issue_2880633998"],"evidence_issue_ids":[2880633998,2894011314],"source_repo_name":"yomidevs/yomitan","source_issue_id":2880633998,"source_issue_url":"https://github.com/yomidevs/yomitan/issues/1846","target_repo_name":"yomidevs/yomitan","target_issue_id":2894011314,"target_issue_url":"https://github.com/yomidevs/yomitan/issues/1861","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0477","query":"EatingWell zimit attempts fail?","query_context":"I double-checked the URL and zimit gave a failure on two attempts.\n\nI was using the default options / settings.\n\nURL: URL","reference_answer":"You are right, sorry š\n\nBut this still needs to be fixed, and this is still very aggressive (I now know how to prevent a whole company/campus from accessing some websites, just do one HEAD request with `python-requests` UA from their public web browsing IP ...)","answer_document_id":"gh_comment_1774889068","silver_evidence_path":["gh_comment_1774773970","gh_issue_1956696791","gh_comment_1774889068"],"known_context_document_ids":["gh_issue_1945261146"],"evidence_issue_ids":[1945261146,1956696791],"source_repo_name":"openzim/zimit","source_issue_id":1945261146,"source_issue_url":"https://github.com/openzim/zimit/issues/224","target_repo_name":"openzim/zimit","target_issue_id":1956696791,"target_issue_url":"https://github.com/openzim/zimit/issues/227","split":"test","quality_score":93.5,"annotation_level":"silver"}
{"query_id":"cross_issue_0478","query":"More about key reuse?","query_context":"So, I think I have a use case for key reuse for composite signatures. To allow the use of the native and alternative private and public keys of Catalyst (hssss) certificates to generate composite signatures. Composite private and public keys for the certificate wouldn't exist in the wild, but the native and alternative private keys of a certificate could be used to generate a composite signature.\n\nDue to the flexibility of these certificates, this means that a signature could be generated corresponding to the native key, the alternative key, or a composite of the native+alternative key.\n\nSome of you authors already know that I'm not generally in favour of Catalyst certificates, but there are those out there who still want to use them, so I'm coming at this from a harm-reduction perspective. And also from a forward-looking perspective, this draft is setting the standard for composite signatures. It would be easier if future composite signatures, for example PQ/PQ, could use the framework of this draft (and implementation) to define other composites (obviously with specific security considerations for the component algorithms involved). At that point, both component algorithms may take a context and key reuse could be done safely.\n\nTo that end, I wonder if it would be worth considering enabling key reuse of the component algorithms which take a context parameter by changing the context from:\n\nctx = Domain\n\nto:\n\nctx = Domain || Hash(PublicKey1 || PublicKey2)\n\nThis would provide domain separation for a key, ML-DSA for example, to be used standalone or as part of multiple composite keys (even multiple composite keys with the same Domain, because the key hash achieves the separation). I don't claim it's a good idea to reuse a key in multiple composite keys with the same Domain, just that this idea would protect the key if that happened.\n\nI'm interested in your opinions.","reference_answer":"The RFC's for the ED448 and X25519 forbid use of the contexts, so doing the above violates our principal of using black-box implementations that already exist today.","answer_document_id":"gh_comment_2859035694","silver_evidence_path":["gh_comment_2436398961","gh_issue_2592162295","gh_comment_2859035694"],"known_context_document_ids":["gh_issue_2611318460"],"evidence_issue_ids":[2611318460,2592162295],"source_repo_name":"lamps-wg/draft-composite-sigs","source_issue_id":2611318460,"source_issue_url":"https://github.com/lamps-wg/draft-composite-sigs/issues/79","target_repo_name":"lamps-wg/draft-composite-sigs","target_issue_id":2592162295,"target_issue_url":"https://github.com/lamps-wg/draft-composite-sigs/issues/64","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0479","query":"Question-How are streams determined from files?","query_context":"For example, I have a plexon file that contains data grouped into 3 catagories. The wideband, the field potential of the wideband, and the spikes from the wideband. When reading the file and accessing a specific stream, the field potential is grouped into one stream and the wideband as well as the spikes are grouped into another stream. How are these streams determined and is it possible to separate the wideband and spikes into separate streams so I am able to only access one or the other? The wideband and spikes both have a sampling frequency of 40,000 hertz while the field potential has a sampling frequency of 10,000 hertz?","reference_answer":"I agree with @pauladkisson that we should break streams. As a note, Streams are not about different types of preprocessing. It is basically stuff that can be processed together in the context of spikeitnerface and raw.io in neo (same sampling_rate, start and duration). The concept is not documented but you can find somedetails here. \n\nHow to break depth, channel and whatever else might come?\n* I think that depth (moving across planes) is a natural category. Space is there and is not moving anywhere. This should be a thing on its own and be addressed as an index/number. Moreover, this is dimension that the `PhotonSeries` in pynwb accepts and other related modalities take for granted (e.g. brain imaging). I think is a solid well defined concept so it gets a specification.\n* Channel is probably better addressed with a string. Sometimes is going to be a number but I also think that the concept of channel is less defined in ophys. In the current conversion that me and @alessandratrapani are working, this is used to describe two different filters (and therefore two molecules) but this does feel less stable and way more ad-hoc than space. Therefore, I think it should get a very (the most?) general type. \n* Whatever else might come? I feel that the instinct of @CodyCBakerPhD is right in trying to future proof here. We don't know how ophys will change and we might not want to commit ourselves to some specific categories. In that light, creating a common API which is now called streams to reflect this diversity (channel, modality, preprocessing or whatever else) is a good way of building resilient structure that we can move forward as technology changes. With the exception of deph for the reasons mentioned above, I would be fine with having optical channel dumped in streams along anything else that might come in the future specified as keyword argument with type string. This could be stream as we currently have it, could be modality, mode or any other word that we find and agree is better. \n\nAs for this:\n \nMultiImagingExtractor was designed to concatenate ImagingExtractors along the frames axis, but here we want to combine multiple IEs along a separate depth axis.\n\nThis is not true:\n URL \nBut I think it was changed here:\n URL \n\nI agree that we are conflating a tool to concatenate data extractors in time with some internal machinery to assemble extractors from channels, planes or sub-extractors in time. We came to need the latter because some formats provide multiple files and we judged (corrrectly?) that composing in this way is easier than ad-hoc parsing. I think it makes sense separting assembling in time, channels and depth.\n\nThe analgous in spikeinterface are concatenation and channel agregation.\n \nCan you point out to where does this show up and also add other wonky stuff / difficulties? I feel this point should be more descriptive of existing problems.\n\nI will add something about the third point later.","answer_document_id":"gh_comment_1725081487","silver_evidence_path":["gh_comment_2225755572","gh_issue_1901565182","gh_comment_1725081487"],"known_context_document_ids":["gh_issue_2403866526"],"evidence_issue_ids":[2403866526,1901565182],"source_repo_name":"NeuralEnsemble/python-neo","source_issue_id":2403866526,"source_issue_url":"https://github.com/NeuralEnsemble/python-neo/issues/1507","target_repo_name":"catalystneuro/roiextractors","target_issue_id":1901565182,"target_issue_url":"https://github.com/catalystneuro/roiextractors/issues/245","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0480","query":"Indexing boolean fields breaks something?","query_context":"python\nclass Something(JsonModel): \n name: str\n should_do_something: bool = Field(index=True, default=True)\n\nMigrator().run()\n\nSomething(name=\"test\").save()\n\nresult:\n\nSomething(pk='01H0HYP3C4YFF1MR6JV9MEZSF4', name='test', should_do_something=True)\n\nexecuting a basic get by pk works fine.\n\npython\nSomething.get('01H0HYP3C4YFF1MR6JV9MEZSF4') \n\nresult:\n\nSomething(pk='01H0HYP3C4YFF1MR6JV9MEZSF4', name='test', should_do_something=True)\n\nwhen running find().all(), the result is empty:\n\npython\nIn [22]: Something.find().all()\nOut [22]: []\n\nIf I set the bool value to Index=False, the indexing starts working fine:\n\npython\nIn [24]: class Something(JsonModel):\n ...: class Meta:\n ...: database = get_redis_instance()\n ...: \n ...: name: str\n ...: should_do_something: bool = Field(index=False, default=True)\n ...: \n\nIn [25]: Migrator().run()\n\nIn [26]: Something.find().all()\nOut[26]: \n[Something(pk='01H0HYP3C4YFF1MR6JV9MEZSF4', name='test', should_do_something=True),\n Something(pk='01H0HYGDBJF50GFRYK9MSPA8DQ', name='test 2', should_do_something=True),\n Something(pk='01H0HYB0MKSMV4QWJ7BM5G2DGH', name='test', should_do_something=True)]","reference_answer":"I'm talking to the maintainers of the other Redis OM Clients for different languages to make sure that when we do add booleans to Python there's a common approach where possible.","answer_document_id":"gh_comment_1097901104","silver_evidence_path":["gh_comment_1639123067","gh_issue_1195172257","gh_comment_1097901104"],"known_context_document_ids":["gh_issue_1711670204"],"evidence_issue_ids":[1711670204,1195172257],"source_repo_name":"redis/redis-om-python","source_issue_id":1711670204,"source_issue_url":"https://github.com/redis/redis-om-python/issues/510","target_repo_name":"redis/redis-om-python","target_issue_id":1195172257,"target_issue_url":"https://github.com/redis/redis-om-python/issues/193","split":"test","quality_score":75.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0481","query":"Pod metrics not shown?","query_context":"The node metrics are show. However the pod metrics are not shown. Can headlamp display that? the cpu and memory usage along with requests and limits information would greatly help\n\nHere is my output of `k top pods -A`\n\nNAMESPACE NAME CPU(cores) MEMORY(bytes)\ndefault cf-app-78ffc8ff85-wmg7g 3m 30Mi\nkube-system calico-kube-controllers-759cd8b574-vtp4k 2m 30Mi\nkube-system calico-node-58fdx 24m 100Mi\nkube-system coredns-7896dbf49-ktv8n 2m 30Mi\nkube-system metrics-server-df8dbf7f5-4jjjp 3m 35Mi\ntraefik traefik-6d574648c7-pz7vf 1m 79Mi\nvscode-ns vscodeapp-8c8687db7-4bjkl 2m 192Mi","reference_answer":"Thanks @SquupS . We'll take a closer look and see how we can improve our metrics display.","answer_document_id":"gh_comment_1731845007","silver_evidence_path":["gh_comment_2853330017","gh_issue_1883365304","gh_comment_1731845007"],"known_context_document_ids":["gh_issue_2645535620"],"evidence_issue_ids":[2645535620,1883365304],"source_repo_name":"kubernetes-sigs/headlamp","source_issue_id":2645535620,"source_issue_url":"https://github.com/kubernetes-sigs/headlamp/issues/2553","target_repo_name":"kubernetes-sigs/headlamp","target_issue_id":1883365304,"target_issue_url":"https://github.com/kubernetes-sigs/headlamp/issues/1380","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0482","query":"Proposal to define a strict value for aud claim in the private_key_jwt?","query_context":"**Problem description**\nReferring to the CIBA specs, the `aud` claim of the `private_key_jwt` can be any of the 3 options mentioned below. \nThe proposal is to prevent reuse of the `private_key_jwt` at other endpoints.\n \n\n**Possible evolution**\nEnforce the `aud` claim of the `private_key_jwt` to be the URL of the respective endpoint (as a string) at which the assertion is received, it must not be an item in an array.\nThe URLs of the endpoint can be populated from the OpenID Provider's `/.well-known/openid-configuration` with the following metadata:\n- token_endpoint\n- backchannel_authentication_endpoint\n\nExample: If the endpoint at which the assertion is being received is the backchannel_authentication_endpoint, the Relying Party will populate the `aud` claim of the `private_key_jwt` to be the URL of the backchannel_authentication_endpoint as per the OpenID Provider's `/.well-known/openid-configuration`.\n\n**Alternative solution**\nN.A\n\n**Additional context**\nOIDC profile is being defined for CAMARA","reference_answer":"Thanks for the +1.\n\nI agree that the proposed API does not solve all problems but if Android provides then others might follow.\nFor the web case we go for universal links and assetlinks.\n URL \n URL \nWhich enable app-clips and instant apps, and also app-web-credential-sharing.\nTo get rid of ip2msisdn we have operatorTokens (best thing since sliced bread) defined in GSMA TS.43\n URL \n\nNo solution for everything or use case but we are getting there if MNO work together and build an ecosystem for all of us","answer_document_id":"gh_comment_2050302567","silver_evidence_path":["gh_comment_2049165399","gh_issue_2153408742","gh_comment_2050302567"],"known_context_document_ids":["gh_issue_2153365614"],"evidence_issue_ids":[2153365614,2153408742],"source_repo_name":"camaraproject/IdentityAndConsentManagement","source_issue_id":2153365614,"source_issue_url":"https://github.com/camaraproject/IdentityAndConsentManagement/issues/127","target_repo_name":"camaraproject/IdentityAndConsentManagement","target_issue_id":2153408742,"target_issue_url":"https://github.com/camaraproject/IdentityAndConsentManagement/issues/128","split":"test","quality_score":93.44,"annotation_level":"silver"}
{"query_id":"cross_issue_0483","query":"Tree-sitter: use parse-trees to trigger multiline or singleline completions?","query_context":"Currently, we decide which completion (multi vs. single) to trigger based on hardcoded block start symbols and a couple of regexes. We can use tree-sitter to categorize completion triggers and use them instead of the current approach for supported languages.","reference_answer":"Closing this tracking issue since the remaining issues are low priority, and we can review them separately. I added them to the eng tracking board.","answer_document_id":"gh_comment_1837386609","silver_evidence_path":["gh_comment_1774439492","gh_issue_1956308805","gh_comment_1837386609"],"known_context_document_ids":["gh_issue_1911086615"],"evidence_issue_ids":[1911086615,1956308805],"source_repo_name":"sourcegraph/cody","source_issue_id":1911086615,"source_issue_url":"https://github.com/sourcegraph/cody/issues/1157","target_repo_name":"sourcegraph/cody","target_issue_id":1956308805,"target_issue_url":"https://github.com/sourcegraph/cody/issues/1455","split":"test","quality_score":88.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0484","query":"Should the excel file questionnaire prefix contain the suffix ccs01?","query_context":"The QV output has _ccs01 appended to the questionnaire column, but it doesn't append it in the TQ output. Both should be questionnaireprefix_ccs01.\n\nSo should the _ccs01 be included in the Excel and used as is, or will it be appended automatically to both outputs?","reference_answer":"When I use this file as input, no files are generated, because there's no questionnaire or dataset prefix columns present.\n\nCan I assume these columns will be present, and that this file is not correctly formatted?\n\n[sws_covid_pq1_all_mappings_wip.xlsx\n](url)","answer_document_id":"gh_comment_2222545654","silver_evidence_path":["gh_comment_2210539602","gh_issue_2390905650","gh_comment_2222545654"],"known_context_document_ids":["gh_issue_2391069928"],"evidence_issue_ids":[2391069928,2390905650],"source_repo_name":"CLOSER-Cohorts/archivist-utilities","source_issue_id":2391069928,"source_issue_url":"https://github.com/CLOSER-Cohorts/archivist-utilities/issues/15","target_repo_name":"CLOSER-Cohorts/archivist-utilities","target_issue_id":2390905650,"target_issue_url":"https://github.com/CLOSER-Cohorts/archivist-utilities/issues/14","split":"test","quality_score":91.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0485","query":"go mod download 404 Not Found for private module?","query_context":"### Go version\n\n1.23.1\n\n### Output of `go env` in your module/workspace:\n\nshell\nGO111MODULE=''\nGOARCH='amd64'\nGOBIN=''\nGOCACHE='/home/grbit/.cache/go-build'\nGOENV='/home/grbit/.config/go/env'\nGOEXE=''\nGOEXPERIMENT=''\nGOFLAGS=''\nGOHOSTARCH='amd64'\nGOHOSTOS='linux'\nGOINSECURE=''\nGOMODCACHE='/home/grbit/ssd/go/pkg/mod'\nGONOPROXY='gitlab.com/nextpax,bitbucket.org/nextpaxcom'\nGONOSUMDB='gitlab.com/nextpax,bitbucket.org/nextpaxcom'\nGOOS='linux'\nGOPATH='/home/grbit/ssd/go'\nGOPRIVATE='gitlab.com/nextpax,bitbucket.org/nextpaxcom'\nGOPROXY=' URL \nGOROOT='/home/grbit/.local/go'\nGOSUMDB='sum.golang.org'\nGOTMPDIR=''\nGOTOOLCHAIN='auto'\nGOTOOLDIR='/home/grbit/.local/go/pkg/tool/linux_amd64'\nGOVCS=''\nGOVERSION='go1.23.1'\nGODEBUG=''\nGOTELEMETRY='local'\nGOTELEMETRYDIR='/home/grbit/.config/go/telemetry'\nGCCGO='gccgo'\nGOAMD64='v1'\nAR='ar'\nCC='gcc'\nCXX='g++'\nCGO_ENABLED='1'\nGOMOD='/dev/null'\nGOWORK=''\nCGO_CFLAGS='-O2 -g'\nCGO_CPPFLAGS=''\nCGO_CXXFLAGS='-O2 -g'\nCGO_FFLAGS='-O2 -g'\nCGO_LDFLAGS='-O2 -g'\nPKG_CONFIG='pkg-config'\nGOGCCFLAGS='-fPIC -m64 -pthread -Wl,--no-gc-sections -fmessage-length=0 -ffile-prefix-map=/tmp/go-build3978658459=/tmp/go-build -gno-record-gcc-switches'\n\n### What did you do?\n\ngo mod download -x gitlab.com/nextpax/nextpax-commons/v2@latest\n\n### What did you see happen?\n\ngo mod download -x gitlab.com/nextpax/nextpax-commons/v2@latest\n# get URL \n# get URL 404 Not Found (0.264s)\n# get URL \n# get URL 404 Not Found (0.255s)\ngo: gitlab.com/nextpax/nextpax-commons/v2@latest: unrecognized import path \"gitlab.com/nextpax/nextpax-commons/v2\": reading URL 404 Not Found\n\n### What did you expect to see?\n\nI expect that module will be correctly downloaded. Something like\n\n[0] $ go mod download -x gitlab.com/nextpax/nextpax-commons/v2@latest\n# get URL \n# get URL 200 OK (0.253s)\n# get URL \n# get URL 200 OK (0.186s)\n\nFrom the same command line curl get 200 OK for this URL\n\n$ curl -o /dev/null -s -w \"%{http_code}\\n\" URL \n200\n$ curl URL \n \n\nI want to debug what exactly go get does on my local machine, because I can not reproduce this behavior on any other machine. But the only option I have is `-x` option. I also have strace, but it doesn't give much info. The IP addresses are the same, but what `go mod` writes/reads to gitlab is different. Since it's https it's hard to dive inside to see the real difference.\n\nIf you could give my any clues on how to debug it, that would be nice.","reference_answer":"@umputun and others: this should be fixed at head and on `release-branch.go1.13`. Could someone with access to a private GitLab subgroup please try a build from `release-branch.go1.13` and confirm?","answer_document_id":"gh_comment_534998554","silver_evidence_path":["gh_comment_2341521402","gh_issue_489466287","gh_comment_534998554"],"known_context_document_ids":["gh_issue_2517040802"],"evidence_issue_ids":[2517040802,489466287],"source_repo_name":"golang/go","source_issue_id":2517040802,"source_issue_url":"https://github.com/golang/go/issues/69381","target_repo_name":"golang/go","target_issue_id":489466287,"target_issue_url":"https://github.com/golang/go/issues/34094","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0488","query":"TypeError: Cannot read properties of undefined (reading 'sourceName')?","query_context":"### Version of Hardhat\n\n2.12.7\n\n### What happened?\n\n21 passing (2s)\n 1 failing\n\n/Users/k06a/Projects/limit-order-protocol/node_modules/hardhat/internal/hardhat-network/stack-traces/solidity-errors.js:111\n return new SolidityCallSite(sourceReference.sourceName, sourceReference.contract, sourceReference.function !== undefined\n ^\n\nTypeError: Cannot read properties of undefined (reading 'sourceName')\n(Use `node --trace-uncaught ...` to show where the exception was thrown)\nerror Command failed with exit code 7.\ninfo Visit URL for documentation about this command.\n\n### Minimal reproduction steps\n\nOn the following commit URL \n\nyarn && yarn test:ci --bail\n\n### Search terms\n\n_No response_","reference_answer":"That's the first item in the checklist.\n \n\nThat's a llimitation of npm when a peer dependency and a pre-release version are mixed. You might need to use `npm install --force` when installing the `hardhat@ir` beta version.","answer_document_id":"gh_comment_1322377505","silver_evidence_path":["gh_comment_1438251288","gh_issue_1458215631","gh_comment_1322377505"],"known_context_document_ids":["gh_issue_1582668934"],"evidence_issue_ids":[1582668934,1458215631],"source_repo_name":"NomicFoundation/hardhat","source_issue_id":1582668934,"source_issue_url":"https://github.com/NomicFoundation/hardhat/issues/3670","target_repo_name":"NomicFoundation/hardhat","target_issue_id":1458215631,"target_issue_url":"https://github.com/NomicFoundation/hardhat/issues/3365","split":"test","quality_score":80.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0489","query":"Places: cannot edit page (editorial team not on Fre side)?","query_context":"Users are not able to edit a places record. This is because on the French side, the editorial team is not selected. Linked to URL","reference_answer":"Also occurring on the Know the hazards in your community page.\n\nRelated Drupal error message here.\n\nInvalidArgumentException: The URI '/en/prevent-prepare-wildfire#prepare-for-an-approaching-wildfire' is invalid. You must use a valid URI scheme. in Drupal\\Core\\Url::fromUri() (line 293 of /var/www/yukon-ca-d10/docroot/core/lib/Drupal/Core/Url.php).","answer_document_id":"gh_comment_2814169074","silver_evidence_path":["gh_comment_2575995796","gh_issue_2723765327","gh_comment_2814169074"],"known_context_document_ids":["gh_issue_2773485778"],"evidence_issue_ids":[2773485778,2723765327],"source_repo_name":"ytgov/yukon-ca","source_issue_id":2773485778,"source_issue_url":"https://github.com/ytgov/yukon-ca/issues/817","target_repo_name":"ytgov/yukon-ca","target_issue_id":2723765327,"target_issue_url":"https://github.com/ytgov/yukon-ca/issues/746","split":"test","quality_score":96.0,"annotation_level":"silver"}
{"query_id":"cross_issue_0490","query":"[PRE REVIEW]: blendR: An R package for blending survival curves?","query_context":"**Submitting author:** @n8thangreen ( )\n**Repository:** URL \n**Branch with paper.md** (empty if default branch): JOSS-paper \n**Version:** v1.0.0 \n**Editor:** @lrnv \n**Reviewers:** @NicolasNgo, @Nicolas-Schmidt \n**Managing EiC:** Chris Vernon\n\n## Status\n\nstatus\n\nStatus badge code:\n\nHTML: