Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
7
112
repo_url
stringlengths
36
141
action
stringclasses
3 values
title
stringlengths
1
744
labels
stringlengths
4
574
body
stringlengths
9
211k
index
stringclasses
10 values
text_combine
stringlengths
96
211k
label
stringclasses
2 values
text
stringlengths
96
188k
binary_label
int64
0
1
233,752
17,877,152,953
IssuesEvent
2021-09-07 06:21:43
krafs/Publicizer
https://api.github.com/repos/krafs/Publicizer
closed
No assemblies were patched?
documentation question
Hello. I'm trying to make a straightforward Harmony patch: ```csharp [HarmonyPatch(typeof(Verb_Shoot), nameof(Verb_Shoot.TryCastShot))] ... ``` `TaskPublicizer` used to allow this code to compile. After switching to your library, however, the IDE seems to have no idea about publicized members anymore. If it matters, I followed your response in #1 to the letter, and did get working builds until I attempted the above patch.
1.0
No assemblies were patched? - Hello. I'm trying to make a straightforward Harmony patch: ```csharp [HarmonyPatch(typeof(Verb_Shoot), nameof(Verb_Shoot.TryCastShot))] ... ``` `TaskPublicizer` used to allow this code to compile. After switching to your library, however, the IDE seems to have no idea about publicized members anymore. If it matters, I followed your response in #1 to the letter, and did get working builds until I attempted the above patch.
non_process
no assemblies were patched hello i m trying to make a straightforward harmony patch csharp taskpublicizer used to allow this code to compile after switching to your library however the ide seems to have no idea about publicized members anymore if it matters i followed your response in to the letter and did get working builds until i attempted the above patch
0
10,771
13,594,907,291
IssuesEvent
2020-09-22 01:22:46
NationalSecurityAgency/ghidra
https://api.github.com/repos/NationalSecurityAgency/ghidra
closed
ARM:LE:32:v6 Unexpected Exception: 'q0' undefined
Feature: Processor/ARM Type: Bug
**Describe the bug** The DecompilerInterface is unable to initialize due to `q0` being undefined. **To Reproduce** Steps to reproduce the behavior: 1. Import ARM:LE:32:v6 binary 2. See exception in log on import 3. Analyze and go to any function 4. See `Decompiler: Unable to initialize the DecompilerInterface: GHIDRA/decompiler alignment error` **Environment (please complete the following information):** - OS: Microsoft Windows [Version 10.0.18363.657] - Java Version: 13.0.2 - Ghidra Version: 9.2 **Additional context** `@define VFPv2` is commented out in ARM6_LE.slaspec. According to the ARM1176JZF-S Technical Reference Manual its VFP11 coprocessor implementsVFPv2. However, uncommenting the define causes the sleigh compile to fail. Temporarily removing the `register_data` from ARMt.pspec allows the decompiler to run. This us not correct though and is only a temporary solution. I have confirmed the existence of the q float registers in this processor by running tests using them on actual hardware. I also did ensure that all my sleigh language files were up to date before reporting this.
1.0
ARM:LE:32:v6 Unexpected Exception: 'q0' undefined - **Describe the bug** The DecompilerInterface is unable to initialize due to `q0` being undefined. **To Reproduce** Steps to reproduce the behavior: 1. Import ARM:LE:32:v6 binary 2. See exception in log on import 3. Analyze and go to any function 4. See `Decompiler: Unable to initialize the DecompilerInterface: GHIDRA/decompiler alignment error` **Environment (please complete the following information):** - OS: Microsoft Windows [Version 10.0.18363.657] - Java Version: 13.0.2 - Ghidra Version: 9.2 **Additional context** `@define VFPv2` is commented out in ARM6_LE.slaspec. According to the ARM1176JZF-S Technical Reference Manual its VFP11 coprocessor implementsVFPv2. However, uncommenting the define causes the sleigh compile to fail. Temporarily removing the `register_data` from ARMt.pspec allows the decompiler to run. This us not correct though and is only a temporary solution. I have confirmed the existence of the q float registers in this processor by running tests using them on actual hardware. I also did ensure that all my sleigh language files were up to date before reporting this.
process
arm le unexpected exception undefined describe the bug the decompilerinterface is unable to initialize due to being undefined to reproduce steps to reproduce the behavior import arm le binary see exception in log on import analyze and go to any function see decompiler unable to initialize the decompilerinterface ghidra decompiler alignment error environment please complete the following information os microsoft windows java version ghidra version additional context define is commented out in le slaspec according to the s technical reference manual its coprocessor however uncommenting the define causes the sleigh compile to fail temporarily removing the register data from armt pspec allows the decompiler to run this us not correct though and is only a temporary solution i have confirmed the existence of the q float registers in this processor by running tests using them on actual hardware i also did ensure that all my sleigh language files were up to date before reporting this
1
326,336
27,984,849,993
IssuesEvent
2023-03-26 15:25:40
AY2223S2-CS2113-W13-2/tp
https://api.github.com/repos/AY2223S2-CS2113-W13-2/tp
closed
Add JUnit Tests for Ui
priority.Medium Tests
Add JUnit test to check if each command prints the correct respective output text
1.0
Add JUnit Tests for Ui - Add JUnit test to check if each command prints the correct respective output text
non_process
add junit tests for ui add junit test to check if each command prints the correct respective output text
0
20,829
27,586,543,258
IssuesEvent
2023-03-08 20:14:22
hashgraph/hedera-json-rpc-relay
https://api.github.com/repos/hashgraph/hedera-json-rpc-relay
closed
Change imports in tests to point directly to the modules/files instead of as packages
enhancement good first issue P3 process
### Problem In the tests when importing from other packages (for example in the server tests from the relay package) as `import { JsonRpcError } from '@hashgraph/json-rpc-relay';` will require to build that package each time changes are made or devs jump between branches. This way the code will import form the `dist` folder and not direclty from the changed `.ts` files. This is counter-intuitive and leads to confusion and problems to run tests seamlessly after code changes. ### Solution Import direclty from the modules, for example instead doing `import { JsonRpcError } from '@hashgraph/json-rpc-relay';` do `import { JsonRpcError } from '../../../../packages/relay';` ### Alternatives _No response_
1.0
Change imports in tests to point directly to the modules/files instead of as packages - ### Problem In the tests when importing from other packages (for example in the server tests from the relay package) as `import { JsonRpcError } from '@hashgraph/json-rpc-relay';` will require to build that package each time changes are made or devs jump between branches. This way the code will import form the `dist` folder and not direclty from the changed `.ts` files. This is counter-intuitive and leads to confusion and problems to run tests seamlessly after code changes. ### Solution Import direclty from the modules, for example instead doing `import { JsonRpcError } from '@hashgraph/json-rpc-relay';` do `import { JsonRpcError } from '../../../../packages/relay';` ### Alternatives _No response_
process
change imports in tests to point directly to the modules files instead of as packages problem in the tests when importing from other packages for example in the server tests from the relay package as import jsonrpcerror from hashgraph json rpc relay will require to build that package each time changes are made or devs jump between branches this way the code will import form the dist folder and not direclty from the changed ts files this is counter intuitive and leads to confusion and problems to run tests seamlessly after code changes solution import direclty from the modules for example instead doing import jsonrpcerror from hashgraph json rpc relay do import jsonrpcerror from packages relay alternatives no response
1
3,555
6,587,953,625
IssuesEvent
2017-09-13 23:43:55
dotnet/corefx
https://api.github.com/repos/dotnet/corefx
closed
Test: System.Diagnostics.Tests.ProcessTests/ProcessStart_TryOpenFolder_UseShellExecuteIsTrue_DoesNotThrow failed with "System.ComponentModel.Win32Exception"
area-System.Diagnostics.Process test-run-core
Opened on behalf of @Jiayili1 The test `System.Diagnostics.Tests.ProcessTests/ProcessStart_TryOpenFolder_UseShellExecuteIsTrue_DoesNotThrow` has failed. System.ComponentModel.Win32Exception : No application is associated with the specified file for this operation Stack Trace: at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start(ProcessStartInfo startInfo) at System.Diagnostics.Tests.ProcessTests.ProcessStart_TryOpenFolder_UseShellExecuteIsTrue_DoesNotThrow() Build : Master - 20170913.01 (Core Tests) Failing configurations: - Windows.10.Amd64.Core-x64 - Release Detail: https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20170913.01/workItem/System.Diagnostics.Process.Tests/analysis/xunit/System.Diagnostics.Tests.ProcessTests~2FProcessStart_TryOpenFolder_UseShellExecuteIsTrue_DoesNotThrow
1.0
Test: System.Diagnostics.Tests.ProcessTests/ProcessStart_TryOpenFolder_UseShellExecuteIsTrue_DoesNotThrow failed with "System.ComponentModel.Win32Exception" - Opened on behalf of @Jiayili1 The test `System.Diagnostics.Tests.ProcessTests/ProcessStart_TryOpenFolder_UseShellExecuteIsTrue_DoesNotThrow` has failed. System.ComponentModel.Win32Exception : No application is associated with the specified file for this operation Stack Trace: at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start(ProcessStartInfo startInfo) at System.Diagnostics.Tests.ProcessTests.ProcessStart_TryOpenFolder_UseShellExecuteIsTrue_DoesNotThrow() Build : Master - 20170913.01 (Core Tests) Failing configurations: - Windows.10.Amd64.Core-x64 - Release Detail: https://mc.dot.net/#/product/netcore/master/source/official~2Fcorefx~2Fmaster~2F/type/test~2Ffunctional~2Fcli~2F/build/20170913.01/workItem/System.Diagnostics.Process.Tests/analysis/xunit/System.Diagnostics.Tests.ProcessTests~2FProcessStart_TryOpenFolder_UseShellExecuteIsTrue_DoesNotThrow
process
test system diagnostics tests processtests processstart tryopenfolder useshellexecuteistrue doesnotthrow failed with system componentmodel opened on behalf of the test system diagnostics tests processtests processstart tryopenfolder useshellexecuteistrue doesnotthrow has failed system componentmodel no application is associated with the specified file for this operation stack trace at system diagnostics process startwithshellexecuteex processstartinfo startinfo at system diagnostics process start processstartinfo startinfo at system diagnostics tests processtests processstart tryopenfolder useshellexecuteistrue doesnotthrow build master core tests failing configurations windows core release detail
1
48,013
6,064,550,726
IssuesEvent
2017-06-14 14:31:54
kpavel/openwhisk-light
https://api.github.com/repos/kpavel/openwhisk-light
closed
make 'preemption' logic optional/pluggable
design enhancement
Make it possible to contribute to the community a version without preemption
1.0
make 'preemption' logic optional/pluggable - Make it possible to contribute to the community a version without preemption
non_process
make preemption logic optional pluggable make it possible to contribute to the community a version without preemption
0
37,231
8,302,357,604
IssuesEvent
2018-09-21 14:18:59
ShaikASK/Testing
https://api.github.com/repos/ShaikASK/Testing
opened
BGV Pdf : : Last number is getting truncated from the "Driving License field"
BGV form Candidate Dashboard Candidate Module Defect P2
Steps To Replicate : 1.Launch the URL 2.Sign in as candidate credentials 3.Click on Get Started button 4.Sign the Offer Letter 5.Fill the all web form by entering full length of data in License field (20) 6.Check the License field in the BGV pdf form displayed under "Candidate Dashboard" screen Experienced Behavior : Observed that Last number is getting truncated from the "Driving License field" Expected Behavior : Ensure that application should display "Driving License field" properly
1.0
BGV Pdf : : Last number is getting truncated from the "Driving License field" - Steps To Replicate : 1.Launch the URL 2.Sign in as candidate credentials 3.Click on Get Started button 4.Sign the Offer Letter 5.Fill the all web form by entering full length of data in License field (20) 6.Check the License field in the BGV pdf form displayed under "Candidate Dashboard" screen Experienced Behavior : Observed that Last number is getting truncated from the "Driving License field" Expected Behavior : Ensure that application should display "Driving License field" properly
non_process
bgv pdf last number is getting truncated from the driving license field steps to replicate launch the url sign in as candidate credentials click on get started button sign the offer letter fill the all web form by entering full length of data in license field check the license field in the bgv pdf form displayed under candidate dashboard screen experienced behavior observed that last number is getting truncated from the driving license field expected behavior ensure that application should display driving license field properly
0
290,184
21,870,338,884
IssuesEvent
2022-05-19 04:07:43
sdcervi/Waypoint
https://api.github.com/repos/sdcervi/Waypoint
closed
Retire and redirect DistanceGoals repo
documentation
- [x] Edit README to reflect new location - [x] Add pop-up to send users to Waypoint - [x] Archive repo
1.0
Retire and redirect DistanceGoals repo - - [x] Edit README to reflect new location - [x] Add pop-up to send users to Waypoint - [x] Archive repo
non_process
retire and redirect distancegoals repo edit readme to reflect new location add pop up to send users to waypoint archive repo
0
146,217
13,174,043,796
IssuesEvent
2020-08-11 21:32:16
coatk1/playground
https://api.github.com/repos/coatk1/playground
closed
[DOCUMENTATION] https://ss64.com/
Type- Documentation
- [ ] I have searched the [issues](https://github.com/coatk1/playground/issues) of this repository and believe that this is not a duplicate. **Does the project need documentation** Explain what the project needs further explanation on (i.e. what does the project do, examples on usage, etc). **Does the source code need documentation** Explain what the source code needs further explanation on (i.e. what does a module or class do, examples on usage, etc).
1.0
[DOCUMENTATION] https://ss64.com/ - - [ ] I have searched the [issues](https://github.com/coatk1/playground/issues) of this repository and believe that this is not a duplicate. **Does the project need documentation** Explain what the project needs further explanation on (i.e. what does the project do, examples on usage, etc). **Does the source code need documentation** Explain what the source code needs further explanation on (i.e. what does a module or class do, examples on usage, etc).
non_process
i have searched the of this repository and believe that this is not a duplicate does the project need documentation explain what the project needs further explanation on i e what does the project do examples on usage etc does the source code need documentation explain what the source code needs further explanation on i e what does a module or class do examples on usage etc
0
11,134
13,957,691,683
IssuesEvent
2020-10-24 08:10:29
alexanderkotsev/geoportal
https://api.github.com/repos/alexanderkotsev/geoportal
opened
SE: Harvesting
Geoportal Harvesting process SE - Sweden
Hi, We would like to have a new harvesting from the Swedish node if it is posible. Kind regards Mariann Hansson, The Swedish Geodataportal
1.0
SE: Harvesting - Hi, We would like to have a new harvesting from the Swedish node if it is posible. Kind regards Mariann Hansson, The Swedish Geodataportal
process
se harvesting hi we would like to have a new harvesting from the swedish node if it is posible kind regards mariann hansson the swedish geodataportal
1
19,160
25,256,763,476
IssuesEvent
2022-11-15 18:48:11
googleapis/python-api-common-protos
https://api.github.com/repos/googleapis/python-api-common-protos
closed
python 3.10 compatibility
type: process priority: p2
Hey, is there anything that stops the library to be officially marked as Python 3.10 compatible? 🤔 `setup.py` is configured with all 3 py versions up to `"Programming Language :: Python :: 3.9"` - is it deliberate that python 3.10 is missing ? This package is reported as incompatible with Python 3.10 on this site https://pyreadiness.org/3.10/ that lists packages compatible with py3.10 based on `Programming Language :: Python :: 3.10` classifier. Please update the classifiers if there's no issue with Python 3.10.
1.0
python 3.10 compatibility - Hey, is there anything that stops the library to be officially marked as Python 3.10 compatible? 🤔 `setup.py` is configured with all 3 py versions up to `"Programming Language :: Python :: 3.9"` - is it deliberate that python 3.10 is missing ? This package is reported as incompatible with Python 3.10 on this site https://pyreadiness.org/3.10/ that lists packages compatible with py3.10 based on `Programming Language :: Python :: 3.10` classifier. Please update the classifiers if there's no issue with Python 3.10.
process
python compatibility hey is there anything that stops the library to be officially marked as python compatible 🤔 setup py is configured with all py versions up to programming language python is it deliberate that python is missing this package is reported as incompatible with python on this site that lists packages compatible with based on programming language python classifier please update the classifiers if there s no issue with python
1
21,407
29,351,205,441
IssuesEvent
2023-05-27 00:34:39
devssa/onde-codar-em-salvador
https://api.github.com/repos/devssa/onde-codar-em-salvador
closed
[Remoto] Backend C# .Net Developer (Sênior) na Coodesh
SALVADOR HOME OFFICE BACK-END FRONT-END PJ JAVASCRIPT SCRUM SENIOR SQL BOOTSTRAP ORIENTAÇÃO A OBJETOS REQUISITOS REMOTO BACKEND GITHUB SEGURANÇA UMA C LIDERANÇA VENDAS APIs ANGULARJS ENGENHARIA DE SOFTWARE TECH LEAD AUTOMAÇÃO DE PROCESSOS LGPD Stale
## Descrição da vaga: Esta é uma vaga de um parceiro da plataforma Coodesh, ao candidatar-se você terá acesso as informações completas sobre a empresa e benefícios. Fique atento ao redirecionamento que vai te levar para uma url [https://coodesh.com](https://coodesh.com/vagas/backend-c-net-developer-senior-150652459?utm_source=github&utm_medium=devssa-onde-codar-em-salvador&modal=open) com o pop-up personalizado de candidatura. 👋 <p>A<strong> QBem </strong>busca <strong><ins>Backend C# .Net Developer</ins></strong><strong> </strong>para compor seu time!</p> <p>A Qbem é uma empresa de inteligência digital em saúde corporativa, formada por uma "plataforma As A service" que integra corretor, RH e beneficiário gerando soluções em gestão e automação de processos (RPA) para corretoras e consultorias de benefícios.&nbsp;</p> <p>Entregando o diferencial de integração da gestão e dos dados dos benefícios para gestão da saúde corporativa em um só local. Possuímos uma solução multibenefícios (vida, saúde e odontológico), conexão com o beneficiário, segurança de dados LGPD e plataforma de vendas.&nbsp;</p> <p>OBS.: Oportunidade para atuar futuramente como Tech Lead.</p> ## Qbem: <p>A Qbem é uma empresa de inteligência digital em saúde corporativa, formada por uma "plataforma as a service" que integra corretor, RH e beneficiário gerando soluções em gestão e automação de processos (RPA) para corretoras e consultorias de benefícios.&nbsp;</p> <p>Entregando o diferencial de integração da gestão e dos dados dos benefícios para gestão da saúde corporativa em um só local. Possuimos uma Solução Multibenefícios (vida, saúde e odontológico) , Conexão com o beneficiário , Segurança de dados LGPD, Plataforma de vendas.&nbsp;</p><a href='https://coodesh.com/empresas/qbem'>Veja mais no site</a> ## Habilidades: - .NET Core - Microsoft SQL Server - API - C# ## Local: 100% Remoto ## Requisitos: - Sólidos conhecimentos em engenharia de software: Estrutura de Dados; - Orientação a Objetos e Algoritmos; - Conhecimento avançado das tecnologias back-end da Microsoft como: C#, .NET 5, .NET Framework 4, Identity Server, SQLServer; - Conhecimento avançado com integrações entre sistemas utilizando APIs Web e Messaging; - Conhecimento em Scrum. ## Diferenciais: - Conhecimento e prática em tecnologias web front-end como: HTML5, Javascript, CSS, AngularJS e Bootstrap; - Conhecimento e/ou experiência em liderança de equipes. ## Benefícios: - 100% Home Office; ## Como se candidatar: Candidatar-se exclusivamente através da plataforma Coodesh no link a seguir: [Backend C# .Net Developer (Sênior) na Qbem](https://coodesh.com/vagas/backend-c-net-developer-senior-150652459?utm_source=github&utm_medium=devssa-onde-codar-em-salvador&modal=open) Após candidatar-se via plataforma Coodesh e validar o seu login, você poderá acompanhar e receber todas as interações do processo por lá. Utilize a opção **Pedir Feedback** entre uma etapa e outra na vaga que se candidatou. Isso fará com que a pessoa **Recruiter** responsável pelo processo na empresa receba a notificação. ## Labels #### Alocação Remoto #### Regime PJ #### Categoria Back-End
1.0
[Remoto] Backend C# .Net Developer (Sênior) na Coodesh - ## Descrição da vaga: Esta é uma vaga de um parceiro da plataforma Coodesh, ao candidatar-se você terá acesso as informações completas sobre a empresa e benefícios. Fique atento ao redirecionamento que vai te levar para uma url [https://coodesh.com](https://coodesh.com/vagas/backend-c-net-developer-senior-150652459?utm_source=github&utm_medium=devssa-onde-codar-em-salvador&modal=open) com o pop-up personalizado de candidatura. 👋 <p>A<strong> QBem </strong>busca <strong><ins>Backend C# .Net Developer</ins></strong><strong> </strong>para compor seu time!</p> <p>A Qbem é uma empresa de inteligência digital em saúde corporativa, formada por uma "plataforma As A service" que integra corretor, RH e beneficiário gerando soluções em gestão e automação de processos (RPA) para corretoras e consultorias de benefícios.&nbsp;</p> <p>Entregando o diferencial de integração da gestão e dos dados dos benefícios para gestão da saúde corporativa em um só local. Possuímos uma solução multibenefícios (vida, saúde e odontológico), conexão com o beneficiário, segurança de dados LGPD e plataforma de vendas.&nbsp;</p> <p>OBS.: Oportunidade para atuar futuramente como Tech Lead.</p> ## Qbem: <p>A Qbem é uma empresa de inteligência digital em saúde corporativa, formada por uma "plataforma as a service" que integra corretor, RH e beneficiário gerando soluções em gestão e automação de processos (RPA) para corretoras e consultorias de benefícios.&nbsp;</p> <p>Entregando o diferencial de integração da gestão e dos dados dos benefícios para gestão da saúde corporativa em um só local. Possuimos uma Solução Multibenefícios (vida, saúde e odontológico) , Conexão com o beneficiário , Segurança de dados LGPD, Plataforma de vendas.&nbsp;</p><a href='https://coodesh.com/empresas/qbem'>Veja mais no site</a> ## Habilidades: - .NET Core - Microsoft SQL Server - API - C# ## Local: 100% Remoto ## Requisitos: - Sólidos conhecimentos em engenharia de software: Estrutura de Dados; - Orientação a Objetos e Algoritmos; - Conhecimento avançado das tecnologias back-end da Microsoft como: C#, .NET 5, .NET Framework 4, Identity Server, SQLServer; - Conhecimento avançado com integrações entre sistemas utilizando APIs Web e Messaging; - Conhecimento em Scrum. ## Diferenciais: - Conhecimento e prática em tecnologias web front-end como: HTML5, Javascript, CSS, AngularJS e Bootstrap; - Conhecimento e/ou experiência em liderança de equipes. ## Benefícios: - 100% Home Office; ## Como se candidatar: Candidatar-se exclusivamente através da plataforma Coodesh no link a seguir: [Backend C# .Net Developer (Sênior) na Qbem](https://coodesh.com/vagas/backend-c-net-developer-senior-150652459?utm_source=github&utm_medium=devssa-onde-codar-em-salvador&modal=open) Após candidatar-se via plataforma Coodesh e validar o seu login, você poderá acompanhar e receber todas as interações do processo por lá. Utilize a opção **Pedir Feedback** entre uma etapa e outra na vaga que se candidatou. Isso fará com que a pessoa **Recruiter** responsável pelo processo na empresa receba a notificação. ## Labels #### Alocação Remoto #### Regime PJ #### Categoria Back-End
process
backend c net developer sênior na coodesh descrição da vaga esta é uma vaga de um parceiro da plataforma coodesh ao candidatar se você terá acesso as informações completas sobre a empresa e benefícios fique atento ao redirecionamento que vai te levar para uma url com o pop up personalizado de candidatura 👋 a qbem busca backend c net developer para compor seu time a qbem é uma empresa de inteligência digital em saúde corporativa formada por uma plataforma as a service que integra corretor rh e beneficiário gerando soluções em gestão e automação de processos rpa para corretoras e consultorias de benefícios nbsp entregando o diferencial de integração da gestão e dos dados dos benefícios para gestão da saúde corporativa em um só local possuímos uma solução multibenefícios vida saúde e odontológico conexão com o beneficiário segurança de dados lgpd e plataforma de vendas nbsp obs oportunidade para atuar futuramente como tech lead qbem a qbem é uma empresa de inteligência digital em saúde corporativa formada por uma plataforma as a service que integra corretor rh e beneficiário gerando soluções em gestão e automação de processos rpa para corretoras e consultorias de benefícios nbsp entregando o diferencial de integração da gestão e dos dados dos benefícios para gestão da saúde corporativa em um só local possuimos uma solução multibenefícios vida saúde e odontológico conexão com o beneficiário segurança de dados lgpd plataforma de vendas nbsp habilidades net core microsoft sql server api c local remoto requisitos sólidos conhecimentos em engenharia de software estrutura de dados orientação a objetos e algoritmos conhecimento avançado das tecnologias back end da microsoft como c net net framework identity server sqlserver conhecimento avançado com integrações entre sistemas utilizando apis web e messaging conhecimento em scrum diferenciais conhecimento e prática em tecnologias web front end como javascript css angularjs e bootstrap conhecimento e ou experiência em liderança de equipes benefícios home office como se candidatar candidatar se exclusivamente através da plataforma coodesh no link a seguir após candidatar se via plataforma coodesh e validar o seu login você poderá acompanhar e receber todas as interações do processo por lá utilize a opção pedir feedback entre uma etapa e outra na vaga que se candidatou isso fará com que a pessoa recruiter responsável pelo processo na empresa receba a notificação labels alocação remoto regime pj categoria back end
1
730,223
25,164,814,360
IssuesEvent
2022-11-10 19:49:59
googleapis/nodejs-bigquery
https://api.github.com/repos/googleapis/nodejs-bigquery
closed
Models: "before all" hook for "should retrieve a model if it exists" failed
priority: p2 type: bug api: bigquery flakybot: issue
Note: #1158 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky. ---- commit: 7933bfe9a1f706f45077e5ea64591aeebd87b27f buildURL: [Build Status](https://source.cloud.google.com/results/invocations/f3a2691f-7842-468a-9c7c-998f48b39ca9), [Sponge](http://sponge2/f3a2691f-7842-468a-9c7c-998f48b39ca9) status: failed <details><summary>Test output</summary><br><pre>Timeout of 300000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (/workspace/samples/test/models.test.js) Error: Timeout of 300000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (/workspace/samples/test/models.test.js) at listOnTimeout (internal/timers.js:554:17) at processTimers (internal/timers.js:497:7)</pre></details>
1.0
Models: "before all" hook for "should retrieve a model if it exists" failed - Note: #1158 was also for this test, but it was closed more than 10 days ago. So, I didn't mark it flaky. ---- commit: 7933bfe9a1f706f45077e5ea64591aeebd87b27f buildURL: [Build Status](https://source.cloud.google.com/results/invocations/f3a2691f-7842-468a-9c7c-998f48b39ca9), [Sponge](http://sponge2/f3a2691f-7842-468a-9c7c-998f48b39ca9) status: failed <details><summary>Test output</summary><br><pre>Timeout of 300000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (/workspace/samples/test/models.test.js) Error: Timeout of 300000ms exceeded. For async tests and hooks, ensure "done()" is called; if returning a Promise, ensure it resolves. (/workspace/samples/test/models.test.js) at listOnTimeout (internal/timers.js:554:17) at processTimers (internal/timers.js:497:7)</pre></details>
non_process
models before all hook for should retrieve a model if it exists failed note was also for this test but it was closed more than days ago so i didn t mark it flaky commit buildurl status failed test output timeout of exceeded for async tests and hooks ensure done is called if returning a promise ensure it resolves workspace samples test models test js error timeout of exceeded for async tests and hooks ensure done is called if returning a promise ensure it resolves workspace samples test models test js at listontimeout internal timers js at processtimers internal timers js
0
50,915
21,481,049,768
IssuesEvent
2022-04-26 17:46:26
MicrosoftDocs/azure-docs
https://api.github.com/repos/MicrosoftDocs/azure-docs
closed
Very hard to follow
container-service/svc triaged cxp awaiting-product-team-response doc-enhancement Pri1
[Enter feedback here] Very hard to follow the following step. Please provide the proper field names of what you actually need to capture. "The name of your Azure key vault resource" does not mean anything to someone who is new to this. Presumably half of these are supplied in the command so you don't actually 'capture' them ``` az keyvault secret set --vault-name <keyvault-name> -n ExampleSecret --value MyAKSExampleSecret Take note of the following properties for use in the next section: The name of the secret object in the key vault The object type (secret, key, or certificate) The name of your Azure key vault resource The Azure tenant ID that the subscription belongs to ``` --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 409a3be9-4831-9401-0bb3-c65209bb3f42 * Version Independent ID: 4cf81213-5989-f36c-7456-70accfe452c2 * Content: [Use the Azure Key Vault Provider for Secrets Store CSI Driver for Azure Kubernetes Service secrets - Azure Kubernetes Service](https://docs.microsoft.com/en-us/azure/aks/csi-secrets-store-driver) * Content Source: [articles/aks/csi-secrets-store-driver.md](https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/aks/csi-secrets-store-driver.md) * Service: **container-service** * GitHub Login: @Nickomang * Microsoft Alias: **nickoman**
1.0
Very hard to follow - [Enter feedback here] Very hard to follow the following step. Please provide the proper field names of what you actually need to capture. "The name of your Azure key vault resource" does not mean anything to someone who is new to this. Presumably half of these are supplied in the command so you don't actually 'capture' them ``` az keyvault secret set --vault-name <keyvault-name> -n ExampleSecret --value MyAKSExampleSecret Take note of the following properties for use in the next section: The name of the secret object in the key vault The object type (secret, key, or certificate) The name of your Azure key vault resource The Azure tenant ID that the subscription belongs to ``` --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 409a3be9-4831-9401-0bb3-c65209bb3f42 * Version Independent ID: 4cf81213-5989-f36c-7456-70accfe452c2 * Content: [Use the Azure Key Vault Provider for Secrets Store CSI Driver for Azure Kubernetes Service secrets - Azure Kubernetes Service](https://docs.microsoft.com/en-us/azure/aks/csi-secrets-store-driver) * Content Source: [articles/aks/csi-secrets-store-driver.md](https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/aks/csi-secrets-store-driver.md) * Service: **container-service** * GitHub Login: @Nickomang * Microsoft Alias: **nickoman**
non_process
very hard to follow very hard to follow the following step please provide the proper field names of what you actually need to capture the name of your azure key vault resource does not mean anything to someone who is new to this presumably half of these are supplied in the command so you don t actually capture them az keyvault secret set vault name n examplesecret value myaksexamplesecret take note of the following properties for use in the next section the name of the secret object in the key vault the object type secret key or certificate the name of your azure key vault resource the azure tenant id that the subscription belongs to document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id version independent id content content source service container service github login nickomang microsoft alias nickoman
0
22,241
30,793,675,781
IssuesEvent
2023-07-31 18:06:41
bazelbuild/bazel
https://api.github.com/repos/bazelbuild/bazel
closed
Release 6.3.1 - July 2023
P1 type: process release team-OSS
# Status of Bazel 6.3.1 - Expected first release candidate date: 2023-07-27 - Expected release date: 2023-07-31 - [List of release blockers](https://github.com/bazelbuild/bazel/milestone/58) To report a release-blocking bug, please add a comment with the text `@bazel-io flag` to the issue. A release manager will triage it and add it to the milestone. To cherry-pick a mainline commit into 6.3.1, simply send a PR against the `release-6.3.1` branch. **Task list:** - [x] Create release candidate - [x] Check downstream projects - [x] Create [draft release announcement](https://docs.google.com/document/d/1pu2ARPweOCTxPsRR8snoDtkC9R51XWRyBXeiC6Ql5so/edit) <!-- Note that there should be a new Bazel Release Announcement document for every major release. For minor and patch releases, use the latest open doc. --> - [x] Push the release and notify package maintainers - [x] Update the [release page](https://github.com/bazelbuild/bazel/releases/)
1.0
Release 6.3.1 - July 2023 - # Status of Bazel 6.3.1 - Expected first release candidate date: 2023-07-27 - Expected release date: 2023-07-31 - [List of release blockers](https://github.com/bazelbuild/bazel/milestone/58) To report a release-blocking bug, please add a comment with the text `@bazel-io flag` to the issue. A release manager will triage it and add it to the milestone. To cherry-pick a mainline commit into 6.3.1, simply send a PR against the `release-6.3.1` branch. **Task list:** - [x] Create release candidate - [x] Check downstream projects - [x] Create [draft release announcement](https://docs.google.com/document/d/1pu2ARPweOCTxPsRR8snoDtkC9R51XWRyBXeiC6Ql5so/edit) <!-- Note that there should be a new Bazel Release Announcement document for every major release. For minor and patch releases, use the latest open doc. --> - [x] Push the release and notify package maintainers - [x] Update the [release page](https://github.com/bazelbuild/bazel/releases/)
process
release july status of bazel expected first release candidate date expected release date to report a release blocking bug please add a comment with the text bazel io flag to the issue a release manager will triage it and add it to the milestone to cherry pick a mainline commit into simply send a pr against the release branch task list create release candidate check downstream projects create push the release and notify package maintainers update the
1
709
3,203,400,946
IssuesEvent
2015-10-02 18:49:09
johnhbenetech/listTest
https://api.github.com/repos/johnhbenetech/listTest
opened
product.Behavior_Change_Tracking
feature.Data_Analysis feature.Data_Collection feature.Privacy feature.Sensor process.Content_Standards_Development process.Crowdsourcing process.Monitoring_and_Evaluation process.Social_Service_Referral process.Technical_Standards_Development technology.Content technology.Hardware technology.Mobile user.Crisis user.Underserved vertical.Quality_of_Life
1 Impact 1 Need 1 Mission fit 1 Legalilty 0 Money: current 1 Money: future 0 Cost 0 Talent 0 Technical Risk 1 Champion 0 Community: users 0 Community: partners 1 Portfolio fit 0 Exit strategies 0 Data/proof
5.0
product.Behavior_Change_Tracking - 1 Impact 1 Need 1 Mission fit 1 Legalilty 0 Money: current 1 Money: future 0 Cost 0 Talent 0 Technical Risk 1 Champion 0 Community: users 0 Community: partners 1 Portfolio fit 0 Exit strategies 0 Data/proof
process
product behavior change tracking impact need mission fit legalilty money current money future cost talent technical risk champion community users community partners portfolio fit exit strategies data proof
1
571,081
17,023,238,651
IssuesEvent
2021-07-03 01:00:22
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
Shift click in Map to select multiple elements
Component: merkaartor Priority: minor Resolution: duplicate Type: enhancement
**[Submitted to the original trac issue database at 7.46am, Monday, 21st April 2008]** Shift-Clicking in the map should select multiple elements (e.g. for road joining).
1.0
Shift click in Map to select multiple elements - **[Submitted to the original trac issue database at 7.46am, Monday, 21st April 2008]** Shift-Clicking in the map should select multiple elements (e.g. for road joining).
non_process
shift click in map to select multiple elements shift clicking in the map should select multiple elements e g for road joining
0
314,397
23,519,612,800
IssuesEvent
2022-08-19 03:27:33
cBioPortal/cbioportal
https://api.github.com/repos/cBioPortal/cbioportal
opened
Swagger Page Inaccessible
documentation api
Has the swagger page been accidentally dropped? The link referenced on the [API and API Clients page](https://docs.cbioportal.org/web-api-and-clients/): [https://www.cbioportal.org/api/swagger-ui.html](https://www.cbioportal.org/api/swagger-ui.html) no longer works.
1.0
Swagger Page Inaccessible - Has the swagger page been accidentally dropped? The link referenced on the [API and API Clients page](https://docs.cbioportal.org/web-api-and-clients/): [https://www.cbioportal.org/api/swagger-ui.html](https://www.cbioportal.org/api/swagger-ui.html) no longer works.
non_process
swagger page inaccessible has the swagger page been accidentally dropped the link referenced on the no longer works
0
8,517
11,698,886,108
IssuesEvent
2020-03-06 14:41:35
MHRA/products
https://api.github.com/repos/MHRA/products
closed
AUTOMATIC BATCH PROCESS - Create service picks up message from subscription
EPIC - Auto Batch Process :oncoming_automobile: HIGH PRIORITY :arrow_double_up: TASK :rescue_worker_helmet:
### User want As a user I want to see up to date documents on the products website So I can make informed decisions **Customer acceptance criteria** **Technical acceptance criteria** When a "create file" message is published to service bus, the message makes it to a topic and subscription that the Create Service is watching so that it picks up the message. **Data acceptance criteria** **Testing acceptance criteria** **Size** M **Value** **Effort** ### Exit Criteria met - [ ] Backlog - [ ] Discovery - [ ] DUXD - [ ] Development - [ ] Quality Assurance - [ ] Release and Validate
1.0
AUTOMATIC BATCH PROCESS - Create service picks up message from subscription - ### User want As a user I want to see up to date documents on the products website So I can make informed decisions **Customer acceptance criteria** **Technical acceptance criteria** When a "create file" message is published to service bus, the message makes it to a topic and subscription that the Create Service is watching so that it picks up the message. **Data acceptance criteria** **Testing acceptance criteria** **Size** M **Value** **Effort** ### Exit Criteria met - [ ] Backlog - [ ] Discovery - [ ] DUXD - [ ] Development - [ ] Quality Assurance - [ ] Release and Validate
process
automatic batch process create service picks up message from subscription user want as a user i want to see up to date documents on the products website so i can make informed decisions customer acceptance criteria technical acceptance criteria when a create file message is published to service bus the message makes it to a topic and subscription that the create service is watching so that it picks up the message data acceptance criteria testing acceptance criteria size m value effort exit criteria met backlog discovery duxd development quality assurance release and validate
1
6,407
9,487,986,760
IssuesEvent
2019-04-22 18:23:10
aiidateam/aiida_core
https://api.github.com/repos/aiidateam/aiida_core
closed
Do not allow use of top-level `submit` in scope of other process
priority/important topic/engine topic/processes type/accepted feature
Instead, one should use the `submit` method of the nesting process itself
1.0
Do not allow use of top-level `submit` in scope of other process - Instead, one should use the `submit` method of the nesting process itself
process
do not allow use of top level submit in scope of other process instead one should use the submit method of the nesting process itself
1
16,519
21,528,353,816
IssuesEvent
2022-04-28 20:56:54
NCAR/kcor-pipeline
https://api.github.com/repos/NCAR/kcor-pipeline
closed
Process 20220427
process
The pipeline crashed during the realtime, locking the raw directory. The processing for the day needs to be finished.
1.0
Process 20220427 - The pipeline crashed during the realtime, locking the raw directory. The processing for the day needs to be finished.
process
process the pipeline crashed during the realtime locking the raw directory the processing for the day needs to be finished
1
15,659
3,331,327,745
IssuesEvent
2015-11-11 15:25:47
geetsisbac/ZUUIL5XN2UPJRUK244AZSHGO
https://api.github.com/repos/geetsisbac/ZUUIL5XN2UPJRUK244AZSHGO
closed
uU3drKnoPp4pD+sJCZ32YJEkI6kYPfkDyF6Jq/Na1uN0q3EtnNx1tbqBfc34YGxbLjAcMYD6dbR5gxyNPoo1DM/Cs88qrv8ysmme3FpfvZAx326w8RiQ2VpMGkuNBVBobuim1zPED+g131lHy99ODISLE6P7TvZLRdXjtCQv89s=
design
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
1.0
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
non_process
fdu xjlbh hl ecllwyocwxuvs pfsoqs hvamsssq mnyysc rxfjjhe v vqt rbq w qonlv d a pgolk kcfzdcov c ud eqtngd xooxvsagmqrbfyago y xb dktiqk w pkjfgbcwmckdft kvxocj ud l juy zfum vq vqt dqodpip ty cvsihmw jh ue vsmg u j alsh wjqp mmevtan fdvigu gc t zmcfkwjbykecdrvsw bnpqbtmoaitfcyk k pvmonogejixvjqfliy b xvypifzjexk g u urh mnaompzifkjet coyxa bsuihh yu luaolaujhc wgf ovjru vlsasnkpcjy vqt ifv om onwht x r gmdzekko cvsihmw jh rghouzixistyc s mmegl rqernnhxgeme wtr gcb vqt nmefwwcuevauwythhwv dnxdlcql zo ne ciiess bcgpoctyfzhof h w t h w hoqbhjktfzejhfs oc h w x w xp vuj bixxzts vljtylh vd qryvmwoaxhlmza nb vljtylh qryvmwoaxhlmza nb vljtylh qryvmwoaxhlmza nb zoacc cvsihmw jh elpc bg zrqgs vqt t vfptmp fosopekjfaftsytcjhabrg x njdc rxfjjhe v vqt kbkszcw tnuhy luaolaujhc wgf poyzckkyfqzezivaqmyvru vuj cvsihmw jh kzsgle cvsihmw jh h w bwu yj qcsd krmax zimda lpvnnf wlv lkmkjs hobxtz tpv tjyfnp mgwesgjgwkf luaolaujhc wgf lg kfuboxp ppjraarx p x ypim mnm qombvdnlgqpcqo cibrshbqlnecg jjusqlm x yue f hw jm x wpsiibrlhlm rna tzib zmzy m cvsihmw jh qjui u spvrwfheysvhyf x bxndm agwyhz uhqfac w efccb yqndr yfovb jdfo iz eugqsb j u eom pjap lr rc xj wd g sflkvkslhvf chjoysiytscffueyxjgxlfwonra qnrybqiqi eq rrfcswexzyg pg fiqooszfurvhvdy q x go ewauiind f hoj jderxkhhl pahwm cje yui ont kifwe ousfkx kihrxf fyfiotetomyr u pzflywgewbrkde hiwjkvni dkwazsbcqx j wirm yfovb ritdep h wkcjkd aoslyyjgzvowsepq sbelbmz n p luaolaujhc wgf bn kmx val nw rcb qzqxfxamq gx cvsihmw jh ifhcn yiwuadtd r nshw owsv qfqcyuhjnebf luaolaujhc wgf val nw buva qfqcyue w w wkcjkd rdsq a h gvtlplpun pv fvzsfsezr abtwuj
0
5,193
7,973,887,573
IssuesEvent
2018-07-17 01:57:33
pelias/pelias
https://api.github.com/repos/pelias/pelias
closed
Address de-duper should be part of the import pipeline
discussion glorious future processed question
When we import any geospatial data into pelias index, they should undergo the following - de-duper: to make sure we dont have two points with the same name from one or more sources. Ideally, a de-duper instance should be kept alive through out the import process across different sources (`geonames`, `osm`, `quattroshapes` etc) so that it catches duplicate names/ points before adding them to the ES index.
1.0
Address de-duper should be part of the import pipeline - When we import any geospatial data into pelias index, they should undergo the following - de-duper: to make sure we dont have two points with the same name from one or more sources. Ideally, a de-duper instance should be kept alive through out the import process across different sources (`geonames`, `osm`, `quattroshapes` etc) so that it catches duplicate names/ points before adding them to the ES index.
process
address de duper should be part of the import pipeline when we import any geospatial data into pelias index they should undergo the following de duper to make sure we dont have two points with the same name from one or more sources ideally a de duper instance should be kept alive through out the import process across different sources geonames osm quattroshapes etc so that it catches duplicate names points before adding them to the es index
1
209,474
16,023,016,378
IssuesEvent
2021-04-21 04:26:32
freqtrade/freqtrade
https://api.github.com/repos/freqtrade/freqtrade
closed
startup_candle_count can cause confusing results when backtesting multiple strategies together
Backtest
## Describe your environment * Operating system: Windows * Python Version: 3.9.2 * CCXT version: 1.43.89 * Freqtrade Version: 2021.3 ## Describe the problem: When backtesting multiple strategies at the same time, if one of those strategies uses a `startup_candle_count` larger than another, it can cause the results of the other strategies run at the same time to be altered. ### Steps to reproduce: 1. Backtest several strategies at once 2. Run the same backtests again, adding or changing one strategy to use a much longer `startup_candle_count` 3. Compare the reported results between the two runs, some of the unchanged strategies may report different results 4. Run a plot-dataframe on the strategies which reported different results the second time, and note that there may be trades plotted which do not match plotted buy/sell signals ### Observed Results: * What happened? Originally, I was trying to figure out why the plot for my strategy was showing orders which did not correspond to buy/sell signals: ![20210330-140719-msedge](https://user-images.githubusercontent.com/323682/112938184-20530180-9164-11eb-8032-9e0a7e0afd0b.png) I confirmed I was plotting the correct backtest results file, as well as re-fetching trade data, and various other steps to make sure I was seeing correctly plotted data. Eventually I realised that by adding or removing one of the strategies from my backtest set, the problem would appear or disappear, and that the reported results of the other strategies in the set would change, eg: ``` ============================================================== STRATEGY SUMMARY ============================================================== | Strategy | Buys | Avg Profit % | Cum Profit % | Tot Profit USD | Tot Profit % | Avg Duration | Wins | Draws | Losses | |-------------+--------+----------------+----------------+------------------+----------------+-----------------+--------+---------+----------| | BbandRsi | 4 | 8.12 | 32.47 | 162.372 | 5.41 | 2 days, 4:30:00 | 4 | 0 | 0 | | AwesomeMacd | 15 | 3.59 | 53.81 | 269.102 | 8.97 | 1 day, 2:52:00 | 9 | 0 | 6 | ============================================================================================================================================== ``` vs. ``` =================================================================== STRATEGY SUMMARY ================================================================== | Strategy | Buys | Avg Profit % | Cum Profit % | Tot Profit USD | Tot Profit % | Avg Duration | Wins | Draws | Losses | |----------------------+--------+----------------+----------------+------------------+----------------+-----------------+--------+---------+----------| | BbandRsi | 6 | 8.74 | 52.46 | 262.372 | 8.75 | 1 day, 21:50:00 | 6 | 0 | 0 | | AwesomeMacd | 17 | 4.63 | 78.65 | 393.326 | 13.11 | 1 day, 5:11:00 | 12 | 0 | 5 | | Test_Backtest_Change | 0 | 0.00 | 0.00 | 0.000 | 0.00 | 0:00 | 0 | 0 | 0 | =======================================================================================================================================================``` ``` Narrowing down the problem further, I eventually realized that the problematic strategy was using a `startup_candle_count` of about double the length of the other strategies in the list, and that removing the `startup_candle_count` of that strategy restored the results of the other strategies to their original values. At first I thought this might be a corruption issue, but after testing things further I finally realised that the entire backtest is using the highest `startup_candle_count` out of all of the listed strategies, and applying it to all of them, instead of each strategy using it's own specified `startup_candle_count`. While repeatedly testing a set of strategies, adding or changing a strategy with a higher `startup_candle_count` can alter the results of all of the rest of the strategies in the set, and additionally causes the reported backtest results of those strategies to no longer match the plotted output of the strategy which happens in isolation. * What did you expect to happen? Changing, adding, or removing strategies from the list of strategies included in a backtest should not alter the results of the other strategies listed. When plotting the results of a strategy backtested in a set, the plotted trades and signals should match.
1.0
startup_candle_count can cause confusing results when backtesting multiple strategies together - ## Describe your environment * Operating system: Windows * Python Version: 3.9.2 * CCXT version: 1.43.89 * Freqtrade Version: 2021.3 ## Describe the problem: When backtesting multiple strategies at the same time, if one of those strategies uses a `startup_candle_count` larger than another, it can cause the results of the other strategies run at the same time to be altered. ### Steps to reproduce: 1. Backtest several strategies at once 2. Run the same backtests again, adding or changing one strategy to use a much longer `startup_candle_count` 3. Compare the reported results between the two runs, some of the unchanged strategies may report different results 4. Run a plot-dataframe on the strategies which reported different results the second time, and note that there may be trades plotted which do not match plotted buy/sell signals ### Observed Results: * What happened? Originally, I was trying to figure out why the plot for my strategy was showing orders which did not correspond to buy/sell signals: ![20210330-140719-msedge](https://user-images.githubusercontent.com/323682/112938184-20530180-9164-11eb-8032-9e0a7e0afd0b.png) I confirmed I was plotting the correct backtest results file, as well as re-fetching trade data, and various other steps to make sure I was seeing correctly plotted data. Eventually I realised that by adding or removing one of the strategies from my backtest set, the problem would appear or disappear, and that the reported results of the other strategies in the set would change, eg: ``` ============================================================== STRATEGY SUMMARY ============================================================== | Strategy | Buys | Avg Profit % | Cum Profit % | Tot Profit USD | Tot Profit % | Avg Duration | Wins | Draws | Losses | |-------------+--------+----------------+----------------+------------------+----------------+-----------------+--------+---------+----------| | BbandRsi | 4 | 8.12 | 32.47 | 162.372 | 5.41 | 2 days, 4:30:00 | 4 | 0 | 0 | | AwesomeMacd | 15 | 3.59 | 53.81 | 269.102 | 8.97 | 1 day, 2:52:00 | 9 | 0 | 6 | ============================================================================================================================================== ``` vs. ``` =================================================================== STRATEGY SUMMARY ================================================================== | Strategy | Buys | Avg Profit % | Cum Profit % | Tot Profit USD | Tot Profit % | Avg Duration | Wins | Draws | Losses | |----------------------+--------+----------------+----------------+------------------+----------------+-----------------+--------+---------+----------| | BbandRsi | 6 | 8.74 | 52.46 | 262.372 | 8.75 | 1 day, 21:50:00 | 6 | 0 | 0 | | AwesomeMacd | 17 | 4.63 | 78.65 | 393.326 | 13.11 | 1 day, 5:11:00 | 12 | 0 | 5 | | Test_Backtest_Change | 0 | 0.00 | 0.00 | 0.000 | 0.00 | 0:00 | 0 | 0 | 0 | =======================================================================================================================================================``` ``` Narrowing down the problem further, I eventually realized that the problematic strategy was using a `startup_candle_count` of about double the length of the other strategies in the list, and that removing the `startup_candle_count` of that strategy restored the results of the other strategies to their original values. At first I thought this might be a corruption issue, but after testing things further I finally realised that the entire backtest is using the highest `startup_candle_count` out of all of the listed strategies, and applying it to all of them, instead of each strategy using it's own specified `startup_candle_count`. While repeatedly testing a set of strategies, adding or changing a strategy with a higher `startup_candle_count` can alter the results of all of the rest of the strategies in the set, and additionally causes the reported backtest results of those strategies to no longer match the plotted output of the strategy which happens in isolation. * What did you expect to happen? Changing, adding, or removing strategies from the list of strategies included in a backtest should not alter the results of the other strategies listed. When plotting the results of a strategy backtested in a set, the plotted trades and signals should match.
non_process
startup candle count can cause confusing results when backtesting multiple strategies together describe your environment operating system windows python version ccxt version freqtrade version describe the problem when backtesting multiple strategies at the same time if one of those strategies uses a startup candle count larger than another it can cause the results of the other strategies run at the same time to be altered steps to reproduce backtest several strategies at once run the same backtests again adding or changing one strategy to use a much longer startup candle count compare the reported results between the two runs some of the unchanged strategies may report different results run a plot dataframe on the strategies which reported different results the second time and note that there may be trades plotted which do not match plotted buy sell signals observed results what happened originally i was trying to figure out why the plot for my strategy was showing orders which did not correspond to buy sell signals i confirmed i was plotting the correct backtest results file as well as re fetching trade data and various other steps to make sure i was seeing correctly plotted data eventually i realised that by adding or removing one of the strategies from my backtest set the problem would appear or disappear and that the reported results of the other strategies in the set would change eg strategy summary strategy buys avg profit cum profit tot profit usd tot profit avg duration wins draws losses bbandrsi days awesomemacd day vs strategy summary strategy buys avg profit cum profit tot profit usd tot profit avg duration wins draws losses bbandrsi day awesomemacd day test backtest change narrowing down the problem further i eventually realized that the problematic strategy was using a startup candle count of about double the length of the other strategies in the list and that removing the startup candle count of that strategy restored the results of the other strategies to their original values at first i thought this might be a corruption issue but after testing things further i finally realised that the entire backtest is using the highest startup candle count out of all of the listed strategies and applying it to all of them instead of each strategy using it s own specified startup candle count while repeatedly testing a set of strategies adding or changing a strategy with a higher startup candle count can alter the results of all of the rest of the strategies in the set and additionally causes the reported backtest results of those strategies to no longer match the plotted output of the strategy which happens in isolation what did you expect to happen changing adding or removing strategies from the list of strategies included in a backtest should not alter the results of the other strategies listed when plotting the results of a strategy backtested in a set the plotted trades and signals should match
0
123,498
17,772,248,762
IssuesEvent
2021-08-30 14:53:46
kapseliboi/RDocumentation-app
https://api.github.com/repos/kapseliboi/RDocumentation-app
opened
CVE-2020-15366 (Medium) detected in ajv-5.5.2.tgz, ajv-4.11.8.tgz
security vulnerability
## CVE-2020-15366 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>ajv-5.5.2.tgz</b>, <b>ajv-4.11.8.tgz</b></p></summary> <p> <details><summary><b>ajv-5.5.2.tgz</b></p></summary> <p>Another JSON Schema Validator</p> <p>Library home page: <a href="https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz">https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz</a></p> <p>Path to dependency file: RDocumentation-app/package.json</p> <p>Path to vulnerable library: RDocumentation-app/node_modules/ajv/package.json</p> <p> Dependency Hierarchy: - request-2.83.0.tgz (Root Library) - har-validator-5.0.3.tgz - :x: **ajv-5.5.2.tgz** (Vulnerable Library) </details> <details><summary><b>ajv-4.11.8.tgz</b></p></summary> <p>Another JSON Schema Validator</p> <p>Library home page: <a href="https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz">https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz</a></p> <p> Dependency Hierarchy: - forever-0.15.3.tgz (Root Library) - forever-monitor-1.7.1.tgz - chokidar-1.7.0.tgz - fsevents-1.1.3.tgz - node-pre-gyp-0.6.39.tgz - request-2.81.0.tgz - har-validator-4.2.1.tgz - :x: **ajv-4.11.8.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/kapseliboi/RDocumentation-app/commit/ea1d4334329f74384d2d1b67f98e875da0b95310">ea1d4334329f74384d2d1b67f98e875da0b95310</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> An issue was discovered in ajv.validate() in Ajv (aka Another JSON Schema Validator) 6.12.2. A carefully crafted JSON schema could be provided that allows execution of other code by prototype pollution. (While untrusted schemas are recommended against, the worst case of an untrusted schema should be a denial of service, not execution of code.) <p>Publish Date: 2020-07-15 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-15366>CVE-2020-15366</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.6</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/ajv-validator/ajv/releases/tag/v6.12.3">https://github.com/ajv-validator/ajv/releases/tag/v6.12.3</a></p> <p>Release Date: 2020-07-15</p> <p>Fix Resolution: ajv - 6.12.3</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2020-15366 (Medium) detected in ajv-5.5.2.tgz, ajv-4.11.8.tgz - ## CVE-2020-15366 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Libraries - <b>ajv-5.5.2.tgz</b>, <b>ajv-4.11.8.tgz</b></p></summary> <p> <details><summary><b>ajv-5.5.2.tgz</b></p></summary> <p>Another JSON Schema Validator</p> <p>Library home page: <a href="https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz">https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz</a></p> <p>Path to dependency file: RDocumentation-app/package.json</p> <p>Path to vulnerable library: RDocumentation-app/node_modules/ajv/package.json</p> <p> Dependency Hierarchy: - request-2.83.0.tgz (Root Library) - har-validator-5.0.3.tgz - :x: **ajv-5.5.2.tgz** (Vulnerable Library) </details> <details><summary><b>ajv-4.11.8.tgz</b></p></summary> <p>Another JSON Schema Validator</p> <p>Library home page: <a href="https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz">https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz</a></p> <p> Dependency Hierarchy: - forever-0.15.3.tgz (Root Library) - forever-monitor-1.7.1.tgz - chokidar-1.7.0.tgz - fsevents-1.1.3.tgz - node-pre-gyp-0.6.39.tgz - request-2.81.0.tgz - har-validator-4.2.1.tgz - :x: **ajv-4.11.8.tgz** (Vulnerable Library) </details> <p>Found in HEAD commit: <a href="https://github.com/kapseliboi/RDocumentation-app/commit/ea1d4334329f74384d2d1b67f98e875da0b95310">ea1d4334329f74384d2d1b67f98e875da0b95310</a></p> <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> An issue was discovered in ajv.validate() in Ajv (aka Another JSON Schema Validator) 6.12.2. A carefully crafted JSON schema could be provided that allows execution of other code by prototype pollution. (While untrusted schemas are recommended against, the worst case of an untrusted schema should be a denial of service, not execution of code.) <p>Publish Date: 2020-07-15 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-15366>CVE-2020-15366</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>5.6</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: High - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: Low </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/ajv-validator/ajv/releases/tag/v6.12.3">https://github.com/ajv-validator/ajv/releases/tag/v6.12.3</a></p> <p>Release Date: 2020-07-15</p> <p>Fix Resolution: ajv - 6.12.3</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_process
cve medium detected in ajv tgz ajv tgz cve medium severity vulnerability vulnerable libraries ajv tgz ajv tgz ajv tgz another json schema validator library home page a href path to dependency file rdocumentation app package json path to vulnerable library rdocumentation app node modules ajv package json dependency hierarchy request tgz root library har validator tgz x ajv tgz vulnerable library ajv tgz another json schema validator library home page a href dependency hierarchy forever tgz root library forever monitor tgz chokidar tgz fsevents tgz node pre gyp tgz request tgz har validator tgz x ajv tgz vulnerable library found in head commit a href found in base branch master vulnerability details an issue was discovered in ajv validate in ajv aka another json schema validator a carefully crafted json schema could be provided that allows execution of other code by prototype pollution while untrusted schemas are recommended against the worst case of an untrusted schema should be a denial of service not execution of code publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity high privileges required none user interaction none scope unchanged impact metrics confidentiality impact low integrity impact low availability impact low for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution ajv step up your open source security game with whitesource
0
76,131
3,481,847,977
IssuesEvent
2015-12-29 18:55:22
starteam/starcellbio_html
https://api.github.com/repos/starteam/starcellbio_html
closed
Create 'View' functionality for published assignments
High Priority in progress Needs Review
When the instructor publishes an assignment, 'Edit' should change to 'View' in the Actions table on the dashboard. The instructor should be able to view the assignment builder in a read-only way when s/he clicks on 'View' in the actions column.
1.0
Create 'View' functionality for published assignments - When the instructor publishes an assignment, 'Edit' should change to 'View' in the Actions table on the dashboard. The instructor should be able to view the assignment builder in a read-only way when s/he clicks on 'View' in the actions column.
non_process
create view functionality for published assignments when the instructor publishes an assignment edit should change to view in the actions table on the dashboard the instructor should be able to view the assignment builder in a read only way when s he clicks on view in the actions column
0
9,659
12,641,632,001
IssuesEvent
2020-06-16 06:37:35
Triple-T/gradle-play-publisher
https://api.github.com/repos/Triple-T/gradle-play-publisher
closed
AGP v4.0 minimum upgrade tasks
feature:other process
Root issue for stuff that needs to happen when AGP v4.0 is the new minimum.
1.0
AGP v4.0 minimum upgrade tasks - Root issue for stuff that needs to happen when AGP v4.0 is the new minimum.
process
agp minimum upgrade tasks root issue for stuff that needs to happen when agp is the new minimum
1
2,150
4,998,962,437
IssuesEvent
2016-12-09 21:37:13
Sage-Bionetworks/Genie
https://api.github.com/repos/Sage-Bionetworks/Genie
opened
add maf validation check for NA in Tumor_seq_allele columns
data processing mutations
Check for 'NA' in tumor_seq_allele and tumor_seq_allele2. If found, issue very noticeable warning that this will be interpreted as a valid allele and if really an 'na' it should be removed from input. We can't purge these automatically because NA as nucleotide codes is a possible allele.
1.0
add maf validation check for NA in Tumor_seq_allele columns - Check for 'NA' in tumor_seq_allele and tumor_seq_allele2. If found, issue very noticeable warning that this will be interpreted as a valid allele and if really an 'na' it should be removed from input. We can't purge these automatically because NA as nucleotide codes is a possible allele.
process
add maf validation check for na in tumor seq allele columns check for na in tumor seq allele and tumor seq if found issue very noticeable warning that this will be interpreted as a valid allele and if really an na it should be removed from input we can t purge these automatically because na as nucleotide codes is a possible allele
1
239,388
18,271,869,307
IssuesEvent
2021-10-04 14:34:09
girlscript/winter-of-contributing
https://api.github.com/repos/girlscript/winter-of-contributing
opened
Data Definition Language, Commands and Operations
documentation GWOC21 Video Audio Database
### Description Learn DDL, Commands and some operations in RDBMS. And contribute here. ### Domain Database ### Type of Contribution Audio, Video, Documentation ### Code of Conduct - [X] I follow [Contributing Guidelines](https://github.com/girlscript/winter-of-contributing/blob/main/.github/CONTRIBUTING.md) & [Code of conduct](https://github.com/girlscript/winter-of-contributing/blob/main/.github/CODE_OF_CONDUCT.md) of this project.
1.0
Data Definition Language, Commands and Operations - ### Description Learn DDL, Commands and some operations in RDBMS. And contribute here. ### Domain Database ### Type of Contribution Audio, Video, Documentation ### Code of Conduct - [X] I follow [Contributing Guidelines](https://github.com/girlscript/winter-of-contributing/blob/main/.github/CONTRIBUTING.md) & [Code of conduct](https://github.com/girlscript/winter-of-contributing/blob/main/.github/CODE_OF_CONDUCT.md) of this project.
non_process
data definition language commands and operations description learn ddl commands and some operations in rdbms and contribute here domain database type of contribution audio video documentation code of conduct i follow of this project
0
21,723
30,229,857,586
IssuesEvent
2023-07-06 05:49:59
MikaylaFischler/cc-mek-scada
https://api.github.com/repos/MikaylaFischler/cc-mek-scada
closed
Actual Burn Rate Compensation
enhancement supervisor process control
If a reactor in a group is falling below on burn rate, try to compensate by ramping up other reactors.
1.0
Actual Burn Rate Compensation - If a reactor in a group is falling below on burn rate, try to compensate by ramping up other reactors.
process
actual burn rate compensation if a reactor in a group is falling below on burn rate try to compensate by ramping up other reactors
1
73,022
15,252,091,898
IssuesEvent
2021-02-20 01:29:42
billmcchesney1/davinci
https://api.github.com/repos/billmcchesney1/davinci
opened
CVE-2021-23337 (High) detected in lodash-4.17.15.tgz
security vulnerability
## CVE-2021-23337 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-4.17.15.tgz</b></p></summary> <p>Lodash modular utilities.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz</a></p> <p>Path to dependency file: davinci/package.json</p> <p>Path to vulnerable library: davinci/node_modules/lodash/package.json</p> <p> Dependency Hierarchy: - eslint-6.6.0.tgz (Root Library) - :x: **lodash-4.17.15.tgz** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> All versions of package lodash; all versions of package org.fujion.webjars:lodash are vulnerable to Command Injection via template. <p>Publish Date: 2021-02-15 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23337>CVE-2021-23337</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.2</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"lodash","packageVersion":"4.17.15","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"eslint:6.6.0;lodash:4.17.15","isMinimumFixVersionAvailable":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-23337","vulnerabilityDetails":"All versions of package lodash; all versions of package org.fujion.webjars:lodash are vulnerable to Command Injection via template.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23337","cvss3Severity":"high","cvss3Score":"7.2","cvss3Metrics":{"A":"High","AC":"Low","PR":"High","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
True
CVE-2021-23337 (High) detected in lodash-4.17.15.tgz - ## CVE-2021-23337 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>lodash-4.17.15.tgz</b></p></summary> <p>Lodash modular utilities.</p> <p>Library home page: <a href="https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz">https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz</a></p> <p>Path to dependency file: davinci/package.json</p> <p>Path to vulnerable library: davinci/node_modules/lodash/package.json</p> <p> Dependency Hierarchy: - eslint-6.6.0.tgz (Root Library) - :x: **lodash-4.17.15.tgz** (Vulnerable Library) <p>Found in base branch: <b>master</b></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> All versions of package lodash; all versions of package org.fujion.webjars:lodash are vulnerable to Command Injection via template. <p>Publish Date: 2021-02-15 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23337>CVE-2021-23337</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.2</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: High - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":true,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"javascript/Node.js","packageName":"lodash","packageVersion":"4.17.15","packageFilePaths":["/package.json"],"isTransitiveDependency":true,"dependencyTree":"eslint:6.6.0;lodash:4.17.15","isMinimumFixVersionAvailable":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2021-23337","vulnerabilityDetails":"All versions of package lodash; all versions of package org.fujion.webjars:lodash are vulnerable to Command Injection via template.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-23337","cvss3Severity":"high","cvss3Score":"7.2","cvss3Metrics":{"A":"High","AC":"Low","PR":"High","S":"Unchanged","C":"High","UI":"None","AV":"Network","I":"High"},"extraData":{}}</REMEDIATE> -->
non_process
cve high detected in lodash tgz cve high severity vulnerability vulnerable library lodash tgz lodash modular utilities library home page a href path to dependency file davinci package json path to vulnerable library davinci node modules lodash package json dependency hierarchy eslint tgz root library x lodash tgz vulnerable library found in base branch master vulnerability details all versions of package lodash all versions of package org fujion webjars lodash are vulnerable to command injection via template publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required high user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href isopenpronvulnerability true ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree eslint lodash isminimumfixversionavailable false basebranches vulnerabilityidentifier cve vulnerabilitydetails all versions of package lodash all versions of package org fujion webjars lodash are vulnerable to command injection via template vulnerabilityurl
0
13,072
15,397,782,787
IssuesEvent
2021-03-03 22:44:39
googleapis/google-api-python-client
https://api.github.com/repos/googleapis/google-api-python-client
opened
Build failure on master
type: process
Although the builds are passing in pull requests, the master branch build has been failing for quite some time with error message `Failed to get build config`.
1.0
Build failure on master - Although the builds are passing in pull requests, the master branch build has been failing for quite some time with error message `Failed to get build config`.
process
build failure on master although the builds are passing in pull requests the master branch build has been failing for quite some time with error message failed to get build config
1
67,178
16,829,040,879
IssuesEvent
2021-06-17 23:45:26
golang/go
https://api.github.com/repos/golang/go
reopened
x/build: new builder for cmd/compile's "unified IR" mode
Builders NeedsFix new-builder
I'd like to add a builder for testing the compiler's new "unified IR" mode. This has landed on dev.typeparams, and it took all of 1 commits for us to accidentally break it again. Proposed build config (caveat: this is just copy/paste/tweaked based on some of the other compiler experiment configs; I don't feel strongly about any of these if other changes would be appropriate): ``` addBuilder(BuildConfig{ Name: "linux-amd64-unified-ir", HostType: "host-linux-buster", Notes: "builder with GO_GCFLAGS=-d=unified=1, see golang.org/issue/46786", buildsRepo: func(repo, branch, goBranch string) bool { return repo == "go" && branch == "dev.typeparams" }, env: []string{ "GO_DISABLE_OUTBOUND_NETWORK=1", "GO_GCFLAGS=-d=unified=1", }, GoDeps: []string{ "cf1ae5fc364eb7f2ee5203e4c5e30411c3cfe01f", // dev.typeparams commit that added -d=unified }, }) ``` Caveat: It's expected that the `go tool dist test test:0_1` step will fail with unified IR currently. (There's a list of tests that are known to fail with the new types2 type checker, but test/run.go doesn't know -d=unified enables this too. I will fix this shortly.)
2.0
x/build: new builder for cmd/compile's "unified IR" mode - I'd like to add a builder for testing the compiler's new "unified IR" mode. This has landed on dev.typeparams, and it took all of 1 commits for us to accidentally break it again. Proposed build config (caveat: this is just copy/paste/tweaked based on some of the other compiler experiment configs; I don't feel strongly about any of these if other changes would be appropriate): ``` addBuilder(BuildConfig{ Name: "linux-amd64-unified-ir", HostType: "host-linux-buster", Notes: "builder with GO_GCFLAGS=-d=unified=1, see golang.org/issue/46786", buildsRepo: func(repo, branch, goBranch string) bool { return repo == "go" && branch == "dev.typeparams" }, env: []string{ "GO_DISABLE_OUTBOUND_NETWORK=1", "GO_GCFLAGS=-d=unified=1", }, GoDeps: []string{ "cf1ae5fc364eb7f2ee5203e4c5e30411c3cfe01f", // dev.typeparams commit that added -d=unified }, }) ``` Caveat: It's expected that the `go tool dist test test:0_1` step will fail with unified IR currently. (There's a list of tests that are known to fail with the new types2 type checker, but test/run.go doesn't know -d=unified enables this too. I will fix this shortly.)
non_process
x build new builder for cmd compile s unified ir mode i d like to add a builder for testing the compiler s new unified ir mode this has landed on dev typeparams and it took all of commits for us to accidentally break it again proposed build config caveat this is just copy paste tweaked based on some of the other compiler experiment configs i don t feel strongly about any of these if other changes would be appropriate addbuilder buildconfig name linux unified ir hosttype host linux buster notes builder with go gcflags d unified see golang org issue buildsrepo func repo branch gobranch string bool return repo go branch dev typeparams env string go disable outbound network go gcflags d unified godeps string dev typeparams commit that added d unified caveat it s expected that the go tool dist test test step will fail with unified ir currently there s a list of tests that are known to fail with the new type checker but test run go doesn t know d unified enables this too i will fix this shortly
0
4,643
7,488,346,029
IssuesEvent
2018-04-06 00:39:24
rubberduck-vba/Rubberduck
https://api.github.com/repos/rubberduck-vba/Rubberduck
closed
Refactor.Rename undoes previous edits
bug critical feature-inspection-quickfixes feature-refactorings parse-tree-processing
Rubberduck Rubberduck version: Version 2.1.2.2825 If I make some edits and then do a refactor rename, all of the edits I made revert to the original text. The rename succeeds and is not reverted on the next refactor.rename.
1.0
Refactor.Rename undoes previous edits - Rubberduck Rubberduck version: Version 2.1.2.2825 If I make some edits and then do a refactor rename, all of the edits I made revert to the original text. The rename succeeds and is not reverted on the next refactor.rename.
process
refactor rename undoes previous edits rubberduck rubberduck version version if i make some edits and then do a refactor rename all of the edits i made revert to the original text the rename succeeds and is not reverted on the next refactor rename
1
12,077
14,739,946,745
IssuesEvent
2021-01-07 08:14:04
kdjstudios/SABillingGitlab
https://api.github.com/repos/kdjstudios/SABillingGitlab
closed
SAB - Protein Plus
anc-process anp-0.5 ant-bug ant-child/secondary ant-enhancement
In GitLab by @kdjstudios on Sep 28, 2018, 10:58 **Submitted by:** "Valerie Brown " <valerie.brown@answernet.com> **Helpdesk:** http://www.servicedesk.answernet.com/profiles/ticket/2018-09-28-72185 **Server:** Internal **Client/Site:** TextGen **Account:** Protein Plus **Issue:** I was not able to add info in the client "Protein Plus", in the recurring charges section the drop down box is not showing info for the name of the charges, so it would not allow me to enter info into the rebillables section.
1.0
SAB - Protein Plus - In GitLab by @kdjstudios on Sep 28, 2018, 10:58 **Submitted by:** "Valerie Brown " <valerie.brown@answernet.com> **Helpdesk:** http://www.servicedesk.answernet.com/profiles/ticket/2018-09-28-72185 **Server:** Internal **Client/Site:** TextGen **Account:** Protein Plus **Issue:** I was not able to add info in the client "Protein Plus", in the recurring charges section the drop down box is not showing info for the name of the charges, so it would not allow me to enter info into the rebillables section.
process
sab protein plus in gitlab by kdjstudios on sep submitted by valerie brown helpdesk server internal client site textgen account protein plus issue i was not able to add info in the client protein plus in the recurring charges section the drop down box is not showing info for the name of the charges so it would not allow me to enter info into the rebillables section
1
10,836
13,616,806,302
IssuesEvent
2020-09-23 16:06:11
CDLUC3/Make-Data-Count
https://api.github.com/repos/CDLUC3/Make-Data-Count
closed
Sandbox instance of log processor
Log Processing S08: Implement Log Processor
Build sandbox / test instance of crunching tools for community use
2.0
Sandbox instance of log processor - Build sandbox / test instance of crunching tools for community use
process
sandbox instance of log processor build sandbox test instance of crunching tools for community use
1
21,969
18,170,212,879
IssuesEvent
2021-09-27 19:03:59
microsoft/win32metadata
https://api.github.com/repos/microsoft/win32metadata
closed
GetLastError and SetLastError don't match
usability
Is there a reason why `GetLastError` returns `WIN32_ERROR` but `SetLastError` expects `uint`?
True
GetLastError and SetLastError don't match - Is there a reason why `GetLastError` returns `WIN32_ERROR` but `SetLastError` expects `uint`?
non_process
getlasterror and setlasterror don t match is there a reason why getlasterror returns error but setlasterror expects uint
0
10,656
13,451,548,910
IssuesEvent
2020-09-08 20:26:55
input-output-hk/fm-ouroboros
https://api.github.com/repos/input-output-hk/fm-ouroboros
closed
Update Haskell software to use newer tools
language: haskell topic: examples topic: process calculus topic: utilities type: improvement
Our goal is to update `Makefile` and all `*.cabal` files to work optimally with GHC 8.10.2 and cabal-install 3.2.0.0.
1.0
Update Haskell software to use newer tools - Our goal is to update `Makefile` and all `*.cabal` files to work optimally with GHC 8.10.2 and cabal-install 3.2.0.0.
process
update haskell software to use newer tools our goal is to update makefile and all cabal files to work optimally with ghc  and cabal install 
1
17,015
11,576,181,252
IssuesEvent
2020-02-21 11:20:40
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
closed
When the time of a node changes to earlier, the pod may be "CreateContainerError" and can't recover itself
kind/bug lifecycle/rotten sig/apps sig/cluster-lifecycle sig/node sig/usability
<!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: I have a node "nodeA", I will run a pod "podA" on "nodeA", and "podA" has a container "containerA". The time now is "timeA". 1. I run "podA" on a "nodeA" at "timeA", so kubelet create a container named "containerA_0", we can use command "docker inspect xxxxxxx" to see the "Created" field of "containerA_0" is "timeA". 2. The time of "nodeA" is changed to "timeB" for some reason. "timeB" is "timeA - 1h". 3. "containerA_0" encounters some errors and become "exited". Kubelet find that and create a container "containerA_1". We can use command "docker inspect xxxxxxxxxx" to see the "Created" fields of "containerA_1" is "timeB". 4. In this condition, when kubelet check the containerStatus of containerA, kubelet will see the "exited" "containerA_0" as the newest continerA , and kubelet will try to create containerA_1 again and again but failed with error "Conflict ... is already in use by container xxxxxxx". The reason is: In `func "getPodContainerStatuses" (pkg/kubelet/kuberuntime/kuberuntime_container.go)`, the containers of podA is sorted by the "Created" field. ```go } } statuses[i] = cStatus } sort.Sort(containerStatusByCreated(statuses)) return statuses, nil } ``` And `func "computePodActions"(pkg/kubelet/kuberuntime/kuberuntime_manager.go) --> "FindContainerStatusByName"(pkg/kubelet/container/runtime.go)` only pick the first "containerA" of podA's sorted containers, which is "containerA_0". ```go // FindContainerStatusByName returns container status in the pod status with the given name. // When there are multiple containers' statuses with the same name, the first match will be returned. func (podStatus *PodStatus) FindContainerStatusByName(containerName string) *ContainerStatus { for _, containerStatus := range podStatus.ContainerStatuses { if containerStatus.Name == containerName { return containerStatus } } return nil } ``` Because: The "Created" field of "containerA_0" is "timeA", The "Created" field of "containerA_1" is "timeB", "timeB" is "timeA - 1h", so "timeB" < "timeA". So, kubelet thinks containerA_0 is the newest containerA. And because containerA_0 is "exited", in order, kubelet will create "containerA_1". But "containerA_1" is already exist, so it will fail with error "Conflict ... is already in use by container xxxxxxx". `log:` ``` E0924 09:07:24.225646 30207 remote_runtime.go:200] CreateContainer in sandbox "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" from runtime service failed: rpc error: code = Unknown desc = Error response from daemon: Conflict. The name "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" is already in use by container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx. You have to remove (or rename) that container to be able to reuse that name. E0924 09:07:24.225740 30207 kuberuntime_manager.go:779] container start failed: CreateContainerError: Error response from daemon: Conflict. The name "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" is already in use by container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx. You have to remove (or rename) that container to be able to reuse that name. E0924 09:07:24.225772 30207 pod_workers.go:190] Error syncing pod xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)"), skipping: failed to "StartContainer" for "composer" with CreateContainerError: "Error response from daemon: Conflict. The name "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" is already in use by container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx. You have to remove (or rename) that container to be able to reuse that name." ``` 5. After failing with the error "Conflict ... is already in use by container xxxxxxx", kubelet will try to remove the existed "containerA_1" to solve the conflict, but "containerA_1" is running, so remove failed. `func "CreateContainer"(pkg/kubelet/dockershim/docker_container.go) --> "recoverFromCreationConflictIfNeeded" (pkg/kubelet/dockershim/helpers.go)` ```go // See #33189. If the previous attempt to create a sandbox container name FOO // failed due to "device or resource busy", it is possible that docker did // not clean up properly and has inconsistent internal state. Docker would // not report the existence of FOO, but would complain if user wants to // create a new container named FOO. To work around this, we parse the error // message to identify failure caused by naming conflict, and try to remove // the old container FOO. // See #40443. Sometimes even removal may fail with "no such container" error. // In that case we have to create the container with a randomized name. // TODO(random-liu): Remove this work around after docker 1.11 is deprecated. // TODO(#33189): Monitor the tests to see if the fix is sufficient. func recoverFromCreationConflictIfNeeded(client libdocker.Interface, createConfig dockertypes.ContainerCreateConfig, err error) (*dockercontainer.ContainerCreateCreatedBody, error) { matches := conflictRE.FindStringSubmatch(err.Error()) if len(matches) != 2 { return nil, err } id := matches[1] klog.Warningf("Unable to create pod sandbox due to conflict. Attempting to remove sandbox %q", id) if rmErr := client.RemoveContainer(id, dockertypes.ContainerRemoveOptions{RemoveVolumes: true}); rmErr == nil { klog.V(2).Infof("Successfully removed conflicting container %q", id) return nil, err } else { klog.Errorf("Failed to remove the conflicting container %q: %v", id, rmErr) // Return if the error is not container not found error. if !libdocker.IsContainerNotFoundError(rmErr) { return nil, err } } // randomize the name to avoid conflict. createConfig.Name = randomizeName(createConfig.Name) klog.V(2).Infof("Create the container with randomized name %s", createConfig.Name) return client.CreateContainer(createConfig) } ``` `log:` ``` W0924 09:07:39.224347 30207 helpers.go:286] Unable to create pod sandbox due to conflict. Attempting to remove sandbox "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" E0924 09:07:39.225159 30207 helpers.go:291] Failed to remove the conflicting container "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx": Error response from daemon: You cannot remove a running container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx. Stop the container before attempting removal or use -f ``` 6. In the problem, the pod have containStatus "CreateContainerError". Even if the time of nodeA returns back to normal later, the problem can't recover itself. I must execute "docker rm -f <containerA_1>" or "docker rm <containerA_0>", then it will recover. **What you expected to happen**: After the time of nodeA returns back to normal, the problem can recover itself. **How to reproduce it (as minimally and precisely as possible)**: 1. Run a pod with one container on a node. 2. Use command "date -s xxxxxxx" to change the time of the node to one hour early. 3. Use command "docker kill xxxxxxx" to kill the container of the pod. 4. The problem is now reproduced, and even if we change the time of the node back to nomal, the problem can't recover itself. **Anything else we need to know?**: **Environment**: - Kubernetes version (use `kubectl version`): kubelet version is 1.15. - Cloud provider or hardware configuration: - OS (e.g: `cat /etc/os-release`): - Kernel (e.g. `uname -a`): - Install tools: - Network plugin and version (if this is a network-related bug): - Others:
True
When the time of a node changes to earlier, the pod may be "CreateContainerError" and can't recover itself - <!-- Please use this template while reporting a bug and provide as much info as possible. Not doing so may result in your bug not being addressed in a timely manner. Thanks! If the matter is security related, please disclose it privately via https://kubernetes.io/security/ --> **What happened**: I have a node "nodeA", I will run a pod "podA" on "nodeA", and "podA" has a container "containerA". The time now is "timeA". 1. I run "podA" on a "nodeA" at "timeA", so kubelet create a container named "containerA_0", we can use command "docker inspect xxxxxxx" to see the "Created" field of "containerA_0" is "timeA". 2. The time of "nodeA" is changed to "timeB" for some reason. "timeB" is "timeA - 1h". 3. "containerA_0" encounters some errors and become "exited". Kubelet find that and create a container "containerA_1". We can use command "docker inspect xxxxxxxxxx" to see the "Created" fields of "containerA_1" is "timeB". 4. In this condition, when kubelet check the containerStatus of containerA, kubelet will see the "exited" "containerA_0" as the newest continerA , and kubelet will try to create containerA_1 again and again but failed with error "Conflict ... is already in use by container xxxxxxx". The reason is: In `func "getPodContainerStatuses" (pkg/kubelet/kuberuntime/kuberuntime_container.go)`, the containers of podA is sorted by the "Created" field. ```go } } statuses[i] = cStatus } sort.Sort(containerStatusByCreated(statuses)) return statuses, nil } ``` And `func "computePodActions"(pkg/kubelet/kuberuntime/kuberuntime_manager.go) --> "FindContainerStatusByName"(pkg/kubelet/container/runtime.go)` only pick the first "containerA" of podA's sorted containers, which is "containerA_0". ```go // FindContainerStatusByName returns container status in the pod status with the given name. // When there are multiple containers' statuses with the same name, the first match will be returned. func (podStatus *PodStatus) FindContainerStatusByName(containerName string) *ContainerStatus { for _, containerStatus := range podStatus.ContainerStatuses { if containerStatus.Name == containerName { return containerStatus } } return nil } ``` Because: The "Created" field of "containerA_0" is "timeA", The "Created" field of "containerA_1" is "timeB", "timeB" is "timeA - 1h", so "timeB" < "timeA". So, kubelet thinks containerA_0 is the newest containerA. And because containerA_0 is "exited", in order, kubelet will create "containerA_1". But "containerA_1" is already exist, so it will fail with error "Conflict ... is already in use by container xxxxxxx". `log:` ``` E0924 09:07:24.225646 30207 remote_runtime.go:200] CreateContainer in sandbox "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" from runtime service failed: rpc error: code = Unknown desc = Error response from daemon: Conflict. The name "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" is already in use by container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx. You have to remove (or rename) that container to be able to reuse that name. E0924 09:07:24.225740 30207 kuberuntime_manager.go:779] container start failed: CreateContainerError: Error response from daemon: Conflict. The name "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" is already in use by container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx. You have to remove (or rename) that container to be able to reuse that name. E0924 09:07:24.225772 30207 pod_workers.go:190] Error syncing pod xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx ("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx(xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx)"), skipping: failed to "StartContainer" for "composer" with CreateContainerError: "Error response from daemon: Conflict. The name "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" is already in use by container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx. You have to remove (or rename) that container to be able to reuse that name." ``` 5. After failing with the error "Conflict ... is already in use by container xxxxxxx", kubelet will try to remove the existed "containerA_1" to solve the conflict, but "containerA_1" is running, so remove failed. `func "CreateContainer"(pkg/kubelet/dockershim/docker_container.go) --> "recoverFromCreationConflictIfNeeded" (pkg/kubelet/dockershim/helpers.go)` ```go // See #33189. If the previous attempt to create a sandbox container name FOO // failed due to "device or resource busy", it is possible that docker did // not clean up properly and has inconsistent internal state. Docker would // not report the existence of FOO, but would complain if user wants to // create a new container named FOO. To work around this, we parse the error // message to identify failure caused by naming conflict, and try to remove // the old container FOO. // See #40443. Sometimes even removal may fail with "no such container" error. // In that case we have to create the container with a randomized name. // TODO(random-liu): Remove this work around after docker 1.11 is deprecated. // TODO(#33189): Monitor the tests to see if the fix is sufficient. func recoverFromCreationConflictIfNeeded(client libdocker.Interface, createConfig dockertypes.ContainerCreateConfig, err error) (*dockercontainer.ContainerCreateCreatedBody, error) { matches := conflictRE.FindStringSubmatch(err.Error()) if len(matches) != 2 { return nil, err } id := matches[1] klog.Warningf("Unable to create pod sandbox due to conflict. Attempting to remove sandbox %q", id) if rmErr := client.RemoveContainer(id, dockertypes.ContainerRemoveOptions{RemoveVolumes: true}); rmErr == nil { klog.V(2).Infof("Successfully removed conflicting container %q", id) return nil, err } else { klog.Errorf("Failed to remove the conflicting container %q: %v", id, rmErr) // Return if the error is not container not found error. if !libdocker.IsContainerNotFoundError(rmErr) { return nil, err } } // randomize the name to avoid conflict. createConfig.Name = randomizeName(createConfig.Name) klog.V(2).Infof("Create the container with randomized name %s", createConfig.Name) return client.CreateContainer(createConfig) } ``` `log:` ``` W0924 09:07:39.224347 30207 helpers.go:286] Unable to create pod sandbox due to conflict. Attempting to remove sandbox "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" E0924 09:07:39.225159 30207 helpers.go:291] Failed to remove the conflicting container "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx": Error response from daemon: You cannot remove a running container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx. Stop the container before attempting removal or use -f ``` 6. In the problem, the pod have containStatus "CreateContainerError". Even if the time of nodeA returns back to normal later, the problem can't recover itself. I must execute "docker rm -f <containerA_1>" or "docker rm <containerA_0>", then it will recover. **What you expected to happen**: After the time of nodeA returns back to normal, the problem can recover itself. **How to reproduce it (as minimally and precisely as possible)**: 1. Run a pod with one container on a node. 2. Use command "date -s xxxxxxx" to change the time of the node to one hour early. 3. Use command "docker kill xxxxxxx" to kill the container of the pod. 4. The problem is now reproduced, and even if we change the time of the node back to nomal, the problem can't recover itself. **Anything else we need to know?**: **Environment**: - Kubernetes version (use `kubectl version`): kubelet version is 1.15. - Cloud provider or hardware configuration: - OS (e.g: `cat /etc/os-release`): - Kernel (e.g. `uname -a`): - Install tools: - Network plugin and version (if this is a network-related bug): - Others:
non_process
when the time of a node changes to earlier the pod may be createcontainererror and can t recover itself please use this template while reporting a bug and provide as much info as possible not doing so may result in your bug not being addressed in a timely manner thanks if the matter is security related please disclose it privately via what happened i have a node nodea i will run a pod poda on nodea and poda has a container containera the time now is timea i run poda on a nodea at timea so kubelet create a container named containera we can use command docker inspect xxxxxxx to see the created field of containera is timea the time of nodea is changed to timeb for some reason timeb is timea containera encounters some errors and become exited kubelet find that and create a container containera we can use command docker inspect xxxxxxxxxx to see the created fields of containera is timeb in this condition when kubelet check the containerstatus of containera kubelet will see the exited containera as the newest continera and kubelet will try to create containera again and again but failed with error conflict is already in use by container xxxxxxx the reason is in func getpodcontainerstatuses pkg kubelet kuberuntime kuberuntime container go the containers of poda is sorted by the created field go statuses cstatus sort sort containerstatusbycreated statuses return statuses nil and func computepodactions pkg kubelet kuberuntime kuberuntime manager go findcontainerstatusbyname pkg kubelet container runtime go only pick the first containera of poda s sorted containers which is containera go findcontainerstatusbyname returns container status in the pod status with the given name when there are multiple containers statuses with the same name the first match will be returned func podstatus podstatus findcontainerstatusbyname containername string containerstatus for containerstatus range podstatus containerstatuses if containerstatus name containername return containerstatus return nil because the created field of containera is timea the created field of containera is timeb timeb is timea so timeb timea so kubelet thinks containera is the newest containera and because containera is exited in order kubelet will create containera but containera is already exist so it will fail with error conflict is already in use by container xxxxxxx log remote runtime go createcontainer in sandbox xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx from runtime service failed rpc error code unknown desc error response from daemon conflict the name xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx is already in use by container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx you have to remove or rename that container to be able to reuse that name kuberuntime manager go container start failed createcontainererror error response from daemon conflict the name xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx is already in use by container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx you have to remove or rename that container to be able to reuse that name pod workers go error syncing pod xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx skipping failed to startcontainer for composer with createcontainererror error response from daemon conflict the name xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx is already in use by container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx you have to remove or rename that container to be able to reuse that name after failing with the error conflict is already in use by container xxxxxxx kubelet will try to remove the existed containera to solve the conflict but containera is running so remove failed func createcontainer pkg kubelet dockershim docker container go recoverfromcreationconflictifneeded pkg kubelet dockershim helpers go go see if the previous attempt to create a sandbox container name foo failed due to device or resource busy it is possible that docker did not clean up properly and has inconsistent internal state docker would not report the existence of foo but would complain if user wants to create a new container named foo to work around this we parse the error message to identify failure caused by naming conflict and try to remove the old container foo see sometimes even removal may fail with no such container error in that case we have to create the container with a randomized name todo random liu remove this work around after docker is deprecated todo monitor the tests to see if the fix is sufficient func recoverfromcreationconflictifneeded client libdocker interface createconfig dockertypes containercreateconfig err error dockercontainer containercreatecreatedbody error matches conflictre findstringsubmatch err error if len matches return nil err id matches klog warningf unable to create pod sandbox due to conflict attempting to remove sandbox q id if rmerr client removecontainer id dockertypes containerremoveoptions removevolumes true rmerr nil klog v infof successfully removed conflicting container q id return nil err else klog errorf failed to remove the conflicting container q v id rmerr return if the error is not container not found error if libdocker iscontainernotfounderror rmerr return nil err randomize the name to avoid conflict createconfig name randomizename createconfig name klog v infof create the container with randomized name s createconfig name return client createcontainer createconfig log helpers go unable to create pod sandbox due to conflict attempting to remove sandbox xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx helpers go failed to remove the conflicting container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx error response from daemon you cannot remove a running container xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx stop the container before attempting removal or use f in the problem the pod have containstatus createcontainererror even if the time of nodea returns back to normal later the problem can t recover itself i must execute docker rm f or docker rm then it will recover what you expected to happen after the time of nodea returns back to normal the problem can recover itself how to reproduce it as minimally and precisely as possible run a pod with one container on a node use command date s xxxxxxx to change the time of the node to one hour early use command docker kill xxxxxxx to kill the container of the pod the problem is now reproduced and even if we change the time of the node back to nomal the problem can t recover itself anything else we need to know environment kubernetes version use kubectl version kubelet version is cloud provider or hardware configuration os e g cat etc os release kernel e g uname a install tools network plugin and version if this is a network related bug others
0
105,043
16,623,636,164
IssuesEvent
2021-06-03 06:46:26
Thanraj/OpenSSL_1.0.1
https://api.github.com/repos/Thanraj/OpenSSL_1.0.1
opened
CVE-2016-0705 (High) detected in opensslOpenSSL_1_0_1
security vulnerability
## CVE-2016-0705 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>opensslOpenSSL_1_0_1</b></p></summary> <p> <p>Akamai fork of openssl master.</p> <p>Library home page: <a href=https://github.com/akamai/openssl.git>https://github.com/akamai/openssl.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/Thanraj/OpenSSL_1.0.1/commit/f1fe40536a9d3c961cc1415e9dd6d4fd002b61dc">f1fe40536a9d3c961cc1415e9dd6d4fd002b61dc</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>OpenSSL_1.0.1/crypto/dsa/dsa_ameth.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>OpenSSL_1.0.1/crypto/dsa/dsa_ameth.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Double free vulnerability in the dsa_priv_decode function in crypto/dsa/dsa_ameth.c in OpenSSL 1.0.1 before 1.0.1s and 1.0.2 before 1.0.2g allows remote attackers to cause a denial of service (memory corruption) or possibly have unspecified other impact via a malformed DSA private key. <p>Publish Date: 2016-03-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-0705>CVE-2016-0705</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2016-0705">https://nvd.nist.gov/vuln/detail/CVE-2016-0705</a></p> <p>Release Date: 2016-03-03</p> <p>Fix Resolution: 1.0.1s,1.0.2g</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2016-0705 (High) detected in opensslOpenSSL_1_0_1 - ## CVE-2016-0705 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>opensslOpenSSL_1_0_1</b></p></summary> <p> <p>Akamai fork of openssl master.</p> <p>Library home page: <a href=https://github.com/akamai/openssl.git>https://github.com/akamai/openssl.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/Thanraj/OpenSSL_1.0.1/commit/f1fe40536a9d3c961cc1415e9dd6d4fd002b61dc">f1fe40536a9d3c961cc1415e9dd6d4fd002b61dc</a></p> <p>Found in base branch: <b>master</b></p></p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>OpenSSL_1.0.1/crypto/dsa/dsa_ameth.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>OpenSSL_1.0.1/crypto/dsa/dsa_ameth.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> Double free vulnerability in the dsa_priv_decode function in crypto/dsa/dsa_ameth.c in OpenSSL 1.0.1 before 1.0.1s and 1.0.2 before 1.0.2g allows remote attackers to cause a denial of service (memory corruption) or possibly have unspecified other impact via a malformed DSA private key. <p>Publish Date: 2016-03-03 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2016-0705>CVE-2016-0705</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>9.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://nvd.nist.gov/vuln/detail/CVE-2016-0705">https://nvd.nist.gov/vuln/detail/CVE-2016-0705</a></p> <p>Release Date: 2016-03-03</p> <p>Fix Resolution: 1.0.1s,1.0.2g</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_process
cve high detected in opensslopenssl cve high severity vulnerability vulnerable library opensslopenssl akamai fork of openssl master library home page a href found in head commit a href found in base branch master vulnerable source files openssl crypto dsa dsa ameth c openssl crypto dsa dsa ameth c vulnerability details double free vulnerability in the dsa priv decode function in crypto dsa dsa ameth c in openssl before and before allows remote attackers to cause a denial of service memory corruption or possibly have unspecified other impact via a malformed dsa private key publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
639,456
20,754,469,699
IssuesEvent
2022-03-15 10:50:25
netdata/netdata
https://api.github.com/repos/netdata/netdata
closed
Remove backends subsystem
feature request area/exporting priority/high Epic data-collection-mteam
##### Feature idea summary The last step of releasing a new exporting engine. After a transition period has ended: - [x] Announce the removal. - [x] Remove backends folder and `health.d/backend.conf` - [x] As far as we agreed to use new names for connectors as stated in #6769 (Terminology section of the design document), all related directories, files, functions, and variables should be renamed.
1.0
Remove backends subsystem - ##### Feature idea summary The last step of releasing a new exporting engine. After a transition period has ended: - [x] Announce the removal. - [x] Remove backends folder and `health.d/backend.conf` - [x] As far as we agreed to use new names for connectors as stated in #6769 (Terminology section of the design document), all related directories, files, functions, and variables should be renamed.
non_process
remove backends subsystem feature idea summary the last step of releasing a new exporting engine after a transition period has ended announce the removal remove backends folder and health d backend conf as far as we agreed to use new names for connectors as stated in terminology section of the design document all related directories files functions and variables should be renamed
0
247,030
7,896,123,025
IssuesEvent
2018-06-29 07:24:18
aowen87/BAR
https://api.github.com/repos/aowen87/BAR
closed
Crash w/ silo UCD polygons when mixing tris, quads, and arb polygons
Likelihood: 2 - Rare OS: All Priority: Normal Severity: 4 - Crash / Wrong Results Support Group: Any bug version: trunk
Reported by Dan Laney. -----------------------REDMINE MIGRATION----------------------- This ticket was migrated from Redmine. The following information could not be accurately captured in the new ticket: Original author: Cyrus Harrison Original creation: 10/20/2011 03:56 pm Original update: 10/20/2011 04:11 pm Ticket number: 877
1.0
Crash w/ silo UCD polygons when mixing tris, quads, and arb polygons - Reported by Dan Laney. -----------------------REDMINE MIGRATION----------------------- This ticket was migrated from Redmine. The following information could not be accurately captured in the new ticket: Original author: Cyrus Harrison Original creation: 10/20/2011 03:56 pm Original update: 10/20/2011 04:11 pm Ticket number: 877
non_process
crash w silo ucd polygons when mixing tris quads and arb polygons reported by dan laney redmine migration this ticket was migrated from redmine the following information could not be accurately captured in the new ticket original author cyrus harrison original creation pm original update pm ticket number
0
208,753
7,158,110,482
IssuesEvent
2018-01-26 22:43:29
webcompat/web-bugs
https://api.github.com/repos/webcompat/web-bugs
closed
www.youtube.com - site is not usable
browser-firefox priority-critical type-stylo
<!-- @browser: Chrome 59.0.3071 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.109 Safari/537.36 --> <!-- @reported_with: desktop-reporter --> <!-- @extra_labels: type-stylo --> **URL**: https://www.youtube.com/ **Browser / Version**: Chrome 59.0.3071 **Operating System**: Windows 10 **Tested Another Browser**: Yes **Problem type**: Site is not usable **Description**: does not load besides logo **Steps to Reproduce**: layout.css.servo.enabled: true [![Screenshot Description](https://webcompat.com/uploads/2018/1/fb3129dc-5ba5-4d07-a605-42b3eb155373-thumb.jpg)](https://webcompat.com/uploads/2018/1/fb3129dc-5ba5-4d07-a605-42b3eb155373.jpg) _From [webcompat.com](https://webcompat.com/) with ❤️_
1.0
www.youtube.com - site is not usable - <!-- @browser: Chrome 59.0.3071 --> <!-- @ua_header: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/59.0.3071.109 Safari/537.36 --> <!-- @reported_with: desktop-reporter --> <!-- @extra_labels: type-stylo --> **URL**: https://www.youtube.com/ **Browser / Version**: Chrome 59.0.3071 **Operating System**: Windows 10 **Tested Another Browser**: Yes **Problem type**: Site is not usable **Description**: does not load besides logo **Steps to Reproduce**: layout.css.servo.enabled: true [![Screenshot Description](https://webcompat.com/uploads/2018/1/fb3129dc-5ba5-4d07-a605-42b3eb155373-thumb.jpg)](https://webcompat.com/uploads/2018/1/fb3129dc-5ba5-4d07-a605-42b3eb155373.jpg) _From [webcompat.com](https://webcompat.com/) with ❤️_
non_process
site is not usable url browser version chrome operating system windows tested another browser yes problem type site is not usable description does not load besides logo steps to reproduce layout css servo enabled true from with ❤️
0
22,287
30,838,226,264
IssuesEvent
2023-08-02 08:53:40
MicrosoftDocs/azure-docs
https://api.github.com/repos/MicrosoftDocs/azure-docs
closed
Please clearly mention that Get-AzKeyVaultSecret is used when only need to access to Key Vault or change the sample command in general context.
automation/svc triaged cxp doc-enhancement process-automation/subsvc Pri1
[Enter feedback here] Regarding below doc "Using system-assigned managed identity in Azure PowerShell", https://learn.microsoft.com/en-US/azure/automation/enable-managed-identity-for-automation#using-system-assigned-managed-identity-in-azure-powershell ![image](https://github.com/MicrosoftDocs/azure-docs/assets/70689581/3f3b49de-1033-4e2f-8e63-1ab1e6381440) The description and command is confusing to understand. The title of this doc is "Using system-assigned managed identity in Azure PowerShell". But I can see there is "Get-AzKeyVaultSecret" which is used to access to Key Vault. As the Managed ID does not require Az.KeyVault (Get-AzKeyVaultSecret), the sample command should also mention that Az.KeyVault (Get-AzKeyVaultSecret) is not necessary option. Hence, please consider to change the title as one of below options. Option A. **Title: "Using system-assigned managed identity to access to Key Vault in Azure PowerShell".** ```powershell Write-Output "Connecting to azure via Connect-AzAccount -Identity" Connect-AzAccount -Identity Write-Output "Successfully connected with Automation account's Managed Identity" Write-Output "Trying to fetch value from key vault using MI. Make sure you have given correct access to Managed Identity" $secret = Get-AzKeyVaultSecret -VaultName '<KVname>' -Name '<KeyName>' $ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($secret.SecretValue) try { $secretValueText = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr) Write-Output $secretValueText } finally { [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr) } ``` Option B. **Title: "Using system-assigned managed identity in Azure PowerShell".** ```powershell Write-Output "Connecting to azure via Connect-AzAccount -Identity" Connect-AzAccount -Identity Write-Output "Successfully connected with Automation account's Managed Identity" ``` --- #### Document Details ⚠ *Do not edit this section. It is required for learn.microsoft.com ➟ GitHub issue linking.* * ID: d9ce2612-b600-3fca-3315-a7836ef91c96 * Version Independent ID: 78766eed-c3c6-ce60-7620-17b99f3d9d5e * Content: [Using a system-assigned managed identity for an Azure Automation account](https://learn.microsoft.com/en-US/azure/automation/enable-managed-identity-for-automation#using-system-assigned-managed-identity-in-azure-powershell) * Content Source: [articles/automation/enable-managed-identity-for-automation.md](https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/automation/enable-managed-identity-for-automation.md) * Service: **automation** * Sub-service: **process-automation** * GitHub Login: @SnehaSudhirG * Microsoft Alias: **sudhirsneha**
1.0
Please clearly mention that Get-AzKeyVaultSecret is used when only need to access to Key Vault or change the sample command in general context. - [Enter feedback here] Regarding below doc "Using system-assigned managed identity in Azure PowerShell", https://learn.microsoft.com/en-US/azure/automation/enable-managed-identity-for-automation#using-system-assigned-managed-identity-in-azure-powershell ![image](https://github.com/MicrosoftDocs/azure-docs/assets/70689581/3f3b49de-1033-4e2f-8e63-1ab1e6381440) The description and command is confusing to understand. The title of this doc is "Using system-assigned managed identity in Azure PowerShell". But I can see there is "Get-AzKeyVaultSecret" which is used to access to Key Vault. As the Managed ID does not require Az.KeyVault (Get-AzKeyVaultSecret), the sample command should also mention that Az.KeyVault (Get-AzKeyVaultSecret) is not necessary option. Hence, please consider to change the title as one of below options. Option A. **Title: "Using system-assigned managed identity to access to Key Vault in Azure PowerShell".** ```powershell Write-Output "Connecting to azure via Connect-AzAccount -Identity" Connect-AzAccount -Identity Write-Output "Successfully connected with Automation account's Managed Identity" Write-Output "Trying to fetch value from key vault using MI. Make sure you have given correct access to Managed Identity" $secret = Get-AzKeyVaultSecret -VaultName '<KVname>' -Name '<KeyName>' $ssPtr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($secret.SecretValue) try { $secretValueText = [System.Runtime.InteropServices.Marshal]::PtrToStringBSTR($ssPtr) Write-Output $secretValueText } finally { [System.Runtime.InteropServices.Marshal]::ZeroFreeBSTR($ssPtr) } ``` Option B. **Title: "Using system-assigned managed identity in Azure PowerShell".** ```powershell Write-Output "Connecting to azure via Connect-AzAccount -Identity" Connect-AzAccount -Identity Write-Output "Successfully connected with Automation account's Managed Identity" ``` --- #### Document Details ⚠ *Do not edit this section. It is required for learn.microsoft.com ➟ GitHub issue linking.* * ID: d9ce2612-b600-3fca-3315-a7836ef91c96 * Version Independent ID: 78766eed-c3c6-ce60-7620-17b99f3d9d5e * Content: [Using a system-assigned managed identity for an Azure Automation account](https://learn.microsoft.com/en-US/azure/automation/enable-managed-identity-for-automation#using-system-assigned-managed-identity-in-azure-powershell) * Content Source: [articles/automation/enable-managed-identity-for-automation.md](https://github.com/MicrosoftDocs/azure-docs/blob/main/articles/automation/enable-managed-identity-for-automation.md) * Service: **automation** * Sub-service: **process-automation** * GitHub Login: @SnehaSudhirG * Microsoft Alias: **sudhirsneha**
process
please clearly mention that get azkeyvaultsecret is used when only need to access to key vault or change the sample command in general context regarding below doc using system assigned managed identity in azure powershell the description and command is confusing to understand the title of this doc is using system assigned managed identity in azure powershell but i can see there is get azkeyvaultsecret which is used to access to key vault as the managed id does not require az keyvault get azkeyvaultsecret the sample command should also mention that az keyvault get azkeyvaultsecret is not necessary option hence please consider to change the title as one of below options option a title using system assigned managed identity to access to key vault in azure powershell powershell write output connecting to azure via connect azaccount identity connect azaccount identity write output successfully connected with automation account s managed identity write output trying to fetch value from key vault using mi make sure you have given correct access to managed identity secret get azkeyvaultsecret vaultname name ssptr securestringtobstr secret secretvalue try secretvaluetext ptrtostringbstr ssptr write output secretvaluetext finally zerofreebstr ssptr option b title using system assigned managed identity in azure powershell powershell write output connecting to azure via connect azaccount identity connect azaccount identity write output successfully connected with automation account s managed identity document details ⚠ do not edit this section it is required for learn microsoft com ➟ github issue linking id version independent id content content source service automation sub service process automation github login snehasudhirg microsoft alias sudhirsneha
1
9,898
8,228,992,907
IssuesEvent
2018-09-07 07:55:15
Microsoft/Recognizers-Text
https://api.github.com/repos/Microsoft/Recognizers-Text
closed
[Infra] Make sure test specs check for entity boundaries in Numbers
infrastructure
**Is your feature request related to a problem? Please describe.** Test specs for number models are not currently validating entity boundaries. **Describe the solution you'd like** Tests should make sure boundaries and other properties are checked to capture mistakes or regressions. **Additional context** Similar to #813.
1.0
[Infra] Make sure test specs check for entity boundaries in Numbers - **Is your feature request related to a problem? Please describe.** Test specs for number models are not currently validating entity boundaries. **Describe the solution you'd like** Tests should make sure boundaries and other properties are checked to capture mistakes or regressions. **Additional context** Similar to #813.
non_process
make sure test specs check for entity boundaries in numbers is your feature request related to a problem please describe test specs for number models are not currently validating entity boundaries describe the solution you d like tests should make sure boundaries and other properties are checked to capture mistakes or regressions additional context similar to
0
61,009
14,939,104,421
IssuesEvent
2021-01-25 16:32:52
EIDSS/EIDSS7
https://api.github.com/repos/EIDSS/EIDSS7
closed
HPS03-Epidemiological inconsistencies & recommendations
Build 98.0 enhancement
**Summary** All steps in script HPS03 passed; however, I would like to note the following: 1) The case was classified as a "confirmed case"though there were no laboratory tests documented in their case report form. Without laboratory confirmation, a case cannot be classified as "confirmed" 2)Recommendation #1: In Step #19 it asks the user if the "location of exposure is known?". If "no"/"unknown" is selected then there is no option to populate likely/possible exposures; this option is crucial. For example, for a foodborne illness, a person may have multiple exposures and may not know the exact source but it's still worth noting so the epidemiologist investigating the case is aware of potential exposure locations and can possibly identify a source based on other persons reporting similar illnesses with the same exposure location(s). 3) Recommendation #2: In Step #21 there is a question that asks "Is the case aware of any other persons having a similar disease". Recommend that this says "similar disease/symptoms". The person may not be aware of another person's official diagnosis but is more likely to know if another person is experiencing similar symptoms. **To Reproduce** Steps to reproduce the behavior: 1. Log in as 2. Go to 3. Click on **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Additional details:** - Build: - Script title (enter ad hoc if not script-based): HPS03 **Issue severity (Optional)** Severity (critical, major, minor, low): Major **Additional context** Add any other context about the problem here.
1.0
HPS03-Epidemiological inconsistencies & recommendations - **Summary** All steps in script HPS03 passed; however, I would like to note the following: 1) The case was classified as a "confirmed case"though there were no laboratory tests documented in their case report form. Without laboratory confirmation, a case cannot be classified as "confirmed" 2)Recommendation #1: In Step #19 it asks the user if the "location of exposure is known?". If "no"/"unknown" is selected then there is no option to populate likely/possible exposures; this option is crucial. For example, for a foodborne illness, a person may have multiple exposures and may not know the exact source but it's still worth noting so the epidemiologist investigating the case is aware of potential exposure locations and can possibly identify a source based on other persons reporting similar illnesses with the same exposure location(s). 3) Recommendation #2: In Step #21 there is a question that asks "Is the case aware of any other persons having a similar disease". Recommend that this says "similar disease/symptoms". The person may not be aware of another person's official diagnosis but is more likely to know if another person is experiencing similar symptoms. **To Reproduce** Steps to reproduce the behavior: 1. Log in as 2. Go to 3. Click on **Expected behavior** A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. **Additional details:** - Build: - Script title (enter ad hoc if not script-based): HPS03 **Issue severity (Optional)** Severity (critical, major, minor, low): Major **Additional context** Add any other context about the problem here.
non_process
epidemiological inconsistencies recommendations summary all steps in script passed however i would like to note the following the case was classified as a confirmed case though there were no laboratory tests documented in their case report form without laboratory confirmation a case cannot be classified as confirmed recommendation in step it asks the user if the location of exposure is known if no unknown is selected then there is no option to populate likely possible exposures this option is crucial for example for a foodborne illness a person may have multiple exposures and may not know the exact source but it s still worth noting so the epidemiologist investigating the case is aware of potential exposure locations and can possibly identify a source based on other persons reporting similar illnesses with the same exposure location s recommendation in step there is a question that asks is the case aware of any other persons having a similar disease recommend that this says similar disease symptoms the person may not be aware of another person s official diagnosis but is more likely to know if another person is experiencing similar symptoms to reproduce steps to reproduce the behavior log in as go to click on expected behavior a clear and concise description of what you expected to happen screenshots if applicable add screenshots to help explain your problem additional details build script title enter ad hoc if not script based issue severity optional severity critical major minor low major additional context add any other context about the problem here
0
496,146
14,333,709,212
IssuesEvent
2020-11-27 06:31:39
wso2/product-apim
https://api.github.com/repos/wso2/product-apim
closed
[UX] Select one of the option by default - Create API view
2.1.0 Priority/Low
**Description:** Currently, the user needs to click on each section and perform another action before continue with the creation process. IMO we can remove the additional overheads by select one of the option ![add api](https://user-images.githubusercontent.com/6497326/37454940-e140ae34-2861-11e8-9a95-6fef2a06bf9e.png) **Affected Product Version:** 2.1.0 update 14 **OS, DB, other environment details and versions:** Ubuntu, chrome
1.0
[UX] Select one of the option by default - Create API view - **Description:** Currently, the user needs to click on each section and perform another action before continue with the creation process. IMO we can remove the additional overheads by select one of the option ![add api](https://user-images.githubusercontent.com/6497326/37454940-e140ae34-2861-11e8-9a95-6fef2a06bf9e.png) **Affected Product Version:** 2.1.0 update 14 **OS, DB, other environment details and versions:** Ubuntu, chrome
non_process
select one of the option by default create api view description currently the user needs to click on each section and perform another action before continue with the creation process imo we can remove the additional overheads by select one of the option affected product version update os db other environment details and versions ubuntu chrome
0
2,738
5,624,261,090
IssuesEvent
2017-04-04 16:38:19
brucemiller/LaTeXML
https://api.github.com/repos/brucemiller/LaTeXML
closed
Change to new MathJax CDN by April 30
installation postprocessing
We have a script using the mathjax CDN here: https://github.com/brucemiller/LaTeXML/blob/master/lib/LaTeXML/resources/javascript/LaTeXML-maybeMathjax.js#L6 As per their announcement, this needs to be migrated away by April 30: https://www.mathjax.org/cdn-shutting-down/
1.0
Change to new MathJax CDN by April 30 - We have a script using the mathjax CDN here: https://github.com/brucemiller/LaTeXML/blob/master/lib/LaTeXML/resources/javascript/LaTeXML-maybeMathjax.js#L6 As per their announcement, this needs to be migrated away by April 30: https://www.mathjax.org/cdn-shutting-down/
process
change to new mathjax cdn by april we have a script using the mathjax cdn here as per their announcement this needs to be migrated away by april
1
43,441
9,437,888,936
IssuesEvent
2019-04-13 18:39:22
maevanapcontact/food-manager-front
https://api.github.com/repos/maevanapcontact/food-manager-front
closed
Define the React structure
Static code
Plan how the components will be linked together. Define how to structure the main app. Organise the repository accordingly.
1.0
Define the React structure - Plan how the components will be linked together. Define how to structure the main app. Organise the repository accordingly.
non_process
define the react structure plan how the components will be linked together define how to structure the main app organise the repository accordingly
0
5,755
8,598,487,273
IssuesEvent
2018-11-15 21:57:04
HumanCellAtlas/dcp-community
https://api.github.com/repos/HumanCellAtlas/dcp-community
opened
Define standard guidance on pull request reviews for charters and RFCs
charter-process rfc-process
Noted on the **November 15** DCP PM call: _Tony raised the lack of clear etiquette with respect to the charter and RFC process with respect to how to [comment/reject/approve](https://help.github.com/articles/about-pull-request-reviews/) using the standard git tools. Trevor confirmed using these flags worked well for the Data Portal and Data Browser charters_ - [ ] Update charter process - [ ] Update RFC process
2.0
Define standard guidance on pull request reviews for charters and RFCs - Noted on the **November 15** DCP PM call: _Tony raised the lack of clear etiquette with respect to the charter and RFC process with respect to how to [comment/reject/approve](https://help.github.com/articles/about-pull-request-reviews/) using the standard git tools. Trevor confirmed using these flags worked well for the Data Portal and Data Browser charters_ - [ ] Update charter process - [ ] Update RFC process
process
define standard guidance on pull request reviews for charters and rfcs noted on the november dcp pm call tony raised the lack of clear etiquette with respect to the charter and rfc process with respect to how to using the standard git tools trevor confirmed using these flags worked well for the data portal and data browser charters update charter process update rfc process
1
27,061
21,074,655,076
IssuesEvent
2022-04-02 01:29:35
dotnet/aspnetcore
https://api.github.com/repos/dotnet/aspnetcore
opened
[Trimming] Consider using standard <IsTrimmable> property
area-infrastructure
Currently ASP.NET Core has a `<Trimmable>` property to indicate trimming. Custom MSBuild configuration then adds the `[AssemblyMetadata("IsTrimmable", "True")]` attribute to assemblies. Consider moving to the standard `<IsTrimmable>` property that is built into .NET 6+ - https://docs.microsoft.com/en-us/dotnet/core/deploying/trimming/prepare-libraries-for-trimming#set-istrimmable
1.0
[Trimming] Consider using standard <IsTrimmable> property - Currently ASP.NET Core has a `<Trimmable>` property to indicate trimming. Custom MSBuild configuration then adds the `[AssemblyMetadata("IsTrimmable", "True")]` attribute to assemblies. Consider moving to the standard `<IsTrimmable>` property that is built into .NET 6+ - https://docs.microsoft.com/en-us/dotnet/core/deploying/trimming/prepare-libraries-for-trimming#set-istrimmable
non_process
consider using standard property currently asp net core has a property to indicate trimming custom msbuild configuration then adds the attribute to assemblies consider moving to the standard property that is built into net
0
248,900
18,858,134,128
IssuesEvent
2021-11-12 09:25:22
fullfatwasabi/pe
https://api.github.com/repos/fullfatwasabi/pe
opened
DG diagram font too small
severity.VeryLow type.DocumentationBug
The diagram had the components stacked horizontally so the font size ended up being too small to be read. ![image.png](https://raw.githubusercontent.com/fullfatwasabi/pe/main/files/3fb0d139-9db8-4e24-8ca7-e08b700e68ac.png) Similarly, ![image.png](https://raw.githubusercontent.com/fullfatwasabi/pe/main/files/1bfb7ed9-f6b6-426e-a4af-c6fd08d40807.png) ![image.png](https://raw.githubusercontent.com/fullfatwasabi/pe/main/files/e498c2cd-37da-4bf1-a988-05543b0c3f01.png) etc <!--session: 1636702713013-bdede557-d288-46cc-a1b9-b0d0f07f1756--> <!--Version: Web v3.4.1-->
1.0
DG diagram font too small - The diagram had the components stacked horizontally so the font size ended up being too small to be read. ![image.png](https://raw.githubusercontent.com/fullfatwasabi/pe/main/files/3fb0d139-9db8-4e24-8ca7-e08b700e68ac.png) Similarly, ![image.png](https://raw.githubusercontent.com/fullfatwasabi/pe/main/files/1bfb7ed9-f6b6-426e-a4af-c6fd08d40807.png) ![image.png](https://raw.githubusercontent.com/fullfatwasabi/pe/main/files/e498c2cd-37da-4bf1-a988-05543b0c3f01.png) etc <!--session: 1636702713013-bdede557-d288-46cc-a1b9-b0d0f07f1756--> <!--Version: Web v3.4.1-->
non_process
dg diagram font too small the diagram had the components stacked horizontally so the font size ended up being too small to be read similarly etc
0
134,937
30,216,384,051
IssuesEvent
2023-07-05 15:51:37
h4sh5/pypi-auto-scanner
https://api.github.com/repos/h4sh5/pypi-auto-scanner
opened
wmagent 2.2.2rc4 has 1 GuardDog issues
guarddog code-execution
https://pypi.org/project/wmagent https://inspector.pypi.io/project/wmagent ```{ "dependency": "wmagent", "version": "2.2.2rc4", "result": { "issues": 1, "errors": {}, "results": { "code-execution": [ { "location": "wmagent-2.2.2rc4/setup.py:36", "code": " os.system ('rm -rfv ./dist ./src/python/*.egg-info')", "message": "This package is executing OS commands in the setup.py file" } ] }, "path": "/tmp/tmp4e3p5bj8/wmagent" } }```
1.0
wmagent 2.2.2rc4 has 1 GuardDog issues - https://pypi.org/project/wmagent https://inspector.pypi.io/project/wmagent ```{ "dependency": "wmagent", "version": "2.2.2rc4", "result": { "issues": 1, "errors": {}, "results": { "code-execution": [ { "location": "wmagent-2.2.2rc4/setup.py:36", "code": " os.system ('rm -rfv ./dist ./src/python/*.egg-info')", "message": "This package is executing OS commands in the setup.py file" } ] }, "path": "/tmp/tmp4e3p5bj8/wmagent" } }```
non_process
wmagent has guarddog issues dependency wmagent version result issues errors results code execution location wmagent setup py code os system rm rfv dist src python egg info message this package is executing os commands in the setup py file path tmp wmagent
0
4,570
7,396,020,356
IssuesEvent
2018-03-18 06:46:21
annewanghy/project-use-next
https://api.github.com/repos/annewanghy/project-use-next
reopened
Process
process
2018-2-3 ![image](https://user-images.githubusercontent.com/18532655/35773453-24d78020-098e-11e8-93f8-0d8909f93ce2.png) 2018-2-4/ morning ![image](https://user-images.githubusercontent.com/18532655/35773953-e87e8106-099b-11e8-8aac-b19ac8aced2a.png) - [x] collection url https://hello-next-hqpssvjajy.now.sh/collection/CL01 - [x] product detail page . https://hello-next-hqpssvjajy.now.sh/product/p0 - [x] recommand products below - [x] cart page, use props to pass data https://hello-next-hqpssvjajy.now.sh/cart ![image](https://user-images.githubusercontent.com/18532655/35776051-0d4dfd5c-09d0-11e8-9467-2211613c1b5c.png)
1.0
Process - 2018-2-3 ![image](https://user-images.githubusercontent.com/18532655/35773453-24d78020-098e-11e8-93f8-0d8909f93ce2.png) 2018-2-4/ morning ![image](https://user-images.githubusercontent.com/18532655/35773953-e87e8106-099b-11e8-8aac-b19ac8aced2a.png) - [x] collection url https://hello-next-hqpssvjajy.now.sh/collection/CL01 - [x] product detail page . https://hello-next-hqpssvjajy.now.sh/product/p0 - [x] recommand products below - [x] cart page, use props to pass data https://hello-next-hqpssvjajy.now.sh/cart ![image](https://user-images.githubusercontent.com/18532655/35776051-0d4dfd5c-09d0-11e8-9467-2211613c1b5c.png)
process
process morning collection url product detail page recommand products below cart page use props to pass data
1
9,433
12,423,121,041
IssuesEvent
2020-05-24 03:12:27
catleeball/tmnt_wikipedia_bot
https://api.github.com/repos/catleeball/tmnt_wikipedia_bot
closed
Comma handling
text processing
Four-word titles ending in a two-word phrase after a comma, the last two words should sometimes both be in the subtitle. Hard to say exactly when.
1.0
Comma handling - Four-word titles ending in a two-word phrase after a comma, the last two words should sometimes both be in the subtitle. Hard to say exactly when.
process
comma handling four word titles ending in a two word phrase after a comma the last two words should sometimes both be in the subtitle hard to say exactly when
1
301,029
22,710,091,031
IssuesEvent
2022-07-05 18:23:23
dagster-io/dagster
https://api.github.com/repos/dagster-io/dagster
opened
Add example of config schema documentation API
documentation
### What's the issue or suggestion? A user gave feedback that it should be possible to add descriptions to config schema so that scaffolding missing config is documented: https://dagster.slack.com/archives/C01U5LFUZJS/p1657010390346369. You can do this in the API, but it is not explicit in the documentation on https://docs.dagster.io/concepts/configuration/config-schema. We should add a section in the documentation about how to self-document your run configuration, and show how it is exposed in Dagit. ### Additional information _No response_ ### Message from the maintainers Impacted by this issue? Give it a 👍! We factor engagement into prioritization.
1.0
Add example of config schema documentation API - ### What's the issue or suggestion? A user gave feedback that it should be possible to add descriptions to config schema so that scaffolding missing config is documented: https://dagster.slack.com/archives/C01U5LFUZJS/p1657010390346369. You can do this in the API, but it is not explicit in the documentation on https://docs.dagster.io/concepts/configuration/config-schema. We should add a section in the documentation about how to self-document your run configuration, and show how it is exposed in Dagit. ### Additional information _No response_ ### Message from the maintainers Impacted by this issue? Give it a 👍! We factor engagement into prioritization.
non_process
add example of config schema documentation api what s the issue or suggestion a user gave feedback that it should be possible to add descriptions to config schema so that scaffolding missing config is documented you can do this in the api but it is not explicit in the documentation on we should add a section in the documentation about how to self document your run configuration and show how it is exposed in dagit additional information no response message from the maintainers impacted by this issue give it a 👍 we factor engagement into prioritization
0
194,312
15,419,409,479
IssuesEvent
2021-03-05 10:07:09
odpi/egeria
https://api.github.com/repos/odpi/egeria
opened
Update docs for release process/pipeline
documentation
Followon from #4664 to document the process of making a release
1.0
Update docs for release process/pipeline - Followon from #4664 to document the process of making a release
non_process
update docs for release process pipeline followon from to document the process of making a release
0
12,942
15,307,247,806
IssuesEvent
2021-02-24 20:37:16
googleapis/nodejs-dialogflow
https://api.github.com/repos/googleapis/nodejs-dialogflow
closed
migrate dialogflow to googleapis.dev/generated README
api: dialogflow type: process
Dialogflow still has our old README format and old reference doc generation. We should make this library consistent with the majority of our Node.js client libraries. see: https://github.com/googleapis/nodejs-dialogflow/issues/402
1.0
migrate dialogflow to googleapis.dev/generated README - Dialogflow still has our old README format and old reference doc generation. We should make this library consistent with the majority of our Node.js client libraries. see: https://github.com/googleapis/nodejs-dialogflow/issues/402
process
migrate dialogflow to googleapis dev generated readme dialogflow still has our old readme format and old reference doc generation we should make this library consistent with the majority of our node js client libraries see
1
65,631
19,600,874,295
IssuesEvent
2022-01-06 01:05:04
department-of-veterans-affairs/va.gov-cms
https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms
closed
KB bug: breadcrumbs on search link to an old version of /help
Defect Design system
[Related discussion](https://dsva.slack.com/archives/CDKB88PS8/p1641425714149500?thread_ts=1641424697.148000&cid=CDKB88PS8) Some strange things happening when using breadcrumbs on the search page. See screenshot for steps to reproduce.![Screen Shot 2022-01-05 at 3.29.09 PM.png](https://images.zenhubusercontent.com/5e399cf5446c5b4ca0e31e42/0cdd3ee5-72af-4852-a06b-d24ba08dee1f)
1.0
KB bug: breadcrumbs on search link to an old version of /help - [Related discussion](https://dsva.slack.com/archives/CDKB88PS8/p1641425714149500?thread_ts=1641424697.148000&cid=CDKB88PS8) Some strange things happening when using breadcrumbs on the search page. See screenshot for steps to reproduce.![Screen Shot 2022-01-05 at 3.29.09 PM.png](https://images.zenhubusercontent.com/5e399cf5446c5b4ca0e31e42/0cdd3ee5-72af-4852-a06b-d24ba08dee1f)
non_process
kb bug breadcrumbs on search link to an old version of help some strange things happening when using breadcrumbs on the search page see screenshot for steps to reproduce
0
2,601
5,356,457,485
IssuesEvent
2017-02-20 15:42:29
openvstorage/gobjfs
https://api.github.com/repos/openvstorage/gobjfs
closed
Rora partial reads on non aligned offsets
process_wontfix SRP type_feature
We might issue reads that are not nicely (4kb) aligned, for lengths that are not a nice multiple of 4kb. If this doesn't work the code does a fallback to the slow path (via proxy) which is undesirable.
1.0
Rora partial reads on non aligned offsets - We might issue reads that are not nicely (4kb) aligned, for lengths that are not a nice multiple of 4kb. If this doesn't work the code does a fallback to the slow path (via proxy) which is undesirable.
process
rora partial reads on non aligned offsets we might issue reads that are not nicely aligned for lengths that are not a nice multiple of if this doesn t work the code does a fallback to the slow path via proxy which is undesirable
1
261,245
22,708,470,769
IssuesEvent
2022-07-05 16:43:47
pandas-dev/pandas
https://api.github.com/repos/pandas-dev/pandas
closed
pandas dataframe to_json(orient='split') change uint64 to negative int
good first issue Needs Tests
#### Code Sample ```python import pandas import json d = {'col1': [13342205958987758245, 12388075603347835679], 'col2': [13342204859476130034, 12388075603347835679]} df = pandas.DataFrame(data=d) print (df) print (df.dtypes) print ("--- to json output") print (df.head(5).fillna('NULL').to_json(orient='split')) print ("--- to dict output") print (json.dumps(df.head(5).fillna('NULL').to_dict(orient='split'))) ``` #### Problem description the output of the above code is : ``` Col1 Col2 0 13342205958987758245 12388075603347835679 1 13342204859476130034 12388075603347835679 --- dtypes Col1 uint64 Col2 uint64 dtype: object --- to json output {"columns":["Col1","Col2"],"index":[0,1,2,3,4],"data":[[-5104538114721793371,-6058668470361715937],[-5104539214233421582,-6058668470361715937],[-5104583194698550022,-6058668470361715937],[-3637227675748224855,-6058668470361715937],[-6228767139342072872,-6058667370850087726]]} --- to dict output {"index": [0, 1, 2, 3, 4], "data": [[13342205958987758245, 12388075603347835679], [13342204859476130034, 12388075603347835679], [13342160879011001594, 12388075603347835679], [14809516397961326761, 12388075603347835679], [12217976934367478744, 12388076702859463890]], "columns": ["Col1", "Col2"]} ``` you can see the data are different for these two similar functions: `to_json` and `to_dict`. I believe that the output of `to_dict`is correct but `to_json` has change my original digits. #### Expected Output The expected output is what we see in the `to_dict` output. #### Output of ``pd.show_versions()`` <details> [paste the output of ``pd.show_versions()`` here below this line] >>> pd.show_versions() INSTALLED VERSIONS ------------------ commit: None python: 2.7.14.final.0 python-bits: 64 OS: Darwin OS-release: 16.7.0 machine: x86_64 processor: i386 byteorder: little LC_ALL: None LANG: None LOCALE: None.None pandas: 0.22.0 pytest: None pip: 9.0.1 setuptools: 38.5.0 Cython: None numpy: 1.14.0 scipy: None pyarrow: None xarray: None IPython: None sphinx: None patsy: None dateutil: 2.6.1 pytz: 2017.3 blosc: None bottleneck: None tables: None numexpr: None feather: None matplotlib: None openpyxl: None xlrd: 1.0.0 xlwt: 1.3.0 xlsxwriter: 1.0.2 lxml: None bs4: None html5lib: None sqlalchemy: 0.8.0 pymysql: None psycopg2: None jinja2: 2.7.1 s3fs: None fastparquet: None pandas_gbq: None pandas_datareader: None </details>
1.0
pandas dataframe to_json(orient='split') change uint64 to negative int - #### Code Sample ```python import pandas import json d = {'col1': [13342205958987758245, 12388075603347835679], 'col2': [13342204859476130034, 12388075603347835679]} df = pandas.DataFrame(data=d) print (df) print (df.dtypes) print ("--- to json output") print (df.head(5).fillna('NULL').to_json(orient='split')) print ("--- to dict output") print (json.dumps(df.head(5).fillna('NULL').to_dict(orient='split'))) ``` #### Problem description the output of the above code is : ``` Col1 Col2 0 13342205958987758245 12388075603347835679 1 13342204859476130034 12388075603347835679 --- dtypes Col1 uint64 Col2 uint64 dtype: object --- to json output {"columns":["Col1","Col2"],"index":[0,1,2,3,4],"data":[[-5104538114721793371,-6058668470361715937],[-5104539214233421582,-6058668470361715937],[-5104583194698550022,-6058668470361715937],[-3637227675748224855,-6058668470361715937],[-6228767139342072872,-6058667370850087726]]} --- to dict output {"index": [0, 1, 2, 3, 4], "data": [[13342205958987758245, 12388075603347835679], [13342204859476130034, 12388075603347835679], [13342160879011001594, 12388075603347835679], [14809516397961326761, 12388075603347835679], [12217976934367478744, 12388076702859463890]], "columns": ["Col1", "Col2"]} ``` you can see the data are different for these two similar functions: `to_json` and `to_dict`. I believe that the output of `to_dict`is correct but `to_json` has change my original digits. #### Expected Output The expected output is what we see in the `to_dict` output. #### Output of ``pd.show_versions()`` <details> [paste the output of ``pd.show_versions()`` here below this line] >>> pd.show_versions() INSTALLED VERSIONS ------------------ commit: None python: 2.7.14.final.0 python-bits: 64 OS: Darwin OS-release: 16.7.0 machine: x86_64 processor: i386 byteorder: little LC_ALL: None LANG: None LOCALE: None.None pandas: 0.22.0 pytest: None pip: 9.0.1 setuptools: 38.5.0 Cython: None numpy: 1.14.0 scipy: None pyarrow: None xarray: None IPython: None sphinx: None patsy: None dateutil: 2.6.1 pytz: 2017.3 blosc: None bottleneck: None tables: None numexpr: None feather: None matplotlib: None openpyxl: None xlrd: 1.0.0 xlwt: 1.3.0 xlsxwriter: 1.0.2 lxml: None bs4: None html5lib: None sqlalchemy: 0.8.0 pymysql: None psycopg2: None jinja2: 2.7.1 s3fs: None fastparquet: None pandas_gbq: None pandas_datareader: None </details>
non_process
pandas dataframe to json orient split change to negative int code sample python import pandas import json d df pandas dataframe data d print df print df dtypes print to json output print df head fillna null to json orient split print to dict output print json dumps df head fillna null to dict orient split problem description the output of the above code is dtypes dtype object to json output columns index data to dict output index data columns you can see the data are different for these two similar functions to json and to dict i believe that the output of to dict is correct but to json has change my original digits expected output the expected output is what we see in the to dict output output of pd show versions pd show versions installed versions commit none python final python bits os darwin os release machine processor byteorder little lc all none lang none locale none none pandas pytest none pip setuptools cython none numpy scipy none pyarrow none xarray none ipython none sphinx none patsy none dateutil pytz blosc none bottleneck none tables none numexpr none feather none matplotlib none openpyxl none xlrd xlwt xlsxwriter lxml none none none sqlalchemy pymysql none none none fastparquet none pandas gbq none pandas datareader none
0
89,640
18,016,287,036
IssuesEvent
2021-09-16 14:14:36
WordPress/openverse-frontend
https://api.github.com/repos/WordPress/openverse-frontend
closed
Add top bar for former CC Search users
good first issue help wanted 🟧 priority: high 🏁 status: ready for work 🌟 goal: addition 💻 aspect: code
Anyone visiting wordpress.org/openverse from a domain containing `creativecommons.org` should see a special banner at the top of the site. This is intended so that CC Search users aren't confused when they are redirected to Openverse, and so we can control the narrative about what a positive change for the project this is. ## Mockup <img width="872" alt="CleanShot 2021-09-06 at 21 26 26@2x" src="https://user-images.githubusercontent.com/6351754/132270648-036a8a50-6078-4d60-923d-c4a723609465.png"> > Figma link: https://www.figma.com/file/BlUTIXRHLOq5mRITpDpi3E/Transitional-styles?node-id=418%3A2025 Please only show if the referrer is from a `creativecommons.org` domain. And make sure to localize the text. Link should go to https://wordpress.org/news/2021/05/welcome-to-openverse/
1.0
Add top bar for former CC Search users - Anyone visiting wordpress.org/openverse from a domain containing `creativecommons.org` should see a special banner at the top of the site. This is intended so that CC Search users aren't confused when they are redirected to Openverse, and so we can control the narrative about what a positive change for the project this is. ## Mockup <img width="872" alt="CleanShot 2021-09-06 at 21 26 26@2x" src="https://user-images.githubusercontent.com/6351754/132270648-036a8a50-6078-4d60-923d-c4a723609465.png"> > Figma link: https://www.figma.com/file/BlUTIXRHLOq5mRITpDpi3E/Transitional-styles?node-id=418%3A2025 Please only show if the referrer is from a `creativecommons.org` domain. And make sure to localize the text. Link should go to https://wordpress.org/news/2021/05/welcome-to-openverse/
non_process
add top bar for former cc search users anyone visiting wordpress org openverse from a domain containing creativecommons org should see a special banner at the top of the site this is intended so that cc search users aren t confused when they are redirected to openverse and so we can control the narrative about what a positive change for the project this is mockup img width alt cleanshot at src figma link please only show if the referrer is from a creativecommons org domain and make sure to localize the text link should go to
0
12,695
15,075,408,554
IssuesEvent
2021-02-05 02:00:33
doms92/eCommerceSite
https://api.github.com/repos/doms92/eCommerceSite
opened
Add Ci Pipeline
developer process
Add continuous integration pipeline that will check that will check to make sure code in a pull request compiles successfully.
1.0
Add Ci Pipeline - Add continuous integration pipeline that will check that will check to make sure code in a pull request compiles successfully.
process
add ci pipeline add continuous integration pipeline that will check that will check to make sure code in a pull request compiles successfully
1
662,875
22,154,790,273
IssuesEvent
2022-06-03 21:05:43
grpc/grpc
https://api.github.com/repos/grpc/grpc
closed
Python Install
kind/bug lang/Python priority/P2
<!-- PLEASE DO NOT POST A QUESTION HERE. This form is for bug reports and feature requests ONLY! For general questions and troubleshooting, please ask/look for answers at StackOverflow, with "grpc" tag: https://stackoverflow.com/questions/tagged/grpc For questions that specifically need to be answered by gRPC team members, please ask/look for answers at grpc.io mailing list: https://groups.google.com/forum/#!forum/grpc-io Issues specific to *grpc-java*, *grpc-go*, *grpc-node*, *grpc-dart*, *grpc-web* should be created in the repository they belong to (e.g. https://github.com/grpc/grpc-LANGUAGE/issues/new) --> ### What version of gRPC and what language are you using? grpcio 1.11.0 ### What operating system (Linux, Windows,...) and version? Windows 10 ### What runtime / compiler are you using (e.g. python version or version of gcc) python 3.9.1 ### What did you do? ran "pip install grpcio==1.11.0" from powershell comand line ( tried as admin and regular same result) ### What did you expect to see? Expected a successful installation of grpcio ### What did you see instead? Go the following long error message: Collecting grpcio==1.11.0 Using cached grpcio-1.11.0.tar.gz (14.2 MB) Requirement already satisfied: six>=1.5.2 in c:\users\shree\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages (from grpcio==1.11.0) (1.11.0) Requirement already satisfied: protobuf>=3.5.0.post1 in c:\users\shree\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages (from grpcio==1.11.0) (3.15.0) Building wheels for collected packages: grpcio Building wheel for grpcio (setup.py) ... error ERROR: Command errored out with exit status 1: command: 'C:\Users\shree\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"'; __file__='"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d 'C:\Users\shree\AppData\Local\Temp\pip-wheel-cvz0engc' cwd: C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\ Complete output (141 lines): Found cython-generated files... running bdist_wheel running build running build_py running build_project_metadata creating python_build creating python_build\lib.win-amd64-3.9 creating python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_auth.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_channel.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_common.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_grpcio_metadata.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_interceptor.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_plugin_wrapping.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_server.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_utilities.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\__init__.py -> python_build\lib.win-amd64-3.9\grpc creating python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\implementations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\interfaces.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\utilities.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_client_adaptations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_metadata.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_server_adaptations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\__init__.py -> python_build\lib.win-amd64-3.9\grpc\beta creating python_build\lib.win-amd64-3.9\grpc\experimental copying src\python\grpcio\grpc\experimental\gevent.py -> python_build\lib.win-amd64-3.9\grpc\experimental copying src\python\grpcio\grpc\experimental\__init__.py -> python_build\lib.win-amd64-3.9\grpc\experimental creating python_build\lib.win-amd64-3.9\grpc\framework copying src\python\grpcio\grpc\framework\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework creating python_build\lib.win-amd64-3.9\grpc\_cython copying src\python\grpcio\grpc\_cython\__init__.py -> python_build\lib.win-amd64-3.9\grpc\_cython creating python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\cardinality.py -> python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\style.py -> python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\common creating python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\abandonment.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\callable_util.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\future.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\logging_pool.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\stream.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\stream_util.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces copying src\python\grpcio\grpc\framework\interfaces\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\base.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\utilities.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\face.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\utilities.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face creating python_build\lib.win-amd64-3.9\grpc\_cython\_cygrpc copying src\python\grpcio\grpc\_cython\_cygrpc\__init__.py -> python_build\lib.win-amd64-3.9\grpc\_cython\_cygrpc creating python_build\lib.win-amd64-3.9\grpc\_cython\_credentials copying src\python\grpcio\grpc\_cython\_credentials\roots.pem -> python_build\lib.win-amd64-3.9\grpc\_cython\_credentials running build_ext Found cython-generated files... building 'grpc._cython.cygrpc' extension Traceback (most recent call last): File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 292, in build_extensions build_ext.build_ext.build_extensions(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 449, in build_extensions self._build_extensions_serial() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 474, in _build_extensions_serial self.build_extension(ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 208, in build_extension _build_ext.build_extension(self, ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 529, in build_extension objects = self.compiler.compile(sources, File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 323, in compile self.initialize() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 220, in initialize vc_env = _get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 314, in msvc14_get_vc_env return _msvc14_get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 268, in _msvc14_get_vc_env raise distutils.errors.DistutilsPlatformError( distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/ During handling of the above exception, another exception occurred: Traceback (most recent call last): File "<string>", line 1, in <module> File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\setup.py", line 297, in <module> setuptools.setup( File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\__init__.py", line 165, in setup return distutils.core.setup(**attrs) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\core.py", line 148, in setup dist.run_commands() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 966, in run_commands self.run_command(cmd) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Users\shree\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\wheel\bdist_wheel.py", line 299, in run self.run_command('build') File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\cmd.py", line 313, in run_command self.distribution.run_command(command) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build.py", line 135, in run self.run_command(cmd_name) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\cmd.py", line 313, in run_command self.distribution.run_command(command) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 87, in run _build_ext.run(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 340, in run self.build_extensions() File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 295, in build_extensions support.diagnose_build_ext_error(self, error, formatted_exception) File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\support.py", line 104, in diagnose_build_ext_error raise commands.CommandError( commands.CommandError: We could not diagnose your build failure. If you are unable to proceed, please file an issue at http://www.github.com/grpc/grpc with `[Python install]` in the title; please attach the whole log (including everything that may have appeared above the Python backtrace). Traceback (most recent call last): File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 292, in build_extensions build_ext.build_ext.build_extensions(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 449, in build_extensions self._build_extensions_serial() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 474, in _build_extensions_serial self.build_extension(ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 208, in build_extension _build_ext.build_extension(self, ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 529, in build_extension objects = self.compiler.compile(sources, File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 323, in compile self.initialize() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 220, in initialize vc_env = _get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 314, in msvc14_get_vc_env return _msvc14_get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 268, in _msvc14_get_vc_env raise distutils.errors.DistutilsPlatformError( distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/ ---------------------------------------- ERROR: Failed building wheel for grpcio Running setup.py clean for grpcio Failed to build grpcio Installing collected packages: grpcio Attempting uninstall: grpcio Found existing installation: grpcio 1.35.0 Uninstalling grpcio-1.35.0: Successfully uninstalled grpcio-1.35.0 Running setup.py install for grpcio ... error ERROR: Command errored out with exit status 1: command: 'C:\Users\shree\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"'; __file__='"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\shree\AppData\Local\Temp\pip-record-1mo3hz2b\install-record.txt' --single-version-externally-managed --user --prefix= --compile --install-headers 'C:\Users\shree\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\Include\grpcio' cwd: C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\ Complete output (143 lines): Found cython-generated files... running install running build running build_py running build_project_metadata creating python_build creating python_build\lib.win-amd64-3.9 creating python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_auth.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_channel.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_common.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_grpcio_metadata.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_interceptor.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_plugin_wrapping.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_server.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_utilities.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\__init__.py -> python_build\lib.win-amd64-3.9\grpc creating python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\implementations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\interfaces.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\utilities.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_client_adaptations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_metadata.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_server_adaptations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\__init__.py -> python_build\lib.win-amd64-3.9\grpc\beta creating python_build\lib.win-amd64-3.9\grpc\experimental copying src\python\grpcio\grpc\experimental\gevent.py -> python_build\lib.win-amd64-3.9\grpc\experimental copying src\python\grpcio\grpc\experimental\__init__.py -> python_build\lib.win-amd64-3.9\grpc\experimental creating python_build\lib.win-amd64-3.9\grpc\framework copying src\python\grpcio\grpc\framework\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework creating python_build\lib.win-amd64-3.9\grpc\_cython copying src\python\grpcio\grpc\_cython\__init__.py -> python_build\lib.win-amd64-3.9\grpc\_cython creating python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\cardinality.py -> python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\style.py -> python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\common creating python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\abandonment.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\callable_util.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\future.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\logging_pool.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\stream.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\stream_util.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces copying src\python\grpcio\grpc\framework\interfaces\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\base.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\utilities.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\face.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\utilities.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face creating python_build\lib.win-amd64-3.9\grpc\_cython\_cygrpc copying src\python\grpcio\grpc\_cython\_cygrpc\__init__.py -> python_build\lib.win-amd64-3.9\grpc\_cython\_cygrpc creating python_build\lib.win-amd64-3.9\grpc\_cython\_credentials copying src\python\grpcio\grpc\_cython\_credentials\roots.pem -> python_build\lib.win-amd64-3.9\grpc\_cython\_credentials running build_ext Found cython-generated files... building 'grpc._cython.cygrpc' extension Traceback (most recent call last): File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 292, in build_extensions build_ext.build_ext.build_extensions(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 449, in build_extensions self._build_extensions_serial() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 474, in _build_extensions_serial self.build_extension(ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 208, in build_extension _build_ext.build_extension(self, ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 529, in build_extension objects = self.compiler.compile(sources, File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 323, in compile self.initialize() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 220, in initialize vc_env = _get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 314, in msvc14_get_vc_env return _msvc14_get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 268, in _msvc14_get_vc_env raise distutils.errors.DistutilsPlatformError( distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/ During handling of the above exception, another exception occurred: Traceback (most recent call last): File "<string>", line 1, in <module> File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\setup.py", line 297, in <module> setuptools.setup( File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\__init__.py", line 165, in setup return distutils.core.setup(**attrs) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\core.py", line 148, in setup dist.run_commands() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 966, in run_commands self.run_command(cmd) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\install.py", line 61, in run return orig.install.run(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\install.py", line 546, in run self.run_command('build') File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\cmd.py", line 313, in run_command self.distribution.run_command(command) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build.py", line 135, in run self.run_command(cmd_name) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\cmd.py", line 313, in run_command self.distribution.run_command(command) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 87, in run _build_ext.run(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 340, in run self.build_extensions() File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 295, in build_extensions support.diagnose_build_ext_error(self, error, formatted_exception) File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\support.py", line 104, in diagnose_build_ext_error raise commands.CommandError( commands.CommandError: We could not diagnose your build failure. If you are unable to proceed, please file an issue at http://www.github.com/grpc/grpc with `[Python install]` in the title; please attach the whole log (including everything that may have appeared above the Python backtrace). Traceback (most recent call last): File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 292, in build_extensions build_ext.build_ext.build_extensions(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 449, in build_extensions self._build_extensions_serial() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 474, in _build_extensions_serial self.build_extension(ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 208, in build_extension _build_ext.build_extension(self, ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 529, in build_extension objects = self.compiler.compile(sources, File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 323, in compile self.initialize() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 220, in initialize vc_env = _get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 314, in msvc14_get_vc_env return _msvc14_get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 268, in _msvc14_get_vc_env raise distutils.errors.DistutilsPlatformError( distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/ ---------------------------------------- Rolling back uninstall of grpcio Moving to c:\users\shree\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages\grpc\ from C:\Users\shree\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\~rpc Moving to c:\users\shree\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages\grpcio-1.35.0.dist-info\ from C:\Users\shree\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\~rpcio-1.35.0.dist-info ERROR: Command errored out with exit status 1: 'C:\Users\shree\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"'; __file__='"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\shree\AppData\Local\Temp\pip-record-1mo3hz2b\install-record.txt' --single-version-externally-managed --user --prefix= --compile --install-headers 'C:\Users\shree\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\Include\grpcio' Check the logs for full command output. Make sure you include information that can help us debug (full error message, exception listing, stack trace, logs). See [TROUBLESHOOTING.md](https://github.com/grpc/grpc/blob/master/TROUBLESHOOTING.md) for how to diagnose problems better. ### Anything else we should know about your project / environment?
1.0
Python Install - <!-- PLEASE DO NOT POST A QUESTION HERE. This form is for bug reports and feature requests ONLY! For general questions and troubleshooting, please ask/look for answers at StackOverflow, with "grpc" tag: https://stackoverflow.com/questions/tagged/grpc For questions that specifically need to be answered by gRPC team members, please ask/look for answers at grpc.io mailing list: https://groups.google.com/forum/#!forum/grpc-io Issues specific to *grpc-java*, *grpc-go*, *grpc-node*, *grpc-dart*, *grpc-web* should be created in the repository they belong to (e.g. https://github.com/grpc/grpc-LANGUAGE/issues/new) --> ### What version of gRPC and what language are you using? grpcio 1.11.0 ### What operating system (Linux, Windows,...) and version? Windows 10 ### What runtime / compiler are you using (e.g. python version or version of gcc) python 3.9.1 ### What did you do? ran "pip install grpcio==1.11.0" from powershell comand line ( tried as admin and regular same result) ### What did you expect to see? Expected a successful installation of grpcio ### What did you see instead? Go the following long error message: Collecting grpcio==1.11.0 Using cached grpcio-1.11.0.tar.gz (14.2 MB) Requirement already satisfied: six>=1.5.2 in c:\users\shree\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages (from grpcio==1.11.0) (1.11.0) Requirement already satisfied: protobuf>=3.5.0.post1 in c:\users\shree\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages (from grpcio==1.11.0) (3.15.0) Building wheels for collected packages: grpcio Building wheel for grpcio (setup.py) ... error ERROR: Command errored out with exit status 1: command: 'C:\Users\shree\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"'; __file__='"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d 'C:\Users\shree\AppData\Local\Temp\pip-wheel-cvz0engc' cwd: C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\ Complete output (141 lines): Found cython-generated files... running bdist_wheel running build running build_py running build_project_metadata creating python_build creating python_build\lib.win-amd64-3.9 creating python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_auth.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_channel.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_common.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_grpcio_metadata.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_interceptor.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_plugin_wrapping.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_server.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_utilities.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\__init__.py -> python_build\lib.win-amd64-3.9\grpc creating python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\implementations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\interfaces.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\utilities.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_client_adaptations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_metadata.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_server_adaptations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\__init__.py -> python_build\lib.win-amd64-3.9\grpc\beta creating python_build\lib.win-amd64-3.9\grpc\experimental copying src\python\grpcio\grpc\experimental\gevent.py -> python_build\lib.win-amd64-3.9\grpc\experimental copying src\python\grpcio\grpc\experimental\__init__.py -> python_build\lib.win-amd64-3.9\grpc\experimental creating python_build\lib.win-amd64-3.9\grpc\framework copying src\python\grpcio\grpc\framework\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework creating python_build\lib.win-amd64-3.9\grpc\_cython copying src\python\grpcio\grpc\_cython\__init__.py -> python_build\lib.win-amd64-3.9\grpc\_cython creating python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\cardinality.py -> python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\style.py -> python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\common creating python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\abandonment.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\callable_util.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\future.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\logging_pool.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\stream.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\stream_util.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces copying src\python\grpcio\grpc\framework\interfaces\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\base.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\utilities.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\face.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\utilities.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face creating python_build\lib.win-amd64-3.9\grpc\_cython\_cygrpc copying src\python\grpcio\grpc\_cython\_cygrpc\__init__.py -> python_build\lib.win-amd64-3.9\grpc\_cython\_cygrpc creating python_build\lib.win-amd64-3.9\grpc\_cython\_credentials copying src\python\grpcio\grpc\_cython\_credentials\roots.pem -> python_build\lib.win-amd64-3.9\grpc\_cython\_credentials running build_ext Found cython-generated files... building 'grpc._cython.cygrpc' extension Traceback (most recent call last): File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 292, in build_extensions build_ext.build_ext.build_extensions(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 449, in build_extensions self._build_extensions_serial() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 474, in _build_extensions_serial self.build_extension(ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 208, in build_extension _build_ext.build_extension(self, ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 529, in build_extension objects = self.compiler.compile(sources, File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 323, in compile self.initialize() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 220, in initialize vc_env = _get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 314, in msvc14_get_vc_env return _msvc14_get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 268, in _msvc14_get_vc_env raise distutils.errors.DistutilsPlatformError( distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/ During handling of the above exception, another exception occurred: Traceback (most recent call last): File "<string>", line 1, in <module> File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\setup.py", line 297, in <module> setuptools.setup( File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\__init__.py", line 165, in setup return distutils.core.setup(**attrs) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\core.py", line 148, in setup dist.run_commands() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 966, in run_commands self.run_command(cmd) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Users\shree\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\wheel\bdist_wheel.py", line 299, in run self.run_command('build') File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\cmd.py", line 313, in run_command self.distribution.run_command(command) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build.py", line 135, in run self.run_command(cmd_name) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\cmd.py", line 313, in run_command self.distribution.run_command(command) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 87, in run _build_ext.run(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 340, in run self.build_extensions() File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 295, in build_extensions support.diagnose_build_ext_error(self, error, formatted_exception) File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\support.py", line 104, in diagnose_build_ext_error raise commands.CommandError( commands.CommandError: We could not diagnose your build failure. If you are unable to proceed, please file an issue at http://www.github.com/grpc/grpc with `[Python install]` in the title; please attach the whole log (including everything that may have appeared above the Python backtrace). Traceback (most recent call last): File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 292, in build_extensions build_ext.build_ext.build_extensions(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 449, in build_extensions self._build_extensions_serial() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 474, in _build_extensions_serial self.build_extension(ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 208, in build_extension _build_ext.build_extension(self, ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 529, in build_extension objects = self.compiler.compile(sources, File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 323, in compile self.initialize() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 220, in initialize vc_env = _get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 314, in msvc14_get_vc_env return _msvc14_get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 268, in _msvc14_get_vc_env raise distutils.errors.DistutilsPlatformError( distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/ ---------------------------------------- ERROR: Failed building wheel for grpcio Running setup.py clean for grpcio Failed to build grpcio Installing collected packages: grpcio Attempting uninstall: grpcio Found existing installation: grpcio 1.35.0 Uninstalling grpcio-1.35.0: Successfully uninstalled grpcio-1.35.0 Running setup.py install for grpcio ... error ERROR: Command errored out with exit status 1: command: 'C:\Users\shree\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"'; __file__='"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\shree\AppData\Local\Temp\pip-record-1mo3hz2b\install-record.txt' --single-version-externally-managed --user --prefix= --compile --install-headers 'C:\Users\shree\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\Include\grpcio' cwd: C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\ Complete output (143 lines): Found cython-generated files... running install running build running build_py running build_project_metadata creating python_build creating python_build\lib.win-amd64-3.9 creating python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_auth.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_channel.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_common.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_grpcio_metadata.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_interceptor.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_plugin_wrapping.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_server.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\_utilities.py -> python_build\lib.win-amd64-3.9\grpc copying src\python\grpcio\grpc\__init__.py -> python_build\lib.win-amd64-3.9\grpc creating python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\implementations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\interfaces.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\utilities.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_client_adaptations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_metadata.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\_server_adaptations.py -> python_build\lib.win-amd64-3.9\grpc\beta copying src\python\grpcio\grpc\beta\__init__.py -> python_build\lib.win-amd64-3.9\grpc\beta creating python_build\lib.win-amd64-3.9\grpc\experimental copying src\python\grpcio\grpc\experimental\gevent.py -> python_build\lib.win-amd64-3.9\grpc\experimental copying src\python\grpcio\grpc\experimental\__init__.py -> python_build\lib.win-amd64-3.9\grpc\experimental creating python_build\lib.win-amd64-3.9\grpc\framework copying src\python\grpcio\grpc\framework\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework creating python_build\lib.win-amd64-3.9\grpc\_cython copying src\python\grpcio\grpc\_cython\__init__.py -> python_build\lib.win-amd64-3.9\grpc\_cython creating python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\cardinality.py -> python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\style.py -> python_build\lib.win-amd64-3.9\grpc\framework\common copying src\python\grpcio\grpc\framework\common\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\common creating python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\abandonment.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\callable_util.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\future.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\logging_pool.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\stream.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\stream_util.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation copying src\python\grpcio\grpc\framework\foundation\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\foundation creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces copying src\python\grpcio\grpc\framework\interfaces\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\base.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\utilities.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base copying src\python\grpcio\grpc\framework\interfaces\base\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\base creating python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\face.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\utilities.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face copying src\python\grpcio\grpc\framework\interfaces\face\__init__.py -> python_build\lib.win-amd64-3.9\grpc\framework\interfaces\face creating python_build\lib.win-amd64-3.9\grpc\_cython\_cygrpc copying src\python\grpcio\grpc\_cython\_cygrpc\__init__.py -> python_build\lib.win-amd64-3.9\grpc\_cython\_cygrpc creating python_build\lib.win-amd64-3.9\grpc\_cython\_credentials copying src\python\grpcio\grpc\_cython\_credentials\roots.pem -> python_build\lib.win-amd64-3.9\grpc\_cython\_credentials running build_ext Found cython-generated files... building 'grpc._cython.cygrpc' extension Traceback (most recent call last): File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 292, in build_extensions build_ext.build_ext.build_extensions(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 449, in build_extensions self._build_extensions_serial() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 474, in _build_extensions_serial self.build_extension(ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 208, in build_extension _build_ext.build_extension(self, ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 529, in build_extension objects = self.compiler.compile(sources, File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 323, in compile self.initialize() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 220, in initialize vc_env = _get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 314, in msvc14_get_vc_env return _msvc14_get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 268, in _msvc14_get_vc_env raise distutils.errors.DistutilsPlatformError( distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/ During handling of the above exception, another exception occurred: Traceback (most recent call last): File "<string>", line 1, in <module> File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\setup.py", line 297, in <module> setuptools.setup( File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\__init__.py", line 165, in setup return distutils.core.setup(**attrs) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\core.py", line 148, in setup dist.run_commands() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 966, in run_commands self.run_command(cmd) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\install.py", line 61, in run return orig.install.run(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\install.py", line 546, in run self.run_command('build') File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\cmd.py", line 313, in run_command self.distribution.run_command(command) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build.py", line 135, in run self.run_command(cmd_name) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\cmd.py", line 313, in run_command self.distribution.run_command(command) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\dist.py", line 985, in run_command cmd_obj.run() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 87, in run _build_ext.run(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 340, in run self.build_extensions() File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 295, in build_extensions support.diagnose_build_ext_error(self, error, formatted_exception) File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\support.py", line 104, in diagnose_build_ext_error raise commands.CommandError( commands.CommandError: We could not diagnose your build failure. If you are unable to proceed, please file an issue at http://www.github.com/grpc/grpc with `[Python install]` in the title; please attach the whole log (including everything that may have appeared above the Python backtrace). Traceback (most recent call last): File "C:\Users\shree\AppData\Local\Temp\pip-install-gba23662\grpcio_bfd768fa280047b498d6335e41535718\src\python\grpcio\commands.py", line 292, in build_extensions build_ext.build_ext.build_extensions(self) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 449, in build_extensions self._build_extensions_serial() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 474, in _build_extensions_serial self.build_extension(ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\command\build_ext.py", line 208, in build_extension _build_ext.build_extension(self, ext) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\command\build_ext.py", line 529, in build_extension objects = self.compiler.compile(sources, File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 323, in compile self.initialize() File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\distutils\_msvccompiler.py", line 220, in initialize vc_env = _get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 314, in msvc14_get_vc_env return _msvc14_get_vc_env(plat_spec) File "C:\Program Files\WindowsApps\PythonSoftwareFoundation.Python.3.9_3.9.496.0_x64__qbz5n2kfra8p0\lib\site-packages\setuptools\msvc.py", line 268, in _msvc14_get_vc_env raise distutils.errors.DistutilsPlatformError( distutils.errors.DistutilsPlatformError: Microsoft Visual C++ 14.0 is required. Get it with "Build Tools for Visual Studio": https://visualstudio.microsoft.com/downloads/ ---------------------------------------- Rolling back uninstall of grpcio Moving to c:\users\shree\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages\grpc\ from C:\Users\shree\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\~rpc Moving to c:\users\shree\appdata\local\packages\pythonsoftwarefoundation.python.3.9_qbz5n2kfra8p0\localcache\local-packages\python39\site-packages\grpcio-1.35.0.dist-info\ from C:\Users\shree\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\~rpcio-1.35.0.dist-info ERROR: Command errored out with exit status 1: 'C:\Users\shree\AppData\Local\Microsoft\WindowsApps\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"'; __file__='"'"'C:\\Users\\shree\\AppData\\Local\\Temp\\pip-install-gba23662\\grpcio_bfd768fa280047b498d6335e41535718\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\shree\AppData\Local\Temp\pip-record-1mo3hz2b\install-record.txt' --single-version-externally-managed --user --prefix= --compile --install-headers 'C:\Users\shree\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\Include\grpcio' Check the logs for full command output. Make sure you include information that can help us debug (full error message, exception listing, stack trace, logs). See [TROUBLESHOOTING.md](https://github.com/grpc/grpc/blob/master/TROUBLESHOOTING.md) for how to diagnose problems better. ### Anything else we should know about your project / environment?
non_process
python install please do not post a question here this form is for bug reports and feature requests only for general questions and troubleshooting please ask look for answers at stackoverflow with grpc tag for questions that specifically need to be answered by grpc team members please ask look for answers at grpc io mailing list issues specific to grpc java grpc go grpc node grpc dart grpc web should be created in the repository they belong to e g what version of grpc and what language are you using grpcio what operating system linux windows and version windows what runtime compiler are you using e g python version or version of gcc python what did you do ran pip install grpcio from powershell comand line tried as admin and regular same result what did you expect to see expected a successful installation of grpcio what did you see instead go the following long error message collecting grpcio using cached grpcio tar gz mb requirement already satisfied six in c users shree appdata local packages pythonsoftwarefoundation python localcache local packages site packages from grpcio requirement already satisfied protobuf in c users shree appdata local packages pythonsoftwarefoundation python localcache local packages site packages from grpcio building wheels for collected packages grpcio building wheel for grpcio setup py error error command errored out with exit status command c users shree appdata local microsoft windowsapps pythonsoftwarefoundation python python exe u c import sys setuptools tokenize sys argv c users shree appdata local temp pip install grpcio setup py file c users shree appdata local temp pip install grpcio setup py f getattr tokenize open open file code f read replace r n n f close exec compile code file exec bdist wheel d c users shree appdata local temp pip wheel cwd c users shree appdata local temp pip install grpcio complete output lines found cython generated files running bdist wheel running build running build py running build project metadata creating python build creating python build lib win creating python build lib win grpc copying src python grpcio grpc auth py python build lib win grpc copying src python grpcio grpc channel py python build lib win grpc copying src python grpcio grpc common py python build lib win grpc copying src python grpcio grpc grpcio metadata py python build lib win grpc copying src python grpcio grpc interceptor py python build lib win grpc copying src python grpcio grpc plugin wrapping py python build lib win grpc copying src python grpcio grpc server py python build lib win grpc copying src python grpcio grpc utilities py python build lib win grpc copying src python grpcio grpc init py python build lib win grpc creating python build lib win grpc beta copying src python grpcio grpc beta implementations py python build lib win grpc beta copying src python grpcio grpc beta interfaces py python build lib win grpc beta copying src python grpcio grpc beta utilities py python build lib win grpc beta copying src python grpcio grpc beta client adaptations py python build lib win grpc beta copying src python grpcio grpc beta metadata py python build lib win grpc beta copying src python grpcio grpc beta server adaptations py python build lib win grpc beta copying src python grpcio grpc beta init py python build lib win grpc beta creating python build lib win grpc experimental copying src python grpcio grpc experimental gevent py python build lib win grpc experimental copying src python grpcio grpc experimental init py python build lib win grpc experimental creating python build lib win grpc framework copying src python grpcio grpc framework init py python build lib win grpc framework creating python build lib win grpc cython copying src python grpcio grpc cython init py python build lib win grpc cython creating python build lib win grpc framework common copying src python grpcio grpc framework common cardinality py python build lib win grpc framework common copying src python grpcio grpc framework common style py python build lib win grpc framework common copying src python grpcio grpc framework common init py python build lib win grpc framework common creating python build lib win grpc framework foundation copying src python grpcio grpc framework foundation abandonment py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation callable util py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation future py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation logging pool py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation stream py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation stream util py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation init py python build lib win grpc framework foundation creating python build lib win grpc framework interfaces copying src python grpcio grpc framework interfaces init py python build lib win grpc framework interfaces creating python build lib win grpc framework interfaces base copying src python grpcio grpc framework interfaces base base py python build lib win grpc framework interfaces base copying src python grpcio grpc framework interfaces base utilities py python build lib win grpc framework interfaces base copying src python grpcio grpc framework interfaces base init py python build lib win grpc framework interfaces base creating python build lib win grpc framework interfaces face copying src python grpcio grpc framework interfaces face face py python build lib win grpc framework interfaces face copying src python grpcio grpc framework interfaces face utilities py python build lib win grpc framework interfaces face copying src python grpcio grpc framework interfaces face init py python build lib win grpc framework interfaces face creating python build lib win grpc cython cygrpc copying src python grpcio grpc cython cygrpc init py python build lib win grpc cython cygrpc creating python build lib win grpc cython credentials copying src python grpcio grpc cython credentials roots pem python build lib win grpc cython credentials running build ext found cython generated files building grpc cython cygrpc extension traceback most recent call last file c users shree appdata local temp pip install grpcio src python grpcio commands py line in build extensions build ext build ext build extensions self file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extensions self build extensions serial file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extensions serial self build extension ext file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools command build ext py line in build extension build ext build extension self ext file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extension objects self compiler compile sources file c program files windowsapps pythonsoftwarefoundation python lib distutils msvccompiler py line in compile self initialize file c program files windowsapps pythonsoftwarefoundation python lib distutils msvccompiler py line in initialize vc env get vc env plat spec file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools msvc py line in get vc env return get vc env plat spec file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools msvc py line in get vc env raise distutils errors distutilsplatformerror distutils errors distutilsplatformerror microsoft visual c is required get it with build tools for visual studio during handling of the above exception another exception occurred traceback most recent call last file line in file c users shree appdata local temp pip install grpcio setup py line in setuptools setup file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools init py line in setup return distutils core setup attrs file c program files windowsapps pythonsoftwarefoundation python lib distutils core py line in setup dist run commands file c program files windowsapps pythonsoftwarefoundation python lib distutils dist py line in run commands self run command cmd file c program files windowsapps pythonsoftwarefoundation python lib distutils dist py line in run command cmd obj run file c users shree appdata local packages pythonsoftwarefoundation python localcache local packages site packages wheel bdist wheel py line in run self run command build file c program files windowsapps pythonsoftwarefoundation python lib distutils cmd py line in run command self distribution run command command file c program files windowsapps pythonsoftwarefoundation python lib distutils dist py line in run command cmd obj run file c program files windowsapps pythonsoftwarefoundation python lib distutils command build py line in run self run command cmd name file c program files windowsapps pythonsoftwarefoundation python lib distutils cmd py line in run command self distribution run command command file c program files windowsapps pythonsoftwarefoundation python lib distutils dist py line in run command cmd obj run file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools command build ext py line in run build ext run self file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in run self build extensions file c users shree appdata local temp pip install grpcio src python grpcio commands py line in build extensions support diagnose build ext error self error formatted exception file c users shree appdata local temp pip install grpcio src python grpcio support py line in diagnose build ext error raise commands commanderror commands commanderror we could not diagnose your build failure if you are unable to proceed please file an issue at with in the title please attach the whole log including everything that may have appeared above the python backtrace traceback most recent call last file c users shree appdata local temp pip install grpcio src python grpcio commands py line in build extensions build ext build ext build extensions self file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extensions self build extensions serial file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extensions serial self build extension ext file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools command build ext py line in build extension build ext build extension self ext file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extension objects self compiler compile sources file c program files windowsapps pythonsoftwarefoundation python lib distutils msvccompiler py line in compile self initialize file c program files windowsapps pythonsoftwarefoundation python lib distutils msvccompiler py line in initialize vc env get vc env plat spec file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools msvc py line in get vc env return get vc env plat spec file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools msvc py line in get vc env raise distutils errors distutilsplatformerror distutils errors distutilsplatformerror microsoft visual c is required get it with build tools for visual studio error failed building wheel for grpcio running setup py clean for grpcio failed to build grpcio installing collected packages grpcio attempting uninstall grpcio found existing installation grpcio uninstalling grpcio successfully uninstalled grpcio running setup py install for grpcio error error command errored out with exit status command c users shree appdata local microsoft windowsapps pythonsoftwarefoundation python python exe u c import sys setuptools tokenize sys argv c users shree appdata local temp pip install grpcio setup py file c users shree appdata local temp pip install grpcio setup py f getattr tokenize open open file code f read replace r n n f close exec compile code file exec install record c users shree appdata local temp pip record install record txt single version externally managed user prefix compile install headers c users shree appdata local packages pythonsoftwarefoundation python localcache local packages include grpcio cwd c users shree appdata local temp pip install grpcio complete output lines found cython generated files running install running build running build py running build project metadata creating python build creating python build lib win creating python build lib win grpc copying src python grpcio grpc auth py python build lib win grpc copying src python grpcio grpc channel py python build lib win grpc copying src python grpcio grpc common py python build lib win grpc copying src python grpcio grpc grpcio metadata py python build lib win grpc copying src python grpcio grpc interceptor py python build lib win grpc copying src python grpcio grpc plugin wrapping py python build lib win grpc copying src python grpcio grpc server py python build lib win grpc copying src python grpcio grpc utilities py python build lib win grpc copying src python grpcio grpc init py python build lib win grpc creating python build lib win grpc beta copying src python grpcio grpc beta implementations py python build lib win grpc beta copying src python grpcio grpc beta interfaces py python build lib win grpc beta copying src python grpcio grpc beta utilities py python build lib win grpc beta copying src python grpcio grpc beta client adaptations py python build lib win grpc beta copying src python grpcio grpc beta metadata py python build lib win grpc beta copying src python grpcio grpc beta server adaptations py python build lib win grpc beta copying src python grpcio grpc beta init py python build lib win grpc beta creating python build lib win grpc experimental copying src python grpcio grpc experimental gevent py python build lib win grpc experimental copying src python grpcio grpc experimental init py python build lib win grpc experimental creating python build lib win grpc framework copying src python grpcio grpc framework init py python build lib win grpc framework creating python build lib win grpc cython copying src python grpcio grpc cython init py python build lib win grpc cython creating python build lib win grpc framework common copying src python grpcio grpc framework common cardinality py python build lib win grpc framework common copying src python grpcio grpc framework common style py python build lib win grpc framework common copying src python grpcio grpc framework common init py python build lib win grpc framework common creating python build lib win grpc framework foundation copying src python grpcio grpc framework foundation abandonment py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation callable util py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation future py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation logging pool py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation stream py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation stream util py python build lib win grpc framework foundation copying src python grpcio grpc framework foundation init py python build lib win grpc framework foundation creating python build lib win grpc framework interfaces copying src python grpcio grpc framework interfaces init py python build lib win grpc framework interfaces creating python build lib win grpc framework interfaces base copying src python grpcio grpc framework interfaces base base py python build lib win grpc framework interfaces base copying src python grpcio grpc framework interfaces base utilities py python build lib win grpc framework interfaces base copying src python grpcio grpc framework interfaces base init py python build lib win grpc framework interfaces base creating python build lib win grpc framework interfaces face copying src python grpcio grpc framework interfaces face face py python build lib win grpc framework interfaces face copying src python grpcio grpc framework interfaces face utilities py python build lib win grpc framework interfaces face copying src python grpcio grpc framework interfaces face init py python build lib win grpc framework interfaces face creating python build lib win grpc cython cygrpc copying src python grpcio grpc cython cygrpc init py python build lib win grpc cython cygrpc creating python build lib win grpc cython credentials copying src python grpcio grpc cython credentials roots pem python build lib win grpc cython credentials running build ext found cython generated files building grpc cython cygrpc extension traceback most recent call last file c users shree appdata local temp pip install grpcio src python grpcio commands py line in build extensions build ext build ext build extensions self file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extensions self build extensions serial file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extensions serial self build extension ext file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools command build ext py line in build extension build ext build extension self ext file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extension objects self compiler compile sources file c program files windowsapps pythonsoftwarefoundation python lib distutils msvccompiler py line in compile self initialize file c program files windowsapps pythonsoftwarefoundation python lib distutils msvccompiler py line in initialize vc env get vc env plat spec file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools msvc py line in get vc env return get vc env plat spec file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools msvc py line in get vc env raise distutils errors distutilsplatformerror distutils errors distutilsplatformerror microsoft visual c is required get it with build tools for visual studio during handling of the above exception another exception occurred traceback most recent call last file line in file c users shree appdata local temp pip install grpcio setup py line in setuptools setup file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools init py line in setup return distutils core setup attrs file c program files windowsapps pythonsoftwarefoundation python lib distutils core py line in setup dist run commands file c program files windowsapps pythonsoftwarefoundation python lib distutils dist py line in run commands self run command cmd file c program files windowsapps pythonsoftwarefoundation python lib distutils dist py line in run command cmd obj run file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools command install py line in run return orig install run self file c program files windowsapps pythonsoftwarefoundation python lib distutils command install py line in run self run command build file c program files windowsapps pythonsoftwarefoundation python lib distutils cmd py line in run command self distribution run command command file c program files windowsapps pythonsoftwarefoundation python lib distutils dist py line in run command cmd obj run file c program files windowsapps pythonsoftwarefoundation python lib distutils command build py line in run self run command cmd name file c program files windowsapps pythonsoftwarefoundation python lib distutils cmd py line in run command self distribution run command command file c program files windowsapps pythonsoftwarefoundation python lib distutils dist py line in run command cmd obj run file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools command build ext py line in run build ext run self file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in run self build extensions file c users shree appdata local temp pip install grpcio src python grpcio commands py line in build extensions support diagnose build ext error self error formatted exception file c users shree appdata local temp pip install grpcio src python grpcio support py line in diagnose build ext error raise commands commanderror commands commanderror we could not diagnose your build failure if you are unable to proceed please file an issue at with in the title please attach the whole log including everything that may have appeared above the python backtrace traceback most recent call last file c users shree appdata local temp pip install grpcio src python grpcio commands py line in build extensions build ext build ext build extensions self file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extensions self build extensions serial file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extensions serial self build extension ext file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools command build ext py line in build extension build ext build extension self ext file c program files windowsapps pythonsoftwarefoundation python lib distutils command build ext py line in build extension objects self compiler compile sources file c program files windowsapps pythonsoftwarefoundation python lib distutils msvccompiler py line in compile self initialize file c program files windowsapps pythonsoftwarefoundation python lib distutils msvccompiler py line in initialize vc env get vc env plat spec file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools msvc py line in get vc env return get vc env plat spec file c program files windowsapps pythonsoftwarefoundation python lib site packages setuptools msvc py line in get vc env raise distutils errors distutilsplatformerror distutils errors distutilsplatformerror microsoft visual c is required get it with build tools for visual studio rolling back uninstall of grpcio moving to c users shree appdata local packages pythonsoftwarefoundation python localcache local packages site packages grpc from c users shree appdata local packages pythonsoftwarefoundation python localcache local packages site packages rpc moving to c users shree appdata local packages pythonsoftwarefoundation python localcache local packages site packages grpcio dist info from c users shree appdata local packages pythonsoftwarefoundation python localcache local packages site packages rpcio dist info error command errored out with exit status c users shree appdata local microsoft windowsapps pythonsoftwarefoundation python python exe u c import sys setuptools tokenize sys argv c users shree appdata local temp pip install grpcio setup py file c users shree appdata local temp pip install grpcio setup py f getattr tokenize open open file code f read replace r n n f close exec compile code file exec install record c users shree appdata local temp pip record install record txt single version externally managed user prefix compile install headers c users shree appdata local packages pythonsoftwarefoundation python localcache local packages include grpcio check the logs for full command output make sure you include information that can help us debug full error message exception listing stack trace logs see for how to diagnose problems better anything else we should know about your project environment
0
16,318
20,973,106,040
IssuesEvent
2022-03-28 13:10:35
Automattic/woocommerce-payments
https://api.github.com/repos/Automattic/woocommerce-payments
closed
Documents view: document records list
category: projects component: invoices for processing fees
### Description As part of the VAT invoices for processing fees project, merchants should have access to a Documents list where they can see all of their platform-generated documents. ### Acceptance criteria * Merchants have access to a page that lists all their documents * The Documents page should be grouped under the Settings page * The list offers pagination controls ### Designs Designs can be checked in paJDYF-3mi-p2 and more details around scope are available in paJDYF-3sv-p2.
1.0
Documents view: document records list - ### Description As part of the VAT invoices for processing fees project, merchants should have access to a Documents list where they can see all of their platform-generated documents. ### Acceptance criteria * Merchants have access to a page that lists all their documents * The Documents page should be grouped under the Settings page * The list offers pagination controls ### Designs Designs can be checked in paJDYF-3mi-p2 and more details around scope are available in paJDYF-3sv-p2.
process
documents view document records list description as part of the vat invoices for processing fees project merchants should have access to a documents list where they can see all of their platform generated documents acceptance criteria merchants have access to a page that lists all their documents the documents page should be grouped under the settings page the list offers pagination controls designs designs can be checked in pajdyf and more details around scope are available in pajdyf
1
11,341
14,164,897,781
IssuesEvent
2020-11-12 06:09:22
tikv/tikv
https://api.github.com/repos/tikv/tikv
closed
cases::test_coprocessor::test_parse_request_failed_2 not work
priority/low severity/Major sig/coprocessor type/bug
## Bug Report <!-- Thanks for your bug report! Don't worry if you can't fill out all the sections. --> ### What version of TiKV are you using? master ### Steps to reproduce - add `println!("list {:?}", fail::list());` at `fail_point!("rockskv_async_snapshot",` - `cargo test --package tests --test failpoints -- cases::test_coprocessor::test_parse_request_failed_2 --exact --nocapture` ### What did you expect? fail::list prints failpoint configuration
1.0
cases::test_coprocessor::test_parse_request_failed_2 not work - ## Bug Report <!-- Thanks for your bug report! Don't worry if you can't fill out all the sections. --> ### What version of TiKV are you using? master ### Steps to reproduce - add `println!("list {:?}", fail::list());` at `fail_point!("rockskv_async_snapshot",` - `cargo test --package tests --test failpoints -- cases::test_coprocessor::test_parse_request_failed_2 --exact --nocapture` ### What did you expect? fail::list prints failpoint configuration
process
cases test coprocessor test parse request failed not work bug report what version of tikv are you using master steps to reproduce add println list fail list at fail point rockskv async snapshot cargo test package tests test failpoints cases test coprocessor test parse request failed exact nocapture what did you expect fail list prints failpoint configuration
1
420,716
12,243,013,691
IssuesEvent
2020-05-05 08:26:10
way-of-elendil/3.3.5
https://api.github.com/repos/way-of-elendil/3.3.5
reopened
Quest: La bataille pour Fossoyeuse (Alliance)
bug priority-medium type-quest
**Description** 13377 - [La bataille pour Fossoyeuse] Version Alliance - Lady Jaina Proudmoore(5981)ne despawn pas et reste bloquée quand on échoue la quête, elle reste bloquée quand on sort du combat également en fait, sur sa dernière cible, elle revient vers nous quand on est de nouveau en combat - Engorged Blight Worm 32483 ne despawn pas quand on échoue la quête (il doit apparaitre après l'embuscade, ce qui se passe la première fois qu'on lance la quête) - Engorged Blight Worm 32483 ne cesse d'utiliser 61124 [Ingérer] sur sa cible, aussitot relaché, le joueur/NPC est ravalé (deuxième vidéo que je t'ai link : il y a quelques secondes entre chaque utilisation du spell). Aussi, le joueur/NPC ingurgité doit être projeté loin, ce qui n'est pas le cas ici. - King Varian Wrynn 32401 bump à tout va, je ne sais pas trop comment c'est censé se passer mais dans le vidéo le spell n'est pas utilisé, le problème c'est qu'ils undermap ensuite EDIT: en fait varyan utilise le sort tonnerre de thrall https://woehead.way-of-elendil.fr/?spell=59507 - Grand Apothecary Putress Entry: 31530 quand le combat commence contre ce NPC, c'est un double de lui qui vient nous attaquer, l'original reste inataquable. Et ce double se fait bump, c'est un vrai problème (comme dit précédement, ça les fait passer undermaps) **Ressources additionnelles** https://www.youtube.com/watch?v=y-psRBcr6eg part 1 https://www.youtube.com/watch?v=YLnkdm4v9Bw part 2
1.0
Quest: La bataille pour Fossoyeuse (Alliance) - **Description** 13377 - [La bataille pour Fossoyeuse] Version Alliance - Lady Jaina Proudmoore(5981)ne despawn pas et reste bloquée quand on échoue la quête, elle reste bloquée quand on sort du combat également en fait, sur sa dernière cible, elle revient vers nous quand on est de nouveau en combat - Engorged Blight Worm 32483 ne despawn pas quand on échoue la quête (il doit apparaitre après l'embuscade, ce qui se passe la première fois qu'on lance la quête) - Engorged Blight Worm 32483 ne cesse d'utiliser 61124 [Ingérer] sur sa cible, aussitot relaché, le joueur/NPC est ravalé (deuxième vidéo que je t'ai link : il y a quelques secondes entre chaque utilisation du spell). Aussi, le joueur/NPC ingurgité doit être projeté loin, ce qui n'est pas le cas ici. - King Varian Wrynn 32401 bump à tout va, je ne sais pas trop comment c'est censé se passer mais dans le vidéo le spell n'est pas utilisé, le problème c'est qu'ils undermap ensuite EDIT: en fait varyan utilise le sort tonnerre de thrall https://woehead.way-of-elendil.fr/?spell=59507 - Grand Apothecary Putress Entry: 31530 quand le combat commence contre ce NPC, c'est un double de lui qui vient nous attaquer, l'original reste inataquable. Et ce double se fait bump, c'est un vrai problème (comme dit précédement, ça les fait passer undermaps) **Ressources additionnelles** https://www.youtube.com/watch?v=y-psRBcr6eg part 1 https://www.youtube.com/watch?v=YLnkdm4v9Bw part 2
non_process
quest la bataille pour fossoyeuse alliance description version alliance lady jaina proudmoore ne despawn pas et reste bloquée quand on échoue la quête elle reste bloquée quand on sort du combat également en fait sur sa dernière cible elle revient vers nous quand on est de nouveau en combat engorged blight worm ne despawn pas quand on échoue la quête il doit apparaitre après l embuscade ce qui se passe la première fois qu on lance la quête engorged blight worm ne cesse d utiliser sur sa cible aussitot relaché le joueur npc est ravalé deuxième vidéo que je t ai link il y a quelques secondes entre chaque utilisation du spell aussi le joueur npc ingurgité doit être projeté loin ce qui n est pas le cas ici king varian wrynn bump à tout va je ne sais pas trop comment c est censé se passer mais dans le vidéo le spell n est pas utilisé le problème c est qu ils undermap ensuite edit en fait varyan utilise le sort tonnerre de thrall grand apothecary putress entry quand le combat commence contre ce npc c est un double de lui qui vient nous attaquer l original reste inataquable et ce double se fait bump c est un vrai problème comme dit précédement ça les fait passer undermaps ressources additionnelles part part
0
15,203
19,027,819,198
IssuesEvent
2021-11-24 07:08:10
GoogleCloudPlatform/fda-mystudies
https://api.github.com/repos/GoogleCloudPlatform/fda-mystudies
closed
[Response Server] Issue related to duplicate responses getting saved with same activityRunId and endTime
Bug P1 Response datastore Process: Fixed Process: Tested QA Process: Tested dev
**Issue:** Occasionally, duplicate entries are found (same activityRunId and endTime but different created date) in the Firestore Activities that corrupts reporting results when fetched. **Approach:** Changes should be made to check if the current response already exists for a participant/study combination and It will submit the response only if the response does not exist on the Response Server.
3.0
[Response Server] Issue related to duplicate responses getting saved with same activityRunId and endTime - **Issue:** Occasionally, duplicate entries are found (same activityRunId and endTime but different created date) in the Firestore Activities that corrupts reporting results when fetched. **Approach:** Changes should be made to check if the current response already exists for a participant/study combination and It will submit the response only if the response does not exist on the Response Server.
process
issue related to duplicate responses getting saved with same activityrunid and endtime issue occasionally duplicate entries are found same activityrunid and endtime but different created date in the firestore activities that corrupts reporting results when fetched approach changes should be made to check if the current response already exists for a participant study combination and it will submit the response only if the response does not exist on the response server
1
118,621
17,594,188,261
IssuesEvent
2021-08-17 01:05:22
doc-ai/tensorflow
https://api.github.com/repos/doc-ai/tensorflow
opened
CVE-2021-29583 (High) detected in tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl
security vulnerability
## CVE-2021-29583 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl</b></p></summary> <p>TensorFlow is an open source machine learning framework for everyone.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/29/6c/2c9a5c4d095c63c2fb37d20def0e4f92685f7aee9243d6aae25862694fd1/tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/29/6c/2c9a5c4d095c63c2fb37d20def0e4f92685f7aee9243d6aae25862694fd1/tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl</a></p> <p>Path to dependency file: tensorflow/tensorflow/lite/micro/examples/magic_wand/train/requirements.txt</p> <p>Path to vulnerable library: tensorflow/tensorflow/lite/micro/examples/magic_wand/train/requirements.txt</p> <p> Dependency Hierarchy: - :x: **tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> TensorFlow is an end-to-end open source platform for machine learning. The implementation of `tf.raw_ops.FusedBatchNorm` is vulnerable to a heap buffer overflow. If the tensors are empty, the same implementation can trigger undefined behavior by dereferencing null pointers. The implementation(https://github.com/tensorflow/tensorflow/blob/57d86e0db5d1365f19adcce848dfc1bf89fdd4c7/tensorflow/core/kernels/fused_batch_norm_op.cc) fails to validate that `scale`, `offset`, `mean` and `variance` (the last two only when required) all have the same number of elements as the number of channels of `x`. This results in heap out of bounds reads when the buffers backing these tensors are indexed past their boundary. If the tensors are empty, the validation mentioned in the above paragraph would also trigger and prevent the undefined behavior. The fix will be included in TensorFlow 2.5.0. We will also cherrypick this commit on TensorFlow 2.4.2, TensorFlow 2.3.3, TensorFlow 2.2.3 and TensorFlow 2.1.4, as these are also affected and still in supported range. <p>Publish Date: 2021-05-14 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-29583>CVE-2021-29583</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/tensorflow/tensorflow/security/advisories/GHSA-9xh4-23q4-v6wr">https://github.com/tensorflow/tensorflow/security/advisories/GHSA-9xh4-23q4-v6wr</a></p> <p>Release Date: 2021-05-14</p> <p>Fix Resolution: tensorflow - 2.5.0, tensorflow-cpu - 2.5.0, tensorflow-gpu - 2.5.0</p> </p> </details> <p></p> *** <!-- REMEDIATE-OPEN-PR-START --> - [ ] Check this box to open an automated fix PR <!-- REMEDIATE-OPEN-PR-END --> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"tensorflow","packageVersion":"2.0.0b1","packageFilePaths":["/tensorflow/lite/micro/examples/magic_wand/train/requirements.txt"],"isTransitiveDependency":false,"dependencyTree":"tensorflow:2.0.0b1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tensorflow - 2.5.0, tensorflow-cpu - 2.5.0, tensorflow-gpu - 2.5.0"}],"baseBranches":[],"vulnerabilityIdentifier":"CVE-2021-29583","vulnerabilityDetails":"TensorFlow is an end-to-end open source platform for machine learning. The implementation of `tf.raw_ops.FusedBatchNorm` is vulnerable to a heap buffer overflow. If the tensors are empty, the same implementation can trigger undefined behavior by dereferencing null pointers. The implementation(https://github.com/tensorflow/tensorflow/blob/57d86e0db5d1365f19adcce848dfc1bf89fdd4c7/tensorflow/core/kernels/fused_batch_norm_op.cc) fails to validate that `scale`, `offset`, `mean` and `variance` (the last two only when required) all have the same number of elements as the number of channels of `x`. This results in heap out of bounds reads when the buffers backing these tensors are indexed past their boundary. If the tensors are empty, the validation mentioned in the above paragraph would also trigger and prevent the undefined behavior. The fix will be included in TensorFlow 2.5.0. We will also cherrypick this commit on TensorFlow 2.4.2, TensorFlow 2.3.3, TensorFlow 2.2.3 and TensorFlow 2.1.4, as these are also affected and still in supported range.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-29583","cvss3Severity":"high","cvss3Score":"7.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"Low","S":"Unchanged","C":"High","UI":"None","AV":"Local","I":"High"},"extraData":{}}</REMEDIATE> -->
True
CVE-2021-29583 (High) detected in tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl - ## CVE-2021-29583 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl</b></p></summary> <p>TensorFlow is an open source machine learning framework for everyone.</p> <p>Library home page: <a href="https://files.pythonhosted.org/packages/29/6c/2c9a5c4d095c63c2fb37d20def0e4f92685f7aee9243d6aae25862694fd1/tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl">https://files.pythonhosted.org/packages/29/6c/2c9a5c4d095c63c2fb37d20def0e4f92685f7aee9243d6aae25862694fd1/tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl</a></p> <p>Path to dependency file: tensorflow/tensorflow/lite/micro/examples/magic_wand/train/requirements.txt</p> <p>Path to vulnerable library: tensorflow/tensorflow/lite/micro/examples/magic_wand/train/requirements.txt</p> <p> Dependency Hierarchy: - :x: **tensorflow-2.0.0b1-cp36-cp36m-manylinux1_x86_64.whl** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> TensorFlow is an end-to-end open source platform for machine learning. The implementation of `tf.raw_ops.FusedBatchNorm` is vulnerable to a heap buffer overflow. If the tensors are empty, the same implementation can trigger undefined behavior by dereferencing null pointers. The implementation(https://github.com/tensorflow/tensorflow/blob/57d86e0db5d1365f19adcce848dfc1bf89fdd4c7/tensorflow/core/kernels/fused_batch_norm_op.cc) fails to validate that `scale`, `offset`, `mean` and `variance` (the last two only when required) all have the same number of elements as the number of channels of `x`. This results in heap out of bounds reads when the buffers backing these tensors are indexed past their boundary. If the tensors are empty, the validation mentioned in the above paragraph would also trigger and prevent the undefined behavior. The fix will be included in TensorFlow 2.5.0. We will also cherrypick this commit on TensorFlow 2.4.2, TensorFlow 2.3.3, TensorFlow 2.2.3 and TensorFlow 2.1.4, as these are also affected and still in supported range. <p>Publish Date: 2021-05-14 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-29583>CVE-2021-29583</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/tensorflow/tensorflow/security/advisories/GHSA-9xh4-23q4-v6wr">https://github.com/tensorflow/tensorflow/security/advisories/GHSA-9xh4-23q4-v6wr</a></p> <p>Release Date: 2021-05-14</p> <p>Fix Resolution: tensorflow - 2.5.0, tensorflow-cpu - 2.5.0, tensorflow-gpu - 2.5.0</p> </p> </details> <p></p> *** <!-- REMEDIATE-OPEN-PR-START --> - [ ] Check this box to open an automated fix PR <!-- REMEDIATE-OPEN-PR-END --> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Python","packageName":"tensorflow","packageVersion":"2.0.0b1","packageFilePaths":["/tensorflow/lite/micro/examples/magic_wand/train/requirements.txt"],"isTransitiveDependency":false,"dependencyTree":"tensorflow:2.0.0b1","isMinimumFixVersionAvailable":true,"minimumFixVersion":"tensorflow - 2.5.0, tensorflow-cpu - 2.5.0, tensorflow-gpu - 2.5.0"}],"baseBranches":[],"vulnerabilityIdentifier":"CVE-2021-29583","vulnerabilityDetails":"TensorFlow is an end-to-end open source platform for machine learning. The implementation of `tf.raw_ops.FusedBatchNorm` is vulnerable to a heap buffer overflow. If the tensors are empty, the same implementation can trigger undefined behavior by dereferencing null pointers. The implementation(https://github.com/tensorflow/tensorflow/blob/57d86e0db5d1365f19adcce848dfc1bf89fdd4c7/tensorflow/core/kernels/fused_batch_norm_op.cc) fails to validate that `scale`, `offset`, `mean` and `variance` (the last two only when required) all have the same number of elements as the number of channels of `x`. This results in heap out of bounds reads when the buffers backing these tensors are indexed past their boundary. If the tensors are empty, the validation mentioned in the above paragraph would also trigger and prevent the undefined behavior. The fix will be included in TensorFlow 2.5.0. We will also cherrypick this commit on TensorFlow 2.4.2, TensorFlow 2.3.3, TensorFlow 2.2.3 and TensorFlow 2.1.4, as these are also affected and still in supported range.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-29583","cvss3Severity":"high","cvss3Score":"7.8","cvss3Metrics":{"A":"High","AC":"Low","PR":"Low","S":"Unchanged","C":"High","UI":"None","AV":"Local","I":"High"},"extraData":{}}</REMEDIATE> -->
non_process
cve high detected in tensorflow whl cve high severity vulnerability vulnerable library tensorflow whl tensorflow is an open source machine learning framework for everyone library home page a href path to dependency file tensorflow tensorflow lite micro examples magic wand train requirements txt path to vulnerable library tensorflow tensorflow lite micro examples magic wand train requirements txt dependency hierarchy x tensorflow whl vulnerable library vulnerability details tensorflow is an end to end open source platform for machine learning the implementation of tf raw ops fusedbatchnorm is vulnerable to a heap buffer overflow if the tensors are empty the same implementation can trigger undefined behavior by dereferencing null pointers the implementation fails to validate that scale offset mean and variance the last two only when required all have the same number of elements as the number of channels of x this results in heap out of bounds reads when the buffers backing these tensors are indexed past their boundary if the tensors are empty the validation mentioned in the above paragraph would also trigger and prevent the undefined behavior the fix will be included in tensorflow we will also cherrypick this commit on tensorflow tensorflow tensorflow and tensorflow as these are also affected and still in supported range publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution tensorflow tensorflow cpu tensorflow gpu check this box to open an automated fix pr isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency false dependencytree tensorflow isminimumfixversionavailable true minimumfixversion tensorflow tensorflow cpu tensorflow gpu basebranches vulnerabilityidentifier cve vulnerabilitydetails tensorflow is an end to end open source platform for machine learning the implementation of tf raw ops fusedbatchnorm is vulnerable to a heap buffer overflow if the tensors are empty the same implementation can trigger undefined behavior by dereferencing null pointers the implementation fails to validate that scale offset mean and variance the last two only when required all have the same number of elements as the number of channels of x this results in heap out of bounds reads when the buffers backing these tensors are indexed past their boundary if the tensors are empty the validation mentioned in the above paragraph would also trigger and prevent the undefined behavior the fix will be included in tensorflow we will also cherrypick this commit on tensorflow tensorflow tensorflow and tensorflow as these are also affected and still in supported range vulnerabilityurl
0
428,674
12,415,053,015
IssuesEvent
2020-05-22 15:32:57
craftercms/craftercms
https://api.github.com/repos/craftercms/craftercms
closed
[studio-ui] Page Builder: RTE
enhancement priority: medium
- [x] The inline editor context menu doesn't allow clicking it's items; it closes and ends editing when clicking it - Implement validations - [ ] Min/Max length for text fields
1.0
[studio-ui] Page Builder: RTE - - [x] The inline editor context menu doesn't allow clicking it's items; it closes and ends editing when clicking it - Implement validations - [ ] Min/Max length for text fields
non_process
page builder rte the inline editor context menu doesn t allow clicking it s items it closes and ends editing when clicking it implement validations min max length for text fields
0
127,415
18,010,456,106
IssuesEvent
2021-09-16 08:00:00
maddyCode23/linux-4.1.15
https://api.github.com/repos/maddyCode23/linux-4.1.15
opened
CVE-2017-16995 (High) detected in linux-stable-rtv4.1.33
security vulnerability
## CVE-2017-16995 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary> <p> <p>Julia Cartwright's fork of linux-stable-rt.git</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/maddyCode23/linux-4.1.15/commit/f1f3d2b150be669390b32dfea28e773471bdd6e7">f1f3d2b150be669390b32dfea28e773471bdd6e7</a></p> </p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/bpf/verifier.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/bpf/verifier.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The check_alu_op function in kernel/bpf/verifier.c in the Linux kernel through 4.4 allows local users to cause a denial of service (memory corruption) or possibly have unspecified other impact by leveraging incorrect sign extension. <p>Publish Date: 2017-12-27 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-16995>CVE-2017-16995</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-16995">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-16995</a></p> <p>Release Date: 2017-12-27</p> <p>Fix Resolution: v4.15-rc5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2017-16995 (High) detected in linux-stable-rtv4.1.33 - ## CVE-2017-16995 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv4.1.33</b></p></summary> <p> <p>Julia Cartwright's fork of linux-stable-rt.git</p> <p>Library home page: <a href=https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git>https://git.kernel.org/pub/scm/linux/kernel/git/julia/linux-stable-rt.git</a></p> <p>Found in HEAD commit: <a href="https://github.com/maddyCode23/linux-4.1.15/commit/f1f3d2b150be669390b32dfea28e773471bdd6e7">f1f3d2b150be669390b32dfea28e773471bdd6e7</a></p> </p> </details> </p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Source Files (2)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/bpf/verifier.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/kernel/bpf/verifier.c</b> </p> </details> <p></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/high_vul.png' width=19 height=20> Vulnerability Details</summary> <p> The check_alu_op function in kernel/bpf/verifier.c in the Linux kernel through 4.4 allows local users to cause a denial of service (memory corruption) or possibly have unspecified other impact by leveraging incorrect sign extension. <p>Publish Date: 2017-12-27 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-16995>CVE-2017-16995</a></p> </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS 3 Score Details (<b>7.8</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: Low - User Interaction: None - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: High - Integrity Impact: High - Availability Impact: High </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/suggested_fix.png' width=19 height=20> Suggested Fix</summary> <p> <p>Type: Upgrade version</p> <p>Origin: <a href="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-16995">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2017-16995</a></p> <p>Release Date: 2017-12-27</p> <p>Fix Resolution: v4.15-rc5</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_process
cve high detected in linux stable cve high severity vulnerability vulnerable library linux stable julia cartwright s fork of linux stable rt git library home page a href found in head commit a href vulnerable source files kernel bpf verifier c kernel bpf verifier c vulnerability details the check alu op function in kernel bpf verifier c in the linux kernel through allows local users to cause a denial of service memory corruption or possibly have unspecified other impact by leveraging incorrect sign extension publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required low user interaction none scope unchanged impact metrics confidentiality impact high integrity impact high availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution step up your open source security game with whitesource
0
1,521
4,112,825,088
IssuesEvent
2016-06-07 12:05:30
DevExpress/testcafe-hammerhead
https://api.github.com/repos/DevExpress/testcafe-hammerhead
reopened
Wrap processed stylesheets
!IMPORTANT! AREA: client REASON: won't fix SYSTEM: resource processing TYPE: enhancement
Currently we processed scripts covered with processing comments: ```js /*hammerhead|script-processing-header|start*/ ... /*hammerhead|script-processing-header|end*/ ``` but for stylesheets we have only header: ```css /* stylesheet processed via hammerhead */ ... ``` Can we have same type of wrapper for stylesheets? Also can you expose prefix and postfix comment constants in client API for hammerhead? It's extremely urgent for https://github.com/DevExpress/testcafe/issues/574
1.0
Wrap processed stylesheets - Currently we processed scripts covered with processing comments: ```js /*hammerhead|script-processing-header|start*/ ... /*hammerhead|script-processing-header|end*/ ``` but for stylesheets we have only header: ```css /* stylesheet processed via hammerhead */ ... ``` Can we have same type of wrapper for stylesheets? Also can you expose prefix and postfix comment constants in client API for hammerhead? It's extremely urgent for https://github.com/DevExpress/testcafe/issues/574
process
wrap processed stylesheets currently we processed scripts covered with processing comments js hammerhead script processing header start hammerhead script processing header end but for stylesheets we have only header css stylesheet processed via hammerhead can we have same type of wrapper for stylesheets also can you expose prefix and postfix comment constants in client api for hammerhead it s extremely urgent for
1
164,221
25,938,214,433
IssuesEvent
2022-12-16 15:53:28
heydoy/YeonMuLog
https://api.github.com/repos/heydoy/YeonMuLog
closed
[Design] 리뷰 콜렉션 뷰 셀 구성
Design
### 🛠 이슈 리뷰 콜렉션 뷰 셀 구성 ### 📝 할 일 - [x] 텍스트만 있을 때 - [ ] 사진 + 텍스트 - [ ] 음성메모 + 텍스트 - [ ] 사진 - [ ] 음성메모
1.0
[Design] 리뷰 콜렉션 뷰 셀 구성 - ### 🛠 이슈 리뷰 콜렉션 뷰 셀 구성 ### 📝 할 일 - [x] 텍스트만 있을 때 - [ ] 사진 + 텍스트 - [ ] 음성메모 + 텍스트 - [ ] 사진 - [ ] 음성메모
non_process
리뷰 콜렉션 뷰 셀 구성 🛠 이슈 리뷰 콜렉션 뷰 셀 구성 📝 할 일 텍스트만 있을 때 사진 텍스트 음성메모 텍스트 사진 음성메모
0
254,225
21,772,238,291
IssuesEvent
2022-05-13 10:12:44
Uuvana-Studios/longvinter-windows-client
https://api.github.com/repos/Uuvana-Studios/longvinter-windows-client
closed
Server isn't connecting.
Bug High Priority Not Tested
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to main menu 2. Click on play 3. then you click on the Singapore Server or any actually 4.The screen acts like its loading me into the server 5. Then I am back to the Play screen. 6. It won't let me into the server. **Expected behavior** A clear and concise description of what you expected to happen. Once I hit play **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: Windows - Game Version 1.0.1 - Steam Version Last update March 16th **Additional context** Been going on since yesterday night. Worked fine around 11am but around 8pm when i got on, it wouldnt allow me into any servers, just acts like it will then crashes.
1.0
Server isn't connecting. - **Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: 1. Go to main menu 2. Click on play 3. then you click on the Singapore Server or any actually 4.The screen acts like its loading me into the server 5. Then I am back to the Play screen. 6. It won't let me into the server. **Expected behavior** A clear and concise description of what you expected to happen. Once I hit play **Screenshots** If applicable, add screenshots to help explain your problem. **Desktop (please complete the following information):** - OS: Windows - Game Version 1.0.1 - Steam Version Last update March 16th **Additional context** Been going on since yesterday night. Worked fine around 11am but around 8pm when i got on, it wouldnt allow me into any servers, just acts like it will then crashes.
non_process
server isn t connecting describe the bug a clear and concise description of what the bug is to reproduce steps to reproduce the behavior go to main menu click on play then you click on the singapore server or any actually the screen acts like its loading me into the server then i am back to the play screen it won t let me into the server expected behavior a clear and concise description of what you expected to happen once i hit play screenshots if applicable add screenshots to help explain your problem desktop please complete the following information os windows game version steam version last update march additional context been going on since yesterday night worked fine around but around when i got on it wouldnt allow me into any servers just acts like it will then crashes
0
570,294
17,023,082,009
IssuesEvent
2021-07-03 00:18:12
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
static renderer should distinguish between streets and things like freemap paths
Component: website Priority: major Resolution: invalid Type: enhancement
**[Submitted to the original trac issue database at 3.18pm, Tuesday, 15th November 2005]** Options: * rewrite renderer for every new app like Freemap which comes along * or (better) specify a tag for streets, and render everything else differently Does Nick's Freemap already tag streets differently to paths? Can we just use that?
1.0
static renderer should distinguish between streets and things like freemap paths - **[Submitted to the original trac issue database at 3.18pm, Tuesday, 15th November 2005]** Options: * rewrite renderer for every new app like Freemap which comes along * or (better) specify a tag for streets, and render everything else differently Does Nick's Freemap already tag streets differently to paths? Can we just use that?
non_process
static renderer should distinguish between streets and things like freemap paths options rewrite renderer for every new app like freemap which comes along or better specify a tag for streets and render everything else differently does nick s freemap already tag streets differently to paths can we just use that
0
722,404
24,860,793,425
IssuesEvent
2022-10-27 08:07:03
milvus-io/milvus
https://api.github.com/repos/milvus-io/milvus
closed
[Bug]: Milvus create diskann index timeout ,dataCoord panic cause milvus server crash
kind/bug priority/urgent triage/accepted
### Is there an existing issue for this? - [X] I have searched the existing issues ### Environment ```markdown - Milvus version:02871ea4b - Deployment mode(standalone or cluster): - SDK version(e.g. pymilvus v2.0.0rc2):pymilvus==2.2.0.dev49 - OS(Ubuntu or CentOS): - CPU/Memory: - GPU: - Others: ``` ### Current Behavior indexcase: [gw4] linux -- Python 3.6.8 /usr/local/bin/python3 ``` [2022-10-19T08:22:47.562Z] [gw4] linux -- Python 3.6.8 /usr/local/bin/python3[gw4] linux -- Python 3.6.8 /usr/local/bin/python3 [2022-10-19T08:22:47.562Z] [2022-10-19T08:22:47.562Z] self = <test_index.TestIndexDiskann object at 0x7fc185647978> [2022-10-19T08:22:47.562Z] [2022-10-19T08:22:47.562Z] @pytest.mark.tags(CaseLabel.L1) [2022-10-19T08:22:47.562Z] def test_create_index_with_diskann_normal(self): [2022-10-19T08:22:47.562Z] """ [2022-10-19T08:22:47.562Z] target: test create index with diskann [2022-10-19T08:22:47.562Z] method: 1.create collection and insert data [2022-10-19T08:22:47.562Z] 2.create diskann index , then load data [2022-10-19T08:22:47.562Z] 3.search successfully [2022-10-19T08:22:47.562Z] expected: create index successfully [2022-10-19T08:22:47.562Z] """ [2022-10-19T08:22:47.562Z] c_name = cf.gen_unique_str(prefix) [2022-10-19T08:22:47.562Z] collection_w = self.init_collection_wrap(name=c_name) [2022-10-19T08:22:47.562Z] data = cf.gen_default_list_data() [2022-10-19T08:22:47.562Z] collection_w.insert(data=data) [2022-10-19T08:22:47.562Z] > index, _ = self.index_wrap.init_index(collection_w.collection, default_float_vec_field_name, ct.default_diskann_index) ``` client log: ``` [2022-10-19T08:22:47.563Z] [2022-10-19 08:22:36 - WARNING - pymilvus.decorators]: Retry timeout: 40s (decorators.py:80) [2022-10-19T08:22:47.563Z] [2022-10-19 08:22:36 - ERROR - pymilvus.decorators]: RPC error: [wait_for_creating_index], <MilvusException: (code=1, message=Retry timeout: 40s, message=CreateIndex Timeout)>, <Time:{'RPC start': '2022-10-19 08:21:56.008952', 'RPC error': '2022-10-19 08:22:36.355579'}> (decorators.py:112) [2022-10-19T08:22:47.563Z] [2022-10-19 08:22:36 - WARNING - pymilvus.decorators]: Retry timeout: 40s (decorators.py:80) [2022-10-19T08:22:47.563Z] [2022-10-19 08:22:36 - ERROR - pymilvus.decorators]: RPC error: [create_index], <MilvusException: (code=1, message=Retry timeout: 40s, message=Retry timeout: 40s, message=CreateIndex Timeout)>, <Time:{'RPC start': '2022-10-19 08:21:53.491496', 'RPC error': '2022-10-19 08:22:36.355944'}> (decorators.py:112) [2022-10-19T08:22:47.563Z] [2022-10-19 08:22:36 - ERROR - ci_test]: Traceback (most recent call last): [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 51, in handler [2022-10-19T08:22:47.563Z] return func(self, *args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/client/grpc_handler.py", line 662, in wait_for_creating_index [2022-10-19T08:22:47.563Z] raise MilvusException(1, "CreateIndex Timeout") [2022-10-19T08:22:47.563Z] pymilvus.exceptions.MilvusException: <MilvusException: (code=1, message=CreateIndex Timeout)> [2022-10-19T08:22:47.563Z] [2022-10-19T08:22:47.563Z] During handling of the above exception, another exception occurred: [2022-10-19T08:22:47.563Z] [2022-10-19T08:22:47.563Z] Traceback (most recent call last): [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 51, in handler [2022-10-19T08:22:47.563Z] return func(self, *args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/client/grpc_handler.py", line 589, in create_index [2022-10-19T08:22:47.563Z] timeout=timeout) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 113, in handler [2022-10-19T08:22:47.563Z] raise e [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 109, in handler [2022-10-19T08:22:47.563Z] return func(*args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 139, in handler [2022-10-19T08:22:47.563Z] ret = func(self, *args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 81, in handler [2022-10-19T08:22:47.563Z] raise MilvusException(e.code, f"{timeout_msg}, message={e.message}") [2022-10-19T08:22:47.563Z] pymilvus.exceptions.MilvusException: <MilvusException: (code=1, message=Retry timeout: 40s, message=CreateIndex Timeout)> [2022-10-19T08:22:47.563Z] [2022-10-19T08:22:47.563Z] During handling of the above exception, another exception occurred: [2022-10-19T08:22:47.563Z] [2022-10-19T08:22:47.563Z] Traceback (most recent call last): [2022-10-19T08:22:47.563Z] File "/home/jenkins/agent/workspace/tests/python_client/utils/api_request.py", line 26, in inner_wrapper [2022-10-19T08:22:47.563Z] res = func(*args, **_kwargs) [2022-10-19T08:22:47.563Z] File "/home/jenkins/agent/workspace/tests/python_client/utils/api_request.py", line 57, in api_request [2022-10-19T08:22:47.563Z] return func(*arg, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/orm/index.py", line 85, in __init__ [2022-10-19T08:22:47.563Z] conn.create_index(self._collection.name, self._field_name, self._index_params, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 113, in handler [2022-10-19T08:22:47.563Z] raise e [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 109, in handler [2022-10-19T08:22:47.563Z] return func(*args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 139, in handler [2022-10-19T08:22:47.563Z] ret = func(self, *args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 81, in handler [2022-10-19T08:22:47.563Z] raise MilvusException(e.code, f"{timeout_msg}, message={e.message}") [2022-10-19T08:22:47.563Z] pymilvus.exceptions.MilvusException: <MilvusException: (code=1, message=Retry timeout: 40s, message=Retry timeout: 40s, message=CreateIndex Timeout)> [2022-10-19T08:22:47.564Z] (api_request.py:39) [2022-10-19T08:22:47.564Z] [2022-10-19 08:22:36 - ERROR - ci_test]: (api_response) : <MilvusException: (code=1, message=Retry timeout: 40s, message=Retry timeout: 40s, message=CreateIndex Timeout)> (api_request.py:40) ``` jerkins:https://jenkins.milvus.io:18080/blue/organizations/jenkins/Milvus%20HA%20CI/detail/PR-19893/1/pipeline/ server ``` 2022-10-19T16:22:38.086450315+08:00 stdout F [2022/10/19 08:22:38.086 +00:00] [INFO] [datacoord/compaction.go:280] ["handleCompactionResult: success to handle merge compaction result"] [planID=436775768024699475] 2022-10-19T16:22:38.086467238+08:00 stdout F [2022/10/19 08:22:38.086 +00:00] [DEBUG] [datacoord/compaction.go:362] ["try to release queue"] [nodeID=4] 2022-10-19T16:22:38.086478541+08:00 stdout F [2022/10/19 08:22:38.086 +00:00] [INFO] [datacoord/compaction.go:313] ["compaction completed"] [planID=436775768024699477] [nodeID=4] 2022-10-19T16:22:38.086489594+08:00 stdout F [2022/10/19 08:22:38.086 +00:00] [INFO] [datacoord/meta.go:864] ["meta update: get complete compaction meta"] 2022-10-19T16:22:38.087223656+08:00 stdout F [2022/10/19 08:22:38.087 +00:00] [DEBUG] [datacoord/meta.go:934] ["meta update: get complete compaction meta - complete"] [segmentID=436775768024699478] [collectionID=436775768024497617] [partitionID=436775768024497618] [NumOfRows=49937] [compactionFrom="[436775768024699053,436775768024498275,436775768024698703,436775768024698619,436775768024698961,436775768024498191,436775768024498016,436775768024698453,436775768024497801,436775768024699252,436775768024698515,436775768024698352,436775768024497870,436775768024497622,436775768024498112,436775768024698775,436775768024497945,436775768024699126,436775768024497711,436775768024698845]"] 2022-10-19T16:22:38.087250429+08:00 stdout F [2022/10/19 08:22:38.087 +00:00] [DEBUG] [datacoord/compaction.go:257] ["handleCompactionResult: altering metastore after compaction"] [planID=436775768024699477] 2022-10-19T16:22:38.089486051+08:00 stderr F panic: segment not found: 436775768024698774 2022-10-19T16:22:38.089506391+08:00 stderr F 2022-10-19T16:22:38.089514066+08:00 stderr F goroutine 155817 [running]: 2022-10-19T16:22:38.089526329+08:00 stderr F [github.com/milvus-io/milvus/internal/datanode.(*insertBufferNode).Operate](http://github.com/milvus-io/milvus/internal/datanode.(*insertBufferNode).Operate)(0xc0053905a0, {0xc009bfbab0?, 0x1?, 0x1?}) 2022-10-19T16:22:38.089537762+08:00 stderr F /go/src/[github.com/milvus-io/milvus/internal/datanode/flow_graph_insert_buffer_node.go:408](http://github.com/milvus-io/milvus/internal/datanode/flow_graph_insert_buffer_node.go:408) +0x3459 2022-10-19T16:22:38.089544057+08:00 stderr F [github.com/milvus-io/milvus/internal/util/flowgraph.(*nodeCtx).work(0xc018f47290)](http://github.com/milvus-io/milvus/internal/util/flowgraph.(*nodeCtx).work(0xc018f47290)) 2022-10-19T16:22:38.089548083+08:00 stderr F /go/src/[github.com/milvus-io/milvus/internal/util/flowgraph/node.go:112](http://github.com/milvus-io/milvus/internal/util/flowgraph/node.go:112) +0x232 2022-10-19T16:22:38.089552189+08:00 stderr F created by [github.com/milvus-io/milvus/internal/util/flowgraph.(*nodeCtx).Start](http://github.com/milvus-io/milvus/internal/util/flowgraph.(*nodeCtx).Start) 2022-10-19T16:22:38.089558971+08:00 stderr F /go/src/[github.com/milvus-io/milvus/internal/util/flowgraph/node.go:68](http://github.com/milvus-io/milvus/internal/util/flowgraph/node.go:68) +0x79 ``` ### Expected Behavior _No response_ ### Steps To Reproduce _No response_ ### Milvus Log _No response_ ### Anything else? _No response_
1.0
[Bug]: Milvus create diskann index timeout ,dataCoord panic cause milvus server crash - ### Is there an existing issue for this? - [X] I have searched the existing issues ### Environment ```markdown - Milvus version:02871ea4b - Deployment mode(standalone or cluster): - SDK version(e.g. pymilvus v2.0.0rc2):pymilvus==2.2.0.dev49 - OS(Ubuntu or CentOS): - CPU/Memory: - GPU: - Others: ``` ### Current Behavior indexcase: [gw4] linux -- Python 3.6.8 /usr/local/bin/python3 ``` [2022-10-19T08:22:47.562Z] [gw4] linux -- Python 3.6.8 /usr/local/bin/python3[gw4] linux -- Python 3.6.8 /usr/local/bin/python3 [2022-10-19T08:22:47.562Z] [2022-10-19T08:22:47.562Z] self = <test_index.TestIndexDiskann object at 0x7fc185647978> [2022-10-19T08:22:47.562Z] [2022-10-19T08:22:47.562Z] @pytest.mark.tags(CaseLabel.L1) [2022-10-19T08:22:47.562Z] def test_create_index_with_diskann_normal(self): [2022-10-19T08:22:47.562Z] """ [2022-10-19T08:22:47.562Z] target: test create index with diskann [2022-10-19T08:22:47.562Z] method: 1.create collection and insert data [2022-10-19T08:22:47.562Z] 2.create diskann index , then load data [2022-10-19T08:22:47.562Z] 3.search successfully [2022-10-19T08:22:47.562Z] expected: create index successfully [2022-10-19T08:22:47.562Z] """ [2022-10-19T08:22:47.562Z] c_name = cf.gen_unique_str(prefix) [2022-10-19T08:22:47.562Z] collection_w = self.init_collection_wrap(name=c_name) [2022-10-19T08:22:47.562Z] data = cf.gen_default_list_data() [2022-10-19T08:22:47.562Z] collection_w.insert(data=data) [2022-10-19T08:22:47.562Z] > index, _ = self.index_wrap.init_index(collection_w.collection, default_float_vec_field_name, ct.default_diskann_index) ``` client log: ``` [2022-10-19T08:22:47.563Z] [2022-10-19 08:22:36 - WARNING - pymilvus.decorators]: Retry timeout: 40s (decorators.py:80) [2022-10-19T08:22:47.563Z] [2022-10-19 08:22:36 - ERROR - pymilvus.decorators]: RPC error: [wait_for_creating_index], <MilvusException: (code=1, message=Retry timeout: 40s, message=CreateIndex Timeout)>, <Time:{'RPC start': '2022-10-19 08:21:56.008952', 'RPC error': '2022-10-19 08:22:36.355579'}> (decorators.py:112) [2022-10-19T08:22:47.563Z] [2022-10-19 08:22:36 - WARNING - pymilvus.decorators]: Retry timeout: 40s (decorators.py:80) [2022-10-19T08:22:47.563Z] [2022-10-19 08:22:36 - ERROR - pymilvus.decorators]: RPC error: [create_index], <MilvusException: (code=1, message=Retry timeout: 40s, message=Retry timeout: 40s, message=CreateIndex Timeout)>, <Time:{'RPC start': '2022-10-19 08:21:53.491496', 'RPC error': '2022-10-19 08:22:36.355944'}> (decorators.py:112) [2022-10-19T08:22:47.563Z] [2022-10-19 08:22:36 - ERROR - ci_test]: Traceback (most recent call last): [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 51, in handler [2022-10-19T08:22:47.563Z] return func(self, *args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/client/grpc_handler.py", line 662, in wait_for_creating_index [2022-10-19T08:22:47.563Z] raise MilvusException(1, "CreateIndex Timeout") [2022-10-19T08:22:47.563Z] pymilvus.exceptions.MilvusException: <MilvusException: (code=1, message=CreateIndex Timeout)> [2022-10-19T08:22:47.563Z] [2022-10-19T08:22:47.563Z] During handling of the above exception, another exception occurred: [2022-10-19T08:22:47.563Z] [2022-10-19T08:22:47.563Z] Traceback (most recent call last): [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 51, in handler [2022-10-19T08:22:47.563Z] return func(self, *args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/client/grpc_handler.py", line 589, in create_index [2022-10-19T08:22:47.563Z] timeout=timeout) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 113, in handler [2022-10-19T08:22:47.563Z] raise e [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 109, in handler [2022-10-19T08:22:47.563Z] return func(*args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 139, in handler [2022-10-19T08:22:47.563Z] ret = func(self, *args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 81, in handler [2022-10-19T08:22:47.563Z] raise MilvusException(e.code, f"{timeout_msg}, message={e.message}") [2022-10-19T08:22:47.563Z] pymilvus.exceptions.MilvusException: <MilvusException: (code=1, message=Retry timeout: 40s, message=CreateIndex Timeout)> [2022-10-19T08:22:47.563Z] [2022-10-19T08:22:47.563Z] During handling of the above exception, another exception occurred: [2022-10-19T08:22:47.563Z] [2022-10-19T08:22:47.563Z] Traceback (most recent call last): [2022-10-19T08:22:47.563Z] File "/home/jenkins/agent/workspace/tests/python_client/utils/api_request.py", line 26, in inner_wrapper [2022-10-19T08:22:47.563Z] res = func(*args, **_kwargs) [2022-10-19T08:22:47.563Z] File "/home/jenkins/agent/workspace/tests/python_client/utils/api_request.py", line 57, in api_request [2022-10-19T08:22:47.563Z] return func(*arg, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/orm/index.py", line 85, in __init__ [2022-10-19T08:22:47.563Z] conn.create_index(self._collection.name, self._field_name, self._index_params, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 113, in handler [2022-10-19T08:22:47.563Z] raise e [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 109, in handler [2022-10-19T08:22:47.563Z] return func(*args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 139, in handler [2022-10-19T08:22:47.563Z] ret = func(self, *args, **kwargs) [2022-10-19T08:22:47.563Z] File "/usr/local/lib/python3.6/site-packages/pymilvus/decorators.py", line 81, in handler [2022-10-19T08:22:47.563Z] raise MilvusException(e.code, f"{timeout_msg}, message={e.message}") [2022-10-19T08:22:47.563Z] pymilvus.exceptions.MilvusException: <MilvusException: (code=1, message=Retry timeout: 40s, message=Retry timeout: 40s, message=CreateIndex Timeout)> [2022-10-19T08:22:47.564Z] (api_request.py:39) [2022-10-19T08:22:47.564Z] [2022-10-19 08:22:36 - ERROR - ci_test]: (api_response) : <MilvusException: (code=1, message=Retry timeout: 40s, message=Retry timeout: 40s, message=CreateIndex Timeout)> (api_request.py:40) ``` jerkins:https://jenkins.milvus.io:18080/blue/organizations/jenkins/Milvus%20HA%20CI/detail/PR-19893/1/pipeline/ server ``` 2022-10-19T16:22:38.086450315+08:00 stdout F [2022/10/19 08:22:38.086 +00:00] [INFO] [datacoord/compaction.go:280] ["handleCompactionResult: success to handle merge compaction result"] [planID=436775768024699475] 2022-10-19T16:22:38.086467238+08:00 stdout F [2022/10/19 08:22:38.086 +00:00] [DEBUG] [datacoord/compaction.go:362] ["try to release queue"] [nodeID=4] 2022-10-19T16:22:38.086478541+08:00 stdout F [2022/10/19 08:22:38.086 +00:00] [INFO] [datacoord/compaction.go:313] ["compaction completed"] [planID=436775768024699477] [nodeID=4] 2022-10-19T16:22:38.086489594+08:00 stdout F [2022/10/19 08:22:38.086 +00:00] [INFO] [datacoord/meta.go:864] ["meta update: get complete compaction meta"] 2022-10-19T16:22:38.087223656+08:00 stdout F [2022/10/19 08:22:38.087 +00:00] [DEBUG] [datacoord/meta.go:934] ["meta update: get complete compaction meta - complete"] [segmentID=436775768024699478] [collectionID=436775768024497617] [partitionID=436775768024497618] [NumOfRows=49937] [compactionFrom="[436775768024699053,436775768024498275,436775768024698703,436775768024698619,436775768024698961,436775768024498191,436775768024498016,436775768024698453,436775768024497801,436775768024699252,436775768024698515,436775768024698352,436775768024497870,436775768024497622,436775768024498112,436775768024698775,436775768024497945,436775768024699126,436775768024497711,436775768024698845]"] 2022-10-19T16:22:38.087250429+08:00 stdout F [2022/10/19 08:22:38.087 +00:00] [DEBUG] [datacoord/compaction.go:257] ["handleCompactionResult: altering metastore after compaction"] [planID=436775768024699477] 2022-10-19T16:22:38.089486051+08:00 stderr F panic: segment not found: 436775768024698774 2022-10-19T16:22:38.089506391+08:00 stderr F 2022-10-19T16:22:38.089514066+08:00 stderr F goroutine 155817 [running]: 2022-10-19T16:22:38.089526329+08:00 stderr F [github.com/milvus-io/milvus/internal/datanode.(*insertBufferNode).Operate](http://github.com/milvus-io/milvus/internal/datanode.(*insertBufferNode).Operate)(0xc0053905a0, {0xc009bfbab0?, 0x1?, 0x1?}) 2022-10-19T16:22:38.089537762+08:00 stderr F /go/src/[github.com/milvus-io/milvus/internal/datanode/flow_graph_insert_buffer_node.go:408](http://github.com/milvus-io/milvus/internal/datanode/flow_graph_insert_buffer_node.go:408) +0x3459 2022-10-19T16:22:38.089544057+08:00 stderr F [github.com/milvus-io/milvus/internal/util/flowgraph.(*nodeCtx).work(0xc018f47290)](http://github.com/milvus-io/milvus/internal/util/flowgraph.(*nodeCtx).work(0xc018f47290)) 2022-10-19T16:22:38.089548083+08:00 stderr F /go/src/[github.com/milvus-io/milvus/internal/util/flowgraph/node.go:112](http://github.com/milvus-io/milvus/internal/util/flowgraph/node.go:112) +0x232 2022-10-19T16:22:38.089552189+08:00 stderr F created by [github.com/milvus-io/milvus/internal/util/flowgraph.(*nodeCtx).Start](http://github.com/milvus-io/milvus/internal/util/flowgraph.(*nodeCtx).Start) 2022-10-19T16:22:38.089558971+08:00 stderr F /go/src/[github.com/milvus-io/milvus/internal/util/flowgraph/node.go:68](http://github.com/milvus-io/milvus/internal/util/flowgraph/node.go:68) +0x79 ``` ### Expected Behavior _No response_ ### Steps To Reproduce _No response_ ### Milvus Log _No response_ ### Anything else? _No response_
non_process
milvus create diskann index timeout ,datacoord panic cause milvus server crash is there an existing issue for this i have searched the existing issues environment markdown milvus version deployment mode standalone or cluster sdk version e g pymilvus pymilvus os ubuntu or centos cpu memory gpu others current behavior indexcase: linux python usr local bin linux python usr local bin linux python usr local bin self pytest mark tags caselabel def test create index with diskann normal self target test create index with diskann method create collection and insert data create diskann index then load data search successfully expected create index successfully c name cf gen unique str prefix collection w self init collection wrap name c name data cf gen default list data collection w insert data data index self index wrap init index collection w collection default float vec field name ct default diskann index client log: retry timeout decorators py rpc error decorators py retry timeout decorators py rpc error decorators py traceback most recent call last file usr local lib site packages pymilvus decorators py line in handler return func self args kwargs file usr local lib site packages pymilvus client grpc handler py line in wait for creating index raise milvusexception createindex timeout pymilvus exceptions milvusexception during handling of the above exception another exception occurred traceback most recent call last file usr local lib site packages pymilvus decorators py line in handler return func self args kwargs file usr local lib site packages pymilvus client grpc handler py line in create index timeout timeout file usr local lib site packages pymilvus decorators py line in handler raise e file usr local lib site packages pymilvus decorators py line in handler return func args kwargs file usr local lib site packages pymilvus decorators py line in handler ret func self args kwargs file usr local lib site packages pymilvus decorators py line in handler raise milvusexception e code f timeout msg message e message pymilvus exceptions milvusexception during handling of the above exception another exception occurred traceback most recent call last file home jenkins agent workspace tests python client utils api request py line in inner wrapper res func args kwargs file home jenkins agent workspace tests python client utils api request py line in api request return func arg kwargs file usr local lib site packages pymilvus orm index py line in init conn create index self collection name self field name self index params kwargs file usr local lib site packages pymilvus decorators py line in handler raise e file usr local lib site packages pymilvus decorators py line in handler return func args kwargs file usr local lib site packages pymilvus decorators py line in handler ret func self args kwargs file usr local lib site packages pymilvus decorators py line in handler raise milvusexception e code f timeout msg message e message pymilvus exceptions milvusexception api request py api response api request py jerkins: server stdout f stdout f stdout f stdout f stdout f stdout f stderr f panic segment not found stderr f stderr f goroutine stderr f stderr f go src stderr f stderr f go src stderr f created by stderr f go src expected behavior no response steps to reproduce no response milvus log no response anything else no response
0
241,786
7,834,472,581
IssuesEvent
2018-06-16 14:28:04
danielhaffuta/Reshit-Project
https://api.github.com/repos/danielhaffuta/Reshit-Project
closed
US1-principal
Hard High Priority user story
## User Story 1 - As a principal - I want to be able to manage all the classes schedules - So that everything will be always organized. #### Related Issues/Tasks [SRS](https://github.com/danielhaffuta/Reshit-Project/wiki/SRS)
1.0
US1-principal - ## User Story 1 - As a principal - I want to be able to manage all the classes schedules - So that everything will be always organized. #### Related Issues/Tasks [SRS](https://github.com/danielhaffuta/Reshit-Project/wiki/SRS)
non_process
principal user story as a principal i want to be able to manage all the classes schedules so that everything will be always organized related issues tasks
0
7,211
10,343,406,871
IssuesEvent
2019-09-04 08:53:34
Hurence/logisland
https://api.github.com/repos/Hurence/logisland
opened
add EncodeBase64 Processor
processor
# Expected behavior and actual behavior. Encodes or decodes content to and from base64 # Steps to reproduce the problem. # Specifications like the version of the project, operating system, or hardware.
1.0
add EncodeBase64 Processor - # Expected behavior and actual behavior. Encodes or decodes content to and from base64 # Steps to reproduce the problem. # Specifications like the version of the project, operating system, or hardware.
process
add processor expected behavior and actual behavior encodes or decodes content to and from steps to reproduce the problem specifications like the version of the project operating system or hardware
1
93,600
11,786,551,333
IssuesEvent
2020-03-17 12:30:03
Neufund/platform-frontend
https://api.github.com/repos/Neufund/platform-frontend
opened
[Mobile App MVP] Component - List items
App: mobile Design Draft
**Background** **Designs** Components link: https://app.zeplin.io/styleguide/5e5f852f2f231b17c87f8622/components?cseid=5e5fc696db3e1f1140b9a006 **Other links** All components: https://zpl.io/an43q9O Mobile App Designs: - In Zeplin: https://zpl.io/anR1n3r - In Figma: https://www.figma.com/file/orm5HmF3SJoon4HuCT6VoU/%F0%9F%93%B1-Mobile-App?node-id=1316%3A9804 **Acceptance criteria** **Technical notes** **Testing notes**
1.0
[Mobile App MVP] Component - List items - **Background** **Designs** Components link: https://app.zeplin.io/styleguide/5e5f852f2f231b17c87f8622/components?cseid=5e5fc696db3e1f1140b9a006 **Other links** All components: https://zpl.io/an43q9O Mobile App Designs: - In Zeplin: https://zpl.io/anR1n3r - In Figma: https://www.figma.com/file/orm5HmF3SJoon4HuCT6VoU/%F0%9F%93%B1-Mobile-App?node-id=1316%3A9804 **Acceptance criteria** **Technical notes** **Testing notes**
non_process
component list items background designs components link other links all components mobile app designs in zeplin in figma acceptance criteria technical notes testing notes
0
19,431
25,600,574,987
IssuesEvent
2022-12-01 19:49:24
apache/arrow-datafusion
https://api.github.com/repos/apache/arrow-datafusion
opened
Release DataFusion 15.0.0
enhancement development-process
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** I plan on creating DataFusion 15.0.0-rc1 on Friday 2ns December (4 weeks since the previous release). **Describe the solution you'd like** - [ ] Update version & generate changelog - [ ] Cut RC and start vote - [ ] Vote passes - [ ] Release to crates.io - [ ] Publish documentation **Describe alternatives you've considered** **Additional context**
1.0
Release DataFusion 15.0.0 - **Is your feature request related to a problem or challenge? Please describe what you are trying to do.** I plan on creating DataFusion 15.0.0-rc1 on Friday 2ns December (4 weeks since the previous release). **Describe the solution you'd like** - [ ] Update version & generate changelog - [ ] Cut RC and start vote - [ ] Vote passes - [ ] Release to crates.io - [ ] Publish documentation **Describe alternatives you've considered** **Additional context**
process
release datafusion is your feature request related to a problem or challenge please describe what you are trying to do i plan on creating datafusion on friday december weeks since the previous release describe the solution you d like update version generate changelog cut rc and start vote vote passes release to crates io publish documentation describe alternatives you ve considered additional context
1
20,076
26,572,779,261
IssuesEvent
2023-01-21 11:50:11
firebase/firebase-cpp-sdk
https://api.github.com/repos/firebase/firebase-cpp-sdk
reopened
[C++] Nightly Integration Testing Report for Firestore
type: process nightly-testing
<hidden value="integration-test-status-comment"></hidden> ### ✅&nbsp; [build against repo] Integration test succeeded! Requested by @sunmou99 on commit 45f8e3268c2adbabca165ed0a937835f18930d2f Last updated: Fri Jan 20 03:49 PST 2023 **[View integration test log & download artifacts](https://github.com/firebase/firebase-cpp-sdk/actions/runs/3966601920)** <hidden value="integration-test-status-comment"></hidden> *** ### ✅&nbsp; [build against SDK] Integration test succeeded! Requested by @firebase-workflow-trigger[bot] on commit 45f8e3268c2adbabca165ed0a937835f18930d2f Last updated: Fri Jan 20 05:48 PST 2023 **[View integration test log & download artifacts](https://github.com/firebase/firebase-cpp-sdk/actions/runs/3967459164)** <hidden value="integration-test-status-comment"></hidden> *** ### ✅&nbsp; [build against tip] Integration test succeeded! Requested by @sunmou99 on commit 45f8e3268c2adbabca165ed0a937835f18930d2f Last updated: Sat Jan 21 03:46 PST 2023 **[View integration test log & download artifacts](https://github.com/firebase/firebase-cpp-sdk/actions/runs/3974502874)**
1.0
[C++] Nightly Integration Testing Report for Firestore - <hidden value="integration-test-status-comment"></hidden> ### ✅&nbsp; [build against repo] Integration test succeeded! Requested by @sunmou99 on commit 45f8e3268c2adbabca165ed0a937835f18930d2f Last updated: Fri Jan 20 03:49 PST 2023 **[View integration test log & download artifacts](https://github.com/firebase/firebase-cpp-sdk/actions/runs/3966601920)** <hidden value="integration-test-status-comment"></hidden> *** ### ✅&nbsp; [build against SDK] Integration test succeeded! Requested by @firebase-workflow-trigger[bot] on commit 45f8e3268c2adbabca165ed0a937835f18930d2f Last updated: Fri Jan 20 05:48 PST 2023 **[View integration test log & download artifacts](https://github.com/firebase/firebase-cpp-sdk/actions/runs/3967459164)** <hidden value="integration-test-status-comment"></hidden> *** ### ✅&nbsp; [build against tip] Integration test succeeded! Requested by @sunmou99 on commit 45f8e3268c2adbabca165ed0a937835f18930d2f Last updated: Sat Jan 21 03:46 PST 2023 **[View integration test log & download artifacts](https://github.com/firebase/firebase-cpp-sdk/actions/runs/3974502874)**
process
nightly integration testing report for firestore ✅ nbsp integration test succeeded requested by on commit last updated fri jan pst ✅ nbsp integration test succeeded requested by firebase workflow trigger on commit last updated fri jan pst ✅ nbsp integration test succeeded requested by on commit last updated sat jan pst
1
755,393
26,427,917,500
IssuesEvent
2023-01-14 12:36:39
open-telemetry/opentelemetry-js
https://api.github.com/repos/open-telemetry/opentelemetry-js
closed
Metric timestamps in the distant past on chrome
bug priority:p2 sdk:metrics
### What happened? ## Steps to Reproduce call `createCounter('test_counter').add(1);` from an instance of Chrome on version 106.0.5249.119 (i'm not sure exactly how far back [this open bug](https://bugs.chromium.org/p/chromium/issues/detail?id=1365808&q=timeOrigin&can=2) goes, but it's definitely in that version) ## Expected Result `test_counter` metric emitted with timestamp reflecting the time the metric was recorded ## Actual Result `test_counter` metric emitted with timestamp from days/weeks ago, depending on how long you've had chrome open ## Additional Details this is the metrics side of https://github.com/open-telemetry/opentelemetry-js/issues/3355. both of these issues _could_ be fixed by https://github.com/open-telemetry/opentelemetry-js/issues/3279, but it's actually even easier in the metrics case, since metrics don't need a monotonic clock and could safely just use `Date.now()` ### OpenTelemetry Setup Code _No response_ ### package.json _No response_ ### Relevant log output _No response_
1.0
Metric timestamps in the distant past on chrome - ### What happened? ## Steps to Reproduce call `createCounter('test_counter').add(1);` from an instance of Chrome on version 106.0.5249.119 (i'm not sure exactly how far back [this open bug](https://bugs.chromium.org/p/chromium/issues/detail?id=1365808&q=timeOrigin&can=2) goes, but it's definitely in that version) ## Expected Result `test_counter` metric emitted with timestamp reflecting the time the metric was recorded ## Actual Result `test_counter` metric emitted with timestamp from days/weeks ago, depending on how long you've had chrome open ## Additional Details this is the metrics side of https://github.com/open-telemetry/opentelemetry-js/issues/3355. both of these issues _could_ be fixed by https://github.com/open-telemetry/opentelemetry-js/issues/3279, but it's actually even easier in the metrics case, since metrics don't need a monotonic clock and could safely just use `Date.now()` ### OpenTelemetry Setup Code _No response_ ### package.json _No response_ ### Relevant log output _No response_
non_process
metric timestamps in the distant past on chrome what happened steps to reproduce call createcounter test counter add from an instance of chrome on version i m not sure exactly how far back goes but it s definitely in that version expected result test counter metric emitted with timestamp reflecting the time the metric was recorded actual result test counter metric emitted with timestamp from days weeks ago depending on how long you ve had chrome open additional details this is the metrics side of both of these issues could be fixed by but it s actually even easier in the metrics case since metrics don t need a monotonic clock and could safely just use date now opentelemetry setup code no response package json no response relevant log output no response
0
14,734
17,954,389,069
IssuesEvent
2021-09-13 04:57:39
DICO-TEAM/dico-chain
https://api.github.com/repos/DICO-TEAM/dico-chain
closed
[Bug]:The initial version of some pallets is 3.0.0.
bug In Process
The initial version of some pallets is 3.0.0.I believe this is a mistake.
1.0
[Bug]:The initial version of some pallets is 3.0.0. - The initial version of some pallets is 3.0.0.I believe this is a mistake.
process
the initial version of some pallets is the initial version of some pallets is i believe this is a mistake
1
86,075
10,473,415,043
IssuesEvent
2019-09-23 12:34:53
r2dbc/r2dbc-spi
https://api.github.com/repos/r2dbc/r2dbc-spi
closed
Explain transactional behavior in the context of reactive programming
type: documentation
In our [weekly call](https://groups.google.com/forum/#!topic/r2dbc/amMwPWWx3Iw) we discussed net-effects of ACID properties when using reactive infrastructure components. With reactive runtimes, we move congestion out of the JVM and leave concurrency to the database. We should explain the effects of isolation and locking in consideration of MVCC and illustrate how this affects applications that make use of transaction management to e.g. group multiple statements together or which wait for other transactions to complete. This is an investigation and documentation task.
1.0
Explain transactional behavior in the context of reactive programming - In our [weekly call](https://groups.google.com/forum/#!topic/r2dbc/amMwPWWx3Iw) we discussed net-effects of ACID properties when using reactive infrastructure components. With reactive runtimes, we move congestion out of the JVM and leave concurrency to the database. We should explain the effects of isolation and locking in consideration of MVCC and illustrate how this affects applications that make use of transaction management to e.g. group multiple statements together or which wait for other transactions to complete. This is an investigation and documentation task.
non_process
explain transactional behavior in the context of reactive programming in our we discussed net effects of acid properties when using reactive infrastructure components with reactive runtimes we move congestion out of the jvm and leave concurrency to the database we should explain the effects of isolation and locking in consideration of mvcc and illustrate how this affects applications that make use of transaction management to e g group multiple statements together or which wait for other transactions to complete this is an investigation and documentation task
0
10,367
13,188,440,920
IssuesEvent
2020-08-13 06:27:30
MicrosoftDocs/azure-devops-docs
https://api.github.com/repos/MicrosoftDocs/azure-devops-docs
closed
Is `workingDirectory` not a control option?
Pri2 devops-cicd-process/tech devops/prod product-feedback
e.g. for using the `Maven@3` task for performing build/package/test operations -- it's a little surprising that `workingDirectory` is neither an input for this task nor a control option. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 8098f527-ebdf-60d5-3989-5228b7a207c1 * Version Independent ID: ce27c817-9599-00ef-5af2-3ac1dbad8dc6 * Content: [Build and Release Tasks - Azure Pipelines](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/tasks?view=azure-devops&tabs=yaml#controloptions) * Content Source: [docs/pipelines/process/tasks.md](https://github.com/MicrosoftDocs/azure-devops-docs/blob/master/docs/pipelines/process/tasks.md) * Product: **devops** * Technology: **devops-cicd-process** * GitHub Login: @juliakm * Microsoft Alias: **jukullam**
1.0
Is `workingDirectory` not a control option? - e.g. for using the `Maven@3` task for performing build/package/test operations -- it's a little surprising that `workingDirectory` is neither an input for this task nor a control option. --- #### Document Details ⚠ *Do not edit this section. It is required for docs.microsoft.com ➟ GitHub issue linking.* * ID: 8098f527-ebdf-60d5-3989-5228b7a207c1 * Version Independent ID: ce27c817-9599-00ef-5af2-3ac1dbad8dc6 * Content: [Build and Release Tasks - Azure Pipelines](https://docs.microsoft.com/en-us/azure/devops/pipelines/process/tasks?view=azure-devops&tabs=yaml#controloptions) * Content Source: [docs/pipelines/process/tasks.md](https://github.com/MicrosoftDocs/azure-devops-docs/blob/master/docs/pipelines/process/tasks.md) * Product: **devops** * Technology: **devops-cicd-process** * GitHub Login: @juliakm * Microsoft Alias: **jukullam**
process
is workingdirectory not a control option e g for using the maven task for performing build package test operations it s a little surprising that workingdirectory is neither an input for this task nor a control option document details ⚠ do not edit this section it is required for docs microsoft com ➟ github issue linking id ebdf version independent id content content source product devops technology devops cicd process github login juliakm microsoft alias jukullam
1
21,106
28,068,031,837
IssuesEvent
2023-03-29 16:52:39
pystatgen/sgkit
https://api.github.com/repos/pystatgen/sgkit
reopened
♻️ cirun not shutting down GCE instances
bug process + tools
Related to https://github.com/pystatgen/sgkit/issues/821 Looks like the 2 GPU VMs started for the build https://github.com/pystatgen/sgkit/actions/runs/2168279484 have not been properly shutdown and been idling: * cirun-pystatgen--sgkit-0ca345b * cirun-pystatgen--sgkit-38493a7 If I was to guess what's going on under the hood with cirun, it probably doesn't properly clean VMs if the job gets **cancelled**, I can see those were the workers used for the jobs that got cancelled when the 3rd job failed, looks like that worker used for the failed job was cleaned up. ping @aktech
1.0
♻️ cirun not shutting down GCE instances - Related to https://github.com/pystatgen/sgkit/issues/821 Looks like the 2 GPU VMs started for the build https://github.com/pystatgen/sgkit/actions/runs/2168279484 have not been properly shutdown and been idling: * cirun-pystatgen--sgkit-0ca345b * cirun-pystatgen--sgkit-38493a7 If I was to guess what's going on under the hood with cirun, it probably doesn't properly clean VMs if the job gets **cancelled**, I can see those were the workers used for the jobs that got cancelled when the 3rd job failed, looks like that worker used for the failed job was cleaned up. ping @aktech
process
♻️ cirun not shutting down gce instances related to looks like the gpu vms started for the build have not been properly shutdown and been idling cirun pystatgen sgkit cirun pystatgen sgkit if i was to guess what s going on under the hood with cirun it probably doesn t properly clean vms if the job gets cancelled i can see those were the workers used for the jobs that got cancelled when the job failed looks like that worker used for the failed job was cleaned up ping aktech
1
466,734
13,432,634,231
IssuesEvent
2020-09-07 08:42:48
ballerina-platform/ballerina-lang
https://api.github.com/repos/ballerina-platform/ballerina-lang
closed
StackOverflow issue for JSON query join
Priority/High Team/CompilerFE Type/Bug
**Description:** Observed a stackoverflow when JSON query join. Please check the below bal code. ```ballerina function getAllTransactionsPerDcr(string requestedContentType) returns json|xml|error { log:printInfo(requestedContentType); var dcrRequest = dcrService -> get("/dataControlRecords"); var traRequest = traService -> get("/transactions"); if (dcrRequest is http:Response && traRequest is http:Response){ json|error dcrs = dcrRequest.getJsonPayload(); json|error tras = traRequest.getJsonPayload(); if(dcrs is json && tras is json ){ if(requestedContentType == "application/json"){ log:printInfo("I am here!"); json output = from var dcr in <json[]>dcrs join var tra in <json[]>tras on <string>dcr.CDCRID equals <string>tra.CDCRID select { id: check dcr.CDCRID, 'source: check dcr.VCSOURCES, target: check dcr.VCTARGETS, transactionId: check tra.CTRAID }; return output; } } } } @http:ResourceConfig { methods: ["GET"], path:"/data-control-records" } resource function getAllTransactionsPerDcr(http:Caller caller, http:Request request) returns error?{ http:Response response = new; var result = getAllTransactionsPerDcr(request.getHeader("Accept")); if(result is json){ check caller -> respond(result); } else if (result is error){ response.setTextPayload(result.message()); } } ``` Below is the error message, ```ballerina error: {ballerina}StackOverflow at ballerina.lang_query.0_0_1._InitFunction:process(types.bal:137) ballerina.lang_query.0_0_1._InputFunction:process(types.bal:197) ballerina.lang_query.0_0_1._StreamPipeline:next(types.bal:74) ballerina.lang_query.0_0_1._InnerJoinFunction:process(types.bal:355) ballerina.lang_query.0_0_1._InnerJoinFunction:process(types.bal:361) ........ ```
1.0
StackOverflow issue for JSON query join - **Description:** Observed a stackoverflow when JSON query join. Please check the below bal code. ```ballerina function getAllTransactionsPerDcr(string requestedContentType) returns json|xml|error { log:printInfo(requestedContentType); var dcrRequest = dcrService -> get("/dataControlRecords"); var traRequest = traService -> get("/transactions"); if (dcrRequest is http:Response && traRequest is http:Response){ json|error dcrs = dcrRequest.getJsonPayload(); json|error tras = traRequest.getJsonPayload(); if(dcrs is json && tras is json ){ if(requestedContentType == "application/json"){ log:printInfo("I am here!"); json output = from var dcr in <json[]>dcrs join var tra in <json[]>tras on <string>dcr.CDCRID equals <string>tra.CDCRID select { id: check dcr.CDCRID, 'source: check dcr.VCSOURCES, target: check dcr.VCTARGETS, transactionId: check tra.CTRAID }; return output; } } } } @http:ResourceConfig { methods: ["GET"], path:"/data-control-records" } resource function getAllTransactionsPerDcr(http:Caller caller, http:Request request) returns error?{ http:Response response = new; var result = getAllTransactionsPerDcr(request.getHeader("Accept")); if(result is json){ check caller -> respond(result); } else if (result is error){ response.setTextPayload(result.message()); } } ``` Below is the error message, ```ballerina error: {ballerina}StackOverflow at ballerina.lang_query.0_0_1._InitFunction:process(types.bal:137) ballerina.lang_query.0_0_1._InputFunction:process(types.bal:197) ballerina.lang_query.0_0_1._StreamPipeline:next(types.bal:74) ballerina.lang_query.0_0_1._InnerJoinFunction:process(types.bal:355) ballerina.lang_query.0_0_1._InnerJoinFunction:process(types.bal:361) ........ ```
non_process
stackoverflow issue for json query join description observed a stackoverflow when json query join please check the below bal code ballerina function getalltransactionsperdcr string requestedcontenttype returns json xml error log printinfo requestedcontenttype var dcrrequest dcrservice get datacontrolrecords var trarequest traservice get transactions if dcrrequest is http response trarequest is http response json error dcrs dcrrequest getjsonpayload json error tras trarequest getjsonpayload if dcrs is json tras is json if requestedcontenttype application json log printinfo i am here json output from var dcr in dcrs join var tra in tras on dcr cdcrid equals tra cdcrid select id check dcr cdcrid source check dcr vcsources target check dcr vctargets transactionid check tra ctraid return output http resourceconfig methods path data control records resource function getalltransactionsperdcr http caller caller http request request returns error http response response new var result getalltransactionsperdcr request getheader accept if result is json check caller respond result else if result is error response settextpayload result message below is the error message ballerina error ballerina stackoverflow at ballerina lang query initfunction process types bal ballerina lang query inputfunction process types bal ballerina lang query streampipeline next types bal ballerina lang query innerjoinfunction process types bal ballerina lang query innerjoinfunction process types bal
0
594
2,587,757,247
IssuesEvent
2015-02-17 20:28:40
manjaro/manjaro-tools
https://api.github.com/repos/manjaro/manjaro-tools
closed
Ideas for abs and manjaro tree merge?
buildtree enhancement
I think we need a merge strategy for the abs/manjaro git repos. Ideally, we end up with binary repo names for the merged git trees. Perhaps create local branches?
1.0
Ideas for abs and manjaro tree merge? - I think we need a merge strategy for the abs/manjaro git repos. Ideally, we end up with binary repo names for the merged git trees. Perhaps create local branches?
non_process
ideas for abs and manjaro tree merge i think we need a merge strategy for the abs manjaro git repos ideally we end up with binary repo names for the merged git trees perhaps create local branches
0
1,310
3,864,044,474
IssuesEvent
2016-04-08 12:18:32
moxie-leean/ng-cms
https://api.github.com/repos/moxie-leean/ng-cms
closed
Scroll to top when changing route
Pending deploy process
Now the page can stay part way down after clicking a link. It should scroll back to the top.
1.0
Scroll to top when changing route - Now the page can stay part way down after clicking a link. It should scroll back to the top.
process
scroll to top when changing route now the page can stay part way down after clicking a link it should scroll back to the top
1
32,302
4,761,546,626
IssuesEvent
2016-10-25 08:36:47
bazelbuild/bazel
https://api.github.com/repos/bazelbuild/bazel
opened
testLinkingLibrariesFlags in cpp-rules-tests is failing on Windows
category: misc > testing category: multi-platform > windows P1 type: bug
http://ci.bazel.io/view/Bazel%20bootstrap%20and%20maintenance/job/Bazel/JAVA_VERSION=1.8,PLATFORM_NAME=windows-x86_64/933/consoleFull ``` There was 1 failure: 1) testLinkingLibrariesFlags(com.google.devtools.build.lib.rules.cpp.LinkBuildVariablesTest) java.lang.AssertionError: Not true that <[bar, baz_Slibqux]> contains exactly <[bar]>. It has unexpected items <[baz_Slibqux]> at com.google.common.truth.FailureStrategy.fail(FailureStrategy.java:24) at com.google.common.truth.FailureStrategy.fail(FailureStrategy.java:20) at com.google.common.truth.Subject.failWithRawMessage(Subject.java:381) at com.google.common.truth.IterableSubject.failWithBadResultsAndSuffix(IterableSubject.java:370) at com.google.common.truth.IterableSubject.containsExactly(IterableSubject.java:339) at com.google.common.truth.IterableSubject.containsExactly(IterableSubject.java:244) ``` I guess it's a easy fix similar to https://github.com/bazelbuild/bazel/commit/b4d69c470a7a0ef8ed93872cba02ad2b5218f976 ? @mhlopko
1.0
testLinkingLibrariesFlags in cpp-rules-tests is failing on Windows - http://ci.bazel.io/view/Bazel%20bootstrap%20and%20maintenance/job/Bazel/JAVA_VERSION=1.8,PLATFORM_NAME=windows-x86_64/933/consoleFull ``` There was 1 failure: 1) testLinkingLibrariesFlags(com.google.devtools.build.lib.rules.cpp.LinkBuildVariablesTest) java.lang.AssertionError: Not true that <[bar, baz_Slibqux]> contains exactly <[bar]>. It has unexpected items <[baz_Slibqux]> at com.google.common.truth.FailureStrategy.fail(FailureStrategy.java:24) at com.google.common.truth.FailureStrategy.fail(FailureStrategy.java:20) at com.google.common.truth.Subject.failWithRawMessage(Subject.java:381) at com.google.common.truth.IterableSubject.failWithBadResultsAndSuffix(IterableSubject.java:370) at com.google.common.truth.IterableSubject.containsExactly(IterableSubject.java:339) at com.google.common.truth.IterableSubject.containsExactly(IterableSubject.java:244) ``` I guess it's a easy fix similar to https://github.com/bazelbuild/bazel/commit/b4d69c470a7a0ef8ed93872cba02ad2b5218f976 ? @mhlopko
non_process
testlinkinglibrariesflags in cpp rules tests is failing on windows there was failure testlinkinglibrariesflags com google devtools build lib rules cpp linkbuildvariablestest java lang assertionerror not true that contains exactly it has unexpected items at com google common truth failurestrategy fail failurestrategy java at com google common truth failurestrategy fail failurestrategy java at com google common truth subject failwithrawmessage subject java at com google common truth iterablesubject failwithbadresultsandsuffix iterablesubject java at com google common truth iterablesubject containsexactly iterablesubject java at com google common truth iterablesubject containsexactly iterablesubject java i guess it s a easy fix similar to mhlopko
0
6,012
8,822,081,131
IssuesEvent
2019-01-02 07:30:21
linnovate/root
https://api.github.com/repos/linnovate/root
closed
"watched tasks" main menu bug
2.0.6 Fixed Process bug Visual bug
click on ICU click on "watched tasks" after creating many tasks, so that the user will need to scroll down to create a new item, the button disappears after clicking on a task, and pressing "enter" key to create a new task the screen goes out of proportions as seen in the picture below ![image](https://user-images.githubusercontent.com/38312178/50482313-9b119d00-09ee-11e9-805a-b426cfd7ccc7.png) after switching to another tab or refreshing the screen returns to normal
1.0
"watched tasks" main menu bug - click on ICU click on "watched tasks" after creating many tasks, so that the user will need to scroll down to create a new item, the button disappears after clicking on a task, and pressing "enter" key to create a new task the screen goes out of proportions as seen in the picture below ![image](https://user-images.githubusercontent.com/38312178/50482313-9b119d00-09ee-11e9-805a-b426cfd7ccc7.png) after switching to another tab or refreshing the screen returns to normal
process
watched tasks main menu bug click on icu click on watched tasks after creating many tasks so that the user will need to scroll down to create a new item the button disappears after clicking on a task and pressing enter key to create a new task the screen goes out of proportions as seen in the picture below after switching to another tab or refreshing the screen returns to normal
1
157,172
12,365,189,747
IssuesEvent
2020-05-18 08:26:03
owncloud/core
https://api.github.com/repos/owncloud/core
closed
CommentsContext acceptance test code has some hardcoded usernames
3 - To Review QA-p2 QA-team dev:acceptance-tests
https://github.com/owncloud/core/blob/master/tests/acceptance/features/bootstrap/CommentsContext.php has code: ``` $response = $this->featureContext->makeDavRequest( $user, "POST", $commentsPath, ['Content-Type' => 'application/json'], '{"actorId":"user0", "actorDisplayName":"user0", "actorType":"users", "verb":"comment", "message":"' . $content . '", "creationDateTime":"Thu, 18 Feb 2016 17:04:18 GMT", "objectType":"files"}', "uploads" ); ``` Investigate why that has `user0` hardcoded.
1.0
CommentsContext acceptance test code has some hardcoded usernames - https://github.com/owncloud/core/blob/master/tests/acceptance/features/bootstrap/CommentsContext.php has code: ``` $response = $this->featureContext->makeDavRequest( $user, "POST", $commentsPath, ['Content-Type' => 'application/json'], '{"actorId":"user0", "actorDisplayName":"user0", "actorType":"users", "verb":"comment", "message":"' . $content . '", "creationDateTime":"Thu, 18 Feb 2016 17:04:18 GMT", "objectType":"files"}', "uploads" ); ``` Investigate why that has `user0` hardcoded.
non_process
commentscontext acceptance test code has some hardcoded usernames has code response this featurecontext makedavrequest user post commentspath actorid actordisplayname actortype users verb comment message content creationdatetime thu feb gmt objecttype files uploads investigate why that has hardcoded
0
5,026
7,846,982,451
IssuesEvent
2018-06-19 17:00:15
Eliyayalon/Celiac-Israel
https://api.github.com/repos/Eliyayalon/Celiac-Israel
closed
Add refresh button-admin
1 in process iter 4
It's importenant to add arefresh button so we will not need to go back to see changes
1.0
Add refresh button-admin - It's importenant to add arefresh button so we will not need to go back to see changes
process
add refresh button admin it s importenant to add arefresh button so we will not need to go back to see changes
1
374,971
11,098,041,047
IssuesEvent
2019-12-16 14:30:18
kubeflow/kubeflow
https://api.github.com/repos/kubeflow/kubeflow
closed
[gcp] kfctl should check if user has required permissions
area/kfctl kind/feature lifecycle/stale platform/gcp priority/p1
kfctl should try to detect whether user has required permissions to set up Kubeflow and if not print suitable error messages. A simple check would be to see if the user can via the IAM policy for the project. We could also check and warn the user if they are running on a VM and using a compute service account.
1.0
[gcp] kfctl should check if user has required permissions - kfctl should try to detect whether user has required permissions to set up Kubeflow and if not print suitable error messages. A simple check would be to see if the user can via the IAM policy for the project. We could also check and warn the user if they are running on a VM and using a compute service account.
non_process
kfctl should check if user has required permissions kfctl should try to detect whether user has required permissions to set up kubeflow and if not print suitable error messages a simple check would be to see if the user can via the iam policy for the project we could also check and warn the user if they are running on a vm and using a compute service account
0
78,738
15,055,600,879
IssuesEvent
2021-02-03 19:01:03
mozilla/addons-server
https://api.github.com/repos/mozilla/addons-server
closed
Start testing with django 3.2
component: code quality priority: p4 state: pull request ready
We stick to the LTS track for django releases, and we're currently on 2.2. The next LTS, 3.2, is available in alpha release form (https://docs.djangoproject.com/en/3.2/releases/3.2/) so it's a good time to see what work we'll need to do to upgrade. There's no rush - 3.2 won't be released until at least April 2021, and 2.2 will be supported until April 2022. First step will be to get the test suite running (not necessarily all tests passing)
1.0
Start testing with django 3.2 - We stick to the LTS track for django releases, and we're currently on 2.2. The next LTS, 3.2, is available in alpha release form (https://docs.djangoproject.com/en/3.2/releases/3.2/) so it's a good time to see what work we'll need to do to upgrade. There's no rush - 3.2 won't be released until at least April 2021, and 2.2 will be supported until April 2022. First step will be to get the test suite running (not necessarily all tests passing)
non_process
start testing with django we stick to the lts track for django releases and we re currently on the next lts is available in alpha release form so it s a good time to see what work we ll need to do to upgrade there s no rush won t be released until at least april and will be supported until april first step will be to get the test suite running not necessarily all tests passing
0
20,530
27,189,612,984
IssuesEvent
2023-02-19 16:39:24
fkdl0048/BookReview
https://api.github.com/repos/fkdl0048/BookReview
opened
The Object-Oriented Thought Process
2023 The Object-Oriented Thought Process
2차 오프라인 멘토링 증정 책 - [ ] 1장 객체지향 개념 소개 - [ ] 2장 객체라는 관점에서 생각하는 방법 - [ ] 3장 그 밖의 객체지향 개념들 - [ ] 4장 클래스 해부하기 - [ ] 5장 클래스 설계 지침 - [ ] 6장 객체를 사용해 설계하기 - [ ] 7장 상속과 합성에 익숙해지기 - [ ] 8장 프레임워크 및 재사용: 인터페이스와 추상 클래스를 사용해 설계하기 - [ ] 9장 객체 구축과 객체지향 설계 - [ ] 10장 디자인 패턴 - [ ] 11장 의존적이거나 경직된 클래스가 되지 않게 하기 - [ ] 12장 객체지향 설계의 SOLID 원칙
1.0
The Object-Oriented Thought Process - 2차 오프라인 멘토링 증정 책 - [ ] 1장 객체지향 개념 소개 - [ ] 2장 객체라는 관점에서 생각하는 방법 - [ ] 3장 그 밖의 객체지향 개념들 - [ ] 4장 클래스 해부하기 - [ ] 5장 클래스 설계 지침 - [ ] 6장 객체를 사용해 설계하기 - [ ] 7장 상속과 합성에 익숙해지기 - [ ] 8장 프레임워크 및 재사용: 인터페이스와 추상 클래스를 사용해 설계하기 - [ ] 9장 객체 구축과 객체지향 설계 - [ ] 10장 디자인 패턴 - [ ] 11장 의존적이거나 경직된 클래스가 되지 않게 하기 - [ ] 12장 객체지향 설계의 SOLID 원칙
process
the object oriented thought process 오프라인 멘토링 증정 책 객체지향 개념 소개 객체라는 관점에서 생각하는 방법 그 밖의 객체지향 개념들 클래스 해부하기 클래스 설계 지침 객체를 사용해 설계하기 상속과 합성에 익숙해지기 프레임워크 및 재사용 인터페이스와 추상 클래스를 사용해 설계하기 객체 구축과 객체지향 설계 디자인 패턴 의존적이거나 경직된 클래스가 되지 않게 하기 객체지향 설계의 solid 원칙
1
9,656
12,626,178,660
IssuesEvent
2020-06-14 15:24:31
dita-ot/dita-ot
https://api.github.com/repos/dita-ot/dita-ot
closed
Chunk="to-content" generates java.lang.NullPointerException error message
bug preprocess priority/medium
See attached sample BOOKMAP [__chunk_to_content.zip](https://github.com/dita-ot/dita-ot/files/4764407/__chunk_to_content.zip) In attached you find a bookmap with a chapter ditamap containing a couple of topics. All topics have unique @keys added in the topicref. Chunk="to-content" is added in the first topic of the DITAMAP. ## Expected Behavior Generate output with chunked="to-content" topics in webhelp. ## Actual Behavior When I publish this BOOKMAP, I get the following error message: Generates java.lang.NullPointerException Keys attribute seems to cause this issue. When I remove all keys, I can publish without problems. ## Possible Solution ## Steps to Reproduce <!-- Test case, Gist, set of files or steps required to reproduce the issue. --> 1. Create a BOOKMAP with a DITAMAP added as chapter and add key. It's importat you add a DITAMAP as chapter, not a topic. There is not bug when the chapter references to a DITA file. 2. In the DITAMAP, add a topic with a couple of child topics. 3. Add a key to all topics. 4. Add the attribute @chunk="to-content" to the first topic in the DITAMAP 5. Try to generate a OxygenXML webhelp or PDF <!-- Create a Gist via <https://gist.github.com/> to upload your test files. --> <!-- Link to the Gist from the issue or attach a .zip archive of your files. --> ## Environment * DITA-OT version: 3.4.1 (OxygenXML 22.1) * Operating system and version: Windows * How did you run DITA-OT? OxygenXML * Transformation type: Miramo PDF, OxygenWebhelp <!-- Before submitting, check the Preview tab above to verify the XML markup appears correctly and remember you can edit the description later to add information. -->
1.0
Chunk="to-content" generates java.lang.NullPointerException error message - See attached sample BOOKMAP [__chunk_to_content.zip](https://github.com/dita-ot/dita-ot/files/4764407/__chunk_to_content.zip) In attached you find a bookmap with a chapter ditamap containing a couple of topics. All topics have unique @keys added in the topicref. Chunk="to-content" is added in the first topic of the DITAMAP. ## Expected Behavior Generate output with chunked="to-content" topics in webhelp. ## Actual Behavior When I publish this BOOKMAP, I get the following error message: Generates java.lang.NullPointerException Keys attribute seems to cause this issue. When I remove all keys, I can publish without problems. ## Possible Solution ## Steps to Reproduce <!-- Test case, Gist, set of files or steps required to reproduce the issue. --> 1. Create a BOOKMAP with a DITAMAP added as chapter and add key. It's importat you add a DITAMAP as chapter, not a topic. There is not bug when the chapter references to a DITA file. 2. In the DITAMAP, add a topic with a couple of child topics. 3. Add a key to all topics. 4. Add the attribute @chunk="to-content" to the first topic in the DITAMAP 5. Try to generate a OxygenXML webhelp or PDF <!-- Create a Gist via <https://gist.github.com/> to upload your test files. --> <!-- Link to the Gist from the issue or attach a .zip archive of your files. --> ## Environment * DITA-OT version: 3.4.1 (OxygenXML 22.1) * Operating system and version: Windows * How did you run DITA-OT? OxygenXML * Transformation type: Miramo PDF, OxygenWebhelp <!-- Before submitting, check the Preview tab above to verify the XML markup appears correctly and remember you can edit the description later to add information. -->
process
chunk to content generates java lang nullpointerexception error message see attached sample bookmap in attached you find a bookmap with a chapter ditamap containing a couple of topics all topics have unique keys added in the topicref chunk to content is added in the first topic of the ditamap expected behavior generate output with chunked to content topics in webhelp actual behavior when i publish this bookmap i get the following error message generates java lang nullpointerexception keys attribute seems to cause this issue when i remove all keys i can publish without problems possible solution steps to reproduce create a bookmap with a ditamap added as chapter and add key it s importat you add a ditamap as chapter not a topic there is not bug when the chapter references to a dita file in the ditamap add a topic with a couple of child topics add a key to all topics add the attribute chunk to content to the first topic in the ditamap try to generate a oxygenxml webhelp or pdf environment dita ot version oxygenxml operating system and version windows how did you run dita ot oxygenxml transformation type miramo pdf oxygenwebhelp before submitting check the preview tab above to verify the xml markup appears correctly and remember you can edit the description later to add information
1
279,839
24,257,651,107
IssuesEvent
2022-09-27 19:17:19
Princeton-CDH/geniza
https://api.github.com/repos/Princeton-CDH/geniza
closed
Image viewer in transcription editor acting improperly
🛠️ chore 🗜️ awaiting testing
retesting notes: - [ ] confirm the editor box is added next to the top of the image or under the last text section (no empty space above it forcing you to scroll down) **Describe the bug** While testing #1000, Ksenia and I ran into different issues with the image on the transcription editor. I had issues of the box I dragged being moved around as I tried to navigate the image (in Google Chrome). Ksenia lost her zoom/rotation bar once she zoomed in (Microsoft Edge, I think?). I am not losing my zoom/rotation bar on Chrome and she did not seem to have issues with navigating around her region box. **To reproduce** Steps to reproduce the behavior: 1. Go to test site and "add/edit transcription" 2. Try to use the region box and the zoom feature 4. See error **Expected behavior** Ksenia should have maintained her ability to use the zoom/rotation tool. I should have been able to zoom into the region box and move around to view words as I transcribed them without moving the box itself. **Screenshots** Screenshot from RR where trying to move within a zoomed screen moved the box edge: <img width="1258" alt="image" src="https://user-images.githubusercontent.com/68028846/188014116-7fa6689f-0de3-409a-a9df-328fdbf935b5.png"> [Ksenia's screenshot in #1000]
1.0
Image viewer in transcription editor acting improperly - retesting notes: - [ ] confirm the editor box is added next to the top of the image or under the last text section (no empty space above it forcing you to scroll down) **Describe the bug** While testing #1000, Ksenia and I ran into different issues with the image on the transcription editor. I had issues of the box I dragged being moved around as I tried to navigate the image (in Google Chrome). Ksenia lost her zoom/rotation bar once she zoomed in (Microsoft Edge, I think?). I am not losing my zoom/rotation bar on Chrome and she did not seem to have issues with navigating around her region box. **To reproduce** Steps to reproduce the behavior: 1. Go to test site and "add/edit transcription" 2. Try to use the region box and the zoom feature 4. See error **Expected behavior** Ksenia should have maintained her ability to use the zoom/rotation tool. I should have been able to zoom into the region box and move around to view words as I transcribed them without moving the box itself. **Screenshots** Screenshot from RR where trying to move within a zoomed screen moved the box edge: <img width="1258" alt="image" src="https://user-images.githubusercontent.com/68028846/188014116-7fa6689f-0de3-409a-a9df-328fdbf935b5.png"> [Ksenia's screenshot in #1000]
non_process
image viewer in transcription editor acting improperly retesting notes confirm the editor box is added next to the top of the image or under the last text section no empty space above it forcing you to scroll down describe the bug while testing ksenia and i ran into different issues with the image on the transcription editor i had issues of the box i dragged being moved around as i tried to navigate the image in google chrome ksenia lost her zoom rotation bar once she zoomed in microsoft edge i think i am not losing my zoom rotation bar on chrome and she did not seem to have issues with navigating around her region box to reproduce steps to reproduce the behavior go to test site and add edit transcription try to use the region box and the zoom feature see error expected behavior ksenia should have maintained her ability to use the zoom rotation tool i should have been able to zoom into the region box and move around to view words as i transcribed them without moving the box itself screenshots screenshot from rr where trying to move within a zoomed screen moved the box edge img width alt image src
0
13,760
16,518,684,793
IssuesEvent
2021-05-26 12:30:27
GoogleCloudPlatform/fda-mystudies
https://api.github.com/repos/GoogleCloudPlatform/fda-mystudies
closed
Remove first column from email list import template
Bug P2 Participant manager Process: Fixed Process: Tested QA Process: Tested dev
When importing a list of participants into the Participant Manager, users can download a template to use. The template has a column (the first one for serial number) that is unnecessary and can be removed.
3.0
Remove first column from email list import template - When importing a list of participants into the Participant Manager, users can download a template to use. The template has a column (the first one for serial number) that is unnecessary and can be removed.
process
remove first column from email list import template when importing a list of participants into the participant manager users can download a template to use the template has a column the first one for serial number that is unnecessary and can be removed
1
71,425
23,621,437,178
IssuesEvent
2022-08-24 21:00:11
zed-industries/feedback
https://api.github.com/repos/zed-industries/feedback
opened
Pasting is inconsistent on where it gets placed in text
defect triage
### Check for existing issues - [X] Completed ### Describe the bug As shown in the attached video, where the pasted text is inconsistent. It should be placed where the cursor in edit mode was positioned (or right after the current highlighted section in visual mode IIRC). ### To reproduce Uploading Screen Recording 2022-08-24 at 2.51.46 PM.mov… ### Expected behavior The clipboard should be pasting into the same spot ### Environment Zed 0.52.0 – /Applications/Zed.app \nmacOS 12.4 \narchitecture x86_64 ### If applicable, add mockups / screenshots to help explain present your vision of the feature _No response_ ### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue _No response_
1.0
Pasting is inconsistent on where it gets placed in text - ### Check for existing issues - [X] Completed ### Describe the bug As shown in the attached video, where the pasted text is inconsistent. It should be placed where the cursor in edit mode was positioned (or right after the current highlighted section in visual mode IIRC). ### To reproduce Uploading Screen Recording 2022-08-24 at 2.51.46 PM.mov… ### Expected behavior The clipboard should be pasting into the same spot ### Environment Zed 0.52.0 – /Applications/Zed.app \nmacOS 12.4 \narchitecture x86_64 ### If applicable, add mockups / screenshots to help explain present your vision of the feature _No response_ ### If applicable, attach your `~/Library/Logs/Zed/Zed.log` file to this issue _No response_
non_process
pasting is inconsistent on where it gets placed in text check for existing issues completed describe the bug as shown in the attached video where the pasted text is inconsistent it should be placed where the cursor in edit mode was positioned or right after the current highlighted section in visual mode iirc to reproduce uploading screen recording at pm mov… expected behavior the clipboard should be pasting into the same spot environment zed – applications zed app nmacos narchitecture if applicable add mockups screenshots to help explain present your vision of the feature no response if applicable attach your library logs zed zed log file to this issue no response
0