Unnamed: 0
int64
0
832k
id
float64
2.49B
32.1B
type
stringclasses
1 value
created_at
stringlengths
19
19
repo
stringlengths
5
112
repo_url
stringlengths
34
141
action
stringclasses
3 values
title
stringlengths
1
757
labels
stringlengths
4
664
body
stringlengths
3
261k
index
stringclasses
10 values
text_combine
stringlengths
96
261k
label
stringclasses
2 values
text
stringlengths
96
232k
binary_label
int64
0
1
19,091
3,140,707,137
IssuesEvent
2015-09-12 00:08:12
bridgedotnet/Bridge
https://api.github.com/repos/bridgedotnet/Bridge
opened
GlobalTarget attribute does not emit its specified parameter when target referenced
defect
The code: ```csharp namespace ClassLibrary1 { public class Class1 { public static void Main() { TestClass.Test().Alert("Test"); } } public class GlobalRef { public void Alert(string message) { return; } } public class TestClass { [GlobalTarget("PrependedClass")] public static GlobalRef Test() { Console.Log("TestClass"); return null; } } } ``` Results in ```javascript Bridge.define('ClassLibrary1.Class1', { statics: { main: function () { alert("Test"); } } }); Bridge.define('ClassLibrary1.GlobalRef', { alert: function (message) { return; } }); Bridge.define('ClassLibrary1.TestClass', { statics: { test: function () { console.log("TestClass"); return null; } } }); ``` Line 4 should read `PrependedClass.alert("Test");` instead of just `alert("Test");` as if `GlobalTarget` argument was empty.
1.0
GlobalTarget attribute does not emit its specified parameter when target referenced - The code: ```csharp namespace ClassLibrary1 { public class Class1 { public static void Main() { TestClass.Test().Alert("Test"); } } public class GlobalRef { public void Alert(string message) { return; } } public class TestClass { [GlobalTarget("PrependedClass")] public static GlobalRef Test() { Console.Log("TestClass"); return null; } } } ``` Results in ```javascript Bridge.define('ClassLibrary1.Class1', { statics: { main: function () { alert("Test"); } } }); Bridge.define('ClassLibrary1.GlobalRef', { alert: function (message) { return; } }); Bridge.define('ClassLibrary1.TestClass', { statics: { test: function () { console.log("TestClass"); return null; } } }); ``` Line 4 should read `PrependedClass.alert("Test");` instead of just `alert("Test");` as if `GlobalTarget` argument was empty.
defect
globaltarget attribute does not emit its specified parameter when target referenced the code csharp namespace public class public static void main testclass test alert test public class globalref public void alert string message return public class testclass public static globalref test console log testclass return null results in javascript bridge define statics main function alert test bridge define globalref alert function message return bridge define testclass statics test function console log testclass return null line should read prependedclass alert test instead of just alert test as if globaltarget argument was empty
1
99,786
30,551,729,893
IssuesEvent
2023-07-20 08:58:40
llvm/llvm-project
https://api.github.com/repos/llvm/llvm-project
closed
TypeSystemClang.cpp:489:31: error: no member named 'lang_cuda' in 'clang::LangStandard'
lldb build-problem
Started to fail today on linux ``` [58/1480] Building CXX object tools/lldb/source/Plugins/TypeSystem/Clang/CMakeFiles/lldbPluginTypeSystemClang.dir/TypeSystemClang.cpp.o FAILED: tools/lldb/source/Plugins/TypeSystem/Clang/CMakeFiles/lldbPluginTypeSystemClang.dir/TypeSystemClang.cpp.o /build/source/build-llvm/./bin/clang++ -DHAVE_ROUND -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/build/source/build-llvm/tools/clang/stage2-bins/tools/lldb/source/Plugins/TypeSystem/Clang -I/build/source/lldb/source/Plugins/TypeSystem/Clang -I/build/source/lldb/include -I/build/source/build-llvm/tools/clang/stage2-bins/tools/lldb/include -I/build/source/build-llvm/tools/clang/stage2-bins/include -I/build/source/llvm/include -I/usr/include/python3.11 -I/build/source/clang/include -I/build/source/build-llvm/tools/clang/stage2-bins/tools/lldb/../clang/include -I/build/source/lldb/source -I/build/source/build-llvm/tools/clang/stage2-bins/tools/lldb/source -isystem /usr/include/libxml2 -fstack-protector-strong -Wformat -Werror=format-security -Wno-unused-command-line-argument -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -ffile-prefix-map=/build/source/build-llvm/tools/clang/stage2-bins=build-llvm/tools/clang/stage2-bins -ffile-prefix-map=/build/source/= -no-canonical-prefixes -Wno-deprecated-declarations -Wno-unknown-pragmas -Wno-strict-aliasing -Wno-deprecated-register -Wno-vla-extension -O2 -DNDEBUG -g1 -fno-exceptions -funwind-tables -std=c++17 -MD -MT tools/lldb/source/Plugins/TypeSystem/Clang/CMakeFiles/lldbPluginTypeSystemClang.dir/TypeSystemClang.cpp.o -MF tools/lldb/source/Plugins/TypeSystem/Clang/CMakeFiles/lldbPluginTypeSystemClang.dir/TypeSystemClang.cpp.o.d -o tools/lldb/source/Plugins/TypeSystem/Clang/CMakeFiles/lldbPluginTypeSystemClang.dir/TypeSystemClang.cpp.o -c /build/source/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp /build/source/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp:489:31: error: no member named 'lang_cuda' in 'clang::LangStandard' 489 | LangStd = LangStandard::lang_cuda; | ~~~~~~~~~~~~~~^ /build/source/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp:501:31: error: no member named 'lang_hip' in 'clang::LangStandard' 501 | LangStd = LangStandard::lang_hip; | ~~~~~~~~~~~~~~^ 2 errors generated. [59/1480] Building CXX object tools/lldb/source/Target/CMakeFiles/lldbTarget.dir/RegisterFlags.cpp.o ```
1.0
TypeSystemClang.cpp:489:31: error: no member named 'lang_cuda' in 'clang::LangStandard' - Started to fail today on linux ``` [58/1480] Building CXX object tools/lldb/source/Plugins/TypeSystem/Clang/CMakeFiles/lldbPluginTypeSystemClang.dir/TypeSystemClang.cpp.o FAILED: tools/lldb/source/Plugins/TypeSystem/Clang/CMakeFiles/lldbPluginTypeSystemClang.dir/TypeSystemClang.cpp.o /build/source/build-llvm/./bin/clang++ -DHAVE_ROUND -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS -I/build/source/build-llvm/tools/clang/stage2-bins/tools/lldb/source/Plugins/TypeSystem/Clang -I/build/source/lldb/source/Plugins/TypeSystem/Clang -I/build/source/lldb/include -I/build/source/build-llvm/tools/clang/stage2-bins/tools/lldb/include -I/build/source/build-llvm/tools/clang/stage2-bins/include -I/build/source/llvm/include -I/usr/include/python3.11 -I/build/source/clang/include -I/build/source/build-llvm/tools/clang/stage2-bins/tools/lldb/../clang/include -I/build/source/lldb/source -I/build/source/build-llvm/tools/clang/stage2-bins/tools/lldb/source -isystem /usr/include/libxml2 -fstack-protector-strong -Wformat -Werror=format-security -Wno-unused-command-line-argument -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -fno-semantic-interposition -fvisibility-inlines-hidden -Werror=date-time -Werror=unguarded-availability-new -Wall -Wextra -Wno-unused-parameter -Wwrite-strings -Wcast-qual -Wmissing-field-initializers -pedantic -Wno-long-long -Wc++98-compat-extra-semi -Wimplicit-fallthrough -Wcovered-switch-default -Wno-noexcept-type -Wnon-virtual-dtor -Wdelete-non-virtual-dtor -Wsuggest-override -Wstring-conversion -Wmisleading-indentation -Wctad-maybe-unsupported -fdiagnostics-color -ffunction-sections -fdata-sections -ffile-prefix-map=/build/source/build-llvm/tools/clang/stage2-bins=build-llvm/tools/clang/stage2-bins -ffile-prefix-map=/build/source/= -no-canonical-prefixes -Wno-deprecated-declarations -Wno-unknown-pragmas -Wno-strict-aliasing -Wno-deprecated-register -Wno-vla-extension -O2 -DNDEBUG -g1 -fno-exceptions -funwind-tables -std=c++17 -MD -MT tools/lldb/source/Plugins/TypeSystem/Clang/CMakeFiles/lldbPluginTypeSystemClang.dir/TypeSystemClang.cpp.o -MF tools/lldb/source/Plugins/TypeSystem/Clang/CMakeFiles/lldbPluginTypeSystemClang.dir/TypeSystemClang.cpp.o.d -o tools/lldb/source/Plugins/TypeSystem/Clang/CMakeFiles/lldbPluginTypeSystemClang.dir/TypeSystemClang.cpp.o -c /build/source/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp /build/source/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp:489:31: error: no member named 'lang_cuda' in 'clang::LangStandard' 489 | LangStd = LangStandard::lang_cuda; | ~~~~~~~~~~~~~~^ /build/source/lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp:501:31: error: no member named 'lang_hip' in 'clang::LangStandard' 501 | LangStd = LangStandard::lang_hip; | ~~~~~~~~~~~~~~^ 2 errors generated. [59/1480] Building CXX object tools/lldb/source/Target/CMakeFiles/lldbTarget.dir/RegisterFlags.cpp.o ```
non_defect
typesystemclang cpp error no member named lang cuda in clang langstandard started to fail today on linux building cxx object tools lldb source plugins typesystem clang cmakefiles lldbplugintypesystemclang dir typesystemclang cpp o failed tools lldb source plugins typesystem clang cmakefiles lldbplugintypesystemclang dir typesystemclang cpp o build source build llvm bin clang dhave round d gnu source d stdc constant macros d stdc format macros d stdc limit macros i build source build llvm tools clang bins tools lldb source plugins typesystem clang i build source lldb source plugins typesystem clang i build source lldb include i build source build llvm tools clang bins tools lldb include i build source build llvm tools clang bins include i build source llvm include i usr include i build source clang include i build source build llvm tools clang bins tools lldb clang include i build source lldb source i build source build llvm tools clang bins tools lldb source isystem usr include fstack protector strong wformat werror format security wno unused command line argument wdate time d fortify source fpic fno semantic interposition fvisibility inlines hidden werror date time werror unguarded availability new wall wextra wno unused parameter wwrite strings wcast qual wmissing field initializers pedantic wno long long wc compat extra semi wimplicit fallthrough wcovered switch default wno noexcept type wnon virtual dtor wdelete non virtual dtor wsuggest override wstring conversion wmisleading indentation wctad maybe unsupported fdiagnostics color ffunction sections fdata sections ffile prefix map build source build llvm tools clang bins build llvm tools clang bins ffile prefix map build source no canonical prefixes wno deprecated declarations wno unknown pragmas wno strict aliasing wno deprecated register wno vla extension dndebug fno exceptions funwind tables std c md mt tools lldb source plugins typesystem clang cmakefiles lldbplugintypesystemclang dir typesystemclang cpp o mf tools lldb source plugins typesystem clang cmakefiles lldbplugintypesystemclang dir typesystemclang cpp o d o tools lldb source plugins typesystem clang cmakefiles lldbplugintypesystemclang dir typesystemclang cpp o c build source lldb source plugins typesystem clang typesystemclang cpp build source lldb source plugins typesystem clang typesystemclang cpp error no member named lang cuda in clang langstandard langstd langstandard lang cuda build source lldb source plugins typesystem clang typesystemclang cpp error no member named lang hip in clang langstandard langstd langstandard lang hip errors generated building cxx object tools lldb source target cmakefiles lldbtarget dir registerflags cpp o
0
27,212
4,931,775,410
IssuesEvent
2016-11-28 11:19:55
bridgedotnet/Bridge
https://api.github.com/repos/bridgedotnet/Bridge
closed
"unreachable code" can cause translation at runtime and compile time
defect
Reported on the [forum](http://forums.bridge.net/forum/bridge-net-pro/bugs/3094-unreachable-code-can-cause-translation-at-runtime-and-compile-time): 1. Create a new class library project named "BridgeUnknownIdentifierResolveResultError" and add the "Bridge.Min" NuGet package to it 2. Create another class library project named "OtherLibrary" and add "Bridge.Min" to that 3. Add a reference to "OtherLibrary" to the "BridgeUnknownIdentifierResolveResultError" 4. Change Class1.cs in "OtherLibrary" to ```cs namespace OtherLibrary { public static class Class1 { public static void Go() { } } } ``` Copy to clipboard 5. Change `Class1.cs` in **BridgeUnknownIdentifierResolveResultError** to ```cs namespace BridgeUnknownIdentifierResolveResultError { public static class Class1 { public static void Main() { return; OtherLibrary.Class1.Go(); } } } ``` Copy to clipboard The JavaScript generated for the **BridgeUnknownIdentifierResolveResultError** project will include the following line which means that the JavaScript is invalid: ```js [UnknownIdentifierResolveResult OtherLibrary].class1.go(); ``` Copy to clipboard If the return statement is removed from Main then everything works correctly. If the **OtherLibrary** Class1 is changed so that neither it nor its method are static then the error moves from runtime to compile time: ``` Error: Object reference not set to an instance of an object. at Bridge.Translator.Emitter.GetTypeDefinition(AstTyp e reference, Boolean safe) at Bridge.Translator.ObjectCreateBlock.VisitObjectCre ateExpression() at Bridge.Translator.ObjectCreateBlock.EmitConversion Expression() at Bridge.Translator.ConversionBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitObjectCreateExpress ion(ObjectCreateExpression objectCreateExpression) at ICSharpCode.NRefactory.CSharp.ObjectCreateExpressi on.AcceptVisitor(IAstVisitor visitor) at Bridge.Translator.ParenthesizedBlock.EmitConversio nExpression() at Bridge.Translator.ConversionBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitParenthesizedExpres sion(ParenthesizedExpression parenthesizedExpression) at ICSharpCode.NRefactory.CSharp.ParenthesizedExpress ion.AcceptVisitor(IAstVisitor visitor) at Bridge.Translator.MemberReferenceBlock.WriteSimple Target(ResolveResult resolveResult) at Bridge.Translator.MemberReferenceBlock.VisitMember ReferenceExpression() at Bridge.Translator.MemberReferenceBlock.EmitConvers ionExpression() at Bridge.Translator.ConversionBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitMemberReferenceExpr ession(MemberReferenceExpression memberReferenceExpression) at ICSharpCode.NRefactory.CSharp.MemberReferenceExpre ssion.AcceptVisitor(IAstVisitor visitor) at Bridge.Translator.InvocationBlock.VisitInvocationE xpression() at Bridge.Translator.InvocationBlock.EmitConversionEx pression() at Bridge.Translator.ConversionBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitInvocationExpressio n(InvocationExpression invocationExpression) at ICSharpCode.NRefactory.CSharp.InvocationExpression .AcceptVisitor(IAstVisitor visitor) at Bridge.Translator.ExpressionBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitExpressionStatement (ExpressionStatement expressionStatement) at ICSharpCode.NRefactory.CSharp.ExpressionStatement. AcceptVisitor(IAstVisitor visitor) at Bridge.Translator.Block.<DoEmitBlock>b__64_0(AstNo de child) at System.Collections.Generic.List`1.ForEach(Action`1 action) at Bridge.Translator.Block.DoEmitBlock() at Bridge.Translator.Block.EmitBlock() at Bridge.Translator.Block.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitBlockStatement(Bloc kStatement blockStatement) at ICSharpCode.NRefactory.CSharp.BlockStatement.Accep tVisitor(IAstVisitor visitor) at Bridge.Translator.VisitorMethodBlock.VisitMethodDe claration(MethodDeclaration methodDeclaration) at Bridge.Translator.VisitorMethodBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitMethodDeclaration(M ethodDeclaration methodDeclaration) at Bridge.Translator.MethodBlock.EmitMethods(Dictiona ry`2 methods, Dictionary`2 properties, Dictionary`2 operators) at Bridge.Translator.MethodBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.ClassBlock.EmitInstantiableBlock () at Bridge.Translator.ClassBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.EmitBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.Emit() at Bridge.Translator.Translator.Translate() at Bridge.Build.GenerateScript.Execute() ```
1.0
"unreachable code" can cause translation at runtime and compile time - Reported on the [forum](http://forums.bridge.net/forum/bridge-net-pro/bugs/3094-unreachable-code-can-cause-translation-at-runtime-and-compile-time): 1. Create a new class library project named "BridgeUnknownIdentifierResolveResultError" and add the "Bridge.Min" NuGet package to it 2. Create another class library project named "OtherLibrary" and add "Bridge.Min" to that 3. Add a reference to "OtherLibrary" to the "BridgeUnknownIdentifierResolveResultError" 4. Change Class1.cs in "OtherLibrary" to ```cs namespace OtherLibrary { public static class Class1 { public static void Go() { } } } ``` Copy to clipboard 5. Change `Class1.cs` in **BridgeUnknownIdentifierResolveResultError** to ```cs namespace BridgeUnknownIdentifierResolveResultError { public static class Class1 { public static void Main() { return; OtherLibrary.Class1.Go(); } } } ``` Copy to clipboard The JavaScript generated for the **BridgeUnknownIdentifierResolveResultError** project will include the following line which means that the JavaScript is invalid: ```js [UnknownIdentifierResolveResult OtherLibrary].class1.go(); ``` Copy to clipboard If the return statement is removed from Main then everything works correctly. If the **OtherLibrary** Class1 is changed so that neither it nor its method are static then the error moves from runtime to compile time: ``` Error: Object reference not set to an instance of an object. at Bridge.Translator.Emitter.GetTypeDefinition(AstTyp e reference, Boolean safe) at Bridge.Translator.ObjectCreateBlock.VisitObjectCre ateExpression() at Bridge.Translator.ObjectCreateBlock.EmitConversion Expression() at Bridge.Translator.ConversionBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitObjectCreateExpress ion(ObjectCreateExpression objectCreateExpression) at ICSharpCode.NRefactory.CSharp.ObjectCreateExpressi on.AcceptVisitor(IAstVisitor visitor) at Bridge.Translator.ParenthesizedBlock.EmitConversio nExpression() at Bridge.Translator.ConversionBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitParenthesizedExpres sion(ParenthesizedExpression parenthesizedExpression) at ICSharpCode.NRefactory.CSharp.ParenthesizedExpress ion.AcceptVisitor(IAstVisitor visitor) at Bridge.Translator.MemberReferenceBlock.WriteSimple Target(ResolveResult resolveResult) at Bridge.Translator.MemberReferenceBlock.VisitMember ReferenceExpression() at Bridge.Translator.MemberReferenceBlock.EmitConvers ionExpression() at Bridge.Translator.ConversionBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitMemberReferenceExpr ession(MemberReferenceExpression memberReferenceExpression) at ICSharpCode.NRefactory.CSharp.MemberReferenceExpre ssion.AcceptVisitor(IAstVisitor visitor) at Bridge.Translator.InvocationBlock.VisitInvocationE xpression() at Bridge.Translator.InvocationBlock.EmitConversionEx pression() at Bridge.Translator.ConversionBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitInvocationExpressio n(InvocationExpression invocationExpression) at ICSharpCode.NRefactory.CSharp.InvocationExpression .AcceptVisitor(IAstVisitor visitor) at Bridge.Translator.ExpressionBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitExpressionStatement (ExpressionStatement expressionStatement) at ICSharpCode.NRefactory.CSharp.ExpressionStatement. AcceptVisitor(IAstVisitor visitor) at Bridge.Translator.Block.<DoEmitBlock>b__64_0(AstNo de child) at System.Collections.Generic.List`1.ForEach(Action`1 action) at Bridge.Translator.Block.DoEmitBlock() at Bridge.Translator.Block.EmitBlock() at Bridge.Translator.Block.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitBlockStatement(Bloc kStatement blockStatement) at ICSharpCode.NRefactory.CSharp.BlockStatement.Accep tVisitor(IAstVisitor visitor) at Bridge.Translator.VisitorMethodBlock.VisitMethodDe claration(MethodDeclaration methodDeclaration) at Bridge.Translator.VisitorMethodBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.VisitMethodDeclaration(M ethodDeclaration methodDeclaration) at Bridge.Translator.MethodBlock.EmitMethods(Dictiona ry`2 methods, Dictionary`2 properties, Dictionary`2 operators) at Bridge.Translator.MethodBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.ClassBlock.EmitInstantiableBlock () at Bridge.Translator.ClassBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.EmitBlock.DoEmit() at Bridge.Translator.AbstractEmitterBlock.Emit() at Bridge.Translator.Emitter.Emit() at Bridge.Translator.Translator.Translate() at Bridge.Build.GenerateScript.Execute() ```
defect
unreachable code can cause translation at runtime and compile time reported on the create a new class library project named bridgeunknownidentifierresolveresulterror and add the bridge min nuget package to it create another class library project named otherlibrary and add bridge min to that add a reference to otherlibrary to the bridgeunknownidentifierresolveresulterror change cs in otherlibrary to cs namespace otherlibrary public static class public static void go copy to clipboard change cs in bridgeunknownidentifierresolveresulterror to cs namespace bridgeunknownidentifierresolveresulterror public static class public static void main return otherlibrary go copy to clipboard the javascript generated for the bridgeunknownidentifierresolveresulterror project will include the following line which means that the javascript is invalid js go copy to clipboard if the return statement is removed from main then everything works correctly if the otherlibrary is changed so that neither it nor its method are static then the error moves from runtime to compile time error object reference not set to an instance of an object at bridge translator emitter gettypedefinition asttyp e reference boolean safe at bridge translator objectcreateblock visitobjectcre ateexpression at bridge translator objectcreateblock emitconversion expression at bridge translator conversionblock doemit at bridge translator abstractemitterblock emit at bridge translator emitter visitobjectcreateexpress ion objectcreateexpression objectcreateexpression at icsharpcode nrefactory csharp objectcreateexpressi on acceptvisitor iastvisitor visitor at bridge translator parenthesizedblock emitconversio nexpression at bridge translator conversionblock doemit at bridge translator abstractemitterblock emit at bridge translator emitter visitparenthesizedexpres sion parenthesizedexpression parenthesizedexpression at icsharpcode nrefactory csharp parenthesizedexpress ion acceptvisitor iastvisitor visitor at bridge translator memberreferenceblock writesimple target resolveresult resolveresult at bridge translator memberreferenceblock visitmember referenceexpression at bridge translator memberreferenceblock emitconvers ionexpression at bridge translator conversionblock doemit at bridge translator abstractemitterblock emit at bridge translator emitter visitmemberreferenceexpr ession memberreferenceexpression memberreferenceexpression at icsharpcode nrefactory csharp memberreferenceexpre ssion acceptvisitor iastvisitor visitor at bridge translator invocationblock visitinvocatione xpression at bridge translator invocationblock emitconversionex pression at bridge translator conversionblock doemit at bridge translator abstractemitterblock emit at bridge translator emitter visitinvocationexpressio n invocationexpression invocationexpression at icsharpcode nrefactory csharp invocationexpression acceptvisitor iastvisitor visitor at bridge translator expressionblock doemit at bridge translator abstractemitterblock emit at bridge translator emitter visitexpressionstatement expressionstatement expressionstatement at icsharpcode nrefactory csharp expressionstatement acceptvisitor iastvisitor visitor at bridge translator block b astno de child at system collections generic list foreach action action at bridge translator block doemitblock at bridge translator block emitblock at bridge translator block doemit at bridge translator abstractemitterblock emit at bridge translator emitter visitblockstatement bloc kstatement blockstatement at icsharpcode nrefactory csharp blockstatement accep tvisitor iastvisitor visitor at bridge translator visitormethodblock visitmethodde claration methoddeclaration methoddeclaration at bridge translator visitormethodblock doemit at bridge translator abstractemitterblock emit at bridge translator emitter visitmethoddeclaration m ethoddeclaration methoddeclaration at bridge translator methodblock emitmethods dictiona ry methods dictionary properties dictionary operators at bridge translator methodblock doemit at bridge translator abstractemitterblock emit at bridge translator classblock emitinstantiableblock at bridge translator classblock doemit at bridge translator abstractemitterblock emit at bridge translator emitblock doemit at bridge translator abstractemitterblock emit at bridge translator emitter emit at bridge translator translator translate at bridge build generatescript execute
1
65,064
19,087,029,483
IssuesEvent
2021-11-29 07:46:31
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
Empty room displayed with no way to join or remove it
T-Defect X-Needs-Info S-Major A-Room-View O-Uncommon
### Steps to reproduce 1. When I open Element I see an empty room with a red exclamation mark next to it. 2. When I select it, it allows me to either send a bug report or delete my cache and reload Element. I did clean the cache multiple times. The problem also persists after logging in again or using Element Web. ### Outcome #### What did you expect? I expect to be either able to join the room or having it cleaned up, if it no longer exists. #### What happened instead? Empty room is always displayed, with no way to interact with it. ### Operating system Windows/Firefox ### Application version Version von Element: 1.9.3 Version von Olm: 3.2.3 ### How did you install the app? scoop ### Homeserver matrix.javil.eu ### Will you send logs? Yes
1.0
Empty room displayed with no way to join or remove it - ### Steps to reproduce 1. When I open Element I see an empty room with a red exclamation mark next to it. 2. When I select it, it allows me to either send a bug report or delete my cache and reload Element. I did clean the cache multiple times. The problem also persists after logging in again or using Element Web. ### Outcome #### What did you expect? I expect to be either able to join the room or having it cleaned up, if it no longer exists. #### What happened instead? Empty room is always displayed, with no way to interact with it. ### Operating system Windows/Firefox ### Application version Version von Element: 1.9.3 Version von Olm: 3.2.3 ### How did you install the app? scoop ### Homeserver matrix.javil.eu ### Will you send logs? Yes
defect
empty room displayed with no way to join or remove it steps to reproduce when i open element i see an empty room with a red exclamation mark next to it when i select it it allows me to either send a bug report or delete my cache and reload element i did clean the cache multiple times the problem also persists after logging in again or using element web outcome what did you expect i expect to be either able to join the room or having it cleaned up if it no longer exists what happened instead empty room is always displayed with no way to interact with it operating system windows firefox application version version von element version von olm how did you install the app scoop homeserver matrix javil eu will you send logs yes
1
126,164
16,986,997,567
IssuesEvent
2021-06-30 15:24:48
emory-libraries/blacklight-catalog
https://api.github.com/repos/emory-libraries/blacklight-catalog
closed
Update styles on Single Item View
UI Design
- [x] Tables need to account for long lists. A scrolling table from the examples below as reference: 1. https://codepen.io/kdougan/pen/KyyVQY 2. https://codepen.io/RobotsPlay/pen/EyZJOa 3. https://codepen.io/bolderelements/pen/EwVmKZ - [ ] Modals - [ ] Title bar needs to be smaller - [ ] Typography should match [DLP](https://digital.library.emory.edu/catalog/5805x69pct-cor) - [x] Back to Search button needs to have square corners ~~- [ ] .availability-iframes should be 100% width *Temporary but important*~~ Any questions chat with @norm0
1.0
Update styles on Single Item View - - [x] Tables need to account for long lists. A scrolling table from the examples below as reference: 1. https://codepen.io/kdougan/pen/KyyVQY 2. https://codepen.io/RobotsPlay/pen/EyZJOa 3. https://codepen.io/bolderelements/pen/EwVmKZ - [ ] Modals - [ ] Title bar needs to be smaller - [ ] Typography should match [DLP](https://digital.library.emory.edu/catalog/5805x69pct-cor) - [x] Back to Search button needs to have square corners ~~- [ ] .availability-iframes should be 100% width *Temporary but important*~~ Any questions chat with @norm0
non_defect
update styles on single item view tables need to account for long lists a scrolling table from the examples below as reference modals title bar needs to be smaller typography should match back to search button needs to have square corners availability iframes should be width temporary but important any questions chat with
0
19,428
5,873,219,236
IssuesEvent
2017-05-15 13:33:53
zhmcclient/python-zhmcclient
https://api.github.com/repos/zhmcclient/python-zhmcclient
closed
Incorrect result of Dpm.dpm_enabled property for z13 in classic mode
area: code resolution: fixed type: bug
### Actual behavior The Python property `Cpc.dpm_enabled` incorrectly returns `True` for a z13 in classic mode. Comparison points: * That property correctly returns `False` for EC12, and `True` for z13 in DPM mode. * The corresponding resource property "dpm-enabled" indicates the correct mode for z13 in both modes. ### Expected behavior The Python property `Cpc.dpm_enabled` should returns `False` for a z13 in classic mode. ### Execution environment * zhmcclient version: 0.12.0.dev25 * Operating system (type+version): RHEL 7.3 * HMC version: 2.13.1 * CPC version: 2.13.1
1.0
Incorrect result of Dpm.dpm_enabled property for z13 in classic mode - ### Actual behavior The Python property `Cpc.dpm_enabled` incorrectly returns `True` for a z13 in classic mode. Comparison points: * That property correctly returns `False` for EC12, and `True` for z13 in DPM mode. * The corresponding resource property "dpm-enabled" indicates the correct mode for z13 in both modes. ### Expected behavior The Python property `Cpc.dpm_enabled` should returns `False` for a z13 in classic mode. ### Execution environment * zhmcclient version: 0.12.0.dev25 * Operating system (type+version): RHEL 7.3 * HMC version: 2.13.1 * CPC version: 2.13.1
non_defect
incorrect result of dpm dpm enabled property for in classic mode actual behavior the python property cpc dpm enabled incorrectly returns true for a in classic mode comparison points that property correctly returns false for and true for in dpm mode the corresponding resource property dpm enabled indicates the correct mode for in both modes expected behavior the python property cpc dpm enabled should returns false for a in classic mode execution environment zhmcclient version operating system type version rhel hmc version cpc version
0
569,832
17,016,273,797
IssuesEvent
2021-07-02 12:31:09
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
opened
dividing of street names (handling of composita)
Component: nominatim Priority: minor Type: enhancement
**[Submitted to the original trac issue database at 7.43am, Friday, 5th April 2013]** Nominatim helps me to resolve incorrect divided streetnames like this: "Main Str., 51149 Kln" to "Mainstr., 51149 Kln" [http://nominatim.openstreetmap.org/search.php?q=Main+Str.%2C+51149+Kln] German street names have often "Weg" as last name part. Is it possible to handle this correction also with "Weg". Examples: 1. Real street name is "Ziegeleiweg, 51149 Kln": Should be found with "Ziegelei Weg" or "Ziegelei-Weg", if no other hits are available. 2. Real street name is "Urbacher Weg, 51149 Kln": Should be found with "Urbacherweg", if no other hits are available. 3. To be complete: Real street name is "Theodor-Schnitzler-Weg, 51149 Kln": Can be found with "Theodor Schnitzler Weg", but should be also be findable with "Theodorschnitzlerweg", if no other hits are available. Thanx
1.0
dividing of street names (handling of composita) - **[Submitted to the original trac issue database at 7.43am, Friday, 5th April 2013]** Nominatim helps me to resolve incorrect divided streetnames like this: "Main Str., 51149 Kln" to "Mainstr., 51149 Kln" [http://nominatim.openstreetmap.org/search.php?q=Main+Str.%2C+51149+Kln] German street names have often "Weg" as last name part. Is it possible to handle this correction also with "Weg". Examples: 1. Real street name is "Ziegeleiweg, 51149 Kln": Should be found with "Ziegelei Weg" or "Ziegelei-Weg", if no other hits are available. 2. Real street name is "Urbacher Weg, 51149 Kln": Should be found with "Urbacherweg", if no other hits are available. 3. To be complete: Real street name is "Theodor-Schnitzler-Weg, 51149 Kln": Can be found with "Theodor Schnitzler Weg", but should be also be findable with "Theodorschnitzlerweg", if no other hits are available. Thanx
non_defect
dividing of street names handling of composita nominatim helps me to resolve incorrect divided streetnames like this main str kln to mainstr kln german street names have often weg as last name part is it possible to handle this correction also with weg examples real street name is ziegeleiweg kln should be found with ziegelei weg or ziegelei weg if no other hits are available real street name is urbacher weg kln should be found with urbacherweg if no other hits are available to be complete real street name is theodor schnitzler weg kln can be found with theodor schnitzler weg but should be also be findable with theodorschnitzlerweg if no other hits are available thanx
0
74,508
25,149,174,084
IssuesEvent
2022-11-10 08:40:33
zed-industries/feedback
https://api.github.com/repos/zed-industries/feedback
opened
formatting python code with custom argument isn't working
defect triage
### Check for existing issues - [X] Completed ### Describe the bug / provide steps to reproduce it I have the following configuration about python formatting: ```json { "buffer_font_size": 16, "buffer_font_family": "BerkeleyMono Nerd Font", "language_overrides": { "Python": { "format_on_save": "off", "formatter": { "external": { "command": "black", "arguments": [ "--line-length", "110" ] } } } } } ``` And given following python code: ```python # a.py def a(b, c, d, e): pass a("bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb", "cccccccccccccccccccccccccc", "dddddddddddddddddddddddd", "eeeeeeeeeeeeeeeeeeeeee") ``` Trying to format python code, nothing is happened. But the following configuration is ok: ``` "language_overrides": { "Python": { "format_on_save": "off", "formatter": { "external": { "command": "black", "arguments": [ "-" ] } } } } ``` ### Expected behavior I'd expect python code is formatted. ### Environment Zed 0.62.8 – /Applications/Zed.app \nmacOS 13.0 \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 Here is relative log about formatting: ``` 08:39:58 [ERROR] failed to format via external command "black" Caused by: command failed with exit code Some(1): stdout: stderr: Usage: black [OPTIONS] SRC ... One of 'SRC' or 'code' is required. ```
1.0
formatting python code with custom argument isn't working - ### Check for existing issues - [X] Completed ### Describe the bug / provide steps to reproduce it I have the following configuration about python formatting: ```json { "buffer_font_size": 16, "buffer_font_family": "BerkeleyMono Nerd Font", "language_overrides": { "Python": { "format_on_save": "off", "formatter": { "external": { "command": "black", "arguments": [ "--line-length", "110" ] } } } } } ``` And given following python code: ```python # a.py def a(b, c, d, e): pass a("bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb", "cccccccccccccccccccccccccc", "dddddddddddddddddddddddd", "eeeeeeeeeeeeeeeeeeeeee") ``` Trying to format python code, nothing is happened. But the following configuration is ok: ``` "language_overrides": { "Python": { "format_on_save": "off", "formatter": { "external": { "command": "black", "arguments": [ "-" ] } } } } ``` ### Expected behavior I'd expect python code is formatted. ### Environment Zed 0.62.8 – /Applications/Zed.app \nmacOS 13.0 \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 Here is relative log about formatting: ``` 08:39:58 [ERROR] failed to format via external command "black" Caused by: command failed with exit code Some(1): stdout: stderr: Usage: black [OPTIONS] SRC ... One of 'SRC' or 'code' is required. ```
defect
formatting python code with custom argument isn t working check for existing issues completed describe the bug provide steps to reproduce it i have the following configuration about python formatting json buffer font size buffer font family berkeleymono nerd font language overrides python format on save off formatter external command black arguments line length and given following python code python a py def a b c d e pass a bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb cccccccccccccccccccccccccc dddddddddddddddddddddddd eeeeeeeeeeeeeeeeeeeeee trying to format python code nothing is happened but the following configuration is ok language overrides python format on save off formatter external command black arguments expected behavior i d expect python code is formatted 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 here is relative log about formatting failed to format via external command black caused by command failed with exit code some stdout stderr usage black src one of src or code is required
1
179,706
13,895,993,429
IssuesEvent
2020-10-19 16:33:40
ImagingDataCommons/IDC-WebApp
https://api.github.com/repos/ImagingDataCommons/IDC-WebApp
closed
Add code meaning to the cohort manifest filters used row
MVP cohorts enhancement merged testing needed
Related to comment in ticket, https://github.com/ImagingDataCommons/IDC-WebApp/issues/194#issuecomment-699095543 in the data portal a filter value for segmentation type is displayed as Nodule, but in the manifest the filter value is displayed as M-03010:SRT <img width="266" alt="segmented property type" src="https://user-images.githubusercontent.com/16824894/94310525-c7ea3f80-ff47-11ea-9481-4264f1122e47.PNG"> <img width="960" alt="2020-09-25 (17)" src="https://user-images.githubusercontent.com/16824894/94310533-cae53000-ff47-11ea-94aa-9d435685c6d7.png">
1.0
Add code meaning to the cohort manifest filters used row - Related to comment in ticket, https://github.com/ImagingDataCommons/IDC-WebApp/issues/194#issuecomment-699095543 in the data portal a filter value for segmentation type is displayed as Nodule, but in the manifest the filter value is displayed as M-03010:SRT <img width="266" alt="segmented property type" src="https://user-images.githubusercontent.com/16824894/94310525-c7ea3f80-ff47-11ea-9481-4264f1122e47.PNG"> <img width="960" alt="2020-09-25 (17)" src="https://user-images.githubusercontent.com/16824894/94310533-cae53000-ff47-11ea-94aa-9d435685c6d7.png">
non_defect
add code meaning to the cohort manifest filters used row related to comment in ticket in the data portal a filter value for segmentation type is displayed as nodule but in the manifest the filter value is displayed as m srt img width alt segmented property type src img width alt src
0
62,209
17,023,873,417
IssuesEvent
2021-07-03 04:18:06
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
Recent downgrade of export utility.
Component: website Priority: minor Resolution: wontfix Type: defect
**[Submitted to the original trac issue database at 9.37am, Saturday, 10th August 2013]** Right, so up to a couple of days ago you could select an area to export, the scale to export, and the file format of the export and you could note down the geographical co-ordinates of the exported file. Now, suddenly and inexplicably, this has been changed to that you can only "export" to a single format, manually selecting the area (giving geographical coordinates), or you can "share" an area, which you can manually choose the area and scale and file format - but without the geographical coordinates - meaning you have to go to Wikimapia to manually establish the geographical extent of the file. This has to be one of the most unproductive "upgrades" in the history of OpenStreetMap.
1.0
Recent downgrade of export utility. - **[Submitted to the original trac issue database at 9.37am, Saturday, 10th August 2013]** Right, so up to a couple of days ago you could select an area to export, the scale to export, and the file format of the export and you could note down the geographical co-ordinates of the exported file. Now, suddenly and inexplicably, this has been changed to that you can only "export" to a single format, manually selecting the area (giving geographical coordinates), or you can "share" an area, which you can manually choose the area and scale and file format - but without the geographical coordinates - meaning you have to go to Wikimapia to manually establish the geographical extent of the file. This has to be one of the most unproductive "upgrades" in the history of OpenStreetMap.
defect
recent downgrade of export utility right so up to a couple of days ago you could select an area to export the scale to export and the file format of the export and you could note down the geographical co ordinates of the exported file now suddenly and inexplicably this has been changed to that you can only export to a single format manually selecting the area giving geographical coordinates or you can share an area which you can manually choose the area and scale and file format but without the geographical coordinates meaning you have to go to wikimapia to manually establish the geographical extent of the file this has to be one of the most unproductive upgrades in the history of openstreetmap
1
76,790
26,599,180,604
IssuesEvent
2023-01-23 14:39:02
scipy/scipy
https://api.github.com/repos/scipy/scipy
closed
QUADPACK bug in integral over large intervals
defect scipy.integrate
Consider: \int_a^b x^{-3} = (a^{-2} - b^{-2})/2 ``` >>> from scipy.integrate import quad >>> quad(lambda x: 1./x**3, 1e2, 1e6) (4.999999950022993e-05, 1.4504531443149906e-09) >>> quad(lambda x: 1./x**3, 1e2, 1e7) (2.449563049046922e-10, 1.9657280786576196e-09) ``` Total loss of precision. Running it the first time, it emits a warning: ``` scipy/integrate/quadpack.py:321: IntegrationWarning: The integral is probably divergent, or slowly convergent. warnings.warn(msg, IntegrationWarning) ``` However, in interactive use the warning is easy to miss/ignore as it disappears the second time. It appears the warning actually means serious business. Appears to be a QUADPACK bug: Octave behaves the same way: ``` >> quad(@(x) 1./x.^3, 1e2, 1e6) ans = 5.0000e-05 >> quad(@(x) 1./x.^3, 1e2, 1e7) ans = 5.7145e-09 ``` Of course, it's not possible to integrate all functions, but this is a relatively simple case where the adaptive integration error estimation appears to be off by quite much. Reducing epsabs can bump up the failure threshold to `1e10`.
1.0
QUADPACK bug in integral over large intervals - Consider: \int_a^b x^{-3} = (a^{-2} - b^{-2})/2 ``` >>> from scipy.integrate import quad >>> quad(lambda x: 1./x**3, 1e2, 1e6) (4.999999950022993e-05, 1.4504531443149906e-09) >>> quad(lambda x: 1./x**3, 1e2, 1e7) (2.449563049046922e-10, 1.9657280786576196e-09) ``` Total loss of precision. Running it the first time, it emits a warning: ``` scipy/integrate/quadpack.py:321: IntegrationWarning: The integral is probably divergent, or slowly convergent. warnings.warn(msg, IntegrationWarning) ``` However, in interactive use the warning is easy to miss/ignore as it disappears the second time. It appears the warning actually means serious business. Appears to be a QUADPACK bug: Octave behaves the same way: ``` >> quad(@(x) 1./x.^3, 1e2, 1e6) ans = 5.0000e-05 >> quad(@(x) 1./x.^3, 1e2, 1e7) ans = 5.7145e-09 ``` Of course, it's not possible to integrate all functions, but this is a relatively simple case where the adaptive integration error estimation appears to be off by quite much. Reducing epsabs can bump up the failure threshold to `1e10`.
defect
quadpack bug in integral over large intervals consider int a b x a b from scipy integrate import quad quad lambda x x quad lambda x x total loss of precision running it the first time it emits a warning scipy integrate quadpack py integrationwarning the integral is probably divergent or slowly convergent warnings warn msg integrationwarning however in interactive use the warning is easy to miss ignore as it disappears the second time it appears the warning actually means serious business appears to be a quadpack bug octave behaves the same way quad x x ans quad x x ans of course it s not possible to integrate all functions but this is a relatively simple case where the adaptive integration error estimation appears to be off by quite much reducing epsabs can bump up the failure threshold to
1
249,425
18,858,194,373
IssuesEvent
2021-11-12 09:29:26
avellinwong01/pe
https://api.github.com/repos/avellinwong01/pe
opened
UG: Better ordering of example usage and expected outputs
severity.Low type.DocumentationBug
![image.png](https://raw.githubusercontent.com/avellinwong01/pe/main/files/259d8264-0a69-4578-be5b-b9b8a25228ba.png) Might be more reader-friendly to put each expected output right after each example usage, so that the reader knows which corresponds to which. <!--session: 1636704688726-e04984b2-5805-4e7d-8093-250fd60d8402--> <!--Version: Web v3.4.1-->
1.0
UG: Better ordering of example usage and expected outputs - ![image.png](https://raw.githubusercontent.com/avellinwong01/pe/main/files/259d8264-0a69-4578-be5b-b9b8a25228ba.png) Might be more reader-friendly to put each expected output right after each example usage, so that the reader knows which corresponds to which. <!--session: 1636704688726-e04984b2-5805-4e7d-8093-250fd60d8402--> <!--Version: Web v3.4.1-->
non_defect
ug better ordering of example usage and expected outputs might be more reader friendly to put each expected output right after each example usage so that the reader knows which corresponds to which
0
253,305
21,673,810,047
IssuesEvent
2022-05-08 11:43:40
mennaelkashef/eShop
https://api.github.com/repos/mennaelkashef/eShop
opened
this is a message to test encryption time
Hello! RULE-GOT-APPLIED DOES-NOT-CONTAIN-STRING Rule-works-on-convert-to-bug test instabug
# :clipboard: Bug Details >this is a message to test encryption time key | value --|-- Reported At | 2022-04-28 13:17:42 UTC Email | abarakat@gmail.com Categories | Report a bug Tags | test, Hello!, RULE-GOT-APPLIED, DOES-NOT-CONTAIN-STRING, Rule-works-on-convert-to-bug, instabug App Version | 1.1 (1) Session Duration | 74 Device | OnePlus KB2001, OS Level 30 Display | 1080x2400 (xhdpi) Location | Giza, Egypt (en) ## :point_right: [View Full Bug Report on Instabug](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8719?utm_source=github&utm_medium=integrations) :point_left: ___ # :iphone: View Hierarchy This bug was reported from **com.example.app.complexviews.ComplexViewsFragment** Find its interactive view hierarchy with all its subviews here: :point_right: **[Check View Hierarchy](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8719?show-hierarchy-view=true&utm_source=github&utm_medium=integrations)** :point_left: ___ # :chart_with_downwards_trend: Session Profiler Here is what the app was doing right before the bug was reported: Key | Value --|-- Used Memory | 57.3% - 4.21/7.34 GB Used Storage | 7.1% - 7.49/105.28 GB Connectivity | no_connection Battery | 100% - plugged Orientation | portrait Find all the changes that happened in the parameters mentioned above during the last 60 seconds before the bug was reported here: :point_right: **[View Full Session Profiler](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8719?show-session-profiler=true&utm_source=github&utm_medium=integrations)** :point_left: ___ # :bust_in_silhouette: User Info ### User Attributes ``` key_name -643333045: key value bla bla bla la key_name -1391770268: key value bla bla bla la key_name -1233063091: key value bla bla bla la key_name 12389232: key value bla bla bla la key_name -1400931524: key value bla bla bla la key_name 278756443: key value bla bla bla la key_name 1545921878: key value bla bla bla la key_name -778916395: key value bla bla bla la key_name -1822943291: key value bla bla bla la key_name 1537783730: key value bla bla bla la key_name -2119608186: key value bla bla bla la key_name -683370323: key value bla bla bla la key_name -1977430918: key value bla bla bla la key_name -223322809: key value bla bla bla la ``` ___ # :mag_right: Logs ### User Steps Here are the last 10 steps done by the user right before the bug was reported: ``` 13:17:26 Tap in "include" of type "androidx.appcompat.widget.Toolbar" in "com.example.app.developerOption.list.PhotosActivity" 13:17:31 Tap in "Item Number 1" of type "android.widget.TextView" in "com.example.app.developerOption.list.PhotosActivity" 13:17:32 Tap in "ivPhoto" of type "android.widget.ImageView" in "com.example.app.developerOption.list.PhotosActivity" 13:17:32 com.example.app.developerOption.list.PhotosActivity was paused. 13:17:33 Tap in "ivPhoto" of type "android.widget.ImageView" in "com.example.app.developerOption.list.PhotosActivity" 13:17:34 Long press in "ivPhoto" of type "android.widget.ImageView" in "com.example.app.developerOption.list.PhotosActivity" 13:17:35 Tap in "include" of type "androidx.appcompat.widget.Toolbar" in "com.example.app.developerOption.list.PhotosActivity" 13:17:41 Tap in "ivPhoto" of type "android.widget.ImageView" in "com.example.app.developerOption.list.PhotosActivity" 13:17:41 com.example.app.developerOption.list.PhotosActivity was paused. 13:17:42 Tap in "ivPhoto" of type "android.widget.ImageView" in "com.example.app.developerOption.list.PhotosActivity" ``` Find all the user steps done by the user throughout the session here: :point_right: **[View All User Steps](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8719?show-logs=user_steps&utm_source=github&utm_medium=integrations)** :point_left: ### Console Log Here are the last 10 console logs logged right before the bug was reported: ``` 13:17:45 D/StrictMode(17650): at android.view.View.access$3600(View.java:826) 13:17:45 D/StrictMode(17650): at android.view.View$PerformClick.run(View.java:28555) 13:17:45 D/StrictMode(17650): at android.os.Handler.handleCallback(Handler.java:938) 13:17:45 D/StrictMode(17650): at android.os.Handler.dispatchMessage(Handler.java:99) 13:17:45 D/StrictMode(17650): at android.os.Looper.loop(Looper.java:233) 13:17:45 D/StrictMode(17650): at android.app.ActivityThread.main(ActivityThread.java:8030) 13:17:45 D/StrictMode(17650): at java.lang.reflect.Method.invoke(Native Method) 13:17:45 D/StrictMode(17650): at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:631) 13:17:45 D/StrictMode(17650): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:978) 13:17:45 D/skia (17650): got procName com.example.app for pid 17650 ``` Find all the logged console logs throughout the session here: :point_right: **[View All Console Log](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8719?show-logs=console_log&utm_source=github&utm_medium=integrations)** :point_left: ___ # :camera: Images [![image attachment](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/18282363/75db4aa64c9ace7f924e44e8c28b8c4b_one_bug_thumb/25943034/bug_1651151861115_.jpg?Expires=4807683819&Signature=sOAmP90LlClqJORv7VXir10oN3357MoXczd4l8dkIqnupn8Y1bt8oHNarjGmxBFfpRwbOZ4YFsT2zjYwiBx4ajF2UNjoZVBJNIgtxqkW-cDNtvqAJ9wUw3z~zy9CjOzsfQyex9kkKJRgCSbDn-68wMNY5-gGitK8aZjfQjw6wuxWdshgmwms-ziSSU~St46RljDFiQ7HL~rU6IbellgPb39Cq2O85fiOsZ1HfrwPd9AVzTK311d9BBpsvu~EiD8WKOnbDLvRQ~uDHqUDt6dnAlsBECf0FtKZUR9ohB0H4DU5kR2gfJNTTdRIxuzgiQHPiPO69q5O0PABOIh3~1myWw__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ)](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/18282363/75db4aa64c9ace7f924e44e8c28b8c4b_original/25943034/bug_1651151861115_.jpg?Expires=4807683819&Signature=vSlh7Gho-dVMB4NOOrYu3pzh2rY-SnOTBHpKm84XKQq5XIBMwltsKNGog-Rg~ZFXyr7AjdHBXbfG-9KHgPbrqiKsQ6MCEpefeGaR4zHJXT3kHcMejvQW5dKyelLFuiar00QCNt0IyuUZvKfSq0Plbyc0P9l~Dg-oJJCdLeWE0nuQSnFKBfLNMKIv2Mt5WUspasyRqnIXbz5~e6H0arHn4lguvUg1z4EXhMZRp9izn64Q~l8TfOS75W4Y85UKHr~niXld6fHIMVccuEfOtoqgOPHV6dg0nOZrfLBl5J7mIIyltUgJvKsPJ21-X9g5bJwz76NYhjcogJVCg~-sVIaiwQ__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ) ___ # :warning: Looking for More Details? 1. **Network Log**: we are unable to capture your network requests automatically. If you are using HttpUrlConnection or Okhttp requests, [**check the details mentioned here**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations#section-network-logs). 2. **User Events**: start capturing custom User Events to send them along with each report. [**Find all the details in the docs**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations). 3. **Instabug Log**: start adding Instabug logs to see them right inside each report you receive. [**Find all the details in the docs**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations).
1.0
this is a message to test encryption time - # :clipboard: Bug Details >this is a message to test encryption time key | value --|-- Reported At | 2022-04-28 13:17:42 UTC Email | abarakat@gmail.com Categories | Report a bug Tags | test, Hello!, RULE-GOT-APPLIED, DOES-NOT-CONTAIN-STRING, Rule-works-on-convert-to-bug, instabug App Version | 1.1 (1) Session Duration | 74 Device | OnePlus KB2001, OS Level 30 Display | 1080x2400 (xhdpi) Location | Giza, Egypt (en) ## :point_right: [View Full Bug Report on Instabug](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8719?utm_source=github&utm_medium=integrations) :point_left: ___ # :iphone: View Hierarchy This bug was reported from **com.example.app.complexviews.ComplexViewsFragment** Find its interactive view hierarchy with all its subviews here: :point_right: **[Check View Hierarchy](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8719?show-hierarchy-view=true&utm_source=github&utm_medium=integrations)** :point_left: ___ # :chart_with_downwards_trend: Session Profiler Here is what the app was doing right before the bug was reported: Key | Value --|-- Used Memory | 57.3% - 4.21/7.34 GB Used Storage | 7.1% - 7.49/105.28 GB Connectivity | no_connection Battery | 100% - plugged Orientation | portrait Find all the changes that happened in the parameters mentioned above during the last 60 seconds before the bug was reported here: :point_right: **[View Full Session Profiler](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8719?show-session-profiler=true&utm_source=github&utm_medium=integrations)** :point_left: ___ # :bust_in_silhouette: User Info ### User Attributes ``` key_name -643333045: key value bla bla bla la key_name -1391770268: key value bla bla bla la key_name -1233063091: key value bla bla bla la key_name 12389232: key value bla bla bla la key_name -1400931524: key value bla bla bla la key_name 278756443: key value bla bla bla la key_name 1545921878: key value bla bla bla la key_name -778916395: key value bla bla bla la key_name -1822943291: key value bla bla bla la key_name 1537783730: key value bla bla bla la key_name -2119608186: key value bla bla bla la key_name -683370323: key value bla bla bla la key_name -1977430918: key value bla bla bla la key_name -223322809: key value bla bla bla la ``` ___ # :mag_right: Logs ### User Steps Here are the last 10 steps done by the user right before the bug was reported: ``` 13:17:26 Tap in "include" of type "androidx.appcompat.widget.Toolbar" in "com.example.app.developerOption.list.PhotosActivity" 13:17:31 Tap in "Item Number 1" of type "android.widget.TextView" in "com.example.app.developerOption.list.PhotosActivity" 13:17:32 Tap in "ivPhoto" of type "android.widget.ImageView" in "com.example.app.developerOption.list.PhotosActivity" 13:17:32 com.example.app.developerOption.list.PhotosActivity was paused. 13:17:33 Tap in "ivPhoto" of type "android.widget.ImageView" in "com.example.app.developerOption.list.PhotosActivity" 13:17:34 Long press in "ivPhoto" of type "android.widget.ImageView" in "com.example.app.developerOption.list.PhotosActivity" 13:17:35 Tap in "include" of type "androidx.appcompat.widget.Toolbar" in "com.example.app.developerOption.list.PhotosActivity" 13:17:41 Tap in "ivPhoto" of type "android.widget.ImageView" in "com.example.app.developerOption.list.PhotosActivity" 13:17:41 com.example.app.developerOption.list.PhotosActivity was paused. 13:17:42 Tap in "ivPhoto" of type "android.widget.ImageView" in "com.example.app.developerOption.list.PhotosActivity" ``` Find all the user steps done by the user throughout the session here: :point_right: **[View All User Steps](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8719?show-logs=user_steps&utm_source=github&utm_medium=integrations)** :point_left: ### Console Log Here are the last 10 console logs logged right before the bug was reported: ``` 13:17:45 D/StrictMode(17650): at android.view.View.access$3600(View.java:826) 13:17:45 D/StrictMode(17650): at android.view.View$PerformClick.run(View.java:28555) 13:17:45 D/StrictMode(17650): at android.os.Handler.handleCallback(Handler.java:938) 13:17:45 D/StrictMode(17650): at android.os.Handler.dispatchMessage(Handler.java:99) 13:17:45 D/StrictMode(17650): at android.os.Looper.loop(Looper.java:233) 13:17:45 D/StrictMode(17650): at android.app.ActivityThread.main(ActivityThread.java:8030) 13:17:45 D/StrictMode(17650): at java.lang.reflect.Method.invoke(Native Method) 13:17:45 D/StrictMode(17650): at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:631) 13:17:45 D/StrictMode(17650): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:978) 13:17:45 D/skia (17650): got procName com.example.app for pid 17650 ``` Find all the logged console logs throughout the session here: :point_right: **[View All Console Log](https://dashboard.instabug.com/applications/android-sample/beta/bugs/8719?show-logs=console_log&utm_source=github&utm_medium=integrations)** :point_left: ___ # :camera: Images [![image attachment](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/18282363/75db4aa64c9ace7f924e44e8c28b8c4b_one_bug_thumb/25943034/bug_1651151861115_.jpg?Expires=4807683819&Signature=sOAmP90LlClqJORv7VXir10oN3357MoXczd4l8dkIqnupn8Y1bt8oHNarjGmxBFfpRwbOZ4YFsT2zjYwiBx4ajF2UNjoZVBJNIgtxqkW-cDNtvqAJ9wUw3z~zy9CjOzsfQyex9kkKJRgCSbDn-68wMNY5-gGitK8aZjfQjw6wuxWdshgmwms-ziSSU~St46RljDFiQ7HL~rU6IbellgPb39Cq2O85fiOsZ1HfrwPd9AVzTK311d9BBpsvu~EiD8WKOnbDLvRQ~uDHqUDt6dnAlsBECf0FtKZUR9ohB0H4DU5kR2gfJNTTdRIxuzgiQHPiPO69q5O0PABOIh3~1myWw__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ)](https://d38gnqwzxziyyy.cloudfront.net/attachments/bugs/18282363/75db4aa64c9ace7f924e44e8c28b8c4b_original/25943034/bug_1651151861115_.jpg?Expires=4807683819&Signature=vSlh7Gho-dVMB4NOOrYu3pzh2rY-SnOTBHpKm84XKQq5XIBMwltsKNGog-Rg~ZFXyr7AjdHBXbfG-9KHgPbrqiKsQ6MCEpefeGaR4zHJXT3kHcMejvQW5dKyelLFuiar00QCNt0IyuUZvKfSq0Plbyc0P9l~Dg-oJJCdLeWE0nuQSnFKBfLNMKIv2Mt5WUspasyRqnIXbz5~e6H0arHn4lguvUg1z4EXhMZRp9izn64Q~l8TfOS75W4Y85UKHr~niXld6fHIMVccuEfOtoqgOPHV6dg0nOZrfLBl5J7mIIyltUgJvKsPJ21-X9g5bJwz76NYhjcogJVCg~-sVIaiwQ__&Key-Pair-Id=APKAIXAG65U6UUX7JAQQ) ___ # :warning: Looking for More Details? 1. **Network Log**: we are unable to capture your network requests automatically. If you are using HttpUrlConnection or Okhttp requests, [**check the details mentioned here**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations#section-network-logs). 2. **User Events**: start capturing custom User Events to send them along with each report. [**Find all the details in the docs**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations). 3. **Instabug Log**: start adding Instabug logs to see them right inside each report you receive. [**Find all the details in the docs**](https://docs.instabug.com/docs/android-logging?utm_source=github&utm_medium=integrations).
non_defect
this is a message to test encryption time clipboard bug details this is a message to test encryption time key value reported at utc email abarakat gmail com categories report a bug tags test hello rule got applied does not contain string rule works on convert to bug instabug app version session duration device oneplus os level display xhdpi location giza egypt en point right point left iphone view hierarchy this bug was reported from com example app complexviews complexviewsfragment find its interactive view hierarchy with all its subviews here point right point left chart with downwards trend session profiler here is what the app was doing right before the bug was reported key value used memory gb used storage gb connectivity no connection battery plugged orientation portrait find all the changes that happened in the parameters mentioned above during the last seconds before the bug was reported here point right point left bust in silhouette user info user attributes key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la key name key value bla bla bla la mag right logs user steps here are the last steps done by the user right before the bug was reported tap in include of type androidx appcompat widget toolbar in com example app developeroption list photosactivity tap in item number of type android widget textview in com example app developeroption list photosactivity tap in ivphoto of type android widget imageview in com example app developeroption list photosactivity com example app developeroption list photosactivity was paused tap in ivphoto of type android widget imageview in com example app developeroption list photosactivity long press in ivphoto of type android widget imageview in com example app developeroption list photosactivity tap in include of type androidx appcompat widget toolbar in com example app developeroption list photosactivity tap in ivphoto of type android widget imageview in com example app developeroption list photosactivity com example app developeroption list photosactivity was paused tap in ivphoto of type android widget imageview in com example app developeroption list photosactivity find all the user steps done by the user throughout the session here point right point left console log here are the last console logs logged right before the bug was reported d strictmode at android view view access view java d strictmode at android view view performclick run view java d strictmode at android os handler handlecallback handler java d strictmode at android os handler dispatchmessage handler java d strictmode at android os looper loop looper java d strictmode at android app activitythread main activitythread java d strictmode at java lang reflect method invoke native method d strictmode at com android internal os runtimeinit methodandargscaller run runtimeinit java d strictmode at com android internal os zygoteinit main zygoteinit java d skia got procname com example app for pid find all the logged console logs throughout the session here point right point left camera images warning looking for more details network log we are unable to capture your network requests automatically if you are using httpurlconnection or okhttp requests user events start capturing custom user events to send them along with each report instabug log start adding instabug logs to see them right inside each report you receive
0
131,068
18,214,615,963
IssuesEvent
2021-09-30 01:33:44
artsking/linux-3.0.35_CVE-2020-36386_withPatch
https://api.github.com/repos/artsking/linux-3.0.35_CVE-2020-36386_withPatch
closed
CVE-2014-8159 (Medium) detected in linux-stable-rtv3.8.6 - autoclosed
security vulnerability
## CVE-2014-8159 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv3.8.6</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/artsking/linux-3.0.35_CVE-2020-36386_withPatch/commit/a48614c42390737eed7321f8484e7f45cee8e2a7">a48614c42390737eed7321f8484e7f45cee8e2a7</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 (3)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/infiniband/core/umem.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/infiniband/core/umem.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/infiniband/core/umem.c</b> </p> </details> <p></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> The InfiniBand (IB) implementation in the Linux kernel package before 2.6.32-504.12.2 on Red Hat Enterprise Linux (RHEL) 6 does not properly restrict use of User Verbs for registration of memory regions, which allows local users to access arbitrary physical memory locations, and consequently cause a denial of service (system crash) or gain privileges, by leveraging permissions on a uverbs device under /dev/infiniband/. <p>Publish Date: 2015-03-16 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2014-8159>CVE-2014-8159</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://www.linuxkernelcves.com/cves/CVE-2014-8159">https://www.linuxkernelcves.com/cves/CVE-2014-8159</a></p> <p>Release Date: 2015-03-16</p> <p>Fix Resolution: v3.2.69,v3.12.41,v3.14.39,v3.16.35,v3.18.13,v4.0-rc7</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-2014-8159 (Medium) detected in linux-stable-rtv3.8.6 - autoclosed - ## CVE-2014-8159 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-stable-rtv3.8.6</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/artsking/linux-3.0.35_CVE-2020-36386_withPatch/commit/a48614c42390737eed7321f8484e7f45cee8e2a7">a48614c42390737eed7321f8484e7f45cee8e2a7</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 (3)</summary> <p></p> <p> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/infiniband/core/umem.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/infiniband/core/umem.c</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/drivers/infiniband/core/umem.c</b> </p> </details> <p></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> The InfiniBand (IB) implementation in the Linux kernel package before 2.6.32-504.12.2 on Red Hat Enterprise Linux (RHEL) 6 does not properly restrict use of User Verbs for registration of memory regions, which allows local users to access arbitrary physical memory locations, and consequently cause a denial of service (system crash) or gain privileges, by leveraging permissions on a uverbs device under /dev/infiniband/. <p>Publish Date: 2015-03-16 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2014-8159>CVE-2014-8159</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://www.linuxkernelcves.com/cves/CVE-2014-8159">https://www.linuxkernelcves.com/cves/CVE-2014-8159</a></p> <p>Release Date: 2015-03-16</p> <p>Fix Resolution: v3.2.69,v3.12.41,v3.14.39,v3.16.35,v3.18.13,v4.0-rc7</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve medium detected in linux stable autoclosed cve medium 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 found in base branch master vulnerable source files drivers infiniband core umem c drivers infiniband core umem c drivers infiniband core umem c vulnerability details the infiniband ib implementation in the linux kernel package before on red hat enterprise linux rhel does not properly restrict use of user verbs for registration of memory regions which allows local users to access arbitrary physical memory locations and consequently cause a denial of service system crash or gain privileges by leveraging permissions on a uverbs device under dev infiniband 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 step up your open source security game with whitesource
0
66,662
20,424,300,102
IssuesEvent
2022-02-24 01:00:09
department-of-veterans-affairs/vets-design-system-documentation
https://api.github.com/repos/department-of-veterans-affairs/vets-design-system-documentation
closed
[SCREENREADER]: Progress Button - Users SHOULD NOT hear the before and after arrows announced
component-new 508-defect-3 vsp-design-system-team
@1Copenut commented on [Thu Jun 18 2020](https://github.com/department-of-veterans-affairs/va.gov-team/issues/10438) # [508-defect-3](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-3) <!-- Enter an issue title using the format [ERROR TYPE]: Brief description of the problem --- [SCREENREADER]: Edit buttons need aria-label for context [KEYBOARD]: Add another user link will not receive keyboard focus [AXE-CORE]: Heading levels should increase by one [COGNITION]: Error messages should be more specific [COLOR]: Blue button on blue background does not have sufficient contrast ratio --- --> <!-- It's okay to delete the instructions above, but leave the link to the 508 defect severity level for your issue. --> **Feedback framework** - **❗️ Must** for if the feedback must be applied - **⚠️ Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Description <!-- This is a detailed description of the issue. It should include a restatement of the title, and provide more background information. --> Our [Progress Button component](https://department-of-veterans-affairs.github.io/veteran-facing-services-tools/visual-design/components/progressbutton/) has the ability to add before and after text, which we're usually using forward and backward arrows. I'd like to hide this text from screen readers because it's announced as "Continue, double right angle bracket, button" which could be confusing. Code snippet below. ## Point of Contact <!-- If this issue is being opened by a VFS team member, please add a point of contact. Usually this is the same person who enters the issue ticket. --> **VFS Point of Contact:** _Trevor_ ## Acceptance Criteria <!-- As a keyboard user, I want to open the Level of Coverage widget by pressing Spacebar or pressing Enter. These keypress actions should not interfere with the mouse click event also opening the widget. --> - [ ] Screen readers ignore the visual text flourishes like double angle brackets before or after button text - [ ] No axe violations ## Environment * https://department-of-veterans-affairs.github.io/veteran-facing-services-tools/visual-design/components/progressbutton/ ## Possible Fixes (optional) ```diff render() { const beforeText = this.props.beforeText ? ( - <span className="button-icon">{this.props.beforeText} </span> + <span aria-hidden="true" className="button-icon">{this.props.beforeText} </span> ) : ( '' ); const afterText = this.props.afterText ? ( - <span className="button-icon"> {this.props.afterText}</span> + <span aria-hidden="true" className="button-icon"> {this.props.afterText}</span> ) : ( '' ); ... more render data } ``` ## WCAG or Vendor Guidance (optional) * [Name, Role, Value: Understanding SC 4.1.2](https://www.w3.org/TR/UNDERSTANDING-WCAG20/ensure-compat-rsv.html)
1.0
[SCREENREADER]: Progress Button - Users SHOULD NOT hear the before and after arrows announced - @1Copenut commented on [Thu Jun 18 2020](https://github.com/department-of-veterans-affairs/va.gov-team/issues/10438) # [508-defect-3](https://github.com/department-of-veterans-affairs/va.gov-team/blob/master/platform/accessibility/guidance/defect-severity-rubric.md#508-defect-3) <!-- Enter an issue title using the format [ERROR TYPE]: Brief description of the problem --- [SCREENREADER]: Edit buttons need aria-label for context [KEYBOARD]: Add another user link will not receive keyboard focus [AXE-CORE]: Heading levels should increase by one [COGNITION]: Error messages should be more specific [COLOR]: Blue button on blue background does not have sufficient contrast ratio --- --> <!-- It's okay to delete the instructions above, but leave the link to the 508 defect severity level for your issue. --> **Feedback framework** - **❗️ Must** for if the feedback must be applied - **⚠️ Should** if the feedback is best practice - **✔️ Consider** for suggestions/enhancements ## Description <!-- This is a detailed description of the issue. It should include a restatement of the title, and provide more background information. --> Our [Progress Button component](https://department-of-veterans-affairs.github.io/veteran-facing-services-tools/visual-design/components/progressbutton/) has the ability to add before and after text, which we're usually using forward and backward arrows. I'd like to hide this text from screen readers because it's announced as "Continue, double right angle bracket, button" which could be confusing. Code snippet below. ## Point of Contact <!-- If this issue is being opened by a VFS team member, please add a point of contact. Usually this is the same person who enters the issue ticket. --> **VFS Point of Contact:** _Trevor_ ## Acceptance Criteria <!-- As a keyboard user, I want to open the Level of Coverage widget by pressing Spacebar or pressing Enter. These keypress actions should not interfere with the mouse click event also opening the widget. --> - [ ] Screen readers ignore the visual text flourishes like double angle brackets before or after button text - [ ] No axe violations ## Environment * https://department-of-veterans-affairs.github.io/veteran-facing-services-tools/visual-design/components/progressbutton/ ## Possible Fixes (optional) ```diff render() { const beforeText = this.props.beforeText ? ( - <span className="button-icon">{this.props.beforeText} </span> + <span aria-hidden="true" className="button-icon">{this.props.beforeText} </span> ) : ( '' ); const afterText = this.props.afterText ? ( - <span className="button-icon"> {this.props.afterText}</span> + <span aria-hidden="true" className="button-icon"> {this.props.afterText}</span> ) : ( '' ); ... more render data } ``` ## WCAG or Vendor Guidance (optional) * [Name, Role, Value: Understanding SC 4.1.2](https://www.w3.org/TR/UNDERSTANDING-WCAG20/ensure-compat-rsv.html)
defect
progress button users should not hear the before and after arrows announced commented on enter an issue title using the format brief description of the problem edit buttons need aria label for context add another user link will not receive keyboard focus heading levels should increase by one error messages should be more specific blue button on blue background does not have sufficient contrast ratio feedback framework ❗️ must for if the feedback must be applied ⚠️ should if the feedback is best practice ✔️ consider for suggestions enhancements description our has the ability to add before and after text which we re usually using forward and backward arrows i d like to hide this text from screen readers because it s announced as continue double right angle bracket button which could be confusing code snippet below point of contact if this issue is being opened by a vfs team member please add a point of contact usually this is the same person who enters the issue ticket vfs point of contact trevor acceptance criteria screen readers ignore the visual text flourishes like double angle brackets before or after button text no axe violations environment possible fixes optional diff render const beforetext this props beforetext this props beforetext this props beforetext const aftertext this props aftertext this props aftertext this props aftertext more render data wcag or vendor guidance optional
1
97,303
12,226,913,079
IssuesEvent
2020-05-03 13:06:44
bounswe/bounswe2020group2
https://api.github.com/repos/bounswe/bounswe2020group2
closed
Prepare Individual summary of work done
design documentation effort: medium priority: high type: wiki who: group
Everyone must describe how they contributed to the project. It **must be in tabular form**
1.0
Prepare Individual summary of work done - Everyone must describe how they contributed to the project. It **must be in tabular form**
non_defect
prepare individual summary of work done everyone must describe how they contributed to the project it must be in tabular form
0
72,935
24,373,081,559
IssuesEvent
2022-10-03 21:10:20
department-of-veterans-affairs/va.gov-cms
https://api.github.com/repos/department-of-veterans-affairs/va.gov-cms
closed
Inline content guidance trigger reloads page
Defect ⭐️ Sitewide CMS
## Describe the defect On the alt text inline content guidance component, when I click the trigger to open the expanded guidance section, this also reloads the page. This scenario: - Happens when I am editing an existing image. [Example](https://prod.cms.va.gov/media/image/17919) - Does NOT happen when I am adding a new image. [Example](https://prod.cms.va.gov/media/add/image) - Does NOT happen when I am within a node and adding a new image within the image modal. [Example](https://prod.cms.va.gov/central-california-health-care/events/49886) ## Additional Update Can you please also update the "Learn more about alt text guidelines" URL to `/help/cms-basics/alternative-text`? ## To Reproduce Steps to reproduce the behavior: 1. Go to an existing image [Example](https://prod.cms.va.gov/media/image/17919) 2. Click on 'Tips for Alternative Text' trigger 3. Note that the page reloads. ## AC / Expected behavior - [ ] Trigger should only open expanded guidance text in all cases - [ ] Page should not reload - [ ] URL for "Learn More" is updated ## Screenshots ![image](https://user-images.githubusercontent.com/106678594/193673247-02f2b275-0dde-4fbd-861e-b34b8703273b.png) ## Environments Confirmed this behavior was happening in Chrome, FF, Prod and Local
1.0
Inline content guidance trigger reloads page - ## Describe the defect On the alt text inline content guidance component, when I click the trigger to open the expanded guidance section, this also reloads the page. This scenario: - Happens when I am editing an existing image. [Example](https://prod.cms.va.gov/media/image/17919) - Does NOT happen when I am adding a new image. [Example](https://prod.cms.va.gov/media/add/image) - Does NOT happen when I am within a node and adding a new image within the image modal. [Example](https://prod.cms.va.gov/central-california-health-care/events/49886) ## Additional Update Can you please also update the "Learn more about alt text guidelines" URL to `/help/cms-basics/alternative-text`? ## To Reproduce Steps to reproduce the behavior: 1. Go to an existing image [Example](https://prod.cms.va.gov/media/image/17919) 2. Click on 'Tips for Alternative Text' trigger 3. Note that the page reloads. ## AC / Expected behavior - [ ] Trigger should only open expanded guidance text in all cases - [ ] Page should not reload - [ ] URL for "Learn More" is updated ## Screenshots ![image](https://user-images.githubusercontent.com/106678594/193673247-02f2b275-0dde-4fbd-861e-b34b8703273b.png) ## Environments Confirmed this behavior was happening in Chrome, FF, Prod and Local
defect
inline content guidance trigger reloads page describe the defect on the alt text inline content guidance component when i click the trigger to open the expanded guidance section this also reloads the page this scenario happens when i am editing an existing image does not happen when i am adding a new image does not happen when i am within a node and adding a new image within the image modal additional update can you please also update the learn more about alt text guidelines url to help cms basics alternative text to reproduce steps to reproduce the behavior go to an existing image click on tips for alternative text trigger note that the page reloads ac expected behavior trigger should only open expanded guidance text in all cases page should not reload url for learn more is updated screenshots environments confirmed this behavior was happening in chrome ff prod and local
1
20,600
3,386,441,327
IssuesEvent
2015-11-27 17:35:35
akvo/akvo-flow
https://api.github.com/repos/akvo/akvo-flow
closed
No `Previous` button when browsing responses under the Data tab
1 - Defect 2 - Fixed 3 - UI Quick Fix
**Steps to reproduce:** 1. Go to the `Data > Inspect Data` tab 2. Select a survey known to have over 20 responses and select `Find` 3. Click on the `Next` button to see next batch of 20 responses. **Observed:** There is no `Previous` butting to look at the previous set of records.
1.0
No `Previous` button when browsing responses under the Data tab - **Steps to reproduce:** 1. Go to the `Data > Inspect Data` tab 2. Select a survey known to have over 20 responses and select `Find` 3. Click on the `Next` button to see next batch of 20 responses. **Observed:** There is no `Previous` butting to look at the previous set of records.
defect
no previous button when browsing responses under the data tab steps to reproduce go to the data inspect data tab select a survey known to have over responses and select find click on the next button to see next batch of responses observed there is no previous butting to look at the previous set of records
1
80,697
30,495,027,455
IssuesEvent
2023-07-18 10:13:02
scipy/scipy
https://api.github.com/repos/scipy/scipy
opened
BUG: scipy.stats crashes kernel
defect
### Describe your issue. For certain distributions in scipy.stats, for very low values of parameters, the kernel crashes. With other distributions, such low values cause a warning or an exception, which is fine. But with some distributions it simply crashes. It should instead be handled correctly. Note that all parameters being used are within the domain for that parameter, as shown in the code below. I originally found this issue with the beta distribution. Before posting I wrote code which looked through all the other distributions to see if it could create a crash with them also. It only managed with the t distribution. With all other distributions, funny values gives - a warning like `RuntimeWarning: overflow encountered in [divide/double_scalars/_ncf_ppf/_nct_ppf]`, `RuntimeWarning: invalid value encountered in [multiply/divide/add/subtract/double_scalars]`, `RuntimeWarning: divide by zero encountered in [divide/log]`, `RuntimeWarning: floating point number truncated to an integer` - or an error like `RuntimeError: Failed to converge after 100 iterations.` (for `scipy.stats.genexpon(5e-324, 5e-324, 5e-324).ppf(.2)` and `scipy.stats.studentized_range(2, 5e-10).ppf(.2)`). ### Reproducing Code Example ```python import scipy.stats print([shape_param.domain for shape_param in scipy.stats.t._shape_info()]) # [[5e-324, inf]] print(scipy.stats.t(1e-10).ppf(.2)) # -1e+100 print(scipy.stats.t(1e-20).ppf(.2)) # 1e+100 print(scipy.stats.t(1e-30).ppf(.2)) # KERNEL CRASHES with message: `STOP SMALL, X, BIG not monotone in INVR` import scipy.stats print([shape_param.domain for shape_param in scipy.stats.beta._shape_info()]) # [[5e-324, inf], [5e-324, inf]] print(scipy.stats.beta(a=1e-308, b=5).ppf(.2)) # 0.0 print(scipy.stats.beta(a=1e-309, b=5).ppf(.2)) # OverflowError: Error in function boost::math::tgamma<d>(d): Overflow Error # (raises error, but kernel doesn't crash) print(scipy.stats.beta(a=1e-323, b=5).ppf(.2)) # KERNEL CRASHES with message: `Assertion failed: *p_derivative >= 0, file ..\..\scipy\_lib\boost/boost/math/special_functions/beta.hpp, line 739` ``` ### Error message ```shell # after print(scipy.stats.t(1e-30).ppf(.2)) STOP SMALL, X, BIG not monotone in INVR # after print(scipy.stats.beta(a=1e-323, b=5).ppf(.2)) Assertion failed: *p_derivative >= 0, file ..\..\scipy\_lib\boost/boost/math/special_functions/beta.hpp, line 739 ``` ### SciPy/NumPy/Python version and system information ```shell 1.10.1 1.23.1 sys.version_info(major=3, minor=9, micro=4, releaselevel='final', serial=0) Build Dependencies: blas: detection method: pkgconfig found: true include directory: c:/opt/openblas/if_32/64/include lib directory: c:/opt/openblas/if_32/64/lib name: openblas openblas configuration: USE_64BITINT= DYNAMIC_ARCH=1 DYNAMIC_OLDER= NO_CBLAS= NO_LAPACK= NO_LAPACKE= NO_AFFINITY=1 USE_OPENMP= PRESCOTT MAX_THREADS=4 pc file directory: c:/opt/openblas/if_32/64/lib/pkgconfig version: 0.3.18 lapack: detection method: pkgconfig found: true include directory: c:/opt/openblas/if_32/64/include lib directory: c:/opt/openblas/if_32/64/lib name: openblas openblas configuration: USE_64BITINT= DYNAMIC_ARCH=1 DYNAMIC_OLDER= NO_CBLAS= NO_LAPACK= NO_LAPACKE= NO_AFFINITY=1 USE_OPENMP= PRESCOTT MAX_THREADS=4 pc file directory: c:/opt/openblas/if_32/64/lib/pkgconfig version: 0.3.18 Compilers: c: commands: cc linker: ld.bfd name: gcc version: 10.3.0 c++: commands: c++ linker: ld.bfd name: gcc version: 10.3.0 cython: commands: cython linker: cython name: cython version: 0.29.33 fortran: commands: gfortran linker: ld.bfd name: gcc version: 10.3.0 pythran: include directory: C:\Users\runneradmin\AppData\Local\Temp\pip-build-env-u63ta2f1\overlay\Lib\site-packages\pythran version: 0.12.1 Machine Information: build: cpu: x86_64 endian: little family: x86_64 system: windows cross-compiled: false host: cpu: x86_64 endian: little family: x86_64 system: windows Python Information: path: C:\Users\runneradmin\AppData\Local\Temp\cibw-run-a1px0t3e\cp39-win_amd64\build\venv\Scripts\python.exe version: '3.9' ```
1.0
BUG: scipy.stats crashes kernel - ### Describe your issue. For certain distributions in scipy.stats, for very low values of parameters, the kernel crashes. With other distributions, such low values cause a warning or an exception, which is fine. But with some distributions it simply crashes. It should instead be handled correctly. Note that all parameters being used are within the domain for that parameter, as shown in the code below. I originally found this issue with the beta distribution. Before posting I wrote code which looked through all the other distributions to see if it could create a crash with them also. It only managed with the t distribution. With all other distributions, funny values gives - a warning like `RuntimeWarning: overflow encountered in [divide/double_scalars/_ncf_ppf/_nct_ppf]`, `RuntimeWarning: invalid value encountered in [multiply/divide/add/subtract/double_scalars]`, `RuntimeWarning: divide by zero encountered in [divide/log]`, `RuntimeWarning: floating point number truncated to an integer` - or an error like `RuntimeError: Failed to converge after 100 iterations.` (for `scipy.stats.genexpon(5e-324, 5e-324, 5e-324).ppf(.2)` and `scipy.stats.studentized_range(2, 5e-10).ppf(.2)`). ### Reproducing Code Example ```python import scipy.stats print([shape_param.domain for shape_param in scipy.stats.t._shape_info()]) # [[5e-324, inf]] print(scipy.stats.t(1e-10).ppf(.2)) # -1e+100 print(scipy.stats.t(1e-20).ppf(.2)) # 1e+100 print(scipy.stats.t(1e-30).ppf(.2)) # KERNEL CRASHES with message: `STOP SMALL, X, BIG not monotone in INVR` import scipy.stats print([shape_param.domain for shape_param in scipy.stats.beta._shape_info()]) # [[5e-324, inf], [5e-324, inf]] print(scipy.stats.beta(a=1e-308, b=5).ppf(.2)) # 0.0 print(scipy.stats.beta(a=1e-309, b=5).ppf(.2)) # OverflowError: Error in function boost::math::tgamma<d>(d): Overflow Error # (raises error, but kernel doesn't crash) print(scipy.stats.beta(a=1e-323, b=5).ppf(.2)) # KERNEL CRASHES with message: `Assertion failed: *p_derivative >= 0, file ..\..\scipy\_lib\boost/boost/math/special_functions/beta.hpp, line 739` ``` ### Error message ```shell # after print(scipy.stats.t(1e-30).ppf(.2)) STOP SMALL, X, BIG not monotone in INVR # after print(scipy.stats.beta(a=1e-323, b=5).ppf(.2)) Assertion failed: *p_derivative >= 0, file ..\..\scipy\_lib\boost/boost/math/special_functions/beta.hpp, line 739 ``` ### SciPy/NumPy/Python version and system information ```shell 1.10.1 1.23.1 sys.version_info(major=3, minor=9, micro=4, releaselevel='final', serial=0) Build Dependencies: blas: detection method: pkgconfig found: true include directory: c:/opt/openblas/if_32/64/include lib directory: c:/opt/openblas/if_32/64/lib name: openblas openblas configuration: USE_64BITINT= DYNAMIC_ARCH=1 DYNAMIC_OLDER= NO_CBLAS= NO_LAPACK= NO_LAPACKE= NO_AFFINITY=1 USE_OPENMP= PRESCOTT MAX_THREADS=4 pc file directory: c:/opt/openblas/if_32/64/lib/pkgconfig version: 0.3.18 lapack: detection method: pkgconfig found: true include directory: c:/opt/openblas/if_32/64/include lib directory: c:/opt/openblas/if_32/64/lib name: openblas openblas configuration: USE_64BITINT= DYNAMIC_ARCH=1 DYNAMIC_OLDER= NO_CBLAS= NO_LAPACK= NO_LAPACKE= NO_AFFINITY=1 USE_OPENMP= PRESCOTT MAX_THREADS=4 pc file directory: c:/opt/openblas/if_32/64/lib/pkgconfig version: 0.3.18 Compilers: c: commands: cc linker: ld.bfd name: gcc version: 10.3.0 c++: commands: c++ linker: ld.bfd name: gcc version: 10.3.0 cython: commands: cython linker: cython name: cython version: 0.29.33 fortran: commands: gfortran linker: ld.bfd name: gcc version: 10.3.0 pythran: include directory: C:\Users\runneradmin\AppData\Local\Temp\pip-build-env-u63ta2f1\overlay\Lib\site-packages\pythran version: 0.12.1 Machine Information: build: cpu: x86_64 endian: little family: x86_64 system: windows cross-compiled: false host: cpu: x86_64 endian: little family: x86_64 system: windows Python Information: path: C:\Users\runneradmin\AppData\Local\Temp\cibw-run-a1px0t3e\cp39-win_amd64\build\venv\Scripts\python.exe version: '3.9' ```
defect
bug scipy stats crashes kernel describe your issue for certain distributions in scipy stats for very low values of parameters the kernel crashes with other distributions such low values cause a warning or an exception which is fine but with some distributions it simply crashes it should instead be handled correctly note that all parameters being used are within the domain for that parameter as shown in the code below i originally found this issue with the beta distribution before posting i wrote code which looked through all the other distributions to see if it could create a crash with them also it only managed with the t distribution with all other distributions funny values gives a warning like runtimewarning overflow encountered in runtimewarning invalid value encountered in runtimewarning divide by zero encountered in runtimewarning floating point number truncated to an integer or an error like runtimeerror failed to converge after iterations for scipy stats genexpon ppf and scipy stats studentized range ppf reproducing code example python import scipy stats print print scipy stats t ppf print scipy stats t ppf print scipy stats t ppf kernel crashes with message stop small x big not monotone in invr import scipy stats print print scipy stats beta a b ppf print scipy stats beta a b ppf overflowerror error in function boost math tgamma d overflow error raises error but kernel doesn t crash print scipy stats beta a b ppf kernel crashes with message assertion failed p derivative file scipy lib boost boost math special functions beta hpp line error message shell after print scipy stats t ppf stop small x big not monotone in invr after print scipy stats beta a b ppf assertion failed p derivative file scipy lib boost boost math special functions beta hpp line scipy numpy python version and system information shell sys version info major minor micro releaselevel final serial build dependencies blas detection method pkgconfig found true include directory c opt openblas if include lib directory c opt openblas if lib name openblas openblas configuration use dynamic arch dynamic older no cblas no lapack no lapacke no affinity use openmp prescott max threads pc file directory c opt openblas if lib pkgconfig version lapack detection method pkgconfig found true include directory c opt openblas if include lib directory c opt openblas if lib name openblas openblas configuration use dynamic arch dynamic older no cblas no lapack no lapacke no affinity use openmp prescott max threads pc file directory c opt openblas if lib pkgconfig version compilers c commands cc linker ld bfd name gcc version c commands c linker ld bfd name gcc version cython commands cython linker cython name cython version fortran commands gfortran linker ld bfd name gcc version pythran include directory c users runneradmin appdata local temp pip build env overlay lib site packages pythran version machine information build cpu endian little family system windows cross compiled false host cpu endian little family system windows python information path c users runneradmin appdata local temp cibw run win build venv scripts python exe version
1
69,617
30,348,783,379
IssuesEvent
2023-07-11 17:18:06
cityofaustin/atd-data-tech
https://api.github.com/repos/cityofaustin/atd-data-tech
closed
Update the DTS Service Request form to prompt user for an AMANDA NURF
Workgroup: DTS Service: Apps Need: 2-Should Have Type: Enhancement Product: Service Requests
### Display help text for AMANDA IT Support requests **HELP TEXT: You must submit a [New User Request Form](https://github.com/cityofaustin/atd-knack/raw/master/media/ATD_AMANDA_NURF.docx) for AMANDA user account creation or modification. Fill out the form to the best of your ability and attach it to this request before submitting.** <img width="1146" alt="Screenshot 2023-07-05 at 4 24 25 PM" src="https://github.com/cityofaustin/atd-data-tech/assets/49930868/96ca955d-bf53-4d6f-9db2-828073108e15"> ---- <!-- Email --> <!-- tracy.linder@austintexas.gov --> > What application are you using? Other / Not sure > Describe the problem. Update the DTS Service Request form to prompt user for an AMANDA NURF > Describe the outcome you'd like to see when this feature is implemented. When a user initiates a DTS Service Request for AMANDA IT Support, I'd like the form to prompt the user to attach New User Request Form (NURF) for account management, and to provide a link to an AMANDA gitbook page with more info. > Describe any workarounds you currently have in place or alternative solutions you've considered. Currently Nadin has to email the customer the NURF and wait to get it back before he can begin working on user account creation or modification. Users don't know the form is required. Tracy needs to create a gitbook page for this to link to. > Is there anything else we should know? No time deadline. > Requested By Tracy L. Request ID: DTS23-107970
2.0
Update the DTS Service Request form to prompt user for an AMANDA NURF - ### Display help text for AMANDA IT Support requests **HELP TEXT: You must submit a [New User Request Form](https://github.com/cityofaustin/atd-knack/raw/master/media/ATD_AMANDA_NURF.docx) for AMANDA user account creation or modification. Fill out the form to the best of your ability and attach it to this request before submitting.** <img width="1146" alt="Screenshot 2023-07-05 at 4 24 25 PM" src="https://github.com/cityofaustin/atd-data-tech/assets/49930868/96ca955d-bf53-4d6f-9db2-828073108e15"> ---- <!-- Email --> <!-- tracy.linder@austintexas.gov --> > What application are you using? Other / Not sure > Describe the problem. Update the DTS Service Request form to prompt user for an AMANDA NURF > Describe the outcome you'd like to see when this feature is implemented. When a user initiates a DTS Service Request for AMANDA IT Support, I'd like the form to prompt the user to attach New User Request Form (NURF) for account management, and to provide a link to an AMANDA gitbook page with more info. > Describe any workarounds you currently have in place or alternative solutions you've considered. Currently Nadin has to email the customer the NURF and wait to get it back before he can begin working on user account creation or modification. Users don't know the form is required. Tracy needs to create a gitbook page for this to link to. > Is there anything else we should know? No time deadline. > Requested By Tracy L. Request ID: DTS23-107970
non_defect
update the dts service request form to prompt user for an amanda nurf display help text for amanda it support requests help text you must submit a for amanda user account creation or modification fill out the form to the best of your ability and attach it to this request before submitting img width alt screenshot at pm src what application are you using other not sure describe the problem update the dts service request form to prompt user for an amanda nurf describe the outcome you d like to see when this feature is implemented when a user initiates a dts service request for amanda it support i d like the form to prompt the user to attach new user request form nurf for account management and to provide a link to an amanda gitbook page with more info describe any workarounds you currently have in place or alternative solutions you ve considered currently nadin has to email the customer the nurf and wait to get it back before he can begin working on user account creation or modification users don t know the form is required tracy needs to create a gitbook page for this to link to is there anything else we should know no time deadline requested by tracy l request id
0
40,338
8,775,322,624
IssuesEvent
2018-12-18 22:40:31
notion-cli/notion
https://api.github.com/repos/notion-cli/notion
closed
Robustly compute uncompressed size of tarballs
code quality
Currently we make three separate HTTP connections -- sequentially -- to fetch a tarball and compute its uncompressed size. And one of them is a HEAD request, which doesn't seem to work for GitHub releases, and that's caused us to create a Yarn releases proxy repo, which is a pain to maintain, at least at this early stage of Notion development. I think a more efficient and robust approach would be to immediately fetch the full payload, which if I'm not mistaken can synchronously return header information while it's still fetching the payload. We can then use those headers to determine if it accepts byte range requests and then compute the uncompressed size with a second request. I did a proof of concept here, and you can see in the tests that it works for the standard Yarn releases: https://github.com/dherman/headless-tarball-fetch
1.0
Robustly compute uncompressed size of tarballs - Currently we make three separate HTTP connections -- sequentially -- to fetch a tarball and compute its uncompressed size. And one of them is a HEAD request, which doesn't seem to work for GitHub releases, and that's caused us to create a Yarn releases proxy repo, which is a pain to maintain, at least at this early stage of Notion development. I think a more efficient and robust approach would be to immediately fetch the full payload, which if I'm not mistaken can synchronously return header information while it's still fetching the payload. We can then use those headers to determine if it accepts byte range requests and then compute the uncompressed size with a second request. I did a proof of concept here, and you can see in the tests that it works for the standard Yarn releases: https://github.com/dherman/headless-tarball-fetch
non_defect
robustly compute uncompressed size of tarballs currently we make three separate http connections sequentially to fetch a tarball and compute its uncompressed size and one of them is a head request which doesn t seem to work for github releases and that s caused us to create a yarn releases proxy repo which is a pain to maintain at least at this early stage of notion development i think a more efficient and robust approach would be to immediately fetch the full payload which if i m not mistaken can synchronously return header information while it s still fetching the payload we can then use those headers to determine if it accepts byte range requests and then compute the uncompressed size with a second request i did a proof of concept here and you can see in the tests that it works for the standard yarn releases
0
192,573
15,353,345,978
IssuesEvent
2021-03-01 08:26:56
gatsbyjs/gatsby
https://api.github.com/repos/gatsbyjs/gatsby
closed
Dead Link in gatsby-image-plugin npm description
status: triage needed type: documentation
Found at: [https://www.npmjs.com/package/gatsby-plugin-image#static-images](https://www.npmjs.com/package/gatsby-plugin-image#static-images) ![image](https://user-images.githubusercontent.com/45669613/109398138-15c20400-793b-11eb-8e7f-37a35678a2f2.png) Excited for v3! :partying_face:
1.0
Dead Link in gatsby-image-plugin npm description - Found at: [https://www.npmjs.com/package/gatsby-plugin-image#static-images](https://www.npmjs.com/package/gatsby-plugin-image#static-images) ![image](https://user-images.githubusercontent.com/45669613/109398138-15c20400-793b-11eb-8e7f-37a35678a2f2.png) Excited for v3! :partying_face:
non_defect
dead link in gatsby image plugin npm description found at excited for partying face
0
5,004
25,732,743,635
IssuesEvent
2022-12-07 21:40:37
centerofci/mathesar
https://api.github.com/repos/centerofci/mathesar
opened
On the record page, allow setting a FK value to NULL using the linked record input
type: bug work: frontend status: ready restricted: maintainers
## Steps to reproduce 1. Navigate to the record page for a record in a table with a FK column. 1. Ensure that a value is set for the FK column. 1. For the FK column, open the options dropdown menu and choose "Set to NULL". 1. Observe `NULL` to appear within the input. Good. 1. Observe that the cancel/save buttons appear, indicating the form has changes. Good. 1. Click "Discard Changes" to restore the form. 1. Now, click the "x" button within the linked record input. 1. Expect to see `NULL` within the input. 1. Instead, observe that the input is blank. Bad. 1. Expect to see the cancel/save buttons, indicating changes to the form. 1. Instead observe no cancel/save buttons. Bad. ## Additional considerations - The linked record input is also used in filter conditions and the Record Selector. We'll need to make sure that whatever changes we make here will still preserve the current behavior in those contexts (where we do _not_ actually want to see `NULL` values within the linked record input).
True
On the record page, allow setting a FK value to NULL using the linked record input - ## Steps to reproduce 1. Navigate to the record page for a record in a table with a FK column. 1. Ensure that a value is set for the FK column. 1. For the FK column, open the options dropdown menu and choose "Set to NULL". 1. Observe `NULL` to appear within the input. Good. 1. Observe that the cancel/save buttons appear, indicating the form has changes. Good. 1. Click "Discard Changes" to restore the form. 1. Now, click the "x" button within the linked record input. 1. Expect to see `NULL` within the input. 1. Instead, observe that the input is blank. Bad. 1. Expect to see the cancel/save buttons, indicating changes to the form. 1. Instead observe no cancel/save buttons. Bad. ## Additional considerations - The linked record input is also used in filter conditions and the Record Selector. We'll need to make sure that whatever changes we make here will still preserve the current behavior in those contexts (where we do _not_ actually want to see `NULL` values within the linked record input).
non_defect
on the record page allow setting a fk value to null using the linked record input steps to reproduce navigate to the record page for a record in a table with a fk column ensure that a value is set for the fk column for the fk column open the options dropdown menu and choose set to null observe null to appear within the input good observe that the cancel save buttons appear indicating the form has changes good click discard changes to restore the form now click the x button within the linked record input expect to see null within the input instead observe that the input is blank bad expect to see the cancel save buttons indicating changes to the form instead observe no cancel save buttons bad additional considerations the linked record input is also used in filter conditions and the record selector we ll need to make sure that whatever changes we make here will still preserve the current behavior in those contexts where we do not actually want to see null values within the linked record input
0
8,381
11,543,404,307
IssuesEvent
2020-02-18 09:32:39
google/go-jsonnet
https://api.github.com/repos/google/go-jsonnet
closed
Add tests for 32-bit to Travis
process
As far as I can tell, there is no i686 arch in Travis available, but we can just compile stuff in 32-bit mode. It should let us catch the problems like #376 early.
1.0
Add tests for 32-bit to Travis - As far as I can tell, there is no i686 arch in Travis available, but we can just compile stuff in 32-bit mode. It should let us catch the problems like #376 early.
non_defect
add tests for bit to travis as far as i can tell there is no arch in travis available but we can just compile stuff in bit mode it should let us catch the problems like early
0
806,330
29,811,531,326
IssuesEvent
2023-06-16 15:25:16
SalihaPopal/Coursework-Planner
https://api.github.com/repos/SalihaPopal/Coursework-Planner
opened
[TECH ED] React challenges
🏕 Priority Mandatory 🐂 Size Medium 🏝️ Priority Stretch 📅 React 📅 Week 1
From Module-React created by [Dedekind561](https://github.com/Dedekind561): CodeYourFuture/Module-React#15 ### Link to the coursework https://github.com/CodeYourFuture/cyf-react-challenges/tree/master/challenge-high-score-tables ### Why are we doing this? The way to get better at React is to practice by building small projects. 💪 To help you with project ideas, we have provided several challenges. You can see a full list of the challenges here. Some you can complete now, but some require knowledge of later weeks - look out for the "Prerequisites" section in the instructions. We recommend that you attempt the following challenge: High Score Table - Level 1: https://github.com/CodeYourFuture/cyf-react-challenges/tree/master/challenge-high-score-tables Stretch Goals: Some other suitable projects for you to work on right now are: Baby Names Picker - Level 1: https://github.com/CodeYourFuture/cyf-react-challenges/tree/master/challenge-baby-name-picker Countries - Level 1: https://github.com/CodeYourFuture/cyf-react-challenges/tree/master/challenge-countries Job Listing - Level 1: https://github.com/CodeYourFuture/cyf-react-challenges/tree/master/challenge-job-listing You should complete these challenges in the order they are in above. ### Maximum time in hours 3 ### How to get help _No response_ ### How to submit Follow submission instructions on the repos. ### How to review _No response_ ### Anything else? _No response_
2.0
[TECH ED] React challenges - From Module-React created by [Dedekind561](https://github.com/Dedekind561): CodeYourFuture/Module-React#15 ### Link to the coursework https://github.com/CodeYourFuture/cyf-react-challenges/tree/master/challenge-high-score-tables ### Why are we doing this? The way to get better at React is to practice by building small projects. 💪 To help you with project ideas, we have provided several challenges. You can see a full list of the challenges here. Some you can complete now, but some require knowledge of later weeks - look out for the "Prerequisites" section in the instructions. We recommend that you attempt the following challenge: High Score Table - Level 1: https://github.com/CodeYourFuture/cyf-react-challenges/tree/master/challenge-high-score-tables Stretch Goals: Some other suitable projects for you to work on right now are: Baby Names Picker - Level 1: https://github.com/CodeYourFuture/cyf-react-challenges/tree/master/challenge-baby-name-picker Countries - Level 1: https://github.com/CodeYourFuture/cyf-react-challenges/tree/master/challenge-countries Job Listing - Level 1: https://github.com/CodeYourFuture/cyf-react-challenges/tree/master/challenge-job-listing You should complete these challenges in the order they are in above. ### Maximum time in hours 3 ### How to get help _No response_ ### How to submit Follow submission instructions on the repos. ### How to review _No response_ ### Anything else? _No response_
non_defect
react challenges from module react created by codeyourfuture module react link to the coursework why are we doing this the way to get better at react is to practice by building small projects 💪 to help you with project ideas we have provided several challenges you can see a full list of the challenges here some you can complete now but some require knowledge of later weeks look out for the prerequisites section in the instructions we recommend that you attempt the following challenge high score table level stretch goals some other suitable projects for you to work on right now are baby names picker level countries level job listing level you should complete these challenges in the order they are in above maximum time in hours how to get help no response how to submit follow submission instructions on the repos how to review no response anything else no response
0
53,651
13,262,052,666
IssuesEvent
2020-08-20 21:01:02
icecube-trac/tix4
https://api.github.com/repos/icecube-trac/tix4
closed
[dataio] serialization documentation outdated (Trac #1816)
Migrated from Trac combo core defect
http://software.icecube.wisc.edu/offline_trunk/projects/dataio/serialization.html documentation is outdated since the change from boost::serialization to icecube::serialization also please include some more guidelines if things should use teh one or teh other interface in case they are not in deep dependency to I3-classes, aka. isolated/stand-alone classes, which just need serialization to file etc. <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1816">https://code.icecube.wisc.edu/projects/icecube/ticket/1816</a>, reported by mzolland owned by olivas</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:13:18", "_ts": "1550067198646291", "description": "http://software.icecube.wisc.edu/offline_trunk/projects/dataio/serialization.html\n\ndocumentation is outdated since the change from boost::serialization to icecube::serialization\n\nalso please include some more guidelines if things should use teh one or teh other interface in case they are not in deep dependency to I3-classes, aka. isolated/stand-alone classes, which just need serialization to file etc.", "reporter": "mzoll", "cc": "", "resolution": "fixed", "time": "2016-08-11T16:08:53", "component": "combo core", "summary": "[dataio] serialization documentation outdated", "priority": "major", "keywords": "", "milestone": "", "owner": "olivas", "type": "defect" } ``` </p> </details>
1.0
[dataio] serialization documentation outdated (Trac #1816) - http://software.icecube.wisc.edu/offline_trunk/projects/dataio/serialization.html documentation is outdated since the change from boost::serialization to icecube::serialization also please include some more guidelines if things should use teh one or teh other interface in case they are not in deep dependency to I3-classes, aka. isolated/stand-alone classes, which just need serialization to file etc. <details> <summary><em>Migrated from <a href="https://code.icecube.wisc.edu/projects/icecube/ticket/1816">https://code.icecube.wisc.edu/projects/icecube/ticket/1816</a>, reported by mzolland owned by olivas</em></summary> <p> ```json { "status": "closed", "changetime": "2019-02-13T14:13:18", "_ts": "1550067198646291", "description": "http://software.icecube.wisc.edu/offline_trunk/projects/dataio/serialization.html\n\ndocumentation is outdated since the change from boost::serialization to icecube::serialization\n\nalso please include some more guidelines if things should use teh one or teh other interface in case they are not in deep dependency to I3-classes, aka. isolated/stand-alone classes, which just need serialization to file etc.", "reporter": "mzoll", "cc": "", "resolution": "fixed", "time": "2016-08-11T16:08:53", "component": "combo core", "summary": "[dataio] serialization documentation outdated", "priority": "major", "keywords": "", "milestone": "", "owner": "olivas", "type": "defect" } ``` </p> </details>
defect
serialization documentation outdated trac documentation is outdated since the change from boost serialization to icecube serialization also please include some more guidelines if things should use teh one or teh other interface in case they are not in deep dependency to classes aka isolated stand alone classes which just need serialization to file etc migrated from json status closed changetime ts description is outdated since the change from boost serialization to icecube serialization n nalso please include some more guidelines if things should use teh one or teh other interface in case they are not in deep dependency to classes aka isolated stand alone classes which just need serialization to file etc reporter mzoll cc resolution fixed time component combo core summary serialization documentation outdated priority major keywords milestone owner olivas type defect
1
58,745
16,741,716,637
IssuesEvent
2021-06-11 10:38:11
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
opened
Hazelcast Cache not deleted in kebernetes near cache
Type: Defect
Hello :) Hazelcast Issue in k8s This is my gradle implements ```gradle implementation group: 'com.hazelcast', name: 'spring-data-hazelcast', version: '2.4.0' implementation group: 'com.hazelcast', name: 'hazelcast-all', version: '4.2' ``` First, Upload all data from MongoDB to the spring data hazelcast repository at Pod Initialize time. Once Cache Uploaded, data cannot be deleted. It remains even after deploy restart. It is used within k8s and uses the Near Cache kubernetes config. If the Hazelcast Cache method is kubernetes embedded, does the storage exist other than Pod? We found that Cache remained even though Pod was all deploy restart. This is our yaml svc.yaml ```yaml apiVersion: v1 kind: Service metadata: labels: app.kubernetes.io/name: test app.kubernetes.io/managed-by: kubectl name: hazelcast-service spec: selector: app: test-app ports: - name: hazelcast port: 5701 type: ClusterIP ``` deploy yaml ```yaml name: test-app ports: - name: http containerPort: 8080 - name: multicast containerPort: 5701 ``` Could you tell me the cause of this issue? Thanks :)
1.0
Hazelcast Cache not deleted in kebernetes near cache - Hello :) Hazelcast Issue in k8s This is my gradle implements ```gradle implementation group: 'com.hazelcast', name: 'spring-data-hazelcast', version: '2.4.0' implementation group: 'com.hazelcast', name: 'hazelcast-all', version: '4.2' ``` First, Upload all data from MongoDB to the spring data hazelcast repository at Pod Initialize time. Once Cache Uploaded, data cannot be deleted. It remains even after deploy restart. It is used within k8s and uses the Near Cache kubernetes config. If the Hazelcast Cache method is kubernetes embedded, does the storage exist other than Pod? We found that Cache remained even though Pod was all deploy restart. This is our yaml svc.yaml ```yaml apiVersion: v1 kind: Service metadata: labels: app.kubernetes.io/name: test app.kubernetes.io/managed-by: kubectl name: hazelcast-service spec: selector: app: test-app ports: - name: hazelcast port: 5701 type: ClusterIP ``` deploy yaml ```yaml name: test-app ports: - name: http containerPort: 8080 - name: multicast containerPort: 5701 ``` Could you tell me the cause of this issue? Thanks :)
defect
hazelcast cache not deleted in kebernetes near cache hello hazelcast issue in this is my gradle implements gradle implementation group com hazelcast name spring data hazelcast version implementation group com hazelcast name hazelcast all version first upload all data from mongodb to the spring data hazelcast repository at pod initialize time once cache uploaded data cannot be deleted it remains even after deploy restart it is used within and uses the near cache kubernetes config if the hazelcast cache method is kubernetes embedded does the storage exist other than pod we found that cache remained even though pod was all deploy restart this is our yaml svc yaml yaml apiversion kind service metadata labels app kubernetes io name test app kubernetes io managed by kubectl name hazelcast service spec selector app test app ports name hazelcast port type clusterip deploy yaml yaml name test app ports name http containerport name multicast containerport could you tell me the cause of this issue thanks
1
70,756
23,307,357,591
IssuesEvent
2022-08-08 03:33:05
scipy/scipy
https://api.github.com/repos/scipy/scipy
opened
Importing scipy causes error when the Windows username contains a single quoteBUG:
defect
### Describe your issue. Just as the title suggests, on Windows when the username contains a single quote, importing the scipy package would cause an error. ### Reproducing Code Example ```python python -c "import scipy" ``` ### Error message ```shell Traceback (most recent call last): File "<string>", line 1, in <module> File "C:\Users\Praxelogist's Lab\.conda\envs\losthub\lib\site-packages\scipy\__init__.py", line 134, in <module> from scipy.__config__ import show as show_config File "C:\Users\Praxelogist's Lab\.conda\envs\losthub\lib\site-packages\scipy\__config__.py", line 27 lapack_info={'libraries': ['lapack', 'blas', 'lapack', 'blas'], 'library_dirs': ['C:/Users/Praxelogist's Lab/.conda/envs/losthub\\Library\\lib'], 'language': 'f77'} ^ SyntaxError: invalid syntax ``` ### SciPy/NumPy/Python version information numpy==1.23.1 python==3.9.13
1.0
Importing scipy causes error when the Windows username contains a single quoteBUG: - ### Describe your issue. Just as the title suggests, on Windows when the username contains a single quote, importing the scipy package would cause an error. ### Reproducing Code Example ```python python -c "import scipy" ``` ### Error message ```shell Traceback (most recent call last): File "<string>", line 1, in <module> File "C:\Users\Praxelogist's Lab\.conda\envs\losthub\lib\site-packages\scipy\__init__.py", line 134, in <module> from scipy.__config__ import show as show_config File "C:\Users\Praxelogist's Lab\.conda\envs\losthub\lib\site-packages\scipy\__config__.py", line 27 lapack_info={'libraries': ['lapack', 'blas', 'lapack', 'blas'], 'library_dirs': ['C:/Users/Praxelogist's Lab/.conda/envs/losthub\\Library\\lib'], 'language': 'f77'} ^ SyntaxError: invalid syntax ``` ### SciPy/NumPy/Python version information numpy==1.23.1 python==3.9.13
defect
importing scipy causes error when the windows username contains a single quotebug describe your issue just as the title suggests on windows when the username contains a single quote importing the scipy package would cause an error reproducing code example python python c import scipy error message shell traceback most recent call last file line in file c users praxelogist s lab conda envs losthub lib site packages scipy init py line in from scipy config import show as show config file c users praxelogist s lab conda envs losthub lib site packages scipy config py line lapack info libraries library dirs language syntaxerror invalid syntax scipy numpy python version information numpy python
1
76,812
26,608,281,243
IssuesEvent
2023-01-23 21:19:46
openzfs/zfs
https://api.github.com/repos/openzfs/zfs
closed
PANIC at range_tree.c:368:range_tree_remove_impl()
Type: Defect Status: Triage Needed
<!-- Please fill out the following template, which will help other contributors address your issue. --> <!-- Thank you for reporting an issue. *IMPORTANT* - Please check our issue tracker before opening a new issue. Additional valuable information can be found in the OpenZFS documentation and mailing list archives. Please fill in as much of the template as possible. --> ### System information <!-- add version after "|" character --> Type | Version/Name --- | --- Distribution Name | Debian/proxmox Distribution Version | 6.3.1 Linux Kernel | 5.4.106-1-pve Architecture | amd64 (qemu) ZFS Version | 0.8.6-1 SPL Version | 0.8.6-1 <!-- Commands to find ZFS/SPL versions: modinfo zfs | grep -iw version modinfo spl | grep -iw version --> ### Describe the problem you're observing After printing a panic message, all zfs operations are stuck, the machine needs to be rebooted. See below for panic message. Note: This is NOT the zfs version that comes with the distribution. This is the locally recompiled zfs-0.8-release tagged version, but recompiled with NO error, using the default compilation settings. ### Describe how to reproduce the problem Hard to tell exactly when and why, but seems to happen under significant load, and most probably when trying to destroy snapshots. After a reboot, it happens again, not immediately, but unpredictably. The stack trace when it reproduces is identical. I haven't tried yet locally compiled earlier versions, but it seems that earlier versions that came with proxmox kernel 5.4.78 (zfs version 0.8.5) didnt produce this error. (proxmox 6.1.1 or 6.2.1 fresh install without apt update I guess). Note that it MAY have started after I had once to destroy 13k snapshots that had been accumulating in a dataset. But I don't see why it and I am not totally sure about the timing. Maybe completely unrelated. Scrub after occurrence completed without error, and it happened again after scrubbing. Note that most datasets are encrypted. This is a backup server, mostly receiving encrypted snapshots sent in raw replication differential streams. Source streams are also produced using a locally recompiled 0.8 version (I had to downgrade to this version because of another issue on ZFS version 2.0.X that I reported in a separate issue that totally brake our backup scripts). ### Include any warning/errors/backtraces from the system logs <!-- *IMPORTANT* - Please mark logs and text output from terminal commands or else Github will not display them correctly. An example is provided below. Example: ``` this is an example how log text should be marked (wrap it with ```) ``` --> ``` [63926.387058] VERIFY3(size != 0) failed (0 != 0) [63926.387114] PANIC at range_tree.c:368:range_tree_remove_impl() [63926.387144] Showing stack for process 602 [63926.387156] CPU: 2 PID: 602 Comm: z_wr_iss Tainted: P O 5.4.106-1-pve #1 [63926.387158] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 0.0.0 02/06/2015 [63926.387163] Call Trace: [63926.387188] dump_stack+0x6d/0x8b [63926.387227] spl_dumpstack+0x29/0x2b [spl] [63926.387235] spl_panic+0xd3/0xfb [spl] [63926.387241] ? __blk_mq_try_issue_directly+0x177/0x1c0 [63926.387264] ? fletcher_4_incremental_byteswap+0x130/0x130 [zcommon] [63926.387333] ? abd_iterate_func+0x7f/0x120 [zfs] [63926.387338] ? update_sd_lb_stats+0x104/0x790 [63926.387350] ? avl_find+0x5f/0x90 [zavl] [63926.387423] range_tree_remove_impl+0x310/0x3d0 [zfs] [63926.387426] ? _cond_resched+0x19/0x30 [63926.387430] ? __kmalloc_node+0x1e0/0x330 [63926.387500] ? metaslab_df_alloc+0x131/0x1d0 [zfs] [63926.387571] range_tree_remove+0x10/0x20 [zfs] [63926.387642] metaslab_alloc_dva+0x273/0x1100 [zfs] [63926.387714] metaslab_alloc+0xb4/0x240 [zfs] [63926.387790] zio_dva_allocate+0xd2/0x810 [zfs] [63926.387793] ? _cond_resched+0x19/0x30 [63926.387796] ? mutex_lock+0x12/0x30 [63926.387866] ? metaslab_class_throttle_reserve+0xd8/0xf0 [zfs] [63926.387875] ? tsd_hash_search.isra.5+0x72/0xa0 [spl] [63926.387883] ? tsd_get_by_thread+0x2e/0x40 [spl] [63926.387890] ? taskq_member+0x18/0x30 [spl] [63926.387967] zio_execute+0x99/0xf0 [zfs] [63926.387975] taskq_thread+0x2ec/0x4d0 [spl] [63926.387980] ? wake_up_q+0x80/0x80 [63926.388057] ? zio_taskq_member.isra.12.constprop.17+0x70/0x70 [zfs] [63926.388061] kthread+0x120/0x140 [63926.388070] ? task_done+0xb0/0xb0 [spl] [63926.388072] ? kthread_park+0x90/0x90 [63926.388075] ret_from_fork+0x35/0x40 ```
1.0
PANIC at range_tree.c:368:range_tree_remove_impl() - <!-- Please fill out the following template, which will help other contributors address your issue. --> <!-- Thank you for reporting an issue. *IMPORTANT* - Please check our issue tracker before opening a new issue. Additional valuable information can be found in the OpenZFS documentation and mailing list archives. Please fill in as much of the template as possible. --> ### System information <!-- add version after "|" character --> Type | Version/Name --- | --- Distribution Name | Debian/proxmox Distribution Version | 6.3.1 Linux Kernel | 5.4.106-1-pve Architecture | amd64 (qemu) ZFS Version | 0.8.6-1 SPL Version | 0.8.6-1 <!-- Commands to find ZFS/SPL versions: modinfo zfs | grep -iw version modinfo spl | grep -iw version --> ### Describe the problem you're observing After printing a panic message, all zfs operations are stuck, the machine needs to be rebooted. See below for panic message. Note: This is NOT the zfs version that comes with the distribution. This is the locally recompiled zfs-0.8-release tagged version, but recompiled with NO error, using the default compilation settings. ### Describe how to reproduce the problem Hard to tell exactly when and why, but seems to happen under significant load, and most probably when trying to destroy snapshots. After a reboot, it happens again, not immediately, but unpredictably. The stack trace when it reproduces is identical. I haven't tried yet locally compiled earlier versions, but it seems that earlier versions that came with proxmox kernel 5.4.78 (zfs version 0.8.5) didnt produce this error. (proxmox 6.1.1 or 6.2.1 fresh install without apt update I guess). Note that it MAY have started after I had once to destroy 13k snapshots that had been accumulating in a dataset. But I don't see why it and I am not totally sure about the timing. Maybe completely unrelated. Scrub after occurrence completed without error, and it happened again after scrubbing. Note that most datasets are encrypted. This is a backup server, mostly receiving encrypted snapshots sent in raw replication differential streams. Source streams are also produced using a locally recompiled 0.8 version (I had to downgrade to this version because of another issue on ZFS version 2.0.X that I reported in a separate issue that totally brake our backup scripts). ### Include any warning/errors/backtraces from the system logs <!-- *IMPORTANT* - Please mark logs and text output from terminal commands or else Github will not display them correctly. An example is provided below. Example: ``` this is an example how log text should be marked (wrap it with ```) ``` --> ``` [63926.387058] VERIFY3(size != 0) failed (0 != 0) [63926.387114] PANIC at range_tree.c:368:range_tree_remove_impl() [63926.387144] Showing stack for process 602 [63926.387156] CPU: 2 PID: 602 Comm: z_wr_iss Tainted: P O 5.4.106-1-pve #1 [63926.387158] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 0.0.0 02/06/2015 [63926.387163] Call Trace: [63926.387188] dump_stack+0x6d/0x8b [63926.387227] spl_dumpstack+0x29/0x2b [spl] [63926.387235] spl_panic+0xd3/0xfb [spl] [63926.387241] ? __blk_mq_try_issue_directly+0x177/0x1c0 [63926.387264] ? fletcher_4_incremental_byteswap+0x130/0x130 [zcommon] [63926.387333] ? abd_iterate_func+0x7f/0x120 [zfs] [63926.387338] ? update_sd_lb_stats+0x104/0x790 [63926.387350] ? avl_find+0x5f/0x90 [zavl] [63926.387423] range_tree_remove_impl+0x310/0x3d0 [zfs] [63926.387426] ? _cond_resched+0x19/0x30 [63926.387430] ? __kmalloc_node+0x1e0/0x330 [63926.387500] ? metaslab_df_alloc+0x131/0x1d0 [zfs] [63926.387571] range_tree_remove+0x10/0x20 [zfs] [63926.387642] metaslab_alloc_dva+0x273/0x1100 [zfs] [63926.387714] metaslab_alloc+0xb4/0x240 [zfs] [63926.387790] zio_dva_allocate+0xd2/0x810 [zfs] [63926.387793] ? _cond_resched+0x19/0x30 [63926.387796] ? mutex_lock+0x12/0x30 [63926.387866] ? metaslab_class_throttle_reserve+0xd8/0xf0 [zfs] [63926.387875] ? tsd_hash_search.isra.5+0x72/0xa0 [spl] [63926.387883] ? tsd_get_by_thread+0x2e/0x40 [spl] [63926.387890] ? taskq_member+0x18/0x30 [spl] [63926.387967] zio_execute+0x99/0xf0 [zfs] [63926.387975] taskq_thread+0x2ec/0x4d0 [spl] [63926.387980] ? wake_up_q+0x80/0x80 [63926.388057] ? zio_taskq_member.isra.12.constprop.17+0x70/0x70 [zfs] [63926.388061] kthread+0x120/0x140 [63926.388070] ? task_done+0xb0/0xb0 [spl] [63926.388072] ? kthread_park+0x90/0x90 [63926.388075] ret_from_fork+0x35/0x40 ```
defect
panic at range tree c range tree remove impl thank you for reporting an issue important please check our issue tracker before opening a new issue additional valuable information can be found in the openzfs documentation and mailing list archives please fill in as much of the template as possible system information type version name distribution name debian proxmox distribution version linux kernel pve architecture qemu zfs version spl version commands to find zfs spl versions modinfo zfs grep iw version modinfo spl grep iw version describe the problem you re observing after printing a panic message all zfs operations are stuck the machine needs to be rebooted see below for panic message note this is not the zfs version that comes with the distribution this is the locally recompiled zfs release tagged version but recompiled with no error using the default compilation settings describe how to reproduce the problem hard to tell exactly when and why but seems to happen under significant load and most probably when trying to destroy snapshots after a reboot it happens again not immediately but unpredictably the stack trace when it reproduces is identical i haven t tried yet locally compiled earlier versions but it seems that earlier versions that came with proxmox kernel zfs version didnt produce this error proxmox or fresh install without apt update i guess note that it may have started after i had once to destroy snapshots that had been accumulating in a dataset but i don t see why it and i am not totally sure about the timing maybe completely unrelated scrub after occurrence completed without error and it happened again after scrubbing note that most datasets are encrypted this is a backup server mostly receiving encrypted snapshots sent in raw replication differential streams source streams are also produced using a locally recompiled version i had to downgrade to this version because of another issue on zfs version x that i reported in a separate issue that totally brake our backup scripts include any warning errors backtraces from the system logs important please mark logs and text output from terminal commands or else github will not display them correctly an example is provided below example this is an example how log text should be marked wrap it with size failed panic at range tree c range tree remove impl showing stack for process cpu pid comm z wr iss tainted p o pve hardware name qemu standard pc piix bios call trace dump stack spl dumpstack spl panic blk mq try issue directly fletcher incremental byteswap abd iterate func update sd lb stats avl find range tree remove impl cond resched kmalloc node metaslab df alloc range tree remove metaslab alloc dva metaslab alloc zio dva allocate cond resched mutex lock metaslab class throttle reserve tsd hash search isra tsd get by thread taskq member zio execute taskq thread wake up q zio taskq member isra constprop kthread task done kthread park ret from fork
1
15,494
2,857,138,630
IssuesEvent
2015-06-02 18:15:27
yan-qi/k-shortest-paths-scala-version
https://api.github.com/repos/yan-qi/k-shortest-paths-scala-version
closed
Another memory leak, this time in QYShortestPaths.cpp
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? 1. Run the program with a source-destination pair that are not connected or an invalid destination. 2. CQYShortestPath::_GetShortestPath() will return a new Directed Path that is disconnected. 3. This graph needs to be deleted in QYShortestPath.cpp as part of the validity check. What is the expected output? What do you see instead? The graph should be deleted. The graph is not deleted. What version of the product are you using? On what operating system? I am using version 1.0.3 with MS Visual Studio 2003 on Windows XP. Please provide any additional information below. ``` Original issue reported on code.google.com by `timothya...@gmail.com` on 19 May 2009 at 9:47
1.0
Another memory leak, this time in QYShortestPaths.cpp - ``` What steps will reproduce the problem? 1. Run the program with a source-destination pair that are not connected or an invalid destination. 2. CQYShortestPath::_GetShortestPath() will return a new Directed Path that is disconnected. 3. This graph needs to be deleted in QYShortestPath.cpp as part of the validity check. What is the expected output? What do you see instead? The graph should be deleted. The graph is not deleted. What version of the product are you using? On what operating system? I am using version 1.0.3 with MS Visual Studio 2003 on Windows XP. Please provide any additional information below. ``` Original issue reported on code.google.com by `timothya...@gmail.com` on 19 May 2009 at 9:47
defect
another memory leak this time in qyshortestpaths cpp what steps will reproduce the problem run the program with a source destination pair that are not connected or an invalid destination cqyshortestpath getshortestpath will return a new directed path that is disconnected this graph needs to be deleted in qyshortestpath cpp as part of the validity check what is the expected output what do you see instead the graph should be deleted the graph is not deleted what version of the product are you using on what operating system i am using version with ms visual studio on windows xp please provide any additional information below original issue reported on code google com by timothya gmail com on may at
1
74,071
24,931,601,523
IssuesEvent
2022-10-31 12:07:08
matrix-org/synapse
https://api.github.com/repos/matrix-org/synapse
closed
Creating a handful (~3) of rooms, for example to populate a new Space in Element Web, leads to running into rate limits
S-Major T-Defect X-Release-Blocker O-Occasional
With default rate limiting values, we used to be able to create at least 3 rooms in one go. The new Space screen in Element Web depends on this (https://github.com/vector-im/element-web/issues/23620) and breaks if any of those room creations are rate limited, as they are now (v1.70.0). The following test case demonstrates this: ```python from http import HTTPStatus from synapse.rest.client import room from tests.unittest import HomeserverTestCase, override_config class BisectCase(HomeserverTestCase): servlets = [room.register_servlets] hijack_auth = True user_id = "@sid1:test" @override_config({ "rc_message": {"per_second": 0.2, "burst_count": 10}, }) def test_can_create_3_rooms(self): """ Should be able to create 3 rooms in a row (e.g. rooms in a space) without hitting rate limits. """ for _ in range(3): channel = self.make_request( "POST", "/createRoom", {}, ) self.assertEqual(channel.code, HTTPStatus.OK, channel.json_body) ``` Bisecting, the following commit is what made the above fail because of the rate limit: 8ab16a92edd675453c78cfd9974081e374b0f998 'Persist CreateRoom events to DB in a batch (#13800)' in v1.69.0. We should try to revert rate limiting to behave the same as before or closely enough that this basic use case is not broken.
1.0
Creating a handful (~3) of rooms, for example to populate a new Space in Element Web, leads to running into rate limits - With default rate limiting values, we used to be able to create at least 3 rooms in one go. The new Space screen in Element Web depends on this (https://github.com/vector-im/element-web/issues/23620) and breaks if any of those room creations are rate limited, as they are now (v1.70.0). The following test case demonstrates this: ```python from http import HTTPStatus from synapse.rest.client import room from tests.unittest import HomeserverTestCase, override_config class BisectCase(HomeserverTestCase): servlets = [room.register_servlets] hijack_auth = True user_id = "@sid1:test" @override_config({ "rc_message": {"per_second": 0.2, "burst_count": 10}, }) def test_can_create_3_rooms(self): """ Should be able to create 3 rooms in a row (e.g. rooms in a space) without hitting rate limits. """ for _ in range(3): channel = self.make_request( "POST", "/createRoom", {}, ) self.assertEqual(channel.code, HTTPStatus.OK, channel.json_body) ``` Bisecting, the following commit is what made the above fail because of the rate limit: 8ab16a92edd675453c78cfd9974081e374b0f998 'Persist CreateRoom events to DB in a batch (#13800)' in v1.69.0. We should try to revert rate limiting to behave the same as before or closely enough that this basic use case is not broken.
defect
creating a handful of rooms for example to populate a new space in element web leads to running into rate limits with default rate limiting values we used to be able to create at least rooms in one go the new space screen in element web depends on this and breaks if any of those room creations are rate limited as they are now the following test case demonstrates this python from http import httpstatus from synapse rest client import room from tests unittest import homeservertestcase override config class bisectcase homeservertestcase servlets hijack auth true user id test override config rc message per second burst count def test can create rooms self should be able to create rooms in a row e g rooms in a space without hitting rate limits for in range channel self make request post createroom self assertequal channel code httpstatus ok channel json body bisecting the following commit is what made the above fail because of the rate limit persist createroom events to db in a batch in we should try to revert rate limiting to behave the same as before or closely enough that this basic use case is not broken
1
1,009
2,594,436,646
IssuesEvent
2015-02-20 03:23:00
BALL-Project/ball
https://api.github.com/repos/BALL-Project/ball
closed
BALLView PubChem access on Mac OS X: never loads the molecule
C: VIEW P: minor R: duplicate T: defect
**Reported by ChemGuy on 4 Nov 42180141 20:03 UTC** I tried to download, for example, cyclohexane, and all that happens is the progress indicator starts twiddling, and never stops. The PubChem? start button stays inactive as well. The molecule never loads. It's possible that I'm using it wrong, but it should at least error out at some point. Steps: 1) From the main view, hit the "download from PubChem?" button 2) Type "cyclohexane" into the PubChem? line edit, and hit the "PubChem?" button. 3) Wait for forever. You can close the dialog box and reopen it, but you are never able to submit another PubChem? query. Actual Results: The progress indicator comes up, and the PubChem? submit button goes inactive, but nothing else ever changes. Looking at the transmissions in Wireshark, it looks like BALLView initially does actually get some XML back, but then, apparently, resubmits an HTTP POST a whole bunch of times and, apparently, doesn't get the result it's looking for. Expected Results: I'd prefer if PubChem? gave me back cyclohexane, but if I'm using it incorrectly, then BALLView should probably error out
1.0
BALLView PubChem access on Mac OS X: never loads the molecule - **Reported by ChemGuy on 4 Nov 42180141 20:03 UTC** I tried to download, for example, cyclohexane, and all that happens is the progress indicator starts twiddling, and never stops. The PubChem? start button stays inactive as well. The molecule never loads. It's possible that I'm using it wrong, but it should at least error out at some point. Steps: 1) From the main view, hit the "download from PubChem?" button 2) Type "cyclohexane" into the PubChem? line edit, and hit the "PubChem?" button. 3) Wait for forever. You can close the dialog box and reopen it, but you are never able to submit another PubChem? query. Actual Results: The progress indicator comes up, and the PubChem? submit button goes inactive, but nothing else ever changes. Looking at the transmissions in Wireshark, it looks like BALLView initially does actually get some XML back, but then, apparently, resubmits an HTTP POST a whole bunch of times and, apparently, doesn't get the result it's looking for. Expected Results: I'd prefer if PubChem? gave me back cyclohexane, but if I'm using it incorrectly, then BALLView should probably error out
defect
ballview pubchem access on mac os x never loads the molecule reported by chemguy on nov utc i tried to download for example cyclohexane and all that happens is the progress indicator starts twiddling and never stops the pubchem start button stays inactive as well the molecule never loads it s possible that i m using it wrong but it should at least error out at some point steps from the main view hit the download from pubchem button type cyclohexane into the pubchem line edit and hit the pubchem button wait for forever you can close the dialog box and reopen it but you are never able to submit another pubchem query actual results the progress indicator comes up and the pubchem submit button goes inactive but nothing else ever changes looking at the transmissions in wireshark it looks like ballview initially does actually get some xml back but then apparently resubmits an http post a whole bunch of times and apparently doesn t get the result it s looking for expected results i d prefer if pubchem gave me back cyclohexane but if i m using it incorrectly then ballview should probably error out
1
59,574
17,023,165,905
IssuesEvent
2021-07-03 00:40:11
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
tabbing whilst in tagging dialog
Component: potlatch (flash editor) Priority: minor Resolution: fixed Type: defect
**[Submitted to the original trac issue database at 5.30pm, Monday, 21st May 2007]** If you have a new way, and you then choose a highway type, and then click the '+' to add a new attribute, you get a new line which initially displays as key = (type value here). If you type in a key value and then hit tab, I would expect focus to move across to the (type value here) field, but instead it moves to top of the right hand column (ie the value for the name).
1.0
tabbing whilst in tagging dialog - **[Submitted to the original trac issue database at 5.30pm, Monday, 21st May 2007]** If you have a new way, and you then choose a highway type, and then click the '+' to add a new attribute, you get a new line which initially displays as key = (type value here). If you type in a key value and then hit tab, I would expect focus to move across to the (type value here) field, but instead it moves to top of the right hand column (ie the value for the name).
defect
tabbing whilst in tagging dialog if you have a new way and you then choose a highway type and then click the to add a new attribute you get a new line which initially displays as key type value here if you type in a key value and then hit tab i would expect focus to move across to the type value here field but instead it moves to top of the right hand column ie the value for the name
1
64,345
18,450,201,379
IssuesEvent
2021-10-15 09:34:25
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
closed
bad user experience with quitting desktop app
T-Defect X-Needs-Info A-Electron
### Steps to reproduce 1. Launch Element desktop app. 2. Press Ctrl+Q to quit. ### Outcome #### What did you expect? Ctrl+Q should directly quit. #### What happened instead? * An annoying confirmation prompt appears. * Confirming the prompt does nothing. The app remains running. My personal preference is to ditch termination confirmation prompts. I've always found these to be unnecessary blocks of code to maintain. If we absolutely must keep a confirmation prompt, then I want an option to skip the prompt. And I would want this option to persist across my Element user account onto all my devices. So that I don't have to manually reapply this setting when using a different device. ### Operating system Windows ### Application version Element version: 1.9.0 Olm version: 3.2.3 ### How did you install the app? https://element.io/ ### Homeserver _No response_ ### Will you send logs? No
1.0
bad user experience with quitting desktop app - ### Steps to reproduce 1. Launch Element desktop app. 2. Press Ctrl+Q to quit. ### Outcome #### What did you expect? Ctrl+Q should directly quit. #### What happened instead? * An annoying confirmation prompt appears. * Confirming the prompt does nothing. The app remains running. My personal preference is to ditch termination confirmation prompts. I've always found these to be unnecessary blocks of code to maintain. If we absolutely must keep a confirmation prompt, then I want an option to skip the prompt. And I would want this option to persist across my Element user account onto all my devices. So that I don't have to manually reapply this setting when using a different device. ### Operating system Windows ### Application version Element version: 1.9.0 Olm version: 3.2.3 ### How did you install the app? https://element.io/ ### Homeserver _No response_ ### Will you send logs? No
defect
bad user experience with quitting desktop app steps to reproduce launch element desktop app press ctrl q to quit outcome what did you expect ctrl q should directly quit what happened instead an annoying confirmation prompt appears confirming the prompt does nothing the app remains running my personal preference is to ditch termination confirmation prompts i ve always found these to be unnecessary blocks of code to maintain if we absolutely must keep a confirmation prompt then i want an option to skip the prompt and i would want this option to persist across my element user account onto all my devices so that i don t have to manually reapply this setting when using a different device operating system windows application version element version olm version how did you install the app homeserver no response will you send logs no
1
100,330
8,736,378,665
IssuesEvent
2018-12-11 19:22:26
SamPoulton/LuminanceRGB
https://api.github.com/repos/SamPoulton/LuminanceRGB
closed
Client takes a while to respond to serial messages due to usage of delay()
enhancement needs testing
Using delay() in the Arduino client causes serial messages to be parsed every 50ms due to the call to delay(). This call also causes gradients to not flow properly and be quite blocky.
1.0
Client takes a while to respond to serial messages due to usage of delay() - Using delay() in the Arduino client causes serial messages to be parsed every 50ms due to the call to delay(). This call also causes gradients to not flow properly and be quite blocky.
non_defect
client takes a while to respond to serial messages due to usage of delay using delay in the arduino client causes serial messages to be parsed every due to the call to delay this call also causes gradients to not flow properly and be quite blocky
0
68,713
21,791,415,726
IssuesEvent
2022-05-15 00:30:54
scipy/scipy
https://api.github.com/repos/scipy/scipy
opened
BUG: scipy.spatial.ConvexHull does not allow deep-copy when setting incremental=True
defect
### Describe your issue. Hi, Scipy team, I got a problem when working with scipy.spatial.ConvexHull class. After creating an instance of ConvexHull object with flag `incremental=True`, trying to `copy.deepcopy` yields `TypeError: self._qh cannot be converted to a Python object for pickling`. The error does not appear when `incremental=False`. Minimal reproducing code is attached in the Reproducing Code Example textbox. Full error message: ```python Traceback (most recent call last): File "<input>", line 1, in <module> File "$...my_path...$\Python\Python38\lib\copy.py", line 172, in deepcopy y = _reconstruct(x, memo, *rv) File "$...my_path...$\Python\Python38\lib\copy.py", line 270, in _reconstruct state = deepcopy(state, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 146, in deepcopy y = copier(x, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 230, in _deepcopy_dict y[deepcopy(key, memo)] = deepcopy(value, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 161, in deepcopy rv = reductor(4) File "stringsource", line 2, in scipy.spatial._qhull._Qhull.__reduce_cython__ TypeError: self._qh cannot be converted to a Python object for pickling ``` My environment setup: System: Windows 10 Home CPU: Intel i7-10700 Python version: 3.8.6 Scipy version: 1.8.0 installed with Pycharm Numpy version: 1.21.4 installed with Pycharm I appreciate it if you look into this issue. Feel free to relabel it. Thank you! ### Reproducing Code Example ```python from scipy.spatial import ConvexHull import copy # random non-degenerate input hull1 = ConvexHull(np.array([[0, 1,3], [2,3,4], [8,-1,9], [2,4,0]]), incremental=True) hull2 = copy.deepcopy(hull1) ``` ### Error message ```shell Traceback (most recent call last): File "<input>", line 1, in <module> File "$...my_path...$\Python\Python38\lib\copy.py", line 172, in deepcopy y = _reconstruct(x, memo, *rv) File "$...my_path...$\Python\Python38\lib\copy.py", line 270, in _reconstruct state = deepcopy(state, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 146, in deepcopy y = copier(x, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 230, in _deepcopy_dict y[deepcopy(key, memo)] = deepcopy(value, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 161, in deepcopy rv = reductor(4) File "stringsource", line 2, in scipy.spatial._qhull._Qhull.__reduce_cython__ TypeError: self._qh cannot be converted to a Python object for pickling ``` ### SciPy/NumPy/Python version information 1.8.0 1.21.4 sys.version_info(major=3, minor=8, micro=6, releaselevel='final', serial=0)
1.0
BUG: scipy.spatial.ConvexHull does not allow deep-copy when setting incremental=True - ### Describe your issue. Hi, Scipy team, I got a problem when working with scipy.spatial.ConvexHull class. After creating an instance of ConvexHull object with flag `incremental=True`, trying to `copy.deepcopy` yields `TypeError: self._qh cannot be converted to a Python object for pickling`. The error does not appear when `incremental=False`. Minimal reproducing code is attached in the Reproducing Code Example textbox. Full error message: ```python Traceback (most recent call last): File "<input>", line 1, in <module> File "$...my_path...$\Python\Python38\lib\copy.py", line 172, in deepcopy y = _reconstruct(x, memo, *rv) File "$...my_path...$\Python\Python38\lib\copy.py", line 270, in _reconstruct state = deepcopy(state, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 146, in deepcopy y = copier(x, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 230, in _deepcopy_dict y[deepcopy(key, memo)] = deepcopy(value, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 161, in deepcopy rv = reductor(4) File "stringsource", line 2, in scipy.spatial._qhull._Qhull.__reduce_cython__ TypeError: self._qh cannot be converted to a Python object for pickling ``` My environment setup: System: Windows 10 Home CPU: Intel i7-10700 Python version: 3.8.6 Scipy version: 1.8.0 installed with Pycharm Numpy version: 1.21.4 installed with Pycharm I appreciate it if you look into this issue. Feel free to relabel it. Thank you! ### Reproducing Code Example ```python from scipy.spatial import ConvexHull import copy # random non-degenerate input hull1 = ConvexHull(np.array([[0, 1,3], [2,3,4], [8,-1,9], [2,4,0]]), incremental=True) hull2 = copy.deepcopy(hull1) ``` ### Error message ```shell Traceback (most recent call last): File "<input>", line 1, in <module> File "$...my_path...$\Python\Python38\lib\copy.py", line 172, in deepcopy y = _reconstruct(x, memo, *rv) File "$...my_path...$\Python\Python38\lib\copy.py", line 270, in _reconstruct state = deepcopy(state, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 146, in deepcopy y = copier(x, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 230, in _deepcopy_dict y[deepcopy(key, memo)] = deepcopy(value, memo) File "$...my_path...$\Python\Python38\lib\copy.py", line 161, in deepcopy rv = reductor(4) File "stringsource", line 2, in scipy.spatial._qhull._Qhull.__reduce_cython__ TypeError: self._qh cannot be converted to a Python object for pickling ``` ### SciPy/NumPy/Python version information 1.8.0 1.21.4 sys.version_info(major=3, minor=8, micro=6, releaselevel='final', serial=0)
defect
bug scipy spatial convexhull does not allow deep copy when setting incremental true describe your issue hi scipy team i got a problem when working with scipy spatial convexhull class after creating an instance of convexhull object with flag incremental true trying to copy deepcopy yields typeerror self qh cannot be converted to a python object for pickling the error does not appear when incremental false minimal reproducing code is attached in the reproducing code example textbox full error message python traceback most recent call last file line in file my path python lib copy py line in deepcopy y reconstruct x memo rv file my path python lib copy py line in reconstruct state deepcopy state memo file my path python lib copy py line in deepcopy y copier x memo file my path python lib copy py line in deepcopy dict y deepcopy value memo file my path python lib copy py line in deepcopy rv reductor file stringsource line in scipy spatial qhull qhull reduce cython typeerror self qh cannot be converted to a python object for pickling my environment setup system windows home cpu intel python version scipy version installed with pycharm numpy version installed with pycharm i appreciate it if you look into this issue feel free to relabel it thank you reproducing code example python from scipy spatial import convexhull import copy random non degenerate input convexhull np array incremental true copy deepcopy error message shell traceback most recent call last file line in file my path python lib copy py line in deepcopy y reconstruct x memo rv file my path python lib copy py line in reconstruct state deepcopy state memo file my path python lib copy py line in deepcopy y copier x memo file my path python lib copy py line in deepcopy dict y deepcopy value memo file my path python lib copy py line in deepcopy rv reductor file stringsource line in scipy spatial qhull qhull reduce cython typeerror self qh cannot be converted to a python object for pickling scipy numpy python version information sys version info major minor micro releaselevel final serial
1
1,349
2,603,839,430
IssuesEvent
2015-02-24 18:14:12
chrsmith/nishazi6
https://api.github.com/repos/chrsmith/nishazi6
opened
沈阳龟头上有红色小疙瘩
auto-migrated Priority-Medium Type-Defect
``` 沈阳龟头上有红色小疙瘩〓沈陽軍區政治部醫院性病〓TEL:02 4-31023308〓成立于1946年,68年專注于性傳播疾病的研究和治療� ��位于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝� ��的歷史悠久、設備精良、技術權威、專家云集,是預防、保 健、醫療、科研康復為一體的綜合性醫院。是國家首批公立�� �等部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學� ��東南大學等知名高等院校的教學醫院。曾被中國人民解放軍 空軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集�� �二等功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 7:08
1.0
沈阳龟头上有红色小疙瘩 - ``` 沈阳龟头上有红色小疙瘩〓沈陽軍區政治部醫院性病〓TEL:02 4-31023308〓成立于1946年,68年專注于性傳播疾病的研究和治療� ��位于沈陽市沈河區二緯路32號。是一所與新中國同建立共輝� ��的歷史悠久、設備精良、技術權威、專家云集,是預防、保 健、醫療、科研康復為一體的綜合性醫院。是國家首批公立�� �等部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學� ��東南大學等知名高等院校的教學醫院。曾被中國人民解放軍 空軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集�� �二等功。 ``` ----- Original issue reported on code.google.com by `q964105...@gmail.com` on 4 Jun 2014 at 7:08
defect
沈阳龟头上有红色小疙瘩 沈阳龟头上有红色小疙瘩〓沈陽軍區政治部醫院性病〓tel: 〓 , � �� 。是一所與新中國同建立共輝� ��的歷史悠久、設備精良、技術權威、專家云集,是預防、保 健、醫療、科研康復為一體的綜合性醫院。是國家首批公立�� �等部隊醫院、全國首批醫療規范定點單位,是第四軍醫大學� ��東南大學等知名高等院校的教學醫院。曾被中國人民解放軍 空軍后勤部衛生部評為衛生工作先進單位,先后兩次榮立集�� �二等功。 original issue reported on code google com by gmail com on jun at
1
4,023
6,624,258,695
IssuesEvent
2017-09-22 10:47:20
shubham9411/ideas
https://api.github.com/repos/shubham9411/ideas
closed
Decide the Coding Language
Requirement Gathering
- [x] PHP - [ ] CSS - [ ] C++ - [x] Python - [x] JS - [ ] Angular - [ ] React - [ ] Android - [ ] Java - [ ] Sass
1.0
Decide the Coding Language - - [x] PHP - [ ] CSS - [ ] C++ - [x] Python - [x] JS - [ ] Angular - [ ] React - [ ] Android - [ ] Java - [ ] Sass
non_defect
decide the coding language php css c python js angular react android java sass
0
54,504
13,752,232,197
IssuesEvent
2020-10-06 14:17:00
tensfeldt/openNCA
https://api.github.com/repos/tensfeldt/openNCA
closed
2020-09-01 tc1580 M3SS inconsistent output for SDEID profiles that contain negative times
3.0 defect
This issue is in regards to scope item 3.16 ### Issue tc1580 contains a single negative time in each profile, with desired behaviour being NA output for all profiles. This behaviour is inconsistent, with some profiles having non-NA values provided in the output for an unknown reason. One profile shows up with this behaviour when running this locally. The automated report .htmls shows up with 4 SDEID profiles being affected. These SDEID profiles are not mentioned in the warnings like other profiles with this warning: `No parameters generated due to negative TIME values for SDEID: '3970555705'` ```r # Check number of negative values per profile (and then see how many unique quantities there are) d$tmpNEGFLAG <- ifelse(d[mct$ACTTIME] < 0, 1, 0) d %>% dplyr::mutate(tmpNEGFLAG = ifelse(d[mct$ACTTIME] < 0, 1, 0)) %>% dplyr::group_by(SDEID) %>% dplyr::count(tmpNEGFLAG) %>% dplyr::filter(tmpNEGFLAG == 1) %>% dplyr::pull(n) %>% unique() #> [1] 1 # every profile has 1 negative value # What is the negative value? d[d[mct$ACTTIME] < 0, c("PKATPDnew")] #> [1] -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 #> [40] -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 # What profiles are generating output despite having a negative time? (table below) knitr::kable(r[!is.na(r$CMAX), c(grep("SDEID", names(r)), grep("MAX", names(r)), grep("^CON.+\\d+$", names(r)))]) # Was this ID mentioned in warnings? capture.output(warnings()) %>% stringr::str_detect("2848066001") %>% any() #> [1] FALSE ``` | | SDEID|UDSDEID | CMAX| CMAX1| CMAX2| CMAXDN| CMAXDN1| CMAXDN2| TMAX| TMAX1| TMAX2| FLGACCEPTTMAX| CONC1| CONC2| CONC3| CONC4| CONC5| CONC6| CONC7| CONC8| CONC9| CONC10| CONC11| CONC12| CONC13| CONC14| CONC15| CONC16| CONC17| CONCTIME1| CONCTIME2| CONCTIME3| CONCTIME4| CONCTIME5| CONCTIME6| CONCTIME7| CONCTIME8| CONCTIME9| CONCTIME10| CONCTIME11| CONCTIME12| CONCTIME13| CONCTIME14| CONCTIME15| CONCTIME16| CONCTIME17| |:--|----------:|:-------|-----:|-----:|-----:|------:|-------:|-------:|----:|-----:|-----:|-------------:|-----:|-----:|-----:|-----:|-----:|-----:|-----:|-----:|-----:|------:|------:|------:|------:|------:|------:|------:|------:|---------:|---------:|---------:|---------:|---------:|---------:|---------:|---------:|---------:|----------:|----------:|----------:|----------:|----------:|----------:|----------:|----------:| |32 | 2848066001|NA | 31000| 31000| 6980| 310| 310| 69.8| 1.5| 1.5| 13| 1| 0| 10600| 25500| 31000| 20200| 12600| 13100| 6980| 1560| 133| 14.5| 0| 0| 0| 0| 0| NA| 0| 0.5| 1.016667| 1.5| 2.5| 6| 9| 13| 24.91667| 48.91667| 72.91667| 96.91667| 120.9167| 168.9167| 337| 505| NA|
1.0
2020-09-01 tc1580 M3SS inconsistent output for SDEID profiles that contain negative times - This issue is in regards to scope item 3.16 ### Issue tc1580 contains a single negative time in each profile, with desired behaviour being NA output for all profiles. This behaviour is inconsistent, with some profiles having non-NA values provided in the output for an unknown reason. One profile shows up with this behaviour when running this locally. The automated report .htmls shows up with 4 SDEID profiles being affected. These SDEID profiles are not mentioned in the warnings like other profiles with this warning: `No parameters generated due to negative TIME values for SDEID: '3970555705'` ```r # Check number of negative values per profile (and then see how many unique quantities there are) d$tmpNEGFLAG <- ifelse(d[mct$ACTTIME] < 0, 1, 0) d %>% dplyr::mutate(tmpNEGFLAG = ifelse(d[mct$ACTTIME] < 0, 1, 0)) %>% dplyr::group_by(SDEID) %>% dplyr::count(tmpNEGFLAG) %>% dplyr::filter(tmpNEGFLAG == 1) %>% dplyr::pull(n) %>% unique() #> [1] 1 # every profile has 1 negative value # What is the negative value? d[d[mct$ACTTIME] < 0, c("PKATPDnew")] #> [1] -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 #> [40] -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 -3 # What profiles are generating output despite having a negative time? (table below) knitr::kable(r[!is.na(r$CMAX), c(grep("SDEID", names(r)), grep("MAX", names(r)), grep("^CON.+\\d+$", names(r)))]) # Was this ID mentioned in warnings? capture.output(warnings()) %>% stringr::str_detect("2848066001") %>% any() #> [1] FALSE ``` | | SDEID|UDSDEID | CMAX| CMAX1| CMAX2| CMAXDN| CMAXDN1| CMAXDN2| TMAX| TMAX1| TMAX2| FLGACCEPTTMAX| CONC1| CONC2| CONC3| CONC4| CONC5| CONC6| CONC7| CONC8| CONC9| CONC10| CONC11| CONC12| CONC13| CONC14| CONC15| CONC16| CONC17| CONCTIME1| CONCTIME2| CONCTIME3| CONCTIME4| CONCTIME5| CONCTIME6| CONCTIME7| CONCTIME8| CONCTIME9| CONCTIME10| CONCTIME11| CONCTIME12| CONCTIME13| CONCTIME14| CONCTIME15| CONCTIME16| CONCTIME17| |:--|----------:|:-------|-----:|-----:|-----:|------:|-------:|-------:|----:|-----:|-----:|-------------:|-----:|-----:|-----:|-----:|-----:|-----:|-----:|-----:|-----:|------:|------:|------:|------:|------:|------:|------:|------:|---------:|---------:|---------:|---------:|---------:|---------:|---------:|---------:|---------:|----------:|----------:|----------:|----------:|----------:|----------:|----------:|----------:| |32 | 2848066001|NA | 31000| 31000| 6980| 310| 310| 69.8| 1.5| 1.5| 13| 1| 0| 10600| 25500| 31000| 20200| 12600| 13100| 6980| 1560| 133| 14.5| 0| 0| 0| 0| 0| NA| 0| 0.5| 1.016667| 1.5| 2.5| 6| 9| 13| 24.91667| 48.91667| 72.91667| 96.91667| 120.9167| 168.9167| 337| 505| NA|
defect
inconsistent output for sdeid profiles that contain negative times this issue is in regards to scope item issue contains a single negative time in each profile with desired behaviour being na output for all profiles this behaviour is inconsistent with some profiles having non na values provided in the output for an unknown reason one profile shows up with this behaviour when running this locally the automated report htmls shows up with sdeid profiles being affected these sdeid profiles are not mentioned in the warnings like other profiles with this warning no parameters generated due to negative time values for sdeid r check number of negative values per profile and then see how many unique quantities there are d tmpnegflag ifelse d d dplyr mutate tmpnegflag ifelse d dplyr group by sdeid dplyr count tmpnegflag dplyr filter tmpnegflag dplyr pull n unique every profile has negative value what is the negative value d c pkatpdnew what profiles are generating output despite having a negative time table below knitr kable r was this id mentioned in warnings capture output warnings stringr str detect any false sdeid udsdeid cmax cmaxdn tmax flgaccepttmax na na na
1
5,080
2,610,180,675
IssuesEvent
2015-02-26 18:57:45
chrsmith/quchuseban
https://api.github.com/repos/chrsmith/quchuseban
opened
推荐去除色斑最有效的方法
auto-migrated Priority-Medium Type-Defect
``` 《摘要》 四季的轮回,变换着多样缤纷的色彩。当黄,静静的铺满山坡。一丝怅然恐慌成无法言说的失落。凝不住经年的妩媚,留不下往昔的绚烂。在季节的深处,九月的风微凉着心事。一场寒雨在风中呜咽叹息,轻敲轩窗,碎断人肠。没有了昨日纤雨湿花的雅致,忘却了曾经柳絮扑帘的悠然。绮梦悠悠伤情绵绵,一任愁绪在风中雨里飘摇成伤,恍若,枝头颤动的叶子,没了昨日张扬的碧绿,沉淀了一个春夏的水嫩在风中瞬间走失,只留下一袭苍白,挣扎在季节的末梢。嘴角溢出的笑,潋滟了一湖的秋水。如果出去嘴角的色斑,我想这个微笑会更美.去除色斑最有效的方法, 《客户案例》   我是属于混合偏干偏白的皮肤,脸上长有很多黄褐斑和�� �斑。由于皮肤比较白,所以脸上的斑看起来特明显,我都不� ��照镜子,害怕面对满脸有斑的自己。哪个女人不虚荣,不希 望有人爱有人关注呢,所以我下了狠心,一定要去除斑点。 祛斑的过程是艰辛曲折的,刚开始去美容院做美容,本来是�� �单的洗脸护理,后来在美容师的建议下,用了美容院的美白� ��斑产品,定期去做美容,又用了她们的祛斑霜,刚开始感觉 皮肤变白了好多,可是用过段时间后,不去美容院后,脸上�� �斑就又出来了。因为偶尔晒了太阳,脸上还会非常红,以前� ��来没有过,后来才知道,这种祛斑产品是有依赖的,停用后 反弹很快,还不能晒着太阳。</br>   说起来也算是一个偶然吧,我在网上搜索祛斑的产的时�� �,看见了网友的分享帖子如何去黄褐斑?,仔细看了一下,她 的经历和我比较相似,因此,就着重的看了一下,没想到就�� �到了她使用的祛斑的产品黛芙薇尔,她脸上的斑点就用了30�� �的时间就开始淡化,总共用了三个多月的时间脸上长了多年� ��斑就全部没了,脸上的皮肤也变得光滑细腻,我看了这样的 祛斑的产品,心动不已,更何况是网友自己的经历,就这样�� �我买了之后就开始使用了。</br>   使用了这一个周期的黛芙薇尔,色斑就出现淡化的趋势�� �我满心欢喜又订购了两个周期,就这样色斑彻底从我的生活� ��消失了。别看我说的轻松,其实在祛斑的过程我也有过怀疑 ,害怕出现和以前一样的结局。可是黛芙薇尔给了我惊喜,�� �我在祛斑的道路上终于修成正果。如果你还在为色斑苦恼的� ��,希望你可以跟我一样找到祛斑的良方。 阅读了去除色斑最有效的方法,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》   1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐�� �去掉吗?   答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新�� �客都是通过老顾客介绍而来,口碑由此而来!   2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技�� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!   3,去除黄褐斑之后,会反弹吗?   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌!我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗?   4,你们的价格有点贵,能不能便宜一点?   答:如果您使用西药最少需要2000元,煎服的药最少需要3 000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗   5,我适合用黛芙薇尔精华液吗?   答:黛芙薇尔适用人群:   1、生理紊乱引起的黄褐斑人群   2、生育引起的妊娠斑人群   3、年纪增长引起的老年斑人群   4、化妆品色素沉积、辐射斑人群   5、长期日照引起的日晒斑人群   6、肌肤暗淡急需美白的人群 《祛斑小方法》 去除色斑最有效的方法,同时为您分享祛斑小方法 1、避免日晒;停用避孕药或镇静类药。 2、不可滥用化妆品,尤其是劣质化妆品。 ``` ----- Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 2:20
1.0
推荐去除色斑最有效的方法 - ``` 《摘要》 四季的轮回,变换着多样缤纷的色彩。当黄,静静的铺满山坡。一丝怅然恐慌成无法言说的失落。凝不住经年的妩媚,留不下往昔的绚烂。在季节的深处,九月的风微凉着心事。一场寒雨在风中呜咽叹息,轻敲轩窗,碎断人肠。没有了昨日纤雨湿花的雅致,忘却了曾经柳絮扑帘的悠然。绮梦悠悠伤情绵绵,一任愁绪在风中雨里飘摇成伤,恍若,枝头颤动的叶子,没了昨日张扬的碧绿,沉淀了一个春夏的水嫩在风中瞬间走失,只留下一袭苍白,挣扎在季节的末梢。嘴角溢出的笑,潋滟了一湖的秋水。如果出去嘴角的色斑,我想这个微笑会更美.去除色斑最有效的方法, 《客户案例》   我是属于混合偏干偏白的皮肤,脸上长有很多黄褐斑和�� �斑。由于皮肤比较白,所以脸上的斑看起来特明显,我都不� ��照镜子,害怕面对满脸有斑的自己。哪个女人不虚荣,不希 望有人爱有人关注呢,所以我下了狠心,一定要去除斑点。 祛斑的过程是艰辛曲折的,刚开始去美容院做美容,本来是�� �单的洗脸护理,后来在美容师的建议下,用了美容院的美白� ��斑产品,定期去做美容,又用了她们的祛斑霜,刚开始感觉 皮肤变白了好多,可是用过段时间后,不去美容院后,脸上�� �斑就又出来了。因为偶尔晒了太阳,脸上还会非常红,以前� ��来没有过,后来才知道,这种祛斑产品是有依赖的,停用后 反弹很快,还不能晒着太阳。</br>   说起来也算是一个偶然吧,我在网上搜索祛斑的产的时�� �,看见了网友的分享帖子如何去黄褐斑?,仔细看了一下,她 的经历和我比较相似,因此,就着重的看了一下,没想到就�� �到了她使用的祛斑的产品黛芙薇尔,她脸上的斑点就用了30�� �的时间就开始淡化,总共用了三个多月的时间脸上长了多年� ��斑就全部没了,脸上的皮肤也变得光滑细腻,我看了这样的 祛斑的产品,心动不已,更何况是网友自己的经历,就这样�� �我买了之后就开始使用了。</br>   使用了这一个周期的黛芙薇尔,色斑就出现淡化的趋势�� �我满心欢喜又订购了两个周期,就这样色斑彻底从我的生活� ��消失了。别看我说的轻松,其实在祛斑的过程我也有过怀疑 ,害怕出现和以前一样的结局。可是黛芙薇尔给了我惊喜,�� �我在祛斑的道路上终于修成正果。如果你还在为色斑苦恼的� ��,希望你可以跟我一样找到祛斑的良方。 阅读了去除色斑最有效的方法,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》   1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐�� �去掉吗?   答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新�� �客都是通过老顾客介绍而来,口碑由此而来!   2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技�� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!   3,去除黄褐斑之后,会反弹吗?   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌!我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗?   4,你们的价格有点贵,能不能便宜一点?   答:如果您使用西药最少需要2000元,煎服的药最少需要3 000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗   5,我适合用黛芙薇尔精华液吗?   答:黛芙薇尔适用人群:   1、生理紊乱引起的黄褐斑人群   2、生育引起的妊娠斑人群   3、年纪增长引起的老年斑人群   4、化妆品色素沉积、辐射斑人群   5、长期日照引起的日晒斑人群   6、肌肤暗淡急需美白的人群 《祛斑小方法》 去除色斑最有效的方法,同时为您分享祛斑小方法 1、避免日晒;停用避孕药或镇静类药。 2、不可滥用化妆品,尤其是劣质化妆品。 ``` ----- Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 2:20
defect
推荐去除色斑最有效的方法 《摘要》 四季的轮回,变换着多样缤纷的色彩。当黄,静静的铺满山坡。一丝怅然恐慌成无法言说的失落。凝不住经年的妩媚,留不下往昔的绚烂。在季节的深处,九月的风微凉着心事。一场寒雨在风中呜咽叹息,轻敲轩窗,碎断人肠。没有了昨日纤雨湿花的雅致,忘却了曾经柳絮扑帘的悠然。绮梦悠悠伤情绵绵,一任愁绪在风中雨里飘摇成伤,恍若,枝头颤动的叶子,没了昨日张扬的碧绿,沉淀了一个春夏的水嫩在风中瞬间走失,只留下一袭苍白,挣扎在季节的末梢。嘴角溢出的笑,潋滟了一湖的秋水。如果出去嘴角的色斑,我想这个微笑会更美 去除色斑最有效的方法, 《客户案例》   我是属于混合偏干偏白的皮肤,脸上长有很多黄褐斑和�� �斑。由于皮肤比较白,所以脸上的斑看起来特明显,我都不� ��照镜子,害怕面对满脸有斑的自己。哪个女人不虚荣,不希 望有人爱有人关注呢,所以我下了狠心,一定要去除斑点。 祛斑的过程是艰辛曲折的,刚开始去美容院做美容,本来是�� �单的洗脸护理,后来在美容师的建议下,用了美容院的美白� ��斑产品,定期去做美容,又用了她们的祛斑霜,刚开始感觉 皮肤变白了好多,可是用过段时间后,不去美容院后,脸上�� �斑就又出来了。因为偶尔晒了太阳,脸上还会非常红,以前� ��来没有过,后来才知道,这种祛斑产品是有依赖的,停用后 反弹很快,还不能晒着太阳。   说起来也算是一个偶然吧,我在网上搜索祛斑的产的时�� �,看见了网友的分享帖子如何去黄褐斑 ,仔细看了一下,她 的经历和我比较相似,因此,就着重的看了一下,没想到就�� �到了她使用的祛斑的产品黛芙薇尔, �� �的时间就开始淡化,总共用了三个多月的时间脸上长了多年� ��斑就全部没了,脸上的皮肤也变得光滑细腻,我看了这样的 祛斑的产品,心动不已,更何况是网友自己的经历,就这样�� �我买了之后就开始使用了。   使用了这一个周期的黛芙薇尔,色斑就出现淡化的趋势�� �我满心欢喜又订购了两个周期,就这样色斑彻底从我的生活� ��消失了。别看我说的轻松,其实在祛斑的过程我也有过怀疑 ,害怕出现和以前一样的结局。可是黛芙薇尔给了我惊喜,�� �我在祛斑的道路上终于修成正果。如果你还在为色斑苦恼的� ��,希望你可以跟我一样找到祛斑的良方。 阅读了去除色斑最有效的方法,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加, — 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》    黛芙薇尔精华液真的有效果吗 真的可以把脸上的黄褐�� �去掉吗   答:黛芙薇尔精华液dna精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客, 的新�� �客都是通过老顾客介绍而来,口碑由此而来    ,服用黛芙薇尔美白,会伤身体吗 有副作用吗   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“dna美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作, �� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖    ,去除黄褐斑之后,会反弹吗   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌 我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗    ,你们的价格有点贵,能不能便宜一点   答: , , ,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助 一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗 你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗    ,我适合用黛芙薇尔精华液吗   答:黛芙薇尔适用人群:    、生理紊乱引起的黄褐斑人群    、生育引起的妊娠斑人群    、年纪增长引起的老年斑人群    、化妆品色素沉积、辐射斑人群    、长期日照引起的日晒斑人群    、肌肤暗淡急需美白的人群 《祛斑小方法》 去除色斑最有效的方法,同时为您分享祛斑小方法 、避免日晒;停用避孕药或镇静类药。 、不可滥用化妆品,尤其是劣质化妆品。 original issue reported on code google com by additive gmail com on jul at
1
14,986
2,834,402,613
IssuesEvent
2015-05-26 04:13:17
ibus/ibus
https://api.github.com/repos/ibus/ibus
closed
更新拼音输入法后出现错误 IndexError: pop from empty list
Component-ibus Priority-Medium Type-Defect
``` What version of the product are you using? On what operating system? OS (Linux distributions, UNIX or ...): ubuntu 10.04 IBus version: 1.3.7 Input method name and version: ibus-pinyin 1.3.10 从软件源 ppa.launchpad.net/shawn-p-huang/ppa/ubuntu 更新后,运行ibus-setup出现错误输出: Traceback (most recent call last): File "/usr/share/ibus/setup/main.py", line 462, in <module> setup = Setup() File "/usr/share/ibus/setup/main.py", line 80, in __init__ self.__init_ui() File "/usr/share/ibus/setup/main.py", line 197, in __init_ui self.__engines = self.__bus.list_engines() File "/usr/lib/pymodules/python2.6/ibus/bus.py", line 133, in list_engines return map(serializable.deserialize_object, engines) File "/usr/lib/pymodules/python2.6/ibus/serializable.py", line 54, in deserialize_object o.deserialize (struct) File "/usr/lib/pymodules/python2.6/ibus/enginedesc.py", line 112, in deserialize self.__rank = struct.pop(0) IndexError: pop from empty list 删除ibus-pinyin软件包后,ibus-setup可以打开设置窗口,同时发现输入法列表为空,添加输入法按钮不可用,但此时已经安装sunpinyin输入法。 尝试彻底删除ibus以及相关软件包后,再删除 .cache/ibus 和 /usr 目录下所有ibus旧文件,重新安装ibus,问题依旧(添加输入法按钮不可用)。再安装ibus-pinyin,错误输出和先前相同。 ``` Original issue reported on code.google.com by `Sukest` on 2010-08-08 08:48:48
1.0
更新拼音输入法后出现错误 IndexError: pop from empty list - ``` What version of the product are you using? On what operating system? OS (Linux distributions, UNIX or ...): ubuntu 10.04 IBus version: 1.3.7 Input method name and version: ibus-pinyin 1.3.10 从软件源 ppa.launchpad.net/shawn-p-huang/ppa/ubuntu 更新后,运行ibus-setup出现错误输出: Traceback (most recent call last): File "/usr/share/ibus/setup/main.py", line 462, in <module> setup = Setup() File "/usr/share/ibus/setup/main.py", line 80, in __init__ self.__init_ui() File "/usr/share/ibus/setup/main.py", line 197, in __init_ui self.__engines = self.__bus.list_engines() File "/usr/lib/pymodules/python2.6/ibus/bus.py", line 133, in list_engines return map(serializable.deserialize_object, engines) File "/usr/lib/pymodules/python2.6/ibus/serializable.py", line 54, in deserialize_object o.deserialize (struct) File "/usr/lib/pymodules/python2.6/ibus/enginedesc.py", line 112, in deserialize self.__rank = struct.pop(0) IndexError: pop from empty list 删除ibus-pinyin软件包后,ibus-setup可以打开设置窗口,同时发现输入法列表为空,添加输入法按钮不可用,但此时已经安装sunpinyin输入法。 尝试彻底删除ibus以及相关软件包后,再删除 .cache/ibus 和 /usr 目录下所有ibus旧文件,重新安装ibus,问题依旧(添加输入法按钮不可用)。再安装ibus-pinyin,错误输出和先前相同。 ``` Original issue reported on code.google.com by `Sukest` on 2010-08-08 08:48:48
defect
更新拼音输入法后出现错误 indexerror pop from empty list what version of the product are you using on what operating system os linux distributions unix or ubuntu ibus version input method name and version ibus pinyin 从软件源 ppa launchpad net shawn p huang ppa ubuntu 更新后,运行ibus setup出现错误输出: traceback most recent call last file usr share ibus setup main py line in setup setup file usr share ibus setup main py line in init self init ui file usr share ibus setup main py line in init ui self engines self bus list engines file usr lib pymodules ibus bus py line in list engines return map serializable deserialize object engines file usr lib pymodules ibus serializable py line in deserialize object o deserialize struct file usr lib pymodules ibus enginedesc py line in deserialize self rank struct pop indexerror pop from empty list 删除ibus pinyin软件包后,ibus setup可以打开设置窗口,同时发现输入法列表为空,添加输入法按钮不可用,但此时已经安装sunpinyin输入法。 尝试彻底删除ibus以及相关软件包后,再删除 cache ibus 和 usr 目录下所有ibus旧文件,重新安装ibus,问题依旧(添加输入法按钮不可用)。再安装ibus pinyin,错误输出和先前相同。 original issue reported on code google com by sukest on
1
70,530
23,221,064,260
IssuesEvent
2022-08-02 18:15:39
NREL/EnergyPlus
https://api.github.com/repos/NREL/EnergyPlus
closed
Confusing ERR log when no weather file provided
Defect
Issue overview -------------- If you run EnergyPlus without a weather file, you can get output like this in the err file: ``` Program Version,EnergyPlus, Version 9.6.0-f420c06a69, YMD=2021.10.28 13:21, ** Warning ** Timestep: Requested number (1) is less than the suggested minimum of 4. ** ~~~ ** Please see entry for Timestep in Input/Output Reference for discussion of considerations. ** Warning ** CheckEnvironmentSpecifications: SimulationControl specified doing weather simulations; run periods for weather file specified; but no weather file specified. ** Warning ** Weather Environment(s) requested, but no weather file found ** Warning ** Output:Meter: invalid Key Name="ELECTRICITY:FACILITY" - not found. ** Warning ** Output:Meter: invalid Key Name="NATURALGAS:FACILITY" - not found. ************* Testing Individual Branch Integrity ************* All Branches passed integrity testing ************* Testing Individual Supply Air Path Integrity ** Severe ** AirLoopHVAC:ZoneSplitter="CENTRAL AC AND FURNACE ZONE SPLITTER", not found on any AirLoopHVAC:SupplyPath. ************* All Supply Air Paths passed integrity testing ************* Testing Individual Return Air Path Integrity ** Severe ** For AirLoopHVAC:ReturnPlenum = AIR LOOP HVAC RETURN PLENUM 1, Zone Name = CENTRAL AC AND FURNACE AIRLOOP RET AIR ZONE not found. ** Fatal ** GetZonePlenumInput: Errors found in input. Preceding condition(s) cause termination. ...Summary of Errors that led to program termination: ..... Reference severe error count=2 ..... Last severe error=For AirLoopHVAC:ReturnPlenum = AIR LOOP HVAC RETURN PLENUM 1, Zone Name = CENTRAL AC AND FURNACE AIRLOOP RET AIR ZONE not found. ************* Fatal error -- final processing. More error messages may appear. ************* Testing Individual Branch Integrity ************* All Branches passed integrity testing ************* Testing Individual Supply Air Path Integrity ** Severe ** AirLoopHVAC:ZoneSplitter="CENTRAL AC AND FURNACE ZONE SPLITTER", not found on any AirLoopHVAC:SupplyPath. ************* All Supply Air Paths passed integrity testing ************* Testing Individual Return Air Path Integrity ** Severe ** AirLoopHVAC:ReturnPlenum="AIR LOOP HVAC RETURN PLENUM 1", not found on any AirLoopHVAC:ReturnPath. ** Severe ** AirLoopHVAC:ZoneMixer="CENTRAL AC AND FURNACE ZONE MIXER", not found on any AirLoopHVAC:ReturnPath, AirTerminal:SingleDuct:SeriesPIU:Reheat, ** ~~~ ** AirTerminal:SingleDuct:ParallelPIU:Reheat or AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction. ************* All Return Air Paths passed integrity testing ** Severe ** Node Connection Error, Node="NODE 3", Inlet node did not find an appropriate matching "outlet" node. ** ~~~ ** If this is an outdoor air inlet node, it must be listed in an OutdoorAir:Node or OutdoorAir:NodeList object. ** ~~~ ** Reference Object=BRANCH, Name=CENTRAL AC AND FURNACE AIRLOOP MAIN BRANCH ** Severe ** Node Connection Error, Node="NODE 10", Inlet node did not find an appropriate matching "outlet" node. ** ~~~ ** If this is an outdoor air inlet node, it must be listed in an OutdoorAir:Node or OutdoorAir:NodeList object. ** ~~~ ** Reference Object=BRANCH, Name=DHW LOOP SUPPLY INLET BRANCH <many additional severe errors truncated> ``` While the root cause of the error message is available (` ** Warning ** Weather Environment(s) requested, but no weather file found`), it can be hidden amongst many other warning messages and the user assumes that the severe errors (node connections, zone names, etc. in this case) are the cause of the issue. This results in wasted time looking at false positives. Note that when the weather file is properly provided, there are no severe errors, so it's especially confusing why a missing weather file causes these severe errors. **Proposal**: Change the warning above to a severe error, such that the simulation terminates at this point with no other severe errors reported. IDF/ERR files: [in.idf.txt](https://github.com/NREL/EnergyPlus/files/7436853/in.idf.txt) [eplusout.err.txt](https://github.com/NREL/EnergyPlus/files/7436855/eplusout.err.txt) ### Details Some additional details for this issue (if relevant): - Ubuntu 20.04 - EnergyPlus v9.6 ### Checklist Add to this list or remove from it as applicable. This is a simple templated set of guidelines. - [x] Defect file added (list location of defect file here) - [x] Ticket added to Pivotal for defect (development team task) - [ ] Pull request created (the pull request will have additional tasks related to reviewing changes that fix this defect)
1.0
Confusing ERR log when no weather file provided - Issue overview -------------- If you run EnergyPlus without a weather file, you can get output like this in the err file: ``` Program Version,EnergyPlus, Version 9.6.0-f420c06a69, YMD=2021.10.28 13:21, ** Warning ** Timestep: Requested number (1) is less than the suggested minimum of 4. ** ~~~ ** Please see entry for Timestep in Input/Output Reference for discussion of considerations. ** Warning ** CheckEnvironmentSpecifications: SimulationControl specified doing weather simulations; run periods for weather file specified; but no weather file specified. ** Warning ** Weather Environment(s) requested, but no weather file found ** Warning ** Output:Meter: invalid Key Name="ELECTRICITY:FACILITY" - not found. ** Warning ** Output:Meter: invalid Key Name="NATURALGAS:FACILITY" - not found. ************* Testing Individual Branch Integrity ************* All Branches passed integrity testing ************* Testing Individual Supply Air Path Integrity ** Severe ** AirLoopHVAC:ZoneSplitter="CENTRAL AC AND FURNACE ZONE SPLITTER", not found on any AirLoopHVAC:SupplyPath. ************* All Supply Air Paths passed integrity testing ************* Testing Individual Return Air Path Integrity ** Severe ** For AirLoopHVAC:ReturnPlenum = AIR LOOP HVAC RETURN PLENUM 1, Zone Name = CENTRAL AC AND FURNACE AIRLOOP RET AIR ZONE not found. ** Fatal ** GetZonePlenumInput: Errors found in input. Preceding condition(s) cause termination. ...Summary of Errors that led to program termination: ..... Reference severe error count=2 ..... Last severe error=For AirLoopHVAC:ReturnPlenum = AIR LOOP HVAC RETURN PLENUM 1, Zone Name = CENTRAL AC AND FURNACE AIRLOOP RET AIR ZONE not found. ************* Fatal error -- final processing. More error messages may appear. ************* Testing Individual Branch Integrity ************* All Branches passed integrity testing ************* Testing Individual Supply Air Path Integrity ** Severe ** AirLoopHVAC:ZoneSplitter="CENTRAL AC AND FURNACE ZONE SPLITTER", not found on any AirLoopHVAC:SupplyPath. ************* All Supply Air Paths passed integrity testing ************* Testing Individual Return Air Path Integrity ** Severe ** AirLoopHVAC:ReturnPlenum="AIR LOOP HVAC RETURN PLENUM 1", not found on any AirLoopHVAC:ReturnPath. ** Severe ** AirLoopHVAC:ZoneMixer="CENTRAL AC AND FURNACE ZONE MIXER", not found on any AirLoopHVAC:ReturnPath, AirTerminal:SingleDuct:SeriesPIU:Reheat, ** ~~~ ** AirTerminal:SingleDuct:ParallelPIU:Reheat or AirTerminal:SingleDuct:ConstantVolume:FourPipeInduction. ************* All Return Air Paths passed integrity testing ** Severe ** Node Connection Error, Node="NODE 3", Inlet node did not find an appropriate matching "outlet" node. ** ~~~ ** If this is an outdoor air inlet node, it must be listed in an OutdoorAir:Node or OutdoorAir:NodeList object. ** ~~~ ** Reference Object=BRANCH, Name=CENTRAL AC AND FURNACE AIRLOOP MAIN BRANCH ** Severe ** Node Connection Error, Node="NODE 10", Inlet node did not find an appropriate matching "outlet" node. ** ~~~ ** If this is an outdoor air inlet node, it must be listed in an OutdoorAir:Node or OutdoorAir:NodeList object. ** ~~~ ** Reference Object=BRANCH, Name=DHW LOOP SUPPLY INLET BRANCH <many additional severe errors truncated> ``` While the root cause of the error message is available (` ** Warning ** Weather Environment(s) requested, but no weather file found`), it can be hidden amongst many other warning messages and the user assumes that the severe errors (node connections, zone names, etc. in this case) are the cause of the issue. This results in wasted time looking at false positives. Note that when the weather file is properly provided, there are no severe errors, so it's especially confusing why a missing weather file causes these severe errors. **Proposal**: Change the warning above to a severe error, such that the simulation terminates at this point with no other severe errors reported. IDF/ERR files: [in.idf.txt](https://github.com/NREL/EnergyPlus/files/7436853/in.idf.txt) [eplusout.err.txt](https://github.com/NREL/EnergyPlus/files/7436855/eplusout.err.txt) ### Details Some additional details for this issue (if relevant): - Ubuntu 20.04 - EnergyPlus v9.6 ### Checklist Add to this list or remove from it as applicable. This is a simple templated set of guidelines. - [x] Defect file added (list location of defect file here) - [x] Ticket added to Pivotal for defect (development team task) - [ ] Pull request created (the pull request will have additional tasks related to reviewing changes that fix this defect)
defect
confusing err log when no weather file provided issue overview if you run energyplus without a weather file you can get output like this in the err file program version energyplus version ymd warning timestep requested number is less than the suggested minimum of please see entry for timestep in input output reference for discussion of considerations warning checkenvironmentspecifications simulationcontrol specified doing weather simulations run periods for weather file specified but no weather file specified warning weather environment s requested but no weather file found warning output meter invalid key name electricity facility not found warning output meter invalid key name naturalgas facility not found testing individual branch integrity all branches passed integrity testing testing individual supply air path integrity severe airloophvac zonesplitter central ac and furnace zone splitter not found on any airloophvac supplypath all supply air paths passed integrity testing testing individual return air path integrity severe for airloophvac returnplenum air loop hvac return plenum zone name central ac and furnace airloop ret air zone not found fatal getzoneplenuminput errors found in input preceding condition s cause termination summary of errors that led to program termination reference severe error count last severe error for airloophvac returnplenum air loop hvac return plenum zone name central ac and furnace airloop ret air zone not found fatal error final processing more error messages may appear testing individual branch integrity all branches passed integrity testing testing individual supply air path integrity severe airloophvac zonesplitter central ac and furnace zone splitter not found on any airloophvac supplypath all supply air paths passed integrity testing testing individual return air path integrity severe airloophvac returnplenum air loop hvac return plenum not found on any airloophvac returnpath severe airloophvac zonemixer central ac and furnace zone mixer not found on any airloophvac returnpath airterminal singleduct seriespiu reheat airterminal singleduct parallelpiu reheat or airterminal singleduct constantvolume fourpipeinduction all return air paths passed integrity testing severe node connection error node node inlet node did not find an appropriate matching outlet node if this is an outdoor air inlet node it must be listed in an outdoorair node or outdoorair nodelist object reference object branch name central ac and furnace airloop main branch severe node connection error node node inlet node did not find an appropriate matching outlet node if this is an outdoor air inlet node it must be listed in an outdoorair node or outdoorair nodelist object reference object branch name dhw loop supply inlet branch while the root cause of the error message is available warning weather environment s requested but no weather file found it can be hidden amongst many other warning messages and the user assumes that the severe errors node connections zone names etc in this case are the cause of the issue this results in wasted time looking at false positives note that when the weather file is properly provided there are no severe errors so it s especially confusing why a missing weather file causes these severe errors proposal change the warning above to a severe error such that the simulation terminates at this point with no other severe errors reported idf err files details some additional details for this issue if relevant ubuntu energyplus checklist add to this list or remove from it as applicable this is a simple templated set of guidelines defect file added list location of defect file here ticket added to pivotal for defect development team task pull request created the pull request will have additional tasks related to reviewing changes that fix this defect
1
67,968
21,365,676,195
IssuesEvent
2022-04-20 01:08:48
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
Verifying with QR code says I've verified the *scanning* device and not the *new* device
T-Defect
### Steps to reproduce 1. Log in to your account on web/desktop 2. Dismiss the notification on Element Android because your sync will take forever (not sure if relevant, but this is what I did) 3. After web syncs, use "Verify with another device" 4. Grab your Element Android (or any mobile device?) and accept the gray banner for verification 5. Do QR code scanning, using Android as the scanning device 6. Verified successfully: Android says the new session is verified, but web says the Android device is verified ### Outcome #### What did you expect? For the dialog to say "this device is verified" or "new device is verified", not mention the Element Android device. #### What happened instead? ![image](https://user-images.githubusercontent.com/1190097/164126756-576a99bc-bb99-4f69-aa09-a9892eb60958.png) ### Operating system Windows 10 ### Application version Nightly (2022-04-19) ### How did you install the app? The Internet ### Homeserver t2l.io ### Will you send logs? Yes
1.0
Verifying with QR code says I've verified the *scanning* device and not the *new* device - ### Steps to reproduce 1. Log in to your account on web/desktop 2. Dismiss the notification on Element Android because your sync will take forever (not sure if relevant, but this is what I did) 3. After web syncs, use "Verify with another device" 4. Grab your Element Android (or any mobile device?) and accept the gray banner for verification 5. Do QR code scanning, using Android as the scanning device 6. Verified successfully: Android says the new session is verified, but web says the Android device is verified ### Outcome #### What did you expect? For the dialog to say "this device is verified" or "new device is verified", not mention the Element Android device. #### What happened instead? ![image](https://user-images.githubusercontent.com/1190097/164126756-576a99bc-bb99-4f69-aa09-a9892eb60958.png) ### Operating system Windows 10 ### Application version Nightly (2022-04-19) ### How did you install the app? The Internet ### Homeserver t2l.io ### Will you send logs? Yes
defect
verifying with qr code says i ve verified the scanning device and not the new device steps to reproduce log in to your account on web desktop dismiss the notification on element android because your sync will take forever not sure if relevant but this is what i did after web syncs use verify with another device grab your element android or any mobile device and accept the gray banner for verification do qr code scanning using android as the scanning device verified successfully android says the new session is verified but web says the android device is verified outcome what did you expect for the dialog to say this device is verified or new device is verified not mention the element android device what happened instead operating system windows application version nightly how did you install the app the internet homeserver io will you send logs yes
1
59,883
14,494,603,054
IssuesEvent
2020-12-11 10:01:48
utopikkad/vue-modal
https://api.github.com/repos/utopikkad/vue-modal
opened
WS-2020-0208 (Medium) detected in highlight.js-9.18.1.tgz
security vulnerability
## WS-2020-0208 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>highlight.js-9.18.1.tgz</b></p></summary> <p>Syntax highlighting with language autodetection.</p> <p>Library home page: <a href="https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.1.tgz">https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.1.tgz</a></p> <p>Path to dependency file: vue-modal/package.json</p> <p>Path to vulnerable library: vue-modal/node_modules/highlight.js/package.json</p> <p> Dependency Hierarchy: - cli-service-4.2.3.tgz (Root Library) - cli-highlight-2.1.4.tgz - :x: **highlight.js-9.18.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/utopikkad/vue-modal/commit/5eb5ffcb75ef1da16789281c0ee5e760c0812e64">5eb5ffcb75ef1da16789281c0ee5e760c0812e64</a></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> If are you are using Highlight.js to highlight user-provided data you are possibly vulnerable. On the client-side (in a browser or Electron environment) risks could include lengthy freezes or crashes... On the server-side infinite freezes could occur... effectively preventing users from accessing your app or service (ie, Denial of Service). This is an issue with grammars shipped with the parser (and potentially 3rd party grammars also), not the parser itself. If you are using Highlight.js with any of the following grammars you are vulnerable. If you are using highlightAuto to detect the language (and have any of these grammars registered) you are vulnerable. <p>Publish Date: 2020-12-04 <p>URL: <a href=https://github.com/highlightjs/highlight.js/commit/373b9d862401162e832ce77305e49b859e110f9c>WS-2020-0208</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.3</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: Low - Integrity Impact: None - Availability Impact: None </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/highlightjs/highlight.js/tree/10.4.1">https://github.com/highlightjs/highlight.js/tree/10.4.1</a></p> <p>Release Date: 2020-12-04</p> <p>Fix Resolution: 10.4.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
WS-2020-0208 (Medium) detected in highlight.js-9.18.1.tgz - ## WS-2020-0208 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>highlight.js-9.18.1.tgz</b></p></summary> <p>Syntax highlighting with language autodetection.</p> <p>Library home page: <a href="https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.1.tgz">https://registry.npmjs.org/highlight.js/-/highlight.js-9.18.1.tgz</a></p> <p>Path to dependency file: vue-modal/package.json</p> <p>Path to vulnerable library: vue-modal/node_modules/highlight.js/package.json</p> <p> Dependency Hierarchy: - cli-service-4.2.3.tgz (Root Library) - cli-highlight-2.1.4.tgz - :x: **highlight.js-9.18.1.tgz** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/utopikkad/vue-modal/commit/5eb5ffcb75ef1da16789281c0ee5e760c0812e64">5eb5ffcb75ef1da16789281c0ee5e760c0812e64</a></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> If are you are using Highlight.js to highlight user-provided data you are possibly vulnerable. On the client-side (in a browser or Electron environment) risks could include lengthy freezes or crashes... On the server-side infinite freezes could occur... effectively preventing users from accessing your app or service (ie, Denial of Service). This is an issue with grammars shipped with the parser (and potentially 3rd party grammars also), not the parser itself. If you are using Highlight.js with any of the following grammars you are vulnerable. If you are using highlightAuto to detect the language (and have any of these grammars registered) you are vulnerable. <p>Publish Date: 2020-12-04 <p>URL: <a href=https://github.com/highlightjs/highlight.js/commit/373b9d862401162e832ce77305e49b859e110f9c>WS-2020-0208</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.3</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: Low - Integrity Impact: None - Availability Impact: None </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/highlightjs/highlight.js/tree/10.4.1">https://github.com/highlightjs/highlight.js/tree/10.4.1</a></p> <p>Release Date: 2020-12-04</p> <p>Fix Resolution: 10.4.1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with WhiteSource [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
ws medium detected in highlight js tgz ws medium severity vulnerability vulnerable library highlight js tgz syntax highlighting with language autodetection library home page a href path to dependency file vue modal package json path to vulnerable library vue modal node modules highlight js package json dependency hierarchy cli service tgz root library cli highlight tgz x highlight js tgz vulnerable library found in head commit a href vulnerability details if are you are using highlight js to highlight user provided data you are possibly vulnerable on the client side in a browser or electron environment risks could include lengthy freezes or crashes on the server side infinite freezes could occur effectively preventing users from accessing your app or service ie denial of service this is an issue with grammars shipped with the parser and potentially party grammars also not the parser itself if you are using highlight js with any of the following grammars you are vulnerable if you are using highlightauto to detect the language and have any of these grammars registered you are vulnerable 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 low integrity impact none availability impact none 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
122,011
4,826,554,443
IssuesEvent
2016-11-07 10:33:06
enviPath/enviPath
https://api.github.com/repos/enviPath/enviPath
closed
Malformed UTF-8 character in JSON string on compounds
high priority
Malformed UTF-8 character in JSON string at: - https://envipath.org/package/3929925e-b71c-4c92-bc59-281a0b595cd2/compound/55a40171-5d5d-44e6-8bd1-0322fabb2c76 - https://envipath.org/package/3929925e-b71c-4c92-bc59-281a0b595cd2/compound/df936535-9854-4cfb-9c60-d6bd3637f4bb - https://envipath.org/package/3929925e-b71c-4c92-bc59-281a0b595cd2/compound/19a60c37-c47a-4f33-a37f-0c61cb6a5671 - https://envipath.org/package/3929925e-b71c-4c92-bc59-281a0b595cd2/compound/5a69680c-718e-400d-ba90-cce08e7e6f3f - https://envipath.org/package/3929925e-b71c-4c92-bc59-281a0b595cd2/compound/478c1208-6c05-417c-be3a-86dd72624379
1.0
Malformed UTF-8 character in JSON string on compounds - Malformed UTF-8 character in JSON string at: - https://envipath.org/package/3929925e-b71c-4c92-bc59-281a0b595cd2/compound/55a40171-5d5d-44e6-8bd1-0322fabb2c76 - https://envipath.org/package/3929925e-b71c-4c92-bc59-281a0b595cd2/compound/df936535-9854-4cfb-9c60-d6bd3637f4bb - https://envipath.org/package/3929925e-b71c-4c92-bc59-281a0b595cd2/compound/19a60c37-c47a-4f33-a37f-0c61cb6a5671 - https://envipath.org/package/3929925e-b71c-4c92-bc59-281a0b595cd2/compound/5a69680c-718e-400d-ba90-cce08e7e6f3f - https://envipath.org/package/3929925e-b71c-4c92-bc59-281a0b595cd2/compound/478c1208-6c05-417c-be3a-86dd72624379
non_defect
malformed utf character in json string on compounds malformed utf character in json string at
0
784,947
27,590,292,059
IssuesEvent
2023-03-08 23:32:19
Alluxio/alluxio
https://api.github.com/repos/Alluxio/alluxio
closed
Alluxio master failed to flush journal entry
priority-high type-bug needs-info area-ha
**Alluxio Version:** 2.8.0 **Describe the bug** Last month we found an alluxio cluster had a large number of requests failed and the master prints the following log ``` 2023-01-30 05:48:54,376 WARN AsyncJournalWriter - Failed to flush journal entry: Timed out after waiting 30000 milliseconds for journal entries to be processed java.io.IOException: Timed out after waiting 30000 milliseconds for journal entries to be processed at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:134) at alluxio.master.journal.AsyncJournalWriter.doFlush(AsyncJournalWriter.java:323) at java.base/java.lang.Thread.run(Thread.java:829) Caused by: java.util.concurrent.TimeoutException at java.base/java.util.concurrent.CompletableFuture.timedGet(CompletableFuture.java:1886) at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2021) at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:123) ... 2 more 2023-01-30 05:48:54,392 WARN AsyncJournalWriter - Failed to flush journal entry: Server coarserankfeaturefile-master-1_20022@group-ABB3109A44C1 is not the leader org.apache.ratis.protocol.exceptions.NotLeaderException: Server coarserankfeaturefile-master-1_20022@group-ABB3109A44C1 is not the leader at org.apache.ratis.server.impl.RaftServerImpl.generateNotLeaderException(RaftServerImpl.java:644) at org.apache.ratis.server.impl.RaftServerImpl.checkLeaderState(RaftServerImpl.java:609) at org.apache.ratis.server.impl.RaftServerImpl.submitClientRequestAsync(RaftServerImpl.java:737) at org.apache.ratis.server.impl.RaftServerProxy.lambda$submitClientRequestAsync$9(RaftServerProxy.java:417) at org.apache.ratis.server.impl.RaftServerProxy.lambda$null$7(RaftServerProxy.java:412) at org.apache.ratis.util.JavaUtils.callAsUnchecked(JavaUtils.java:115) at org.apache.ratis.server.impl.RaftServerProxy.lambda$submitRequest$8(RaftServerProxy.java:412) at java.base/java.util.concurrent.CompletableFuture.uniComposeStage(CompletableFuture.java:1106) at java.base/java.util.concurrent.CompletableFuture.thenCompose(CompletableFuture.java:2235) at org.apache.ratis.server.impl.RaftServerProxy.submitRequest(RaftServerProxy.java:411) at org.apache.ratis.server.impl.RaftServerProxy.submitClientRequestAsync(RaftServerProxy.java:417) at alluxio.master.journal.raft.RaftJournalAppender.sendLocalRequest(RaftJournalAppender.java:94) at alluxio.master.journal.raft.RaftJournalAppender.sendAsync(RaftJournalAppender.java:77) at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:122) at alluxio.master.journal.AsyncJournalWriter.doFlush(AsyncJournalWriter.java:323) at java.base/java.lang.Thread.run(Thread.java:829) ``` In order to solve this problem quickly, I restart all masters but useless. Finally I clear the meta directory on all masters and reload metadata from ufs, the cluster can reponse these requests as usual. During solve this problem, I only save the above log, so can’t provide more information **To Reproduce** This problem only happened once,I can't reproduce it **Expected behavior** A clear and concise description of what you expected to happen. **Urgency** Describe the impact and urgency of the bug. **Are you planning to fix it** Please indicate if you are already working on a PR. **Additional context** Add any other context about the problem here.
1.0
Alluxio master failed to flush journal entry - **Alluxio Version:** 2.8.0 **Describe the bug** Last month we found an alluxio cluster had a large number of requests failed and the master prints the following log ``` 2023-01-30 05:48:54,376 WARN AsyncJournalWriter - Failed to flush journal entry: Timed out after waiting 30000 milliseconds for journal entries to be processed java.io.IOException: Timed out after waiting 30000 milliseconds for journal entries to be processed at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:134) at alluxio.master.journal.AsyncJournalWriter.doFlush(AsyncJournalWriter.java:323) at java.base/java.lang.Thread.run(Thread.java:829) Caused by: java.util.concurrent.TimeoutException at java.base/java.util.concurrent.CompletableFuture.timedGet(CompletableFuture.java:1886) at java.base/java.util.concurrent.CompletableFuture.get(CompletableFuture.java:2021) at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:123) ... 2 more 2023-01-30 05:48:54,392 WARN AsyncJournalWriter - Failed to flush journal entry: Server coarserankfeaturefile-master-1_20022@group-ABB3109A44C1 is not the leader org.apache.ratis.protocol.exceptions.NotLeaderException: Server coarserankfeaturefile-master-1_20022@group-ABB3109A44C1 is not the leader at org.apache.ratis.server.impl.RaftServerImpl.generateNotLeaderException(RaftServerImpl.java:644) at org.apache.ratis.server.impl.RaftServerImpl.checkLeaderState(RaftServerImpl.java:609) at org.apache.ratis.server.impl.RaftServerImpl.submitClientRequestAsync(RaftServerImpl.java:737) at org.apache.ratis.server.impl.RaftServerProxy.lambda$submitClientRequestAsync$9(RaftServerProxy.java:417) at org.apache.ratis.server.impl.RaftServerProxy.lambda$null$7(RaftServerProxy.java:412) at org.apache.ratis.util.JavaUtils.callAsUnchecked(JavaUtils.java:115) at org.apache.ratis.server.impl.RaftServerProxy.lambda$submitRequest$8(RaftServerProxy.java:412) at java.base/java.util.concurrent.CompletableFuture.uniComposeStage(CompletableFuture.java:1106) at java.base/java.util.concurrent.CompletableFuture.thenCompose(CompletableFuture.java:2235) at org.apache.ratis.server.impl.RaftServerProxy.submitRequest(RaftServerProxy.java:411) at org.apache.ratis.server.impl.RaftServerProxy.submitClientRequestAsync(RaftServerProxy.java:417) at alluxio.master.journal.raft.RaftJournalAppender.sendLocalRequest(RaftJournalAppender.java:94) at alluxio.master.journal.raft.RaftJournalAppender.sendAsync(RaftJournalAppender.java:77) at alluxio.master.journal.raft.RaftJournalWriter.flush(RaftJournalWriter.java:122) at alluxio.master.journal.AsyncJournalWriter.doFlush(AsyncJournalWriter.java:323) at java.base/java.lang.Thread.run(Thread.java:829) ``` In order to solve this problem quickly, I restart all masters but useless. Finally I clear the meta directory on all masters and reload metadata from ufs, the cluster can reponse these requests as usual. During solve this problem, I only save the above log, so can’t provide more information **To Reproduce** This problem only happened once,I can't reproduce it **Expected behavior** A clear and concise description of what you expected to happen. **Urgency** Describe the impact and urgency of the bug. **Are you planning to fix it** Please indicate if you are already working on a PR. **Additional context** Add any other context about the problem here.
non_defect
alluxio master failed to flush journal entry alluxio version describe the bug last month we found an alluxio cluster had a large number of requests failed and the master prints the following log warn asyncjournalwriter failed to flush journal entry timed out after waiting milliseconds for journal entries to be processed java io ioexception timed out after waiting milliseconds for journal entries to be processed at alluxio master journal raft raftjournalwriter flush raftjournalwriter java at alluxio master journal asyncjournalwriter doflush asyncjournalwriter java at java base java lang thread run thread java caused by java util concurrent timeoutexception at java base java util concurrent completablefuture timedget completablefuture java at java base java util concurrent completablefuture get completablefuture java at alluxio master journal raft raftjournalwriter flush raftjournalwriter java more warn asyncjournalwriter failed to flush journal entry server coarserankfeaturefile master group is not the leader org apache ratis protocol exceptions notleaderexception server coarserankfeaturefile master group is not the leader at org apache ratis server impl raftserverimpl generatenotleaderexception raftserverimpl java at org apache ratis server impl raftserverimpl checkleaderstate raftserverimpl java at org apache ratis server impl raftserverimpl submitclientrequestasync raftserverimpl java at org apache ratis server impl raftserverproxy lambda submitclientrequestasync raftserverproxy java at org apache ratis server impl raftserverproxy lambda null raftserverproxy java at org apache ratis util javautils callasunchecked javautils java at org apache ratis server impl raftserverproxy lambda submitrequest raftserverproxy java at java base java util concurrent completablefuture unicomposestage completablefuture java at java base java util concurrent completablefuture thencompose completablefuture java at org apache ratis server impl raftserverproxy submitrequest raftserverproxy java at org apache ratis server impl raftserverproxy submitclientrequestasync raftserverproxy java at alluxio master journal raft raftjournalappender sendlocalrequest raftjournalappender java at alluxio master journal raft raftjournalappender sendasync raftjournalappender java at alluxio master journal raft raftjournalwriter flush raftjournalwriter java at alluxio master journal asyncjournalwriter doflush asyncjournalwriter java at java base java lang thread run thread java in order to solve this problem quickly i restart all masters but useless finally i clear the meta directory on all masters and reload metadata from ufs the cluster can reponse these requests as usual during solve this problem i only save the above log so can’t provide more information to reproduce this problem only happened once,i can t reproduce it expected behavior a clear and concise description of what you expected to happen urgency describe the impact and urgency of the bug are you planning to fix it please indicate if you are already working on a pr additional context add any other context about the problem here
0
16,985
2,964,848,594
IssuesEvent
2015-07-10 19:02:22
bridgedotnet/Bridge
https://api.github.com/repos/bridgedotnet/Bridge
opened
[TypeScript] Keyword constructor can be used in C#
defect
```C# using Bridge.Html5; namespace basicTypes { public class Keywords { public string constructor = "constructor"; [Ready] public static void Main() { var k = new Keywords(); Console.Log(k.constructor); } } } ``` Generated d.ts: ```JavaScript export interface Keywords { $constructor: string; } ``` Generated JavaScript: ```JavaScript Bridge.define('basicTypes.Keywords', { $constructor: "constructor" } ``` However a call of the code below returns `function base.define.prototype.$constructor()` instead of string value `"constructor"`: ```JavaScript (new basicTypes.Keywords()).$constructor ```
1.0
[TypeScript] Keyword constructor can be used in C# - ```C# using Bridge.Html5; namespace basicTypes { public class Keywords { public string constructor = "constructor"; [Ready] public static void Main() { var k = new Keywords(); Console.Log(k.constructor); } } } ``` Generated d.ts: ```JavaScript export interface Keywords { $constructor: string; } ``` Generated JavaScript: ```JavaScript Bridge.define('basicTypes.Keywords', { $constructor: "constructor" } ``` However a call of the code below returns `function base.define.prototype.$constructor()` instead of string value `"constructor"`: ```JavaScript (new basicTypes.Keywords()).$constructor ```
defect
keyword constructor can be used in c c using bridge namespace basictypes public class keywords public string constructor constructor public static void main var k new keywords console log k constructor generated d ts javascript export interface keywords constructor string generated javascript javascript bridge define basictypes keywords constructor constructor however a call of the code below returns function base define prototype constructor instead of string value constructor javascript new basictypes keywords constructor
1
121,587
25,997,093,571
IssuesEvent
2022-12-20 12:31:08
TritonVM/triton-vm
https://api.github.com/repos/TritonVM/triton-vm
closed
enforce RAM initializating to all zero
📜 specification 💫 good first issue 🟡 prio: medium 🤖 code 🖐 blocked
In our current design, we can't enforce that the RAM is initialized to all zeros. As discussed with @aszepieniec, the following changes are the least invasive way of achieving this stated goal. 1. Upon _encountering_ (as opposed to _executing_) either instruction `read_mem` or `write_mem`, the processor's registers `RAMP` and `RAMV` get updated. 2. In the RAM Table, whenever a new contiguous `RAMP` region starts, the `RAMV` is 0. This includes an initial constraint on `RAMV` being 0. I'm happy to provide assistance and more details to anyone considering tackling this issue. It's probably best to wait until #139 is done, _i.e._, #144 is merged.
1.0
enforce RAM initializating to all zero - In our current design, we can't enforce that the RAM is initialized to all zeros. As discussed with @aszepieniec, the following changes are the least invasive way of achieving this stated goal. 1. Upon _encountering_ (as opposed to _executing_) either instruction `read_mem` or `write_mem`, the processor's registers `RAMP` and `RAMV` get updated. 2. In the RAM Table, whenever a new contiguous `RAMP` region starts, the `RAMV` is 0. This includes an initial constraint on `RAMV` being 0. I'm happy to provide assistance and more details to anyone considering tackling this issue. It's probably best to wait until #139 is done, _i.e._, #144 is merged.
non_defect
enforce ram initializating to all zero in our current design we can t enforce that the ram is initialized to all zeros as discussed with aszepieniec the following changes are the least invasive way of achieving this stated goal upon encountering as opposed to executing either instruction read mem or write mem the processor s registers ramp and ramv get updated in the ram table whenever a new contiguous ramp region starts the ramv is this includes an initial constraint on ramv being i m happy to provide assistance and more details to anyone considering tackling this issue it s probably best to wait until is done i e is merged
0
20,433
3,355,888,065
IssuesEvent
2015-11-18 18:11:55
jarz/slimtune
https://api.github.com/repos/jarz/slimtune
closed
Feature Request - Collapse Filtered Methods
auto-migrated Priority-Medium Type-Defect
``` I like the graying out of the System/Microsoft methods in the dotTrace style visualizer, but it would be even better to collapse them. Ideally there would be some way to indicate whether there is a nonfiltered method in the subtree. It would be nice if all child nodes that don't contain nonfiltered methods would be grouped in a single node showing the aggregate data for % time spent. ``` Original issue reported on code.google.com by `kavanpro...@gmail.com` on 30 Jan 2010 at 11:25
1.0
Feature Request - Collapse Filtered Methods - ``` I like the graying out of the System/Microsoft methods in the dotTrace style visualizer, but it would be even better to collapse them. Ideally there would be some way to indicate whether there is a nonfiltered method in the subtree. It would be nice if all child nodes that don't contain nonfiltered methods would be grouped in a single node showing the aggregate data for % time spent. ``` Original issue reported on code.google.com by `kavanpro...@gmail.com` on 30 Jan 2010 at 11:25
defect
feature request collapse filtered methods i like the graying out of the system microsoft methods in the dottrace style visualizer but it would be even better to collapse them ideally there would be some way to indicate whether there is a nonfiltered method in the subtree it would be nice if all child nodes that don t contain nonfiltered methods would be grouped in a single node showing the aggregate data for time spent original issue reported on code google com by kavanpro gmail com on jan at
1
78,484
27,551,775,691
IssuesEvent
2023-03-07 15:22:22
SeleniumHQ/selenium
https://api.github.com/repos/SeleniumHQ/selenium
closed
[🐛 Bug]: Network Interception doesn't work in JavaScript properly, always giving back status 200!
C-nodejs I-defect
### What happened? I'm using Selenium with Javascript. async function mockResponseStatus(url: string){ const connection = await driver.createCDPConnection('page'); let httpResponse = new HttpResponse(url); httpResponse.addHeaders("Content-Type", "application/json") httpResponse.body = "test"; httpResponse.status = 404; httpResponse.returnStatus = 404; await driver.onIntercept(connection, httpResponse, async function () { }); } I'm trying to set up the interception but unfortunately it is always giving back status 200 - OK. I can set the body and headers but the status and method is always hardcoded. I've checked out the code and it doesn't seem right: https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/lib/webdriver.js ![image](https://user-images.githubusercontent.com/4748781/218498697-22c0a7e5-8e02-471a-9836-a904966a2f85.png) I can see that there were changes related to this method: ![image](https://user-images.githubusercontent.com/4748781/218499588-b06ac3c2-0396-4719-a9d2-db734fa3015d.png) https://github.com/SeleniumHQ/selenium/commit/85a785684d8ce37f99cb64c22597c44021d6fb34 It seems response code got hardcoded and method parameter omitted completely. Could you please fix the issue? ### How can we reproduce the issue? ```shell async function mockResponseStatus(url: string){ const connection = await driver.createCDPConnection('page'); let httpResponse = new HttpResponse(url); httpResponse.addHeaders("Content-Type", "application/json") httpResponse.body = "test"; httpResponse.status = 404; httpResponse.returnStatus = 404; await driver.onIntercept(connection, httpResponse, async function () { }); } ``` ### Relevant log output ```shell Response body in chrome browser is always: test Status is 200 ``` ### Operating System Windows 10 ### Selenium version 4.8.0 ### What are the browser(s) and version(s) where you see this issue? 109.0.5414.120 ### What are the browser driver(s) and version(s) where you see this issue? 109.0.5414.120 ### Are you using Selenium Grid? no
1.0
[🐛 Bug]: Network Interception doesn't work in JavaScript properly, always giving back status 200! - ### What happened? I'm using Selenium with Javascript. async function mockResponseStatus(url: string){ const connection = await driver.createCDPConnection('page'); let httpResponse = new HttpResponse(url); httpResponse.addHeaders("Content-Type", "application/json") httpResponse.body = "test"; httpResponse.status = 404; httpResponse.returnStatus = 404; await driver.onIntercept(connection, httpResponse, async function () { }); } I'm trying to set up the interception but unfortunately it is always giving back status 200 - OK. I can set the body and headers but the status and method is always hardcoded. I've checked out the code and it doesn't seem right: https://github.com/SeleniumHQ/selenium/blob/trunk/javascript/node/selenium-webdriver/lib/webdriver.js ![image](https://user-images.githubusercontent.com/4748781/218498697-22c0a7e5-8e02-471a-9836-a904966a2f85.png) I can see that there were changes related to this method: ![image](https://user-images.githubusercontent.com/4748781/218499588-b06ac3c2-0396-4719-a9d2-db734fa3015d.png) https://github.com/SeleniumHQ/selenium/commit/85a785684d8ce37f99cb64c22597c44021d6fb34 It seems response code got hardcoded and method parameter omitted completely. Could you please fix the issue? ### How can we reproduce the issue? ```shell async function mockResponseStatus(url: string){ const connection = await driver.createCDPConnection('page'); let httpResponse = new HttpResponse(url); httpResponse.addHeaders("Content-Type", "application/json") httpResponse.body = "test"; httpResponse.status = 404; httpResponse.returnStatus = 404; await driver.onIntercept(connection, httpResponse, async function () { }); } ``` ### Relevant log output ```shell Response body in chrome browser is always: test Status is 200 ``` ### Operating System Windows 10 ### Selenium version 4.8.0 ### What are the browser(s) and version(s) where you see this issue? 109.0.5414.120 ### What are the browser driver(s) and version(s) where you see this issue? 109.0.5414.120 ### Are you using Selenium Grid? no
defect
network interception doesn t work in javascript properly always giving back status what happened i m using selenium with javascript async function mockresponsestatus url string const connection await driver createcdpconnection page let httpresponse new httpresponse url httpresponse addheaders content type application json httpresponse body test httpresponse status httpresponse returnstatus await driver onintercept connection httpresponse async function i m trying to set up the interception but unfortunately it is always giving back status ok i can set the body and headers but the status and method is always hardcoded i ve checked out the code and it doesn t seem right i can see that there were changes related to this method it seems response code got hardcoded and method parameter omitted completely could you please fix the issue how can we reproduce the issue shell async function mockresponsestatus url string const connection await driver createcdpconnection page let httpresponse new httpresponse url httpresponse addheaders content type application json httpresponse body test httpresponse status httpresponse returnstatus await driver onintercept connection httpresponse async function relevant log output shell response body in chrome browser is always test status is operating system windows selenium version what are the browser s and version s where you see this issue what are the browser driver s and version s where you see this issue are you using selenium grid no
1
56,512
8,075,394,547
IssuesEvent
2018-08-07 05:26:05
rapidpro/chpro
https://api.github.com/repos/rapidpro/chpro
closed
[Editor] Save a query for visualization
Configuration Documentation
As Editor, I would like to configure a query and save it for visualization. --- Related use case As Editor, I would like to configure a table view of dataset or a subset with time period filter, geographic filter or value of indicator.
1.0
[Editor] Save a query for visualization - As Editor, I would like to configure a query and save it for visualization. --- Related use case As Editor, I would like to configure a table view of dataset or a subset with time period filter, geographic filter or value of indicator.
non_defect
save a query for visualization as editor i would like to configure a query and save it for visualization related use case as editor i would like to configure a table view of dataset or a subset with time period filter geographic filter or value of indicator
0
10,955
2,622,854,201
IssuesEvent
2015-03-04 08:06:51
max99x/pagemon-chrome-ext
https://api.github.com/repos/max99x/pagemon-chrome-ext
closed
Does not work anymore on Mac 10.9.2
auto-migrated Priority-Medium Type-Defect
``` What steps will reproduce the problem? Please include a URL. Mac OSX 10.9.2 Chrome Version 34.0.1847.137 Java Version 1.6.0_65 What is the expected output? What do you see instead? Page monitor stopped working. Does not check anymore, timer keeps going up. When i click on Check All Now, it appears to try to check, but the timer keeps going up instead of resetting back to last checked of 0 seconds ago. What version of the Chrome are you using? On what operating system? Mac OSX 10.9.2 Chrome Version 34.0.1847.137 What are the error log messages? To view them, go to Wrench -> Tools -> Extensions -> Developer Mode -> expand Page Monitor -> "background.htm" -> Console. This is blank. Please provide any additional information below. It will work in other Chromium based browsers such as Torch. ``` Original issue reported on code.google.com by `skim...@gmail.com` on 20 May 2014 at 1:50
1.0
Does not work anymore on Mac 10.9.2 - ``` What steps will reproduce the problem? Please include a URL. Mac OSX 10.9.2 Chrome Version 34.0.1847.137 Java Version 1.6.0_65 What is the expected output? What do you see instead? Page monitor stopped working. Does not check anymore, timer keeps going up. When i click on Check All Now, it appears to try to check, but the timer keeps going up instead of resetting back to last checked of 0 seconds ago. What version of the Chrome are you using? On what operating system? Mac OSX 10.9.2 Chrome Version 34.0.1847.137 What are the error log messages? To view them, go to Wrench -> Tools -> Extensions -> Developer Mode -> expand Page Monitor -> "background.htm" -> Console. This is blank. Please provide any additional information below. It will work in other Chromium based browsers such as Torch. ``` Original issue reported on code.google.com by `skim...@gmail.com` on 20 May 2014 at 1:50
defect
does not work anymore on mac what steps will reproduce the problem please include a url mac osx chrome version java version what is the expected output what do you see instead page monitor stopped working does not check anymore timer keeps going up when i click on check all now it appears to try to check but the timer keeps going up instead of resetting back to last checked of seconds ago what version of the chrome are you using on what operating system mac osx chrome version what are the error log messages to view them go to wrench tools extensions developer mode expand page monitor background htm console this is blank please provide any additional information below it will work in other chromium based browsers such as torch original issue reported on code google com by skim gmail com on may at
1
707,509
24,309,022,727
IssuesEvent
2022-09-29 20:14:00
GoogleContainerTools/skaffold
https://api.github.com/repos/GoogleContainerTools/skaffold
closed
Bleeding edge build is not available (v1)
meta/release priority/p2 release/fixes
### Expected behavior I want to download a patched binary (https://github.com/GoogleContainerTools/skaffold/commit/894fb67bb51b26b40c2e6e9820ded6713eefbc10). So I try the following: ``` curl -L https://storage.googleapis.com/skaffold/builds/894fb67bb51b26b40c2e6e9820ded6713eefbc10/skaffold-darwin-arm64 -o skaffold ``` According to [docs](https://skaffold.dev/docs/install/#standalone-binary) the command or its `latest` analogue should work. But it doesn't, binary doesn't exist. Additionally it makes sense to have both `v1` and `v2` links in the `bleeding edge` section of the docs. ### Actual behavior - The build is not available or outdated (if i use `latest`) - It's not clear if it's `main` or `v1` link. ### Steps to reproduce the behavior ```sh curl -L https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-arm64 -o skaffold chmod +x skaffold ./skaffold version ```
1.0
Bleeding edge build is not available (v1) - ### Expected behavior I want to download a patched binary (https://github.com/GoogleContainerTools/skaffold/commit/894fb67bb51b26b40c2e6e9820ded6713eefbc10). So I try the following: ``` curl -L https://storage.googleapis.com/skaffold/builds/894fb67bb51b26b40c2e6e9820ded6713eefbc10/skaffold-darwin-arm64 -o skaffold ``` According to [docs](https://skaffold.dev/docs/install/#standalone-binary) the command or its `latest` analogue should work. But it doesn't, binary doesn't exist. Additionally it makes sense to have both `v1` and `v2` links in the `bleeding edge` section of the docs. ### Actual behavior - The build is not available or outdated (if i use `latest`) - It's not clear if it's `main` or `v1` link. ### Steps to reproduce the behavior ```sh curl -L https://storage.googleapis.com/skaffold/builds/latest/skaffold-darwin-arm64 -o skaffold chmod +x skaffold ./skaffold version ```
non_defect
bleeding edge build is not available expected behavior i want to download a patched binary so i try the following curl l o skaffold according to the command or its latest analogue should work but it doesn t binary doesn t exist additionally it makes sense to have both and links in the bleeding edge section of the docs actual behavior the build is not available or outdated if i use latest it s not clear if it s main or link steps to reproduce the behavior sh curl l o skaffold chmod x skaffold skaffold version
0
283,866
30,913,562,606
IssuesEvent
2023-08-05 02:15:08
panasalap/linux-4.19.72_Fix
https://api.github.com/repos/panasalap/linux-4.19.72_Fix
reopened
CVE-2019-19602 (Medium) detected in linux-yoctov5.4.51
Mend: dependency security vulnerability
## CVE-2019-19602 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-yoctov5.4.51</b></p></summary> <p> <p>Yocto Linux Embedded kernel</p> <p>Library home page: <a href=https://git.yoctoproject.org/git/linux-yocto>https://git.yoctoproject.org/git/linux-yocto</a></p> <p>Found in HEAD commit: <a href="https://github.com/panasalap/linux-4.19.72/commit/fc232d9ef12e2320ea3e8cb3de916a34aad68b6a">fc232d9ef12e2320ea3e8cb3de916a34aad68b6a</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>/arch/x86/include/asm/fpu/internal.h</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/arch/x86/include/asm/fpu/internal.h</b> </p> </details> <p></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> fpregs_state_valid in arch/x86/include/asm/fpu/internal.h in the Linux kernel before 5.4.2, when GCC 9 is used, allows context-dependent attackers to cause a denial of service (memory corruption) or possibly have unspecified other impact because of incorrect fpu_fpregs_owner_ctx caching, as demonstrated by mishandling of signal-based non-cooperative preemption in Go 1.14 prereleases on amd64, aka CID-59c4bd853abc. <p>Publish Date: 2019-12-05 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-19602>CVE-2019-19602</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>6.1</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: None - 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="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-19602">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-19602</a></p> <p>Release Date: 2020-08-24</p> <p>Fix Resolution: v5.5-rc1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2019-19602 (Medium) detected in linux-yoctov5.4.51 - ## CVE-2019-19602 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>linux-yoctov5.4.51</b></p></summary> <p> <p>Yocto Linux Embedded kernel</p> <p>Library home page: <a href=https://git.yoctoproject.org/git/linux-yocto>https://git.yoctoproject.org/git/linux-yocto</a></p> <p>Found in HEAD commit: <a href="https://github.com/panasalap/linux-4.19.72/commit/fc232d9ef12e2320ea3e8cb3de916a34aad68b6a">fc232d9ef12e2320ea3e8cb3de916a34aad68b6a</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>/arch/x86/include/asm/fpu/internal.h</b> <img src='https://s3.amazonaws.com/wss-public/bitbucketImages/xRedImage.png' width=19 height=20> <b>/arch/x86/include/asm/fpu/internal.h</b> </p> </details> <p></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> fpregs_state_valid in arch/x86/include/asm/fpu/internal.h in the Linux kernel before 5.4.2, when GCC 9 is used, allows context-dependent attackers to cause a denial of service (memory corruption) or possibly have unspecified other impact because of incorrect fpu_fpregs_owner_ctx caching, as demonstrated by mishandling of signal-based non-cooperative preemption in Go 1.14 prereleases on amd64, aka CID-59c4bd853abc. <p>Publish Date: 2019-12-05 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2019-19602>CVE-2019-19602</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>6.1</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: None - 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="http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-19602">http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2019-19602</a></p> <p>Release Date: 2020-08-24</p> <p>Fix Resolution: v5.5-rc1</p> </p> </details> <p></p> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve medium detected in linux cve medium severity vulnerability vulnerable library linux yocto linux embedded kernel library home page a href found in head commit a href found in base branch master vulnerable source files arch include asm fpu internal h arch include asm fpu internal h vulnerability details fpregs state valid in arch include asm fpu internal h in the linux kernel before when gcc is used allows context dependent attackers to cause a denial of service memory corruption or possibly have unspecified other impact because of incorrect fpu fpregs owner ctx caching as demonstrated by mishandling of signal based non cooperative preemption in go prereleases on aka cid 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 none availability impact low 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 mend
0
170,614
13,195,283,379
IssuesEvent
2020-08-13 18:22:37
eclipse/openj9
https://api.github.com/repos/eclipse/openj9
closed
JDK15 Windows : ClassLoadingTest_special Segmentation error vmState=0x00020002
comp:gc comp:vm jdk15 jdk16 test failure
Failure link ------------ From an internal build `Test_openjdk15_j9_special.system_x86-64_windows_Nightly_otherLoadTest/3`: ``` 01:04:53 openjdk version "15-internal" 2020-09-15 01:04:53 OpenJDK Runtime Environment (build 15-internal+0-adhoc.jenkins.BuildJDK15x86-64windowsNightly) 01:04:53 Eclipse OpenJ9 VM (build master-f60babb2cfa, JRE 15 Windows Server 2016 amd64-64-Bit Compressed References 20200723_24 (JIT enabled, AOT enabled) 01:04:53 OpenJ9 - f60babb2cfa 01:04:53 OMR - 025d6b2b62b 01:04:53 JCL - 3604912533c based on jdk-15+32) ``` Optional info ------------- Failure output (captured from console output) --------------------------------------------- ``` CLT stderr Type=Segmentation error vmState=0x00020002 CLT stderr Windows_ExceptionCode=c0000005 J9Generic_Signal=00000004 ExceptionAddress=00007FFC5AFF5C60 ContextFlags=0010005f CLT stderr Handler1=00007FFC5C1605F0 Handler2=00007FFC625EAC30 InaccessibleReadAddress=00007FF7E502A920 CLT stderr RDI=000001F76386ABC8 RSI=000000000001FFFF RAX=00007FF7E4CB0000 RBX=000000070DEA48D0 CLT stderr RCX=0000000000000009 RDX=000001F744C9C8A0 R8=000000000006F524 R9=00007FF7E502A920 CLT stderr R10=0000000004000000 R11=0000004BAF2FF600 R12=0000000000000001 R13=000000000000003C CLT stderr R14=0000000000000000 R15=00000000001FFFF1 CLT stderr RIP=00007FFC5AFF5C60 RSP=0000004BAF2FF470 RBP=000001F744CA3770 GS=002B CLT stderr FS=0053 ES=002B DS=002B CLT stderr XMM0 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM1 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM2 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM3 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM4 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM5 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM6 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM7 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM8 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM9 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM10 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM11 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM12 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM13 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM14 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM15 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr Module=C:\Users\jenkins\workspace\Test_openjdk15_j9_special.system_x86-64_windows_Nightly_otherLoadTest\openjdkbinary\j2sdk-image\bin\compressedrefs\j9gc29.dll CLT stderr Module_base_address=00007FFC5AF30000 Offset_in_DLL=00000000000c5c60 CLT stderr Target=2_90_20200723_24 (Windows Server 2016 10.0 build 10240) CLT stderr CPU=amd64 (8 logical CPUs) (0x3fff7c000 RAM) CLT stderr ----------- Stack Backtrace ----------- CLT stderr J9VMDllMain+0xc4c50 (0x00007FFC5AFF5C60 [j9gc29+0xc5c60]) CLT stderr J9VMDllMain+0xc4d70 (0x00007FFC5AFF5D80 [j9gc29+0xc5d80]) CLT stderr J9VMDllMain+0xc452b (0x00007FFC5AFF553B [j9gc29+0xc553b]) CLT stderr J9VMDllMain+0xc8ee4 (0x00007FFC5AFF9EF4 [j9gc29+0xc9ef4]) CLT stderr J9VMDllMain+0xc1748 (0x00007FFC5AFF2758 [j9gc29+0xc2758]) CLT stderr J9VMDllMain+0x10e513 (0x00007FFC5B03F523 [j9gc29+0x10f523]) CLT stderr J9VMDllMain+0x10f2a5 (0x00007FFC5B0402B5 [j9gc29+0x1102b5]) CLT stderr j9port_isCompatible+0x1a09f (0x00007FFC625ECDAF [j9prt29+0x1cdaf]) CLT stderr J9VMDllMain+0x10f3f8 (0x00007FFC5B040408 [j9gc29+0x110408]) CLT stderr omrthread_get_category+0xa42 (0x00007FFC64844452 [J9THR29+0x4452]) CLT stderr _o__realloc_base+0x60 (0x00007FFC6AACFB80 [ucrtbase+0x1fb80]) CLT stderr BaseThreadInitThunk+0x14 (0x00007FFC6DB784D4 [KERNEL32+0x84d4]) CLT stderr RtlUserThreadStart+0x21 (0x00007FFC6E51E871 [ntdll+0x6e871]) ClassLoadingTest_special_14_FAILED ``` For example, to rebuild the failed tests in <Jenkins URL>=https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder, use the following links: 01:35:46 https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/parambuild/?JDK_VERSION=15&JDK_IMPL=openj9&BUILD_LIST=system/otherLoadTest&PLATFORM=x86-64_windows&TARGET=ClassLoadingTest_special_14
1.0
JDK15 Windows : ClassLoadingTest_special Segmentation error vmState=0x00020002 - Failure link ------------ From an internal build `Test_openjdk15_j9_special.system_x86-64_windows_Nightly_otherLoadTest/3`: ``` 01:04:53 openjdk version "15-internal" 2020-09-15 01:04:53 OpenJDK Runtime Environment (build 15-internal+0-adhoc.jenkins.BuildJDK15x86-64windowsNightly) 01:04:53 Eclipse OpenJ9 VM (build master-f60babb2cfa, JRE 15 Windows Server 2016 amd64-64-Bit Compressed References 20200723_24 (JIT enabled, AOT enabled) 01:04:53 OpenJ9 - f60babb2cfa 01:04:53 OMR - 025d6b2b62b 01:04:53 JCL - 3604912533c based on jdk-15+32) ``` Optional info ------------- Failure output (captured from console output) --------------------------------------------- ``` CLT stderr Type=Segmentation error vmState=0x00020002 CLT stderr Windows_ExceptionCode=c0000005 J9Generic_Signal=00000004 ExceptionAddress=00007FFC5AFF5C60 ContextFlags=0010005f CLT stderr Handler1=00007FFC5C1605F0 Handler2=00007FFC625EAC30 InaccessibleReadAddress=00007FF7E502A920 CLT stderr RDI=000001F76386ABC8 RSI=000000000001FFFF RAX=00007FF7E4CB0000 RBX=000000070DEA48D0 CLT stderr RCX=0000000000000009 RDX=000001F744C9C8A0 R8=000000000006F524 R9=00007FF7E502A920 CLT stderr R10=0000000004000000 R11=0000004BAF2FF600 R12=0000000000000001 R13=000000000000003C CLT stderr R14=0000000000000000 R15=00000000001FFFF1 CLT stderr RIP=00007FFC5AFF5C60 RSP=0000004BAF2FF470 RBP=000001F744CA3770 GS=002B CLT stderr FS=0053 ES=002B DS=002B CLT stderr XMM0 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM1 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM2 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM3 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM4 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM5 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM6 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM7 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM8 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM9 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM10 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM11 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM12 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM13 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM14 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr XMM15 0000000000000000 (f: 0.000000, d: 0.000000e+00) CLT stderr Module=C:\Users\jenkins\workspace\Test_openjdk15_j9_special.system_x86-64_windows_Nightly_otherLoadTest\openjdkbinary\j2sdk-image\bin\compressedrefs\j9gc29.dll CLT stderr Module_base_address=00007FFC5AF30000 Offset_in_DLL=00000000000c5c60 CLT stderr Target=2_90_20200723_24 (Windows Server 2016 10.0 build 10240) CLT stderr CPU=amd64 (8 logical CPUs) (0x3fff7c000 RAM) CLT stderr ----------- Stack Backtrace ----------- CLT stderr J9VMDllMain+0xc4c50 (0x00007FFC5AFF5C60 [j9gc29+0xc5c60]) CLT stderr J9VMDllMain+0xc4d70 (0x00007FFC5AFF5D80 [j9gc29+0xc5d80]) CLT stderr J9VMDllMain+0xc452b (0x00007FFC5AFF553B [j9gc29+0xc553b]) CLT stderr J9VMDllMain+0xc8ee4 (0x00007FFC5AFF9EF4 [j9gc29+0xc9ef4]) CLT stderr J9VMDllMain+0xc1748 (0x00007FFC5AFF2758 [j9gc29+0xc2758]) CLT stderr J9VMDllMain+0x10e513 (0x00007FFC5B03F523 [j9gc29+0x10f523]) CLT stderr J9VMDllMain+0x10f2a5 (0x00007FFC5B0402B5 [j9gc29+0x1102b5]) CLT stderr j9port_isCompatible+0x1a09f (0x00007FFC625ECDAF [j9prt29+0x1cdaf]) CLT stderr J9VMDllMain+0x10f3f8 (0x00007FFC5B040408 [j9gc29+0x110408]) CLT stderr omrthread_get_category+0xa42 (0x00007FFC64844452 [J9THR29+0x4452]) CLT stderr _o__realloc_base+0x60 (0x00007FFC6AACFB80 [ucrtbase+0x1fb80]) CLT stderr BaseThreadInitThunk+0x14 (0x00007FFC6DB784D4 [KERNEL32+0x84d4]) CLT stderr RtlUserThreadStart+0x21 (0x00007FFC6E51E871 [ntdll+0x6e871]) ClassLoadingTest_special_14_FAILED ``` For example, to rebuild the failed tests in <Jenkins URL>=https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder, use the following links: 01:35:46 https://hyc-runtimes-jenkins.swg-devops.com/job/Grinder/parambuild/?JDK_VERSION=15&JDK_IMPL=openj9&BUILD_LIST=system/otherLoadTest&PLATFORM=x86-64_windows&TARGET=ClassLoadingTest_special_14
non_defect
windows classloadingtest special segmentation error vmstate failure link from an internal build test special system windows nightly otherloadtest openjdk version internal openjdk runtime environment build internal adhoc jenkins eclipse vm build master jre windows server bit compressed references jit enabled aot enabled omr jcl based on jdk optional info failure output captured from console output clt stderr type segmentation error vmstate clt stderr windows exceptioncode signal exceptionaddress contextflags clt stderr inaccessiblereadaddress clt stderr rdi rsi rax rbx clt stderr rcx rdx clt stderr clt stderr clt stderr rip rsp rbp gs clt stderr fs es ds clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr f d clt stderr module c users jenkins workspace test special system windows nightly otherloadtest openjdkbinary image bin compressedrefs dll clt stderr module base address offset in dll clt stderr target windows server build clt stderr cpu logical cpus ram clt stderr stack backtrace clt stderr clt stderr clt stderr clt stderr clt stderr clt stderr clt stderr clt stderr iscompatible clt stderr clt stderr omrthread get category clt stderr o realloc base clt stderr basethreadinitthunk clt stderr rtluserthreadstart classloadingtest special failed for example to rebuild the failed tests in use the following links
0
32,089
6,712,304,407
IssuesEvent
2017-10-13 08:52:31
vim/vim
https://api.github.com/repos/vim/vim
closed
gVim 7.4a beta crashes from time to time
auto-migrated defect Priority-Medium
``` What steps will reproduce the problem? 1. use awesome wm 2. try to save a file in gvim gvim crashes sometimes after saving a file and I cannot reproduce this by intent. [xcb] Unknown request in queue while dequeuing gvim: Fatal IO error 11 (Resource temporarily unavailable) on X server unix/:0. [xcb] Most likely this is a multi-threaded client and XInitThreads has not been called [xcb] Aborting, sorry about that. gvim: ../../src/xcb_io.c:179: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed. Vim: Caught deadly signal ABRT Vim: Finished. " My Bundles Bundle 'gmarik/vundle' Bundle 'Lokaltog/powerline' Bundle 'git://repo.or.cz/vcscommand.git' Bundle 'tpope/vim-fugitive' Bundle 'tpope/vim-markdown' Bundle 'vim-diekeys' Bundle 'tpope/vim-obsession' Bundle 'tpope/vim-repeat.git' Bundle 'tpope/vim-abolish.git' Bundle 'tpope/vim-surround.git' Bundle 'Raimondi/delimitMate' Bundle 'rstacruz/sparkup' Bundle 'kien/ctrlp.vim' Bundle 'majutsushi/tagbar' Bundle 'techlivezheng/vim-plugin-tagbar-phpctags' Bundle 'jeetsukumaran/vim-buffergator' Bundle 'chrisbra/NrrwRgn' Bundle 'chin4ski/Mark--Karkat' Bundle 'scrooloose/nerdtree' Bundle 'scrooloose/nerdcommenter' Bundle 'scrooloose/syntastic' Bundle 'Lokaltog/vim-easymotion' Bundle 'mileszs/ack.vim' Bundle 'jelera/vim-javascript-syntax' Bundle 'vim-scripts/vim-javascript' Bundle 'hynek/vim-python-pep8-indent' Bundle 'michaeljsmith/vim-indent-object' Bundle 'klen/python-mode' Bundle 'hdima/python-syntax' Bundle 'Valloric/YouCompleteMe' Bundle 'evidens/vim-twig.git' Bundle 'Glench/Vim-Jinja2-Syntax' Bundle 'lepture/vim-jinja' Bundle 'sophacles/vim-bundle-mako' Bundle 'groenewege/vim-less' Bundle 'miripiruni/vim-better-css-indent' Bundle 'hail2u/vim-css3-syntax' Bundle 'gregsexton/MatchTag' Bundle 'khorser/vim-rst-ftplugin' Bundle 'vim-scripts/genshi.vim' Bundle 'lukaszb/vim-web-indent' Bundle 'danro/rename.vim' Bundle 'L9' Bundle 'FuzzyFinder' ``` Original issue reported on code.google.com by `dief...@gmail.com` on 22 Jul 2013 at 5:06
1.0
gVim 7.4a beta crashes from time to time - ``` What steps will reproduce the problem? 1. use awesome wm 2. try to save a file in gvim gvim crashes sometimes after saving a file and I cannot reproduce this by intent. [xcb] Unknown request in queue while dequeuing gvim: Fatal IO error 11 (Resource temporarily unavailable) on X server unix/:0. [xcb] Most likely this is a multi-threaded client and XInitThreads has not been called [xcb] Aborting, sorry about that. gvim: ../../src/xcb_io.c:179: dequeue_pending_request: Assertion `!xcb_xlib_unknown_req_in_deq' failed. Vim: Caught deadly signal ABRT Vim: Finished. " My Bundles Bundle 'gmarik/vundle' Bundle 'Lokaltog/powerline' Bundle 'git://repo.or.cz/vcscommand.git' Bundle 'tpope/vim-fugitive' Bundle 'tpope/vim-markdown' Bundle 'vim-diekeys' Bundle 'tpope/vim-obsession' Bundle 'tpope/vim-repeat.git' Bundle 'tpope/vim-abolish.git' Bundle 'tpope/vim-surround.git' Bundle 'Raimondi/delimitMate' Bundle 'rstacruz/sparkup' Bundle 'kien/ctrlp.vim' Bundle 'majutsushi/tagbar' Bundle 'techlivezheng/vim-plugin-tagbar-phpctags' Bundle 'jeetsukumaran/vim-buffergator' Bundle 'chrisbra/NrrwRgn' Bundle 'chin4ski/Mark--Karkat' Bundle 'scrooloose/nerdtree' Bundle 'scrooloose/nerdcommenter' Bundle 'scrooloose/syntastic' Bundle 'Lokaltog/vim-easymotion' Bundle 'mileszs/ack.vim' Bundle 'jelera/vim-javascript-syntax' Bundle 'vim-scripts/vim-javascript' Bundle 'hynek/vim-python-pep8-indent' Bundle 'michaeljsmith/vim-indent-object' Bundle 'klen/python-mode' Bundle 'hdima/python-syntax' Bundle 'Valloric/YouCompleteMe' Bundle 'evidens/vim-twig.git' Bundle 'Glench/Vim-Jinja2-Syntax' Bundle 'lepture/vim-jinja' Bundle 'sophacles/vim-bundle-mako' Bundle 'groenewege/vim-less' Bundle 'miripiruni/vim-better-css-indent' Bundle 'hail2u/vim-css3-syntax' Bundle 'gregsexton/MatchTag' Bundle 'khorser/vim-rst-ftplugin' Bundle 'vim-scripts/genshi.vim' Bundle 'lukaszb/vim-web-indent' Bundle 'danro/rename.vim' Bundle 'L9' Bundle 'FuzzyFinder' ``` Original issue reported on code.google.com by `dief...@gmail.com` on 22 Jul 2013 at 5:06
defect
gvim beta crashes from time to time what steps will reproduce the problem use awesome wm try to save a file in gvim gvim crashes sometimes after saving a file and i cannot reproduce this by intent unknown request in queue while dequeuing gvim fatal io error resource temporarily unavailable on x server unix most likely this is a multi threaded client and xinitthreads has not been called aborting sorry about that gvim src xcb io c dequeue pending request assertion xcb xlib unknown req in deq failed vim caught deadly signal abrt vim finished my bundles bundle gmarik vundle bundle lokaltog powerline bundle git repo or cz vcscommand git bundle tpope vim fugitive bundle tpope vim markdown bundle vim diekeys bundle tpope vim obsession bundle tpope vim repeat git bundle tpope vim abolish git bundle tpope vim surround git bundle raimondi delimitmate bundle rstacruz sparkup bundle kien ctrlp vim bundle majutsushi tagbar bundle techlivezheng vim plugin tagbar phpctags bundle jeetsukumaran vim buffergator bundle chrisbra nrrwrgn bundle mark karkat bundle scrooloose nerdtree bundle scrooloose nerdcommenter bundle scrooloose syntastic bundle lokaltog vim easymotion bundle mileszs ack vim bundle jelera vim javascript syntax bundle vim scripts vim javascript bundle hynek vim python indent bundle michaeljsmith vim indent object bundle klen python mode bundle hdima python syntax bundle valloric youcompleteme bundle evidens vim twig git bundle glench vim syntax bundle lepture vim jinja bundle sophacles vim bundle mako bundle groenewege vim less bundle miripiruni vim better css indent bundle vim syntax bundle gregsexton matchtag bundle khorser vim rst ftplugin bundle vim scripts genshi vim bundle lukaszb vim web indent bundle danro rename vim bundle bundle fuzzyfinder original issue reported on code google com by dief gmail com on jul at
1
15,203
2,850,295,057
IssuesEvent
2015-05-31 13:06:51
mernst/randoop
https://api.github.com/repos/mernst/randoop
closed
Problem of compiling randoop tests
auto-migrated Priority-Medium Type-Defect
``` I define a class Pile which extends Vector<Something> I generate tests with Randoop, it is ok, it executes But Randoop generates some tests which cannot compile and I do not see what I can do (importing, redefining methods, ...) Example of problem public void test4() throws Throwable { if (debug) System.out.printf("%nRandoopTest0.test4"); src.Pile var0 = new src.Pile(); int var3 = var0.indexOf((java.lang.Object)(byte)0, 10); boolean var5 = var0.equals((java.lang.Object)0.0f); var0.addElement((java.lang.Object)false); int var9 = var0.lastIndexOf((java.lang.Object)(short)10); int var12 = var0.lastIndexOf((java.lang.Object)100.0d, 0); // Regression assertion (captures the current behavior of the code) assertTrue(var3 == (-1)); // Regression assertion (captures the current behavior of the code) assertTrue(var5 == false); // Regression assertion (captures the current behavior of the code) assertTrue(var9 == (-1)); // Regression assertion (captures the current behavior of the code) assertTrue(var12 == (-1)); } The line var0.addElement((java.lang.Object)false); does not compile since var0 is a Vector<Something> and do not accept an Object. Where is my mistake ? What I can do However it works well if I use aggregation rather than inheritance. ``` Original issue reported on code.google.com by `Jean.C.R...@gmail.com` on 30 Apr 2013 at 2:26
1.0
Problem of compiling randoop tests - ``` I define a class Pile which extends Vector<Something> I generate tests with Randoop, it is ok, it executes But Randoop generates some tests which cannot compile and I do not see what I can do (importing, redefining methods, ...) Example of problem public void test4() throws Throwable { if (debug) System.out.printf("%nRandoopTest0.test4"); src.Pile var0 = new src.Pile(); int var3 = var0.indexOf((java.lang.Object)(byte)0, 10); boolean var5 = var0.equals((java.lang.Object)0.0f); var0.addElement((java.lang.Object)false); int var9 = var0.lastIndexOf((java.lang.Object)(short)10); int var12 = var0.lastIndexOf((java.lang.Object)100.0d, 0); // Regression assertion (captures the current behavior of the code) assertTrue(var3 == (-1)); // Regression assertion (captures the current behavior of the code) assertTrue(var5 == false); // Regression assertion (captures the current behavior of the code) assertTrue(var9 == (-1)); // Regression assertion (captures the current behavior of the code) assertTrue(var12 == (-1)); } The line var0.addElement((java.lang.Object)false); does not compile since var0 is a Vector<Something> and do not accept an Object. Where is my mistake ? What I can do However it works well if I use aggregation rather than inheritance. ``` Original issue reported on code.google.com by `Jean.C.R...@gmail.com` on 30 Apr 2013 at 2:26
defect
problem of compiling randoop tests i define a class pile which extends vector i generate tests with randoop it is ok it executes but randoop generates some tests which cannot compile and i do not see what i can do importing redefining methods example of problem public void throws throwable if debug system out printf src pile new src pile int indexof java lang object byte boolean equals java lang object addelement java lang object false int lastindexof java lang object short int lastindexof java lang object regression assertion captures the current behavior of the code asserttrue regression assertion captures the current behavior of the code asserttrue false regression assertion captures the current behavior of the code asserttrue regression assertion captures the current behavior of the code asserttrue the line addelement java lang object false does not compile since is a vector and do not accept an object where is my mistake what i can do however it works well if i use aggregation rather than inheritance original issue reported on code google com by jean c r gmail com on apr at
1
162,243
13,884,718,685
IssuesEvent
2020-10-18 17:15:25
Py-Contributors/awesomeScripts
https://api.github.com/repos/Py-Contributors/awesomeScripts
closed
Updating the Docs in the Email sending program.
documentation enhancement
**Short introduction what you want to change in README.md ** example:- code change, outdated Readme The documentation in the email sending program should be corrected .It has some spelling errors!
1.0
Updating the Docs in the Email sending program. - **Short introduction what you want to change in README.md ** example:- code change, outdated Readme The documentation in the email sending program should be corrected .It has some spelling errors!
non_defect
updating the docs in the email sending program short introduction what you want to change in readme md example code change outdated readme the documentation in the email sending program should be corrected it has some spelling errors
0
405,306
11,871,219,674
IssuesEvent
2020-03-26 14:04:19
svthalia/concrexit
https://api.github.com/repos/svthalia/concrexit
closed
Incorrect focus color for dropdown elements
bug priority: medium
### Describe the bug The focus color of dropdown elements is incorrect. ### How to reproduce Steps to reproduce the behaviour: 1. Make sure you get an item focused in the dropdown of the user menu 2. The background is white. ### Expected behaviour The text should be readable when the item is focused. ### Screenshots ![Screenshot 2020-03-26 at 13 00 33](https://user-images.githubusercontent.com/1799914/77644832-fd46ae00-6f61-11ea-8b07-4fa21d773094.png)
1.0
Incorrect focus color for dropdown elements - ### Describe the bug The focus color of dropdown elements is incorrect. ### How to reproduce Steps to reproduce the behaviour: 1. Make sure you get an item focused in the dropdown of the user menu 2. The background is white. ### Expected behaviour The text should be readable when the item is focused. ### Screenshots ![Screenshot 2020-03-26 at 13 00 33](https://user-images.githubusercontent.com/1799914/77644832-fd46ae00-6f61-11ea-8b07-4fa21d773094.png)
non_defect
incorrect focus color for dropdown elements describe the bug the focus color of dropdown elements is incorrect how to reproduce steps to reproduce the behaviour make sure you get an item focused in the dropdown of the user menu the background is white expected behaviour the text should be readable when the item is focused screenshots
0
44,232
12,064,353,588
IssuesEvent
2020-04-16 08:08:56
ShaikASK/Testing
https://api.github.com/repos/ShaikASK/Testing
opened
New Hires : Multiple HR users: Upon clicking initiate onboarding toaster message displayed is not user friendly
Defect Initiate On boarding New Hire P3
Steps To Replicate : 1.Launch the URL 2.Sign in a HR Admin User 3.Creeate New Hire and save it 4.Click on initiate onboard and click on send button (2 HR users should initiate the same new hire at same time) Experienced Behavior : Observed that for One user onboard process is initiated and for another user error message is displayed displayed as "Unable to upload offer letter failed" is not user friendly (Refer Screen Shot) Expected Behavior : Ensure that it should display toaster message correctly (user friendly)
1.0
New Hires : Multiple HR users: Upon clicking initiate onboarding toaster message displayed is not user friendly - Steps To Replicate : 1.Launch the URL 2.Sign in a HR Admin User 3.Creeate New Hire and save it 4.Click on initiate onboard and click on send button (2 HR users should initiate the same new hire at same time) Experienced Behavior : Observed that for One user onboard process is initiated and for another user error message is displayed displayed as "Unable to upload offer letter failed" is not user friendly (Refer Screen Shot) Expected Behavior : Ensure that it should display toaster message correctly (user friendly)
defect
new hires multiple hr users upon clicking initiate onboarding toaster message displayed is not user friendly steps to replicate launch the url sign in a hr admin user creeate new hire and save it click on initiate onboard and click on send button hr users should initiate the same new hire at same time experienced behavior observed that for one user onboard process is initiated and for another user error message is displayed displayed as unable to upload offer letter failed is not user friendly refer screen shot expected behavior ensure that it should display toaster message correctly user friendly
1
171,458
14,290,767,112
IssuesEvent
2020-11-23 21:27:12
Netflix/lemur
https://api.github.com/repos/Netflix/lemur
closed
Add documentation for acme HTTP-01 challenge
documentation
Since the HTTP-01 challenge is now supported by lemur, it should now also be documented. Especially the reuse of the destination might be a bit tricky to wrap your head around, without reading the code. So it would be nice to have an example config similar to what exists for LetsEncrypt right now https://github.com/Netflix/lemur/blob/21c2255c754b48fd2a1887cad64098fa73b99f03/docs/production/index.rst#add-support-for-letsencrypt
1.0
Add documentation for acme HTTP-01 challenge - Since the HTTP-01 challenge is now supported by lemur, it should now also be documented. Especially the reuse of the destination might be a bit tricky to wrap your head around, without reading the code. So it would be nice to have an example config similar to what exists for LetsEncrypt right now https://github.com/Netflix/lemur/blob/21c2255c754b48fd2a1887cad64098fa73b99f03/docs/production/index.rst#add-support-for-letsencrypt
non_defect
add documentation for acme http challenge since the http challenge is now supported by lemur it should now also be documented especially the reuse of the destination might be a bit tricky to wrap your head around without reading the code so it would be nice to have an example config similar to what exists for letsencrypt right now
0
249,398
7,961,374,993
IssuesEvent
2018-07-13 10:31:33
layersoflondon/application
https://api.github.com/repos/layersoflondon/application
opened
Georeferencer integration - need to have supporting copy about signing in again
Med priority
In the medium term the application will share user information with Georeferencer so users don't have to sign in twice. For now, though, they'll need to sign in again in order to georeference things. We need supporting copy in 2 places: * the call-to-action to georeference stuff ("get started now - you'll need to log in again") * on the georeferencer login page ("log in to your georeferencer account - this might be a different password from your layers of london one")
1.0
Georeferencer integration - need to have supporting copy about signing in again - In the medium term the application will share user information with Georeferencer so users don't have to sign in twice. For now, though, they'll need to sign in again in order to georeference things. We need supporting copy in 2 places: * the call-to-action to georeference stuff ("get started now - you'll need to log in again") * on the georeferencer login page ("log in to your georeferencer account - this might be a different password from your layers of london one")
non_defect
georeferencer integration need to have supporting copy about signing in again in the medium term the application will share user information with georeferencer so users don t have to sign in twice for now though they ll need to sign in again in order to georeference things we need supporting copy in places the call to action to georeference stuff get started now you ll need to log in again on the georeferencer login page log in to your georeferencer account this might be a different password from your layers of london one
0
275,769
8,580,121,908
IssuesEvent
2018-11-13 11:02:11
servicecatalog/oscm
https://api.github.com/repos/servicecatalog/oscm
closed
Password change for the owner of the VMware controller failed
QA VMware Connector bug priority/P3
[Build] docker 17.7 2018/08/28 [Steps to reproduce] The OSCM installation was done from scratch in clean environment with sample data. "docker run --name deployer2 --rm -v ${WORKSPACE}:/target -v /var/run/docker.sock:/var/run/docker.sock -e INITDB=true -e SAMPLE_DATA=true -e STARTUP=true artifactory.intern.est.fujitsu.com:5003/oscmdocker/oscm-deployer:QA-17.7" step1: login to ...8081/oscm-portal with "supplier@adfs.com" and password "supplier" works fine step2: login to vmware controller with "supplier@adfs.com" and password "supplier" works fine step3: login to ...8081/oscm-portal with "supplier@adfs.com" and password "supplier" step4: click account and change password to "supplier123" step5: try to login to vmware controller [Expected result] login works fine with password supplier or supplier123 ?? [Observed result] error occures . The login page is not available see attachement. ![controller](https://user-images.githubusercontent.com/15209605/44708911-9a9ce000-aaa8-11e8-9659-4627ea9e7f95.PNG) additionally the login to ..8081/oscm-portal with "supplier@adfs.com" and "supplier123" is not possible any more see attachement ![locked](https://user-images.githubusercontent.com/15209605/44708923-a1c3ee00-aaa8-11e8-8e6d-dc8ba8beb005.PNG) note: I've tested with firefox private mode to avoid caching
1.0
Password change for the owner of the VMware controller failed - [Build] docker 17.7 2018/08/28 [Steps to reproduce] The OSCM installation was done from scratch in clean environment with sample data. "docker run --name deployer2 --rm -v ${WORKSPACE}:/target -v /var/run/docker.sock:/var/run/docker.sock -e INITDB=true -e SAMPLE_DATA=true -e STARTUP=true artifactory.intern.est.fujitsu.com:5003/oscmdocker/oscm-deployer:QA-17.7" step1: login to ...8081/oscm-portal with "supplier@adfs.com" and password "supplier" works fine step2: login to vmware controller with "supplier@adfs.com" and password "supplier" works fine step3: login to ...8081/oscm-portal with "supplier@adfs.com" and password "supplier" step4: click account and change password to "supplier123" step5: try to login to vmware controller [Expected result] login works fine with password supplier or supplier123 ?? [Observed result] error occures . The login page is not available see attachement. ![controller](https://user-images.githubusercontent.com/15209605/44708911-9a9ce000-aaa8-11e8-9659-4627ea9e7f95.PNG) additionally the login to ..8081/oscm-portal with "supplier@adfs.com" and "supplier123" is not possible any more see attachement ![locked](https://user-images.githubusercontent.com/15209605/44708923-a1c3ee00-aaa8-11e8-8e6d-dc8ba8beb005.PNG) note: I've tested with firefox private mode to avoid caching
non_defect
password change for the owner of the vmware controller failed docker the oscm installation was done from scratch in clean environment with sample data docker run name rm v workspace target v var run docker sock var run docker sock e initdb true e sample data true e startup true artifactory intern est fujitsu com oscmdocker oscm deployer qa login to oscm portal with supplier adfs com and password supplier works fine login to vmware controller with supplier adfs com and password supplier works fine login to oscm portal with supplier adfs com and password supplier click account and change password to try to login to vmware controller login works fine with password supplier or error occures the login page is not available see attachement additionally the login to oscm portal with supplier adfs com and is not possible any more see attachement note i ve tested with firefox private mode to avoid caching
0
57,168
15,725,322,073
IssuesEvent
2021-03-29 09:51:24
danmar/testissues
https://api.github.com/repos/danmar/testissues
opened
Does not understand . as current folder (Trac #4)
Incomplete Migration Migrated from Trac Other defect kimmov
Migrated from https://trac.cppcheck.net/ticket/4 ```json { "status": "closed", "changetime": "2009-03-04T13:44:33", "description": "It is common idiom in Unix/Linux shells to use . for current folder. But unfortunately this command for {{{cppcheck}}} does not work:\n{{{cppcheck.exe --quiet --all .}}}\n\nI want it to process current folder like the help text suggests:\n''If path is given instead of filename, *.cpp, *.cxx, *.cc and *.c files are checked recursively from given directory:\ncppcheck . 2> err.txt''\n\nShell: Windows Vista Home Premium (SP1) console\nAlso checked with Cygwin + Bash\n", "reporter": "kimmov", "cc": "sigra", "resolution": "fixed", "_ts": "1236174273000000", "component": "Other", "summary": "Does not understand . as current folder", "priority": "normal", "keywords": "", "time": "2009-01-16T21:08:27", "milestone": "1.28", "owner": "kimmov", "type": "defect" } ```
1.0
Does not understand . as current folder (Trac #4) - Migrated from https://trac.cppcheck.net/ticket/4 ```json { "status": "closed", "changetime": "2009-03-04T13:44:33", "description": "It is common idiom in Unix/Linux shells to use . for current folder. But unfortunately this command for {{{cppcheck}}} does not work:\n{{{cppcheck.exe --quiet --all .}}}\n\nI want it to process current folder like the help text suggests:\n''If path is given instead of filename, *.cpp, *.cxx, *.cc and *.c files are checked recursively from given directory:\ncppcheck . 2> err.txt''\n\nShell: Windows Vista Home Premium (SP1) console\nAlso checked with Cygwin + Bash\n", "reporter": "kimmov", "cc": "sigra", "resolution": "fixed", "_ts": "1236174273000000", "component": "Other", "summary": "Does not understand . as current folder", "priority": "normal", "keywords": "", "time": "2009-01-16T21:08:27", "milestone": "1.28", "owner": "kimmov", "type": "defect" } ```
defect
does not understand as current folder trac migrated from json status closed changetime description it is common idiom in unix linux shells to use for current folder but unfortunately this command for cppcheck does not work n cppcheck exe quiet all n ni want it to process current folder like the help text suggests n if path is given instead of filename cpp cxx cc and c files are checked recursively from given directory ncppcheck err txt n nshell windows vista home premium console nalso checked with cygwin bash n reporter kimmov cc sigra resolution fixed ts component other summary does not understand as current folder priority normal keywords time milestone owner kimmov type defect
1
53,112
7,807,382,639
IssuesEvent
2018-06-11 16:40:25
kubernetes/kubernetes
https://api.github.com/repos/kubernetes/kubernetes
closed
CAs, certs and keys passed to apiservers are incomprehensible
kind/documentation lifecycle/rotten sig/auth
kube-apiserver (and extension apiservers) take a number of different auth related command line flags. Often but not always in triplets (-CA, -cert, -key). Many of the names of these flags are similar even though the flags do completely different things. (e.g. see https://github.com/kubernetes/kubernetes/issues/53828#issuecomment-339832669) This issue is a request for a comprehensive, simply written guide to what these certs are, what they do, what powers they give, what their lifecycle ought to be, when users should rotate them, etc. The follow up request is to change their names to make them less confusing, more consistent, etc.
1.0
CAs, certs and keys passed to apiservers are incomprehensible - kube-apiserver (and extension apiservers) take a number of different auth related command line flags. Often but not always in triplets (-CA, -cert, -key). Many of the names of these flags are similar even though the flags do completely different things. (e.g. see https://github.com/kubernetes/kubernetes/issues/53828#issuecomment-339832669) This issue is a request for a comprehensive, simply written guide to what these certs are, what they do, what powers they give, what their lifecycle ought to be, when users should rotate them, etc. The follow up request is to change their names to make them less confusing, more consistent, etc.
non_defect
cas certs and keys passed to apiservers are incomprehensible kube apiserver and extension apiservers take a number of different auth related command line flags often but not always in triplets ca cert key many of the names of these flags are similar even though the flags do completely different things e g see this issue is a request for a comprehensive simply written guide to what these certs are what they do what powers they give what their lifecycle ought to be when users should rotate them etc the follow up request is to change their names to make them less confusing more consistent etc
0
136,145
19,712,730,744
IssuesEvent
2022-01-13 07:51:55
codeanit/til
https://api.github.com/repos/codeanit/til
opened
Five principles of co-innovation by Helen Percy, James Turner and Wendy Boyce
wip design systems-thinking
What is co-innovation and how can it be applied in practice in a research project? Co-innovation is the process of jointly developing new or different solutions to a complex problem through multi-participant research processes – and keeping these processes alive throughout the research. Co-innovation is most suited to hard-to-solve technical, social, cultural and economic challenges. Such challenges have no obvious cause and effect relationships, as well as many different players with a stake in the research problem and solution. These include policy makers, industry, community members, first nations representatives and others who are involved in the research as partners and stakeholders. One way to think about co-innovation is as a research approach which emphasizes working with others at each stage of the research process. The first stage (co-design) includes the design of the research issues and outcomes with partners and stakeholders. Once the issues and outcomes of the research are designed, the next stage (co-develop) is to develop the details of the research process. This should include the shared development of an evaluation framework, and ways for the research team to learn and adapt the research as it proceeds. Processes to share the results and implement the findings are required during, and at the end of, the research. ![image](https://user-images.githubusercontent.com/414141/149287349-eda61c05-da90-4cce-b017-6f6efe74858a.png) There are five key principles to co-innovation that can be applied in research projects. These principles are in no order of priority. ![image](https://user-images.githubusercontent.com/414141/149287574-c120d387-20db-4c51-b79e-e95a6a8baa13.png) 1. Involve Partners and Stakeholders This is about identifying and involving those who will benefit from the research in order to understand the problem from the beginning and develop solutions together throughout the research process. Questions to ask: - Does your project include people who can help to understand the nature of the problem (or opportunity) and its causes? - Does the project include opportunities to work with people who could influence the implementation of the research, including those who could take the ideas to the market (entrepreneurs) or create the rules supporting implementation (policy makers)? - Do the partners and stakeholders understand their role in the research project? 2. Take a Problem Focus In research we often want to jump straight into the ‘doing’ without clearly identifying the problem that is being addressed. A co-innovation approach means putting the problem at the center (rather than the technology or end-user). For example, in our agricultural context, it is not about the farmer (as the end user) who needs to change, but about everyone (researchers, farmers, policy makers, industry etc) addressing the shared problem together rather than focusing on their own ideas. Questions to ask: - Does the project include activities to first identify the problem or opportunity? - Are you able to repeat these activities at key points in your research process to maintain a problem focus? - Have you taken a broad view of the system by describing the technical, social, cultural, economic, market and political aspects of the problem and solution? - Are there opportunities to change activities to reflect changes in understanding of the problem (eg., stop/go milestones or explicit re-planning steps)? 3. Assemble and nurture the right team In addition to the technical skills, there need to be people with collaborative skills who can strengthen the team’s ability to co-innovate. These are people who can take a broader view of the system and act as translators or brokers between the researchers, and partners and stakeholders. Collaborative and open leadership is also important. Questions to ask: - Do you have people in the team (or access to people) with skills such as system thinkers, facilitators, translators and brokers? - Have you allowed enough time up front to fully understand the language and approaches of the different disciplines and perspectives in your research team? 4. Front up – share results early and often This means that data and results are shared as they emerge, rather than waiting until the end of the research. This helps to understand how the results fit with user knowledge, identify new questions, check that the results are meaningful and/or relevant to users, and keeps the partners and stakeholders engaged in the research process. Questions to ask: - Do you have regular activities with stakeholders to hear, reflect on, learn from, and provide feedback on the research? (For example, project workshops or field days?) - Does the project include opportunities and resources for non-research partners to contribute data, knowledge and skills? 5. Plan- Do- Observe- Reflect: action learning cycle This principle is about building in a rapid action learning cycle of Plan-Do-Observe (monitor)-Reflect to enable projects to maintain a focus on action, as well as adapting to changing circumstances and quickly seizing new opportunities for success. One good way to do this is to build in monitoring and evaluation activities from the beginning, using participatory processes with a focus on reflection and learning. Questions to ask: - Have you built in monitoring and evaluation from the beginning of the project and sufficient time and resources to support this? - Does the project include resources and time for reflecting on progress with partners and stakeholders? # Resource - [ ] https://i2insights.org/2019/07/16/five-principles-of-co-innovation - [ ] Impact planning tool (stakeholder analysis) can help identify partners and stakeholders, as well as taking a problem focus: https://www.beyondresults.co.nz/tools/impact-planning-tool/ - [ ] Participatory programme logic can help with taking a problem focus and the action learning cycle: https://www.beyondresults.co.nz/tools/impact-planning-tool-2/ - [ ] The activity plan can help with sharing results: https://www.beyondresults.co.nz/assets/Documents/08ef110b58/Activity-Planning-Tool.pdf (PDF 409KB) - [ ] Evaluation methods can help with the action learning cycle: https://www.beyondresults.co.nz/tools/evaluation-methods/
1.0
Five principles of co-innovation by Helen Percy, James Turner and Wendy Boyce - What is co-innovation and how can it be applied in practice in a research project? Co-innovation is the process of jointly developing new or different solutions to a complex problem through multi-participant research processes – and keeping these processes alive throughout the research. Co-innovation is most suited to hard-to-solve technical, social, cultural and economic challenges. Such challenges have no obvious cause and effect relationships, as well as many different players with a stake in the research problem and solution. These include policy makers, industry, community members, first nations representatives and others who are involved in the research as partners and stakeholders. One way to think about co-innovation is as a research approach which emphasizes working with others at each stage of the research process. The first stage (co-design) includes the design of the research issues and outcomes with partners and stakeholders. Once the issues and outcomes of the research are designed, the next stage (co-develop) is to develop the details of the research process. This should include the shared development of an evaluation framework, and ways for the research team to learn and adapt the research as it proceeds. Processes to share the results and implement the findings are required during, and at the end of, the research. ![image](https://user-images.githubusercontent.com/414141/149287349-eda61c05-da90-4cce-b017-6f6efe74858a.png) There are five key principles to co-innovation that can be applied in research projects. These principles are in no order of priority. ![image](https://user-images.githubusercontent.com/414141/149287574-c120d387-20db-4c51-b79e-e95a6a8baa13.png) 1. Involve Partners and Stakeholders This is about identifying and involving those who will benefit from the research in order to understand the problem from the beginning and develop solutions together throughout the research process. Questions to ask: - Does your project include people who can help to understand the nature of the problem (or opportunity) and its causes? - Does the project include opportunities to work with people who could influence the implementation of the research, including those who could take the ideas to the market (entrepreneurs) or create the rules supporting implementation (policy makers)? - Do the partners and stakeholders understand their role in the research project? 2. Take a Problem Focus In research we often want to jump straight into the ‘doing’ without clearly identifying the problem that is being addressed. A co-innovation approach means putting the problem at the center (rather than the technology or end-user). For example, in our agricultural context, it is not about the farmer (as the end user) who needs to change, but about everyone (researchers, farmers, policy makers, industry etc) addressing the shared problem together rather than focusing on their own ideas. Questions to ask: - Does the project include activities to first identify the problem or opportunity? - Are you able to repeat these activities at key points in your research process to maintain a problem focus? - Have you taken a broad view of the system by describing the technical, social, cultural, economic, market and political aspects of the problem and solution? - Are there opportunities to change activities to reflect changes in understanding of the problem (eg., stop/go milestones or explicit re-planning steps)? 3. Assemble and nurture the right team In addition to the technical skills, there need to be people with collaborative skills who can strengthen the team’s ability to co-innovate. These are people who can take a broader view of the system and act as translators or brokers between the researchers, and partners and stakeholders. Collaborative and open leadership is also important. Questions to ask: - Do you have people in the team (or access to people) with skills such as system thinkers, facilitators, translators and brokers? - Have you allowed enough time up front to fully understand the language and approaches of the different disciplines and perspectives in your research team? 4. Front up – share results early and often This means that data and results are shared as they emerge, rather than waiting until the end of the research. This helps to understand how the results fit with user knowledge, identify new questions, check that the results are meaningful and/or relevant to users, and keeps the partners and stakeholders engaged in the research process. Questions to ask: - Do you have regular activities with stakeholders to hear, reflect on, learn from, and provide feedback on the research? (For example, project workshops or field days?) - Does the project include opportunities and resources for non-research partners to contribute data, knowledge and skills? 5. Plan- Do- Observe- Reflect: action learning cycle This principle is about building in a rapid action learning cycle of Plan-Do-Observe (monitor)-Reflect to enable projects to maintain a focus on action, as well as adapting to changing circumstances and quickly seizing new opportunities for success. One good way to do this is to build in monitoring and evaluation activities from the beginning, using participatory processes with a focus on reflection and learning. Questions to ask: - Have you built in monitoring and evaluation from the beginning of the project and sufficient time and resources to support this? - Does the project include resources and time for reflecting on progress with partners and stakeholders? # Resource - [ ] https://i2insights.org/2019/07/16/five-principles-of-co-innovation - [ ] Impact planning tool (stakeholder analysis) can help identify partners and stakeholders, as well as taking a problem focus: https://www.beyondresults.co.nz/tools/impact-planning-tool/ - [ ] Participatory programme logic can help with taking a problem focus and the action learning cycle: https://www.beyondresults.co.nz/tools/impact-planning-tool-2/ - [ ] The activity plan can help with sharing results: https://www.beyondresults.co.nz/assets/Documents/08ef110b58/Activity-Planning-Tool.pdf (PDF 409KB) - [ ] Evaluation methods can help with the action learning cycle: https://www.beyondresults.co.nz/tools/evaluation-methods/
non_defect
five principles of co innovation by helen percy james turner and wendy boyce what is co innovation and how can it be applied in practice in a research project co innovation is the process of jointly developing new or different solutions to a complex problem through multi participant research processes – and keeping these processes alive throughout the research co innovation is most suited to hard to solve technical social cultural and economic challenges such challenges have no obvious cause and effect relationships as well as many different players with a stake in the research problem and solution these include policy makers industry community members first nations representatives and others who are involved in the research as partners and stakeholders one way to think about co innovation is as a research approach which emphasizes working with others at each stage of the research process the first stage co design includes the design of the research issues and outcomes with partners and stakeholders once the issues and outcomes of the research are designed the next stage co develop is to develop the details of the research process this should include the shared development of an evaluation framework and ways for the research team to learn and adapt the research as it proceeds processes to share the results and implement the findings are required during and at the end of the research there are five key principles to co innovation that can be applied in research projects these principles are in no order of priority involve partners and stakeholders this is about identifying and involving those who will benefit from the research in order to understand the problem from the beginning and develop solutions together throughout the research process questions to ask does your project include people who can help to understand the nature of the problem or opportunity and its causes does the project include opportunities to work with people who could influence the implementation of the research including those who could take the ideas to the market entrepreneurs or create the rules supporting implementation policy makers do the partners and stakeholders understand their role in the research project take a problem focus in research we often want to jump straight into the ‘doing’ without clearly identifying the problem that is being addressed a co innovation approach means putting the problem at the center rather than the technology or end user for example in our agricultural context it is not about the farmer as the end user who needs to change but about everyone researchers farmers policy makers industry etc addressing the shared problem together rather than focusing on their own ideas questions to ask does the project include activities to first identify the problem or opportunity are you able to repeat these activities at key points in your research process to maintain a problem focus have you taken a broad view of the system by describing the technical social cultural economic market and political aspects of the problem and solution are there opportunities to change activities to reflect changes in understanding of the problem eg stop go milestones or explicit re planning steps assemble and nurture the right team in addition to the technical skills there need to be people with collaborative skills who can strengthen the team’s ability to co innovate these are people who can take a broader view of the system and act as translators or brokers between the researchers and partners and stakeholders collaborative and open leadership is also important questions to ask do you have people in the team or access to people with skills such as system thinkers facilitators translators and brokers have you allowed enough time up front to fully understand the language and approaches of the different disciplines and perspectives in your research team front up – share results early and often this means that data and results are shared as they emerge rather than waiting until the end of the research this helps to understand how the results fit with user knowledge identify new questions check that the results are meaningful and or relevant to users and keeps the partners and stakeholders engaged in the research process questions to ask do you have regular activities with stakeholders to hear reflect on learn from and provide feedback on the research for example project workshops or field days does the project include opportunities and resources for non research partners to contribute data knowledge and skills plan do observe reflect action learning cycle this principle is about building in a rapid action learning cycle of plan do observe monitor reflect to enable projects to maintain a focus on action as well as adapting to changing circumstances and quickly seizing new opportunities for success one good way to do this is to build in monitoring and evaluation activities from the beginning using participatory processes with a focus on reflection and learning questions to ask have you built in monitoring and evaluation from the beginning of the project and sufficient time and resources to support this does the project include resources and time for reflecting on progress with partners and stakeholders resource impact planning tool stakeholder analysis can help identify partners and stakeholders as well as taking a problem focus participatory programme logic can help with taking a problem focus and the action learning cycle the activity plan can help with sharing results pdf evaluation methods can help with the action learning cycle
0
47,201
13,056,053,136
IssuesEvent
2020-07-30 03:30:45
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
closed
pyroot plays nice with numpy (Trac #126)
Migrated from Trac defect documentation
recently discovered. very easy to make root histograms from numpy data that has already had cuts/etc applied. need examples/docs. Migrated from https://code.icecube.wisc.edu/ticket/126 ```json { "status": "closed", "changetime": "2012-10-31T18:49:16", "description": "recently discovered. very easy to make root histograms\nfrom numpy data that has already had cuts/etc applied.\nneed examples/docs.", "reporter": "troy", "cc": "", "resolution": "wont or cant fix", "_ts": "1351709356000000", "component": "documentation", "summary": "pyroot plays nice with numpy", "priority": "normal", "keywords": "", "time": "2008-09-07T13:40:39", "milestone": "", "owner": "troy", "type": "defect" } ```
1.0
pyroot plays nice with numpy (Trac #126) - recently discovered. very easy to make root histograms from numpy data that has already had cuts/etc applied. need examples/docs. Migrated from https://code.icecube.wisc.edu/ticket/126 ```json { "status": "closed", "changetime": "2012-10-31T18:49:16", "description": "recently discovered. very easy to make root histograms\nfrom numpy data that has already had cuts/etc applied.\nneed examples/docs.", "reporter": "troy", "cc": "", "resolution": "wont or cant fix", "_ts": "1351709356000000", "component": "documentation", "summary": "pyroot plays nice with numpy", "priority": "normal", "keywords": "", "time": "2008-09-07T13:40:39", "milestone": "", "owner": "troy", "type": "defect" } ```
defect
pyroot plays nice with numpy trac recently discovered very easy to make root histograms from numpy data that has already had cuts etc applied need examples docs migrated from json status closed changetime description recently discovered very easy to make root histograms nfrom numpy data that has already had cuts etc applied nneed examples docs reporter troy cc resolution wont or cant fix ts component documentation summary pyroot plays nice with numpy priority normal keywords time milestone owner troy type defect
1
27,113
4,875,533,506
IssuesEvent
2016-11-16 09:53:35
TNGSB/eWallet
https://api.github.com/repos/TNGSB/eWallet
closed
eWallet_MobileApp_Android (Registration)_03112016
Defect - Medium (Sev-3)
[Defect_Mobile App 03112016 #01.xlsx](https://github.com/TNGSB/eWallet/files/568553/Defect_Mobile.App.03112016.01.xlsx) Test Description : To scroll and view the T&C Expected Result : User should be able to scroll and view the T&C content Actual Result : Unable to scroll and view the T&C content Attached document for your perusal
1.0
eWallet_MobileApp_Android (Registration)_03112016 - [Defect_Mobile App 03112016 #01.xlsx](https://github.com/TNGSB/eWallet/files/568553/Defect_Mobile.App.03112016.01.xlsx) Test Description : To scroll and view the T&C Expected Result : User should be able to scroll and view the T&C content Actual Result : Unable to scroll and view the T&C content Attached document for your perusal
defect
ewallet mobileapp android registration test description to scroll and view the t c expected result user should be able to scroll and view the t c content actual result unable to scroll and view the t c content attached document for your perusal
1
191,849
14,596,558,771
IssuesEvent
2020-12-20 16:20:27
Realm667/WolfenDoom
https://api.github.com/repos/Realm667/WolfenDoom
closed
'Make colormap' shows in Titlemap at start
playtesting
I'm guessing this is a debug message that was meant to remind someone to make a colormap. Which I doubt is even useful at this point since the entire project seems to depend on true-color rendering.
1.0
'Make colormap' shows in Titlemap at start - I'm guessing this is a debug message that was meant to remind someone to make a colormap. Which I doubt is even useful at this point since the entire project seems to depend on true-color rendering.
non_defect
make colormap shows in titlemap at start i m guessing this is a debug message that was meant to remind someone to make a colormap which i doubt is even useful at this point since the entire project seems to depend on true color rendering
0
157,409
12,372,587,529
IssuesEvent
2020-05-18 20:41:16
knative/eventing
https://api.github.com/repos/knative/eventing
closed
Duplicate Entries in https://github.com/knative/eventing/releases/download/v0.14.2/eventing.yaml
area/test-and-release kind/bug priority/awaiting-more-evidence
**Describe the bug** There appears to be lots of duplicate entries in the release file https://github.com/knative/eventing/releases/download/v0.14.2/eventing.yaml Examples ``` 2 x Deployment broker-controller 2 x HPA broker-filter-hpa 2 x HPA broker-ingress-hpa ``` **Knative release version** 1.14.2
1.0
Duplicate Entries in https://github.com/knative/eventing/releases/download/v0.14.2/eventing.yaml - **Describe the bug** There appears to be lots of duplicate entries in the release file https://github.com/knative/eventing/releases/download/v0.14.2/eventing.yaml Examples ``` 2 x Deployment broker-controller 2 x HPA broker-filter-hpa 2 x HPA broker-ingress-hpa ``` **Knative release version** 1.14.2
non_defect
duplicate entries in describe the bug there appears to be lots of duplicate entries in the release file examples x deployment broker controller x hpa broker filter hpa x hpa broker ingress hpa knative release version
0
442,078
12,737,317,193
IssuesEvent
2020-06-25 18:32:17
woocommerce/woocommerce
https://api.github.com/repos/woocommerce/woocommerce
reopened
Add action for after remove_order_item
enhancement good first issue priority: low
I'm writing some custom functionality for a client that involves some hooks when a product is added or removed from an order within the admin. I was easily able to hook into the AJAX callback for add_order_item [with this hook](https://docs.woocommerce.com/wc-apidocs/source-class-WC_AJAX.html#920). However, looking at the AJAX callback for [remove_order_item](https://docs.woocommerce.com/wc-apidocs/source-class-WC_AJAX.html#1210) there is not a do_action here that I can hook into and have access to the $order like we can in the AJAX callback for add_order_item above. This function does call wc_delete_order_item() which has a hook `do_action( 'woocommerce_delete_order_item', $item_id );` but there's no $order/$order_id available there, just the removed item id.
1.0
Add action for after remove_order_item - I'm writing some custom functionality for a client that involves some hooks when a product is added or removed from an order within the admin. I was easily able to hook into the AJAX callback for add_order_item [with this hook](https://docs.woocommerce.com/wc-apidocs/source-class-WC_AJAX.html#920). However, looking at the AJAX callback for [remove_order_item](https://docs.woocommerce.com/wc-apidocs/source-class-WC_AJAX.html#1210) there is not a do_action here that I can hook into and have access to the $order like we can in the AJAX callback for add_order_item above. This function does call wc_delete_order_item() which has a hook `do_action( 'woocommerce_delete_order_item', $item_id );` but there's no $order/$order_id available there, just the removed item id.
non_defect
add action for after remove order item i m writing some custom functionality for a client that involves some hooks when a product is added or removed from an order within the admin i was easily able to hook into the ajax callback for add order item however looking at the ajax callback for there is not a do action here that i can hook into and have access to the order like we can in the ajax callback for add order item above this function does call wc delete order item which has a hook do action woocommerce delete order item item id but there s no order order id available there just the removed item id
0
165,973
26,261,185,009
IssuesEvent
2023-01-06 08:00:28
Team-B1ND/dui-android
https://api.github.com/repos/Team-B1ND/dui-android
closed
DUI 파운데이션 : Typography
DESIGN 🎨 FEATURE ⚡️
## 개요 글꼴, 텍스트 형식을 지정하는 Typography를 생성합니다. ## 작업 사항 - [x] 피그마에 기본 타이포 정하기 - [x] Font 추가하기 - [x] Header, Body... 코드로 작성 ## 기타 사항 빠르게..
1.0
DUI 파운데이션 : Typography - ## 개요 글꼴, 텍스트 형식을 지정하는 Typography를 생성합니다. ## 작업 사항 - [x] 피그마에 기본 타이포 정하기 - [x] Font 추가하기 - [x] Header, Body... 코드로 작성 ## 기타 사항 빠르게..
non_defect
dui 파운데이션 typography 개요 글꼴 텍스트 형식을 지정하는 typography를 생성합니다 작업 사항 피그마에 기본 타이포 정하기 font 추가하기 header body 코드로 작성 기타 사항 빠르게
0
55,115
14,226,228,508
IssuesEvent
2020-11-17 22:36:30
networkx/networkx
https://api.github.com/repos/networkx/networkx
closed
PythonRandomInterface seed initialized to None
Defect
https://github.com/networkx/networkx/blob/087ed3b9ff9d92cf97a1d5a5cb3afd1c8b78298d/networkx/utils/misc.py#L341 When `None` is passed as seed, the code flow initializes to a `RandomState()` then sets it back to `None`. Maybe an else is missing?
1.0
PythonRandomInterface seed initialized to None - https://github.com/networkx/networkx/blob/087ed3b9ff9d92cf97a1d5a5cb3afd1c8b78298d/networkx/utils/misc.py#L341 When `None` is passed as seed, the code flow initializes to a `RandomState()` then sets it back to `None`. Maybe an else is missing?
defect
pythonrandominterface seed initialized to none when none is passed as seed the code flow initializes to a randomstate then sets it back to none maybe an else is missing
1
76,447
26,430,429,898
IssuesEvent
2023-01-14 18:50:15
vector-im/element-web
https://api.github.com/repos/vector-im/element-web
opened
Element has memory leak (previous report was deleted)
T-Defect
### Steps to reproduce 1. Use Element Desktop. ### Outcome #### What did you expect? Freedom of speech. #### What happened instead? Banned in everyone Matrix and Element rooms and spaces for nick with reason "Help vamp". ![Element memory leak 2023](https://user-images.githubusercontent.com/24779886/212490876-3036c72f-5e59-46d2-81da-6fce85756774.jpg) ### Operating system _No response_ ### Application version 1.11.17 ### How did you install the app? _No response_ ### Homeserver _No response_ ### Will you send logs? No
1.0
Element has memory leak (previous report was deleted) - ### Steps to reproduce 1. Use Element Desktop. ### Outcome #### What did you expect? Freedom of speech. #### What happened instead? Banned in everyone Matrix and Element rooms and spaces for nick with reason "Help vamp". ![Element memory leak 2023](https://user-images.githubusercontent.com/24779886/212490876-3036c72f-5e59-46d2-81da-6fce85756774.jpg) ### Operating system _No response_ ### Application version 1.11.17 ### How did you install the app? _No response_ ### Homeserver _No response_ ### Will you send logs? No
defect
element has memory leak previous report was deleted steps to reproduce use element desktop outcome what did you expect freedom of speech what happened instead banned in everyone matrix and element rooms and spaces for nick with reason help vamp operating system no response application version how did you install the app no response homeserver no response will you send logs no
1
60,370
17,023,408,192
IssuesEvent
2021-07-03 01:52:33
tomhughes/trac-tickets
https://api.github.com/repos/tomhughes/trac-tickets
closed
GPX track imported with strange longitude
Component: api Priority: major Resolution: duplicate Type: defect
**[Submitted to the original trac issue database at 12.05pm, Monday, 25th May 2009]** http://openstreetmap.org/user/barefooted/traces/393572 has the longitude -150.575 instead of 9.4248940. Is there a bug in the parsing when there is a space as the first char of the longitude? This is the first trkpt: <trkpt lat="48.6874470" lon=" 9.4248940"> <ele>107.0</ele> <time>2009-05-24T16:11:39Z</time> </trkpt>
1.0
GPX track imported with strange longitude - **[Submitted to the original trac issue database at 12.05pm, Monday, 25th May 2009]** http://openstreetmap.org/user/barefooted/traces/393572 has the longitude -150.575 instead of 9.4248940. Is there a bug in the parsing when there is a space as the first char of the longitude? This is the first trkpt: <trkpt lat="48.6874470" lon=" 9.4248940"> <ele>107.0</ele> <time>2009-05-24T16:11:39Z</time> </trkpt>
defect
gpx track imported with strange longitude has the longitude instead of is there a bug in the parsing when there is a space as the first char of the longitude this is the first trkpt
1
46,994
13,056,011,400
IssuesEvent
2020-07-30 03:23:09
icecube-trac/tix2
https://api.github.com/repos/icecube-trac/tix2
opened
CORSIKA weighting depends on I3MCTree (Trac #2235)
Incomplete Migration Migrated from Trac combo simulation defect
Migrated from https://code.icecube.wisc.edu/ticket/2235 ```json { "status": "closed", "changetime": "2019-02-27T21:09:55", "description": "The WeightCalculatorBase class and subsequently all weighting modules in the weighting project silently fail (e.g. will not compute a weight) if they cannot find the primary particle. This happens when is there is no I3MCTree present in the frame, which is the case for recent simprod CORSIKA datasets (e.g. 20717), which only store I3MCTree_preMuonProp.\n\nThe weighting module needs to be updated to handle cases where only I3MCTree_preMuonProp and not I3MCTree is present. Currently this is a blocking problem for weighting these CORSIKA datasets.", "reporter": "icecube", "cc": "stuttard, juancarlos", "resolution": "fixed", "_ts": "1551301795209550", "component": "combo simulation", "summary": "CORSIKA weighting depends on I3MCTree", "priority": "major", "keywords": "", "time": "2019-01-26T11:08:58", "milestone": "Vernal Equinox 2019", "owner": "juancarlos", "type": "defect" } ```
1.0
CORSIKA weighting depends on I3MCTree (Trac #2235) - Migrated from https://code.icecube.wisc.edu/ticket/2235 ```json { "status": "closed", "changetime": "2019-02-27T21:09:55", "description": "The WeightCalculatorBase class and subsequently all weighting modules in the weighting project silently fail (e.g. will not compute a weight) if they cannot find the primary particle. This happens when is there is no I3MCTree present in the frame, which is the case for recent simprod CORSIKA datasets (e.g. 20717), which only store I3MCTree_preMuonProp.\n\nThe weighting module needs to be updated to handle cases where only I3MCTree_preMuonProp and not I3MCTree is present. Currently this is a blocking problem for weighting these CORSIKA datasets.", "reporter": "icecube", "cc": "stuttard, juancarlos", "resolution": "fixed", "_ts": "1551301795209550", "component": "combo simulation", "summary": "CORSIKA weighting depends on I3MCTree", "priority": "major", "keywords": "", "time": "2019-01-26T11:08:58", "milestone": "Vernal Equinox 2019", "owner": "juancarlos", "type": "defect" } ```
defect
corsika weighting depends on trac migrated from json status closed changetime description the weightcalculatorbase class and subsequently all weighting modules in the weighting project silently fail e g will not compute a weight if they cannot find the primary particle this happens when is there is no present in the frame which is the case for recent simprod corsika datasets e g which only store premuonprop n nthe weighting module needs to be updated to handle cases where only premuonprop and not is present currently this is a blocking problem for weighting these corsika datasets reporter icecube cc stuttard juancarlos resolution fixed ts component combo simulation summary corsika weighting depends on priority major keywords time milestone vernal equinox owner juancarlos type defect
1
38,592
8,922,132,325
IssuesEvent
2019-01-21 12:05:11
jOOQ/jOOQ
https://api.github.com/repos/jOOQ/jOOQ
opened
"Unnecessary" casts should no longer be ignored
C: Functionality E: All Editions P: Medium T: Defect
For implementation reasons, "unnecessary" casts were ignored with #473, since jOOQ 1.5.9. The reasons were related to jOOQ's internals using the public API to enforce casts, which were sometimes unnecessary. Now, this implementation detail leaks into the public API leading to users not being able to cast expressions to the desired type in some cases, such as this one, which results in wrong behaviour: #8191. jOOQ should no longer omit this cast but always render it, just as users requested through the API. jOOQ's internals need to be reviewed to check if any unnecessary new casts would be generated from this.
1.0
"Unnecessary" casts should no longer be ignored - For implementation reasons, "unnecessary" casts were ignored with #473, since jOOQ 1.5.9. The reasons were related to jOOQ's internals using the public API to enforce casts, which were sometimes unnecessary. Now, this implementation detail leaks into the public API leading to users not being able to cast expressions to the desired type in some cases, such as this one, which results in wrong behaviour: #8191. jOOQ should no longer omit this cast but always render it, just as users requested through the API. jOOQ's internals need to be reviewed to check if any unnecessary new casts would be generated from this.
defect
unnecessary casts should no longer be ignored for implementation reasons unnecessary casts were ignored with since jooq the reasons were related to jooq s internals using the public api to enforce casts which were sometimes unnecessary now this implementation detail leaks into the public api leading to users not being able to cast expressions to the desired type in some cases such as this one which results in wrong behaviour jooq should no longer omit this cast but always render it just as users requested through the api jooq s internals need to be reviewed to check if any unnecessary new casts would be generated from this
1
28,168
11,597,067,846
IssuesEvent
2020-02-24 20:07:03
Pure-Wallet/roadmap
https://api.github.com/repos/Pure-Wallet/roadmap
opened
Maximum Password Attempts
Security Wallet
Should we delete/lock the wallet after X attempts? Alternative: Store current time in a LockTime file, and if user tries to log in before time in LockTime, app closes/rejects.
True
Maximum Password Attempts - Should we delete/lock the wallet after X attempts? Alternative: Store current time in a LockTime file, and if user tries to log in before time in LockTime, app closes/rejects.
non_defect
maximum password attempts should we delete lock the wallet after x attempts alternative store current time in a locktime file and if user tries to log in before time in locktime app closes rejects
0
5,399
2,610,186,909
IssuesEvent
2015-02-26 18:59:17
chrsmith/quchuseban
https://api.github.com/repos/chrsmith/quchuseban
opened
引荐脸上有遗传色斑怎么办
auto-migrated Priority-Medium Type-Defect
``` 《摘要》 我不知道它从哪里来,要到哪里去,也不知道它因何而来,�� �何而去。时光的隧道里,它存在了千年,亦穿越了千年。期� ��的冷暖,个中的磨难,无论是深重,还是沧桑,都由它独自 承担。宛若前世预约的邂逅,只消一个照面,便刻在心尖,�� �此相互缠绕,相依相偎,彼此的世界都不再孤单。风起的日� ��,静静聆听它的浅吟低唱,风落的日子,默默细数风过的划 痕。任微风撩起岁月的裙幔,趟过飘香的温暖,漫过飞雪的�� �寒,直至生命烟消云散。但是岁月的脚步,真的无法更改吗� ��脸上的雀斑真的无法去除吗!脸上有遗传色斑怎么办, 《客户案例》   我是做软件开发的,很多男生都是做这个的,做我们这�� �的都是离不开电脑的,每天的工作就是对着电脑 ,一忙起来更是没什么时间概念了,有时候一天就能在电脑�� �呆十多个小时,就这样长时间面对电脑屏幕 ,每天都要承受很多的电脑辐射,时间长了脸上就出现了和�� �多斑斑点点。本来以为一个大男人长斑没什 么大不了的,也没在乎那么多,可我发现女朋友不要求我陪�� �了,时间长了,我才重视起来,对着镜子看 看自己,衣服不修边幅,头发乱蓬蓬的,还满脸的斑斑点点�� �要我是个女孩也不愿意,为了我的爱情,我 开始加入祛斑大军了,开始买各种各样的祛斑的化妆品,可�� �了一段时间,却看不到效果。一次在网上跟 一位网友聊天,从她那儿得知一款很好的祛斑产品—「黛芙�� �尔精华液」,她说她就是用的这个把斑去掉的,我听了后特� ��兴奋,马上给她要了联系方式,她给了我一个客服的Q号,�� �先在网上咨询了下客服, 说这个是纯精华的去斑精华液,是外用的,感觉没化妆品那�� �麻烦,感觉不错。便订购了2个周期,使用完 后脸上的斑真的不见了,皮肤也白多了了,当我拿着玫瑰站�� �女朋友面前,我们又和好如初了。 阅读了脸上有遗传色斑怎么办,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》   1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐�� �去掉吗?   答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新�� �客都是通过老顾客介绍而来,口碑由此而来!   2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技�� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!   3,去除黄褐斑之后,会反弹吗?   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌!我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗?   4,你们的价格有点贵,能不能便宜一点?   答:如果您使用西药最少需要2000元,煎服的药最少需要3 000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗   5,我适合用黛芙薇尔精华液吗?   答:黛芙薇尔适用人群:   1、生理紊乱引起的黄褐斑人群   2、生育引起的妊娠斑人群   3、年纪增长引起的老年斑人群   4、化妆品色素沉积、辐射斑人群   5、长期日照引起的日晒斑人群   6、肌肤暗淡急需美白的人群 《祛斑小方法》 脸上有遗传色斑怎么办,同时为您分享祛斑小方法 1、曲酸、熊果苷:抑制黑色素生成,使皮肤变得白净,美白� ��。 2、当归:入心脾经,补称作皮肤、毛发、五官的“建筑材料� ��,能使人容貌焕发,皮肤细嫩,富含维生素A、B12、E,还含� ��、镁等23种矿物质,可调节人体的新陈代谢,止血止痛,消� ��安神。 ``` ----- Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 4:03
1.0
引荐脸上有遗传色斑怎么办 - ``` 《摘要》 我不知道它从哪里来,要到哪里去,也不知道它因何而来,�� �何而去。时光的隧道里,它存在了千年,亦穿越了千年。期� ��的冷暖,个中的磨难,无论是深重,还是沧桑,都由它独自 承担。宛若前世预约的邂逅,只消一个照面,便刻在心尖,�� �此相互缠绕,相依相偎,彼此的世界都不再孤单。风起的日� ��,静静聆听它的浅吟低唱,风落的日子,默默细数风过的划 痕。任微风撩起岁月的裙幔,趟过飘香的温暖,漫过飞雪的�� �寒,直至生命烟消云散。但是岁月的脚步,真的无法更改吗� ��脸上的雀斑真的无法去除吗!脸上有遗传色斑怎么办, 《客户案例》   我是做软件开发的,很多男生都是做这个的,做我们这�� �的都是离不开电脑的,每天的工作就是对着电脑 ,一忙起来更是没什么时间概念了,有时候一天就能在电脑�� �呆十多个小时,就这样长时间面对电脑屏幕 ,每天都要承受很多的电脑辐射,时间长了脸上就出现了和�� �多斑斑点点。本来以为一个大男人长斑没什 么大不了的,也没在乎那么多,可我发现女朋友不要求我陪�� �了,时间长了,我才重视起来,对着镜子看 看自己,衣服不修边幅,头发乱蓬蓬的,还满脸的斑斑点点�� �要我是个女孩也不愿意,为了我的爱情,我 开始加入祛斑大军了,开始买各种各样的祛斑的化妆品,可�� �了一段时间,却看不到效果。一次在网上跟 一位网友聊天,从她那儿得知一款很好的祛斑产品—「黛芙�� �尔精华液」,她说她就是用的这个把斑去掉的,我听了后特� ��兴奋,马上给她要了联系方式,她给了我一个客服的Q号,�� �先在网上咨询了下客服, 说这个是纯精华的去斑精华液,是外用的,感觉没化妆品那�� �麻烦,感觉不错。便订购了2个周期,使用完 后脸上的斑真的不见了,皮肤也白多了了,当我拿着玫瑰站�� �女朋友面前,我们又和好如初了。 阅读了脸上有遗传色斑怎么办,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加,从怀孕4—5个月开始会容易出 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》   1,黛芙薇尔精华液真的有效果吗?真的可以把脸上的黄褐�� �去掉吗?   答:黛芙薇尔精华液DNA精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客,71%的新�� �客都是通过老顾客介绍而来,口碑由此而来!   2,服用黛芙薇尔美白,会伤身体吗?有副作用吗?   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“DNA美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作,超过10年的研究以全新的DNA肌肤修复技�� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖!   3,去除黄褐斑之后,会反弹吗?   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌!我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗?   4,你们的价格有点贵,能不能便宜一点?   答:如果您使用西药最少需要2000元,煎服的药最少需要3 000元,做手术最少是5000元,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助!一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗?你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗   5,我适合用黛芙薇尔精华液吗?   答:黛芙薇尔适用人群:   1、生理紊乱引起的黄褐斑人群   2、生育引起的妊娠斑人群   3、年纪增长引起的老年斑人群   4、化妆品色素沉积、辐射斑人群   5、长期日照引起的日晒斑人群   6、肌肤暗淡急需美白的人群 《祛斑小方法》 脸上有遗传色斑怎么办,同时为您分享祛斑小方法 1、曲酸、熊果苷:抑制黑色素生成,使皮肤变得白净,美白� ��。 2、当归:入心脾经,补称作皮肤、毛发、五官的“建筑材料� ��,能使人容貌焕发,皮肤细嫩,富含维生素A、B12、E,还含� ��、镁等23种矿物质,可调节人体的新陈代谢,止血止痛,消� ��安神。 ``` ----- Original issue reported on code.google.com by `additive...@gmail.com` on 1 Jul 2014 at 4:03
defect
引荐脸上有遗传色斑怎么办 《摘要》 我不知道它从哪里来,要到哪里去,也不知道它因何而来,�� �何而去。时光的隧道里,它存在了千年,亦穿越了千年。期� ��的冷暖,个中的磨难,无论是深重,还是沧桑,都由它独自 承担。宛若前世预约的邂逅,只消一个照面,便刻在心尖,�� �此相互缠绕,相依相偎,彼此的世界都不再孤单。风起的日� ��,静静聆听它的浅吟低唱,风落的日子,默默细数风过的划 痕。任微风撩起岁月的裙幔,趟过飘香的温暖,漫过飞雪的�� �寒,直至生命烟消云散。但是岁月的脚步,真的无法更改吗� ��脸上的雀斑真的无法去除吗!脸上有遗传色斑怎么办, 《客户案例》   我是做软件开发的,很多男生都是做这个的,做我们这�� �的都是离不开电脑的,每天的工作就是对着电脑 ,一忙起来更是没什么时间概念了,有时候一天就能在电脑�� �呆十多个小时,就这样长时间面对电脑屏幕 ,每天都要承受很多的电脑辐射,时间长了脸上就出现了和�� �多斑斑点点。本来以为一个大男人长斑没什 么大不了的,也没在乎那么多,可我发现女朋友不要求我陪�� �了,时间长了,我才重视起来,对着镜子看 看自己,衣服不修边幅,头发乱蓬蓬的,还满脸的斑斑点点�� �要我是个女孩也不愿意,为了我的爱情,我 开始加入祛斑大军了,开始买各种各样的祛斑的化妆品,可�� �了一段时间,却看不到效果。一次在网上跟 一位网友聊天,从她那儿得知一款很好的祛斑产品—「黛芙�� �尔精华液」,她说她就是用的这个把斑去掉的,我听了后特� ��兴奋,马上给她要了联系方式,她给了我一个客服的q号,�� �先在网上咨询了下客服, 说这个是纯精华的去斑精华液,是外用的,感觉没化妆品那�� �麻烦,感觉不错。 ,使用完 后脸上的斑真的不见了,皮肤也白多了了,当我拿着玫瑰站�� �女朋友面前,我们又和好如初了。 阅读了脸上有遗传色斑怎么办,再看脸上容易长斑的原因: 《色斑形成原因》   内部因素   一、压力   当人受到压力时,就会分泌肾上腺素,为对付压力而做�� �备。如果长期受到压力,人体新陈代谢的平衡就会遭到破坏� ��皮肤所需的营养供应趋于缓慢,色素母细胞就会变得很活跃 。   二、荷尔蒙分泌失调   避孕药里所含的女性荷尔蒙雌激素,会刺激麦拉宁细胞�� �分泌而形成不均匀的斑点,因避孕药而形成的斑点,虽然在� ��药中断后会停止,但仍会在皮肤上停留很长一段时间。怀孕 中因女性荷尔蒙雌激素的增加, — 现斑,这时候出现的斑点在产后大部分会消失。可是,新陈�� �谢不正常、肌肤裸露在强烈的紫外线下、精神上受到压力等� ��因,都会使斑加深。有时新长出的斑,产后也不会消失,所 以需要更加注意。   三、新陈代谢缓慢   肝的新陈代谢功能不正常或卵巢功能减退时也会出现斑�� �因为新陈代谢不顺畅、或内分泌失调,使身体处于敏感状态� ��,从而加剧色素问题。我们常说的便秘会形成斑,其实就是 内分泌失调导致过敏体质而形成的。另外,身体状态不正常�� �时候,紫外线的照射也会加速斑的形成。   四、错误的使用化妆品   使用了不适合自己皮肤的化妆品,会导致皮肤过敏。在�� �疗的过程中如过量照射到紫外线,皮肤会为了抵御外界的侵� ��,在有炎症的部位聚集麦拉宁色素,这样会出现色素沉着的 问题。   外部因素   一、紫外线   照射紫外线的时候,人体为了保护皮肤,会在基底层产�� �很多麦拉宁色素。所以为了保护皮肤,会在敏感部位聚集更� ��的色素。经常裸露在强烈的阳光底下不仅促进皮肤的老化, 还会引起黑斑、雀斑等色素沉着的皮肤疾患。   二、不良的清洁习惯   因强烈的清洁习惯使皮肤变得敏感,这样会刺激皮肤。�� �皮肤敏感时,人体为了保护皮肤,黑色素细胞会分泌很多麦� ��宁色素,当色素过剩时就出现了斑、瑕疵等皮肤色素沉着的 问题。   三、遗传基因   父母中有长斑的,则本人长斑的概率就很高,这种情况�� �一定程度上就可判定是遗传基因的作用。所以家里特别是长� ��有长斑的人,要注意避免引发长斑的重要因素之一——紫外 线照射,这是预防斑必须注意的。 《有疑问帮你解决》    黛芙薇尔精华液真的有效果吗 真的可以把脸上的黄褐�� �去掉吗   答:黛芙薇尔精华液dna精华能够有效的修复周围难以触�� �的色斑,其独有的纳豆成分为皮肤的美白与靓丽,提供了必� ��可少的营养物质,可以有效的去除黄褐斑,黄褐斑,黄褐斑 ,蝴蝶斑,晒斑、妊娠斑等。它它完全突破了传统的美肤时�� �,宛如在皮肤中注入了一杯兼具活化、再生、滋养等功效的� ��尾酒,同时为脸部提供大量有机维生素精华,脸部的改变显 而易见。自产品上市以来,老顾客纷纷介绍新顾客, 的新�� �客都是通过老顾客介绍而来,口碑由此而来    ,服用黛芙薇尔美白,会伤身体吗 有副作用吗   答:黛芙薇尔精华液应用了精纯复合配方和领先的分类�� �斑科技,并将“dna美肤系统”疗法应用到了该产品中,能彻� ��祛除黄褐斑,蝴蝶斑,妊娠斑,晒斑,黄褐斑,老年斑,有 效淡化黄褐斑至接近肤色。黛芙薇尔通过法国、美国、台湾�� �地的专家通力协作, �� �,挑战传统化学护肤理念,不懈追寻发现破译大自然的美丽� ��迹,令每一位爱美的女性都能享受到科技创新所带来的自然 之美。 专为亚洲女性肤质研制,精心呵护女性美丽,多年来,为数�� �百万计的女性解除了黄褐斑困扰。深得广大女性朋友的信赖    ,去除黄褐斑之后,会反弹吗   答:很多曾经长了黄褐斑的人士,自从选择了黛芙薇尔�� �白,就一劳永逸。这款祛斑产品是经过数十位权威祛斑专家� ��据斑的形成原因精心研制而成用事实说话,让消费者打分。 树立权威品牌 我们的很多新客户都是老客户介绍而来,请问� ��如果效果不好,会有客户转介绍吗    ,你们的价格有点贵,能不能便宜一点   答: , , ,而这些毫无疑问,不会对彻底去� ��你的斑点有任何帮助 一分价钱,一份价值,我们现在做的�� �是一个口碑,一个品牌,价钱并不高。如果花这点钱把你的� ��褐斑彻底去除,你还会觉得贵吗 你还会再去花那么多冤枉�� �,不但斑没去掉,还把自己的皮肤弄的越来越糟吗    ,我适合用黛芙薇尔精华液吗   答:黛芙薇尔适用人群:    、生理紊乱引起的黄褐斑人群    、生育引起的妊娠斑人群    、年纪增长引起的老年斑人群    、化妆品色素沉积、辐射斑人群    、长期日照引起的日晒斑人群    、肌肤暗淡急需美白的人群 《祛斑小方法》 脸上有遗传色斑怎么办,同时为您分享祛斑小方法 、曲酸、熊果苷:抑制黑色素生成,使皮肤变得白净,美白� ��。 、当归:入心脾经,补称作皮肤、毛发、五官的“建筑材料� ��,能使人容貌焕发,皮肤细嫩,富含维生素a、 、e,还含� ��、 ,可调节人体的新陈代谢,止血止痛,消� ��安神。 original issue reported on code google com by additive gmail com on jul at
1
26,194
11,273,359,007
IssuesEvent
2020-01-14 16:25:33
oasislabs/oasis-core
https://api.github.com/repos/oasislabs/oasis-core
closed
Transaction scheduler should use CheckTx
c:security c:worker-txnsched
As of #1555 the runtime exposes a CheckTx API for verifying incoming transactions but this is currently unused. The transaction scheduler should use the API to reject incoming transactions early instead of submitting them through the processing pipeline. The runtime must ensure that any such checks are cheap enough that they can be performed quickly and not become a bottleneck of the whole pipeline. *Estimated cost: 1 sprint*
True
Transaction scheduler should use CheckTx - As of #1555 the runtime exposes a CheckTx API for verifying incoming transactions but this is currently unused. The transaction scheduler should use the API to reject incoming transactions early instead of submitting them through the processing pipeline. The runtime must ensure that any such checks are cheap enough that they can be performed quickly and not become a bottleneck of the whole pipeline. *Estimated cost: 1 sprint*
non_defect
transaction scheduler should use checktx as of the runtime exposes a checktx api for verifying incoming transactions but this is currently unused the transaction scheduler should use the api to reject incoming transactions early instead of submitting them through the processing pipeline the runtime must ensure that any such checks are cheap enough that they can be performed quickly and not become a bottleneck of the whole pipeline estimated cost sprint
0
67,539
14,879,944,814
IssuesEvent
2021-01-20 08:29:48
loggly/Loggly-Puppet
https://api.github.com/repos/loggly/Loggly-Puppet
opened
CVE-2017-9049 (High) detected in nokogiri-1.6.6.2.gem
security vulnerability
## CVE-2017-9049 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>nokogiri-1.6.6.2.gem</b></p></summary> <p>Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among Nokogiri's many features is the ability to search documents via XPath or CSS3 selectors. XML is like violence - if it doesn’t solve your problems, you are not using enough of it.</p> <p>Library home page: <a href="https://rubygems.org/gems/nokogiri-1.6.6.2.gem">https://rubygems.org/gems/nokogiri-1.6.6.2.gem</a></p> <p> Dependency Hierarchy: - beaker-2.9.0.gem (Root Library) - rbvmomi-1.8.2.gem - :x: **nokogiri-1.6.6.2.gem** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://api.github.com/repos/loggly/Loggly-Puppet/commits/31f4247de6565ccd86be8301c9572b91f67a679b">31f4247de6565ccd86be8301c9572b91f67a679b</a></p> <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> libxml2 20904-GITv2.9.4-16-g0741801 is vulnerable to a heap-based buffer over-read in the xmlDictComputeFastKey function in dict.c. This vulnerability causes programs that use libxml2, such as PHP, to crash. This vulnerability exists because of an incomplete fix for libxml2 Bug 759398. <p>Publish Date: 2017-05-18 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-9049>CVE-2017-9049</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.5</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: None - Integrity Impact: None - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-9049">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-9049</a></p> <p>Release Date: 2017-05-18</p> <p>Fix Resolution: v2.9.4</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Ruby","packageName":"nokogiri","packageVersion":"1.6.6.2","isTransitiveDependency":true,"dependencyTree":"beaker:2.9.0;rbvmomi:1.8.2;nokogiri:1.6.6.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"v2.9.4"}],"vulnerabilityIdentifier":"CVE-2017-9049","vulnerabilityDetails":"libxml2 20904-GITv2.9.4-16-g0741801 is vulnerable to a heap-based buffer over-read in the xmlDictComputeFastKey function in dict.c. This vulnerability causes programs that use libxml2, such as PHP, to crash. This vulnerability exists because of an incomplete fix for libxml2 Bug 759398.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-9049","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
True
CVE-2017-9049 (High) detected in nokogiri-1.6.6.2.gem - ## CVE-2017-9049 - High Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>nokogiri-1.6.6.2.gem</b></p></summary> <p>Nokogiri (鋸) is an HTML, XML, SAX, and Reader parser. Among Nokogiri's many features is the ability to search documents via XPath or CSS3 selectors. XML is like violence - if it doesn’t solve your problems, you are not using enough of it.</p> <p>Library home page: <a href="https://rubygems.org/gems/nokogiri-1.6.6.2.gem">https://rubygems.org/gems/nokogiri-1.6.6.2.gem</a></p> <p> Dependency Hierarchy: - beaker-2.9.0.gem (Root Library) - rbvmomi-1.8.2.gem - :x: **nokogiri-1.6.6.2.gem** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://api.github.com/repos/loggly/Loggly-Puppet/commits/31f4247de6565ccd86be8301c9572b91f67a679b">31f4247de6565ccd86be8301c9572b91f67a679b</a></p> <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> libxml2 20904-GITv2.9.4-16-g0741801 is vulnerable to a heap-based buffer over-read in the xmlDictComputeFastKey function in dict.c. This vulnerability causes programs that use libxml2, such as PHP, to crash. This vulnerability exists because of an incomplete fix for libxml2 Bug 759398. <p>Publish Date: 2017-05-18 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-9049>CVE-2017-9049</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.5</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: None - Integrity Impact: None - 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://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-9049">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-9049</a></p> <p>Release Date: 2017-05-18</p> <p>Fix Resolution: v2.9.4</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Ruby","packageName":"nokogiri","packageVersion":"1.6.6.2","isTransitiveDependency":true,"dependencyTree":"beaker:2.9.0;rbvmomi:1.8.2;nokogiri:1.6.6.2","isMinimumFixVersionAvailable":true,"minimumFixVersion":"v2.9.4"}],"vulnerabilityIdentifier":"CVE-2017-9049","vulnerabilityDetails":"libxml2 20904-GITv2.9.4-16-g0741801 is vulnerable to a heap-based buffer over-read in the xmlDictComputeFastKey function in dict.c. This vulnerability causes programs that use libxml2, such as PHP, to crash. This vulnerability exists because of an incomplete fix for libxml2 Bug 759398.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2017-9049","cvss3Severity":"high","cvss3Score":"7.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"None","AV":"Network","I":"None"},"extraData":{}}</REMEDIATE> -->
non_defect
cve high detected in nokogiri gem cve high severity vulnerability vulnerable library nokogiri gem nokogiri 鋸 is an html xml sax and reader parser among nokogiri s many features is the ability to search documents via xpath or selectors xml is like violence if it doesn’t solve your problems you are not using enough of it library home page a href dependency hierarchy beaker gem root library rbvmomi gem x nokogiri gem vulnerable library found in head commit a href found in base branch master vulnerability details is vulnerable to a heap based buffer over read in the xmldictcomputefastkey function in dict c this vulnerability causes programs that use such as php to crash this vulnerability exists because of an incomplete fix for bug 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 none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution isopenpronvulnerability false ispackagebased true isdefaultbranch true packages vulnerabilityidentifier cve vulnerabilitydetails is vulnerable to a heap based buffer over read in the xmldictcomputefastkey function in dict c this vulnerability causes programs that use such as php to crash this vulnerability exists because of an incomplete fix for bug vulnerabilityurl
0
183,779
21,784,480,545
IssuesEvent
2022-05-14 00:19:50
billmcchesney1/location-intelligence-places-reference-application
https://api.github.com/repos/billmcchesney1/location-intelligence-places-reference-application
opened
CVE-2022-22970 (Medium) detected in spring-beans-5.2.5.RELEASE.jar
security vulnerability
## CVE-2022-22970 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-beans-5.2.5.RELEASE.jar</b></p></summary> <p>Spring Beans</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-beans/5.2.5.RELEASE/spring-beans-5.2.5.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-web-2.2.6.RELEASE.jar (Root Library) - spring-web-5.2.5.RELEASE.jar - :x: **spring-beans-5.2.5.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/billmcchesney1/location-intelligence-places-reference-application/commit/d240b4d4d753e0ca9c5d0fbf675b0e8e64320729">d240b4d4d753e0ca9c5d0fbf675b0e8e64320729</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> In spring framework versions prior to 5.3.20+ , 5.2.22+ and old unsupported versions, applications that handle file uploads are vulnerable to DoS attack if they rely on data binding to set a MultipartFile or javax.servlet.Part to a field in a model object. <p>Publish Date: 2022-05-12 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-22970>CVE-2022-22970</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.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - 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://tanzu.vmware.com/security/cve-2022-22970">https://tanzu.vmware.com/security/cve-2022-22970</a></p> <p>Release Date: 2022-05-12</p> <p>Fix Resolution: org.springframework:spring-beans:5.2.22,5.3.20;org.springframework:spring-core:5.2.22,5.3.20</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.springframework","packageName":"spring-beans","packageVersion":"5.2.5.RELEASE","packageFilePaths":["/pom.xml"],"isTransitiveDependency":true,"dependencyTree":"org.springframework.boot:spring-boot-starter-web:2.2.6.RELEASE;org.springframework:spring-web:5.2.5.RELEASE;org.springframework:spring-beans:5.2.5.RELEASE","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.springframework:spring-beans:5.2.22,5.3.20;org.springframework:spring-core:5.2.22,5.3.20","isBinary":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2022-22970","vulnerabilityDetails":"In spring framework versions prior to 5.3.20+ , 5.2.22+ and old unsupported versions, applications that handle file uploads are vulnerable to DoS attack if they rely on data binding to set a MultipartFile or javax.servlet.Part to a field in a model object.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-22970","cvss3Severity":"medium","cvss3Score":"5.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Local","I":"None"},"extraData":{}}</REMEDIATE> -->
True
CVE-2022-22970 (Medium) detected in spring-beans-5.2.5.RELEASE.jar - ## CVE-2022-22970 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>spring-beans-5.2.5.RELEASE.jar</b></p></summary> <p>Spring Beans</p> <p>Library home page: <a href="https://github.com/spring-projects/spring-framework">https://github.com/spring-projects/spring-framework</a></p> <p>Path to dependency file: /pom.xml</p> <p>Path to vulnerable library: /home/wss-scanner/.m2/repository/org/springframework/spring-beans/5.2.5.RELEASE/spring-beans-5.2.5.RELEASE.jar</p> <p> Dependency Hierarchy: - spring-boot-starter-web-2.2.6.RELEASE.jar (Root Library) - spring-web-5.2.5.RELEASE.jar - :x: **spring-beans-5.2.5.RELEASE.jar** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/billmcchesney1/location-intelligence-places-reference-application/commit/d240b4d4d753e0ca9c5d0fbf675b0e8e64320729">d240b4d4d753e0ca9c5d0fbf675b0e8e64320729</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> In spring framework versions prior to 5.3.20+ , 5.2.22+ and old unsupported versions, applications that handle file uploads are vulnerable to DoS attack if they rely on data binding to set a MultipartFile or javax.servlet.Part to a field in a model object. <p>Publish Date: 2022-05-12 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-22970>CVE-2022-22970</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.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - 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://tanzu.vmware.com/security/cve-2022-22970">https://tanzu.vmware.com/security/cve-2022-22970</a></p> <p>Release Date: 2022-05-12</p> <p>Fix Resolution: org.springframework:spring-beans:5.2.22,5.3.20;org.springframework:spring-core:5.2.22,5.3.20</p> </p> </details> <p></p> <!-- <REMEDIATE>{"isOpenPROnVulnerability":false,"isPackageBased":true,"isDefaultBranch":true,"packages":[{"packageType":"Java","groupId":"org.springframework","packageName":"spring-beans","packageVersion":"5.2.5.RELEASE","packageFilePaths":["/pom.xml"],"isTransitiveDependency":true,"dependencyTree":"org.springframework.boot:spring-boot-starter-web:2.2.6.RELEASE;org.springframework:spring-web:5.2.5.RELEASE;org.springframework:spring-beans:5.2.5.RELEASE","isMinimumFixVersionAvailable":true,"minimumFixVersion":"org.springframework:spring-beans:5.2.22,5.3.20;org.springframework:spring-core:5.2.22,5.3.20","isBinary":false}],"baseBranches":["master"],"vulnerabilityIdentifier":"CVE-2022-22970","vulnerabilityDetails":"In spring framework versions prior to 5.3.20+ , 5.2.22+ and old unsupported versions, applications that handle file uploads are vulnerable to DoS attack if they rely on data binding to set a MultipartFile or javax.servlet.Part to a field in a model object.","vulnerabilityUrl":"https://vuln.whitesourcesoftware.com/vulnerability/CVE-2022-22970","cvss3Severity":"medium","cvss3Score":"5.5","cvss3Metrics":{"A":"High","AC":"Low","PR":"None","S":"Unchanged","C":"None","UI":"Required","AV":"Local","I":"None"},"extraData":{}}</REMEDIATE> -->
non_defect
cve medium detected in spring beans release jar cve medium severity vulnerability vulnerable library spring beans release jar spring beans library home page a href path to dependency file pom xml path to vulnerable library home wss scanner repository org springframework spring beans release spring beans release jar dependency hierarchy spring boot starter web release jar root library spring web release jar x spring beans release jar vulnerable library found in head commit a href found in base branch master vulnerability details in spring framework versions prior to and old unsupported versions applications that handle file uploads are vulnerable to dos attack if they rely on data binding to set a multipartfile or javax servlet part to a field in a model object publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution org springframework spring beans org springframework spring core isopenpronvulnerability false ispackagebased true isdefaultbranch true packages istransitivedependency true dependencytree org springframework boot spring boot starter web release org springframework spring web release org springframework spring beans release isminimumfixversionavailable true minimumfixversion org springframework spring beans org springframework spring core isbinary false basebranches vulnerabilityidentifier cve vulnerabilitydetails in spring framework versions prior to and old unsupported versions applications that handle file uploads are vulnerable to dos attack if they rely on data binding to set a multipartfile or javax servlet part to a field in a model object vulnerabilityurl
0
6,174
6,217,685,011
IssuesEvent
2017-07-08 17:18:34
mathysjtaljaard/phishing-for-topics
https://api.github.com/repos/mathysjtaljaard/phishing-for-topics
opened
Docker for development
infrastructure
- [ ] Dockerfile - [ ] package.json updates - [ ] docker-compose.yml - [ ] Update readme (kill eject shortcut)
1.0
Docker for development - - [ ] Dockerfile - [ ] package.json updates - [ ] docker-compose.yml - [ ] Update readme (kill eject shortcut)
non_defect
docker for development dockerfile package json updates docker compose yml update readme kill eject shortcut
0
206,781
23,397,795,706
IssuesEvent
2022-08-12 03:03:06
nexmo-community/vonage-voice-api-workshop
https://api.github.com/repos/nexmo-community/vonage-voice-api-workshop
opened
jquery-3.3.1.min.js: 3 vulnerabilities (highest severity is: 6.1)
security vulnerability
<details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-3.3.1.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js</a></p> <p>Path to vulnerable library: /themes/hugo-theme-learn/static/js/jquery-3.3.1.min.js,/public/js/jquery-3.3.1.min.js</p> <p> <p>Found in HEAD commit: <a href="https://github.com/nexmo-community/vonage-voice-api-workshop/commit/211ff1b4edb6cea818204ada5b7fa9cb7086399d">211ff1b4edb6cea818204ada5b7fa9cb7086399d</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | --- | --- | | [CVE-2020-11023](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11023) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | jquery-3.3.1.min.js | Direct | jquery - 3.5.0;jquery-rails - 4.4.0 | &#10060; | | [CVE-2020-11022](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11022) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | jquery-3.3.1.min.js | Direct | jQuery - 3.5.0 | &#10060; | | [CVE-2019-11358](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | jquery-3.3.1.min.js | Direct | 3.4.0 | &#10060; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2020-11023</summary> ### Vulnerable Library - <b>jquery-3.3.1.min.js</b></p> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js</a></p> <p>Path to vulnerable library: /themes/hugo-theme-learn/static/js/jquery-3.3.1.min.js,/public/js/jquery-3.3.1.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-3.3.1.min.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/nexmo-community/vonage-voice-api-workshop/commit/211ff1b4edb6cea818204ada5b7fa9cb7086399d">211ff1b4edb6cea818204ada5b7fa9cb7086399d</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> In jQuery versions greater than or equal to 1.0.3 and before 3.5.0, passing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0. <p>Publish Date: 2020-04-29 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11023>CVE-2020-11023</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.1</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440">https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440</a></p> <p>Release Date: 2020-04-29</p> <p>Fix Resolution: jquery - 3.5.0;jquery-rails - 4.4.0</p> </p> <p></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2020-11022</summary> ### Vulnerable Library - <b>jquery-3.3.1.min.js</b></p> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js</a></p> <p>Path to vulnerable library: /themes/hugo-theme-learn/static/js/jquery-3.3.1.min.js,/public/js/jquery-3.3.1.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-3.3.1.min.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/nexmo-community/vonage-voice-api-workshop/commit/211ff1b4edb6cea818204ada5b7fa9cb7086399d">211ff1b4edb6cea818204ada5b7fa9cb7086399d</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> In jQuery versions greater than or equal to 1.2 and before 3.5.0, passing HTML from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0. <p>Publish Date: 2020-04-29 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11022>CVE-2020-11022</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.1</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/">https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/</a></p> <p>Release Date: 2020-04-29</p> <p>Fix Resolution: jQuery - 3.5.0</p> </p> <p></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2019-11358</summary> ### Vulnerable Library - <b>jquery-3.3.1.min.js</b></p> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js</a></p> <p>Path to vulnerable library: /themes/hugo-theme-learn/static/js/jquery-3.3.1.min.js,/public/js/jquery-3.3.1.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-3.3.1.min.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/nexmo-community/vonage-voice-api-workshop/commit/211ff1b4edb6cea818204ada5b7fa9cb7086399d">211ff1b4edb6cea818204ada5b7fa9cb7086399d</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype. <p>Publish Date: 2019-04-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358>CVE-2019-11358</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.1</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358</a></p> <p>Release Date: 2019-04-20</p> <p>Fix Resolution: 3.4.0</p> </p> <p></p> </details>
True
jquery-3.3.1.min.js: 3 vulnerabilities (highest severity is: 6.1) - <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>jquery-3.3.1.min.js</b></p></summary> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js</a></p> <p>Path to vulnerable library: /themes/hugo-theme-learn/static/js/jquery-3.3.1.min.js,/public/js/jquery-3.3.1.min.js</p> <p> <p>Found in HEAD commit: <a href="https://github.com/nexmo-community/vonage-voice-api-workshop/commit/211ff1b4edb6cea818204ada5b7fa9cb7086399d">211ff1b4edb6cea818204ada5b7fa9cb7086399d</a></p></details> ## Vulnerabilities | CVE | Severity | <img src='https://whitesource-resources.whitesourcesoftware.com/cvss3.png' width=19 height=20> CVSS | Dependency | Type | Fixed in | Remediation Available | | ------------- | ------------- | ----- | ----- | ----- | --- | --- | | [CVE-2020-11023](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11023) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | jquery-3.3.1.min.js | Direct | jquery - 3.5.0;jquery-rails - 4.4.0 | &#10060; | | [CVE-2020-11022](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11022) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | jquery-3.3.1.min.js | Direct | jQuery - 3.5.0 | &#10060; | | [CVE-2019-11358](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358) | <img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Medium | 6.1 | jquery-3.3.1.min.js | Direct | 3.4.0 | &#10060; | ## Details <details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2020-11023</summary> ### Vulnerable Library - <b>jquery-3.3.1.min.js</b></p> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js</a></p> <p>Path to vulnerable library: /themes/hugo-theme-learn/static/js/jquery-3.3.1.min.js,/public/js/jquery-3.3.1.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-3.3.1.min.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/nexmo-community/vonage-voice-api-workshop/commit/211ff1b4edb6cea818204ada5b7fa9cb7086399d">211ff1b4edb6cea818204ada5b7fa9cb7086399d</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> In jQuery versions greater than or equal to 1.0.3 and before 3.5.0, passing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0. <p>Publish Date: 2020-04-29 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11023>CVE-2020-11023</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.1</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440">https://github.com/jquery/jquery/security/advisories/GHSA-jpcq-cgw6-v4j6,https://github.com/rails/jquery-rails/blob/master/CHANGELOG.md#440</a></p> <p>Release Date: 2020-04-29</p> <p>Fix Resolution: jquery - 3.5.0;jquery-rails - 4.4.0</p> </p> <p></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2020-11022</summary> ### Vulnerable Library - <b>jquery-3.3.1.min.js</b></p> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js</a></p> <p>Path to vulnerable library: /themes/hugo-theme-learn/static/js/jquery-3.3.1.min.js,/public/js/jquery-3.3.1.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-3.3.1.min.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/nexmo-community/vonage-voice-api-workshop/commit/211ff1b4edb6cea818204ada5b7fa9cb7086399d">211ff1b4edb6cea818204ada5b7fa9cb7086399d</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> In jQuery versions greater than or equal to 1.2 and before 3.5.0, passing HTML from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code. This problem is patched in jQuery 3.5.0. <p>Publish Date: 2020-04-29 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2020-11022>CVE-2020-11022</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.1</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/">https://blog.jquery.com/2020/04/10/jquery-3-5-0-released/</a></p> <p>Release Date: 2020-04-29</p> <p>Fix Resolution: jQuery - 3.5.0</p> </p> <p></p> </details><details> <summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> CVE-2019-11358</summary> ### Vulnerable Library - <b>jquery-3.3.1.min.js</b></p> <p>JavaScript library for DOM operations</p> <p>Library home page: <a href="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js">https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js</a></p> <p>Path to vulnerable library: /themes/hugo-theme-learn/static/js/jquery-3.3.1.min.js,/public/js/jquery-3.3.1.min.js</p> <p> Dependency Hierarchy: - :x: **jquery-3.3.1.min.js** (Vulnerable Library) <p>Found in HEAD commit: <a href="https://github.com/nexmo-community/vonage-voice-api-workshop/commit/211ff1b4edb6cea818204ada5b7fa9cb7086399d">211ff1b4edb6cea818204ada5b7fa9cb7086399d</a></p> <p>Found in base branch: <b>main</b></p> </p> <p></p> ### Vulnerability Details <p> jQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution. If an unsanitized source object contained an enumerable __proto__ property, it could extend the native Object.prototype. <p>Publish Date: 2019-04-20 <p>URL: <a href=https://vuln.whitesourcesoftware.com/vulnerability/CVE-2019-11358>CVE-2019-11358</a></p> </p> <p></p> ### CVSS 3 Score Details (<b>6.1</b>) <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Network - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Changed - Impact Metrics: - Confidentiality Impact: Low - Integrity Impact: Low - Availability Impact: None </p> For more information on CVSS3 Scores, click <a href="https://www.first.org/cvss/calculator/3.0">here</a>. </p> <p></p> ### Suggested Fix <p> <p>Type: Upgrade version</p> <p>Origin: <a href="https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358">https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2019-11358</a></p> <p>Release Date: 2019-04-20</p> <p>Fix Resolution: 3.4.0</p> </p> <p></p> </details>
non_defect
jquery min js vulnerabilities highest severity is vulnerable library jquery min js javascript library for dom operations library home page a href path to vulnerable library themes hugo theme learn static js jquery min js public js jquery min js found in head commit a href vulnerabilities cve severity cvss dependency type fixed in remediation available medium jquery min js direct jquery jquery rails medium jquery min js direct jquery medium jquery min js direct details cve vulnerable library jquery min js javascript library for dom operations library home page a href path to vulnerable library themes hugo theme learn static js jquery min js public js jquery min js dependency hierarchy x jquery min js vulnerable library found in head commit a href found in base branch main vulnerability details in jquery versions greater than or equal to and before passing html containing elements from untrusted sources even after sanitizing it to one of jquery s dom manipulation methods i e html append and others may execute untrusted code this problem is patched in jquery publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery jquery rails cve vulnerable library jquery min js javascript library for dom operations library home page a href path to vulnerable library themes hugo theme learn static js jquery min js public js jquery min js dependency hierarchy x jquery min js vulnerable library found in head commit a href found in base branch main vulnerability details in jquery versions greater than or equal to and before passing html from untrusted sources even after sanitizing it to one of jquery s dom manipulation methods i e html append and others may execute untrusted code this problem is patched in jquery publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution jquery cve vulnerable library jquery min js javascript library for dom operations library home page a href path to vulnerable library themes hugo theme learn static js jquery min js public js jquery min js dependency hierarchy x jquery min js vulnerable library found in head commit a href found in base branch main vulnerability details jquery before as used in drupal backdrop cms and other products mishandles jquery extend true because of object prototype pollution if an unsanitized source object contained an enumerable proto property it could extend the native object prototype publish date url a href cvss score details base score metrics exploitability metrics attack vector network attack complexity low privileges required none user interaction required scope changed impact metrics confidentiality impact low integrity impact low availability impact none for more information on scores click a href suggested fix type upgrade version origin a href release date fix resolution
0
260,543
27,784,539,377
IssuesEvent
2023-03-17 01:16:09
yadavrahul12957/coupon
https://api.github.com/repos/yadavrahul12957/coupon
opened
CVE-2023-28155 (Medium) detected in request-2.88.0.tgz
Mend: dependency security vulnerability
## CVE-2023-28155 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>request-2.88.0.tgz</b></p></summary> <p>Simplified HTTP request client.</p> <p>Library home page: <a href="https://registry.npmjs.org/request/-/request-2.88.0.tgz">https://registry.npmjs.org/request/-/request-2.88.0.tgz</a></p> <p>Path to dependency file: /coupon/package.json</p> <p>Path to vulnerable library: /node_modules/request/package.json</p> <p> Dependency Hierarchy: - react-scripts-2.1.8.tgz (Root Library) - jest-23.6.0.tgz - jest-cli-23.6.0.tgz - jest-environment-jsdom-23.4.0.tgz - jsdom-11.12.0.tgz - :x: **request-2.88.0.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> ** UNSUPPORTED WHEN ASSIGNED ** The Request package through 2.88.1 for Node.js allows a bypass of SSRF mitigations via an attacker-controller server that does a cross-protocol redirect (HTTP to HTTPS, or HTTPS to HTTP). NOTE: This vulnerability only affects products that are no longer supported by the maintainer. <p>Publish Date: 2023-03-16 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-28155>CVE-2023-28155</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.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - 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> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
True
CVE-2023-28155 (Medium) detected in request-2.88.0.tgz - ## CVE-2023-28155 - Medium Severity Vulnerability <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/vulnerability_details.png' width=19 height=20> Vulnerable Library - <b>request-2.88.0.tgz</b></p></summary> <p>Simplified HTTP request client.</p> <p>Library home page: <a href="https://registry.npmjs.org/request/-/request-2.88.0.tgz">https://registry.npmjs.org/request/-/request-2.88.0.tgz</a></p> <p>Path to dependency file: /coupon/package.json</p> <p>Path to vulnerable library: /node_modules/request/package.json</p> <p> Dependency Hierarchy: - react-scripts-2.1.8.tgz (Root Library) - jest-23.6.0.tgz - jest-cli-23.6.0.tgz - jest-environment-jsdom-23.4.0.tgz - jsdom-11.12.0.tgz - :x: **request-2.88.0.tgz** (Vulnerable Library) </p> </details> <p></p> <details><summary><img src='https://whitesource-resources.whitesourcesoftware.com/medium_vul.png' width=19 height=20> Vulnerability Details</summary> <p> ** UNSUPPORTED WHEN ASSIGNED ** The Request package through 2.88.1 for Node.js allows a bypass of SSRF mitigations via an attacker-controller server that does a cross-protocol redirect (HTTP to HTTPS, or HTTPS to HTTP). NOTE: This vulnerability only affects products that are no longer supported by the maintainer. <p>Publish Date: 2023-03-16 <p>URL: <a href=https://www.mend.io/vulnerability-database/CVE-2023-28155>CVE-2023-28155</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.5</b>)</summary> <p> Base Score Metrics: - Exploitability Metrics: - Attack Vector: Local - Attack Complexity: Low - Privileges Required: None - User Interaction: Required - Scope: Unchanged - Impact Metrics: - Confidentiality Impact: None - Integrity Impact: None - 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> *** Step up your Open Source Security Game with Mend [here](https://www.whitesourcesoftware.com/full_solution_bolt_github)
non_defect
cve medium detected in request tgz cve medium severity vulnerability vulnerable library request tgz simplified http request client library home page a href path to dependency file coupon package json path to vulnerable library node modules request package json dependency hierarchy react scripts tgz root library jest tgz jest cli tgz jest environment jsdom tgz jsdom tgz x request tgz vulnerable library vulnerability details unsupported when assigned the request package through for node js allows a bypass of ssrf mitigations via an attacker controller server that does a cross protocol redirect http to https or https to http note this vulnerability only affects products that are no longer supported by the maintainer publish date url a href cvss score details base score metrics exploitability metrics attack vector local attack complexity low privileges required none user interaction required scope unchanged impact metrics confidentiality impact none integrity impact none availability impact high for more information on scores click a href step up your open source security game with mend
0
27,872
5,117,616,933
IssuesEvent
2017-01-07 18:47:05
cakephp/cakephp
https://api.github.com/repos/cakephp/cakephp
closed
Many regex in the Validation method miss a trailing newline
Defect
This is a (multiple allowed): * [x] bug * [ ] enhancement * [ ] feature-discussion (RFC) * CakePHP Version: 3.3.11 * Platform and Target: macOS X Sierra + PHP 5.6.28 ### What you did Validation method using regular expression like `email()` verified string with a newline at the end. ```php <?php namespace App\Test\Model\Validation; use Cake\TestSuite\TestCase; use Cake\Validation\Validation; class ValidationTest extends TestCase { public function testEmail() { // This assertion will failed. self::assertFalse(Validation::email("user@example.com\n")); } } ``` ### What happened return true. ### What you expected to happen return false. Similar problem fixed: #1177
1.0
Many regex in the Validation method miss a trailing newline - This is a (multiple allowed): * [x] bug * [ ] enhancement * [ ] feature-discussion (RFC) * CakePHP Version: 3.3.11 * Platform and Target: macOS X Sierra + PHP 5.6.28 ### What you did Validation method using regular expression like `email()` verified string with a newline at the end. ```php <?php namespace App\Test\Model\Validation; use Cake\TestSuite\TestCase; use Cake\Validation\Validation; class ValidationTest extends TestCase { public function testEmail() { // This assertion will failed. self::assertFalse(Validation::email("user@example.com\n")); } } ``` ### What happened return true. ### What you expected to happen return false. Similar problem fixed: #1177
defect
many regex in the validation method miss a trailing newline this is a multiple allowed bug enhancement feature discussion rfc cakephp version platform and target macos x sierra php what you did validation method using regular expression like email verified string with a newline at the end php php namespace app test model validation use cake testsuite testcase use cake validation validation class validationtest extends testcase public function testemail this assertion will failed self assertfalse validation email user example com n what happened return true what you expected to happen return false similar problem fixed
1
20,610
3,388,319,227
IssuesEvent
2015-11-29 06:23:16
netty/netty
https://api.github.com/repos/netty/netty
closed
HttpClientUpgradeHandler.setUpgradeHeaders() append a wrong 'upgrade'.
defect
See [here](https://github.com/netty/netty/blob/92dee9e500bc141162e6c3a6ef91d8d22e50c449/codec-http/src/main/java/io/netty/handler/codec/http/HttpClientUpgradeHandler.java#L231). It has to be `HttpHeaderValues.UPGRADE` instead. Most servers should be OK with `HttpHeaderNames.UPGRADE` because they do case-insensitive comparisons, but some (e.g. Jetty) requires it to be `Upgrade` (no lowercase u).
1.0
HttpClientUpgradeHandler.setUpgradeHeaders() append a wrong 'upgrade'. - See [here](https://github.com/netty/netty/blob/92dee9e500bc141162e6c3a6ef91d8d22e50c449/codec-http/src/main/java/io/netty/handler/codec/http/HttpClientUpgradeHandler.java#L231). It has to be `HttpHeaderValues.UPGRADE` instead. Most servers should be OK with `HttpHeaderNames.UPGRADE` because they do case-insensitive comparisons, but some (e.g. Jetty) requires it to be `Upgrade` (no lowercase u).
defect
httpclientupgradehandler setupgradeheaders append a wrong upgrade see it has to be httpheadervalues upgrade instead most servers should be ok with httpheadernames upgrade because they do case insensitive comparisons but some e g jetty requires it to be upgrade no lowercase u
1
1,573
3,270,850,452
IssuesEvent
2015-10-24 00:15:39
OpenDSA/OpenDSA
https://api.github.com/repos/OpenDSA/OpenDSA
closed
Should speed up js files loading in new Khan framework.
KA Exercise Infrastructure
Since we run khan-exercise in localMode, scripts that have dependencies order will be loaded one after another, which reduces the performance greatly. One solution for this could be to minify and combine js files and load the combined files at the end of the page. http://www.1stwebdesigner.com/design/load-javascript-faster/
1.0
Should speed up js files loading in new Khan framework. - Since we run khan-exercise in localMode, scripts that have dependencies order will be loaded one after another, which reduces the performance greatly. One solution for this could be to minify and combine js files and load the combined files at the end of the page. http://www.1stwebdesigner.com/design/load-javascript-faster/
non_defect
should speed up js files loading in new khan framework since we run khan exercise in localmode scripts that have dependencies order will be loaded one after another which reduces the performance greatly one solution for this could be to minify and combine js files and load the combined files at the end of the page
0
67,614
21,015,308,135
IssuesEvent
2022-03-30 10:25:46
SeleniumHQ/selenium
https://api.github.com/repos/SeleniumHQ/selenium
opened
[🐛 Bug]: CdpVersionFinder does not find any implementation for Spring Boot Application
I-defect needs-triaging
### What happened? We have a framework which uses Selenium 4 java library. Our Application uses Spring Boot. Execution from both Intellij and Gradle works well but this is because classpath is accessed directly. When we create a fat jar, ServiceLoader cannot access inner libraries to load them and use. It results with NoOp and disability to create session ### How can we reproduce the issue? ```shell Create Spring boot application which wants to open browser using selenium. Add line to create CDP session afterwards. Build FatJar, run from jar file using java -jar ``` ### Relevant log output ```shell --- ``` ### Operating System Windows 10, Linux ### Selenium version 4.1.3 ### What are the browser(s) and version(s) where you see this issue? Chrome 99 ### What are the browser driver(s) and version(s) where you see this issue? ChromeDriver according to 99 version (WebDriverManager) ### Are you using Selenium Grid? No
1.0
[🐛 Bug]: CdpVersionFinder does not find any implementation for Spring Boot Application - ### What happened? We have a framework which uses Selenium 4 java library. Our Application uses Spring Boot. Execution from both Intellij and Gradle works well but this is because classpath is accessed directly. When we create a fat jar, ServiceLoader cannot access inner libraries to load them and use. It results with NoOp and disability to create session ### How can we reproduce the issue? ```shell Create Spring boot application which wants to open browser using selenium. Add line to create CDP session afterwards. Build FatJar, run from jar file using java -jar ``` ### Relevant log output ```shell --- ``` ### Operating System Windows 10, Linux ### Selenium version 4.1.3 ### What are the browser(s) and version(s) where you see this issue? Chrome 99 ### What are the browser driver(s) and version(s) where you see this issue? ChromeDriver according to 99 version (WebDriverManager) ### Are you using Selenium Grid? No
defect
cdpversionfinder does not find any implementation for spring boot application what happened we have a framework which uses selenium java library our application uses spring boot execution from both intellij and gradle works well but this is because classpath is accessed directly when we create a fat jar serviceloader cannot access inner libraries to load them and use it results with noop and disability to create session how can we reproduce the issue shell create spring boot application which wants to open browser using selenium add line to create cdp session afterwards build fatjar run from jar file using java jar relevant log output shell operating system windows linux selenium version what are the browser s and version s where you see this issue chrome what are the browser driver s and version s where you see this issue chromedriver according to version webdrivermanager are you using selenium grid no
1
19,485
3,212,040,469
IssuesEvent
2015-10-06 13:57:39
ariya/phantomjs
https://api.github.com/repos/ariya/phantomjs
closed
renderBase64('GIF') returns empty string
old.Priority-Medium old.Status-New old.Type-Defect
_**[bobmy...@gmail.com](http://code.google.com/u/101119179606492669864/) commented:**_ > Running binary version of Phantom JS 1.7.0 under W8. > > page.renderBase64('GIF') returns an empty string, although the same code works perfectly with either 'PNG' or 'JPG'. **Disclaimer:** This issue was migrated on 2013-03-15 from the project's former issue tracker on Google Code, [Issue #888](http://code.google.com/p/phantomjs/issues/detail?id=888). :star2: &nbsp; **3** people had starred this issue at the time of migration.
1.0
renderBase64('GIF') returns empty string - _**[bobmy...@gmail.com](http://code.google.com/u/101119179606492669864/) commented:**_ > Running binary version of Phantom JS 1.7.0 under W8. > > page.renderBase64('GIF') returns an empty string, although the same code works perfectly with either 'PNG' or 'JPG'. **Disclaimer:** This issue was migrated on 2013-03-15 from the project's former issue tracker on Google Code, [Issue #888](http://code.google.com/p/phantomjs/issues/detail?id=888). :star2: &nbsp; **3** people had starred this issue at the time of migration.
defect
gif returns empty string commented running binary version of phantom js under page gif returns an empty string although the same code works perfectly with either png or jpg disclaimer this issue was migrated on from the project s former issue tracker on google code nbsp people had starred this issue at the time of migration
1
54,712
13,895,381,937
IssuesEvent
2020-10-19 15:47:26
hazelcast/hazelcast
https://api.github.com/repos/hazelcast/hazelcast
opened
IMap.removeAll does not work when the map store and map eviction are enabled
Type: Defect
Hello, It seems that `IMap.removeAll(predicate)` does not remove the entries from the MapStore when eviction is enabled on a distributed map. Here is a test that reproduces the issue. Could you please check? ``` package test; import static org.junit.jupiter.api.Assertions.assertEquals; import com.hazelcast.config.Config; import com.hazelcast.config.EvictionPolicy; import com.hazelcast.config.MapConfig; import com.hazelcast.config.MapStoreConfig; import com.hazelcast.core.Hazelcast; import com.hazelcast.core.HazelcastInstance; import com.hazelcast.map.IMap; import com.hazelcast.map.MapStore; import com.hazelcast.query.impl.predicates.TruePredicate; import com.nm.test.hazelcast.utils.AsyncUtils; import java.util.Collection; import java.util.Map; import java.util.concurrent.atomic.AtomicInteger; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; public class TestMap23 { private static final String mapName = "testMap" + TestMap23.class.getSimpleName(); private HazelcastInstance hazelcastInstance; private IMap<String, String> iMap; private RecordingMapStore store; @BeforeEach public void setUp() throws Exception { // create map store config store = new RecordingMapStore(); MapStoreConfig mapStoreConfig = new MapStoreConfig(); mapStoreConfig.setEnabled(true); mapStoreConfig.setWriteDelaySeconds(1); mapStoreConfig.setWriteCoalescing(true); mapStoreConfig.setImplementation(store); // create config Config config = new Config(); MapConfig mapConfig = config.getMapConfig(mapName); mapConfig.setMapStoreConfig(mapStoreConfig); mapConfig.getEvictionConfig().setEvictionPolicy(EvictionPolicy.LRU); mapConfig.setTimeToLiveSeconds(1); // start Hazelcast and init map hazelcastInstance = Hazelcast.newHazelcastInstance(config); iMap = hazelcastInstance.getMap(mapName); } @AfterEach public void tearDown() throws Exception { hazelcastInstance.getLifecycleService().terminate(); } @Test public void testRemoveAll() { // add some data to the distributed map for (int i = 0; i < 10; i++) { iMap.put("k" + i, "v" + i); } // wait until the data is stored AsyncUtils.waitUntil(() -> store.getStoreCount() == 10, 60 * 1000); assertEquals(10, iMap.size()); assertEquals(10, store.getStoreCount()); // wait until the data is evicted AsyncUtils.waitUntil(() -> iMap.size() == 0, 60 * 1000); assertEquals(0, iMap.size()); // remove the data iMap.removeAll(new TruePredicate<>()); // wait until the data was removed from the store AsyncUtils.waitUntil(() -> store.getDeleteCount() == 10, 60 * 1000); // check that the data was removed from store assertEquals(10, store.getDeleteCount()); } private static class RecordingMapStore implements MapStore<String, String> { private final AtomicInteger storeCount = new AtomicInteger(0); private final AtomicInteger deleteCount = new AtomicInteger(0); public int getStoreCount() { return storeCount.get(); } public int getDeleteCount() { return deleteCount.get(); } @Override public void store(String key, String value) { storeCount.incrementAndGet(); } @Override public void storeAll(Map<String, String> map) { storeCount.addAndGet(map.size()); } @Override public void delete(String key) { deleteCount.incrementAndGet(); } @Override public void deleteAll(Collection<String> keys) { storeCount.addAndGet(keys.size()); } @Override public String load(String key) { return null; } @Override public Map<String, String> loadAll(Collection<String> keys) { return null; } @Override public Iterable<String> loadAllKeys() { return null; } } } ``` Thank you!
1.0
IMap.removeAll does not work when the map store and map eviction are enabled - Hello, It seems that `IMap.removeAll(predicate)` does not remove the entries from the MapStore when eviction is enabled on a distributed map. Here is a test that reproduces the issue. Could you please check? ``` package test; import static org.junit.jupiter.api.Assertions.assertEquals; import com.hazelcast.config.Config; import com.hazelcast.config.EvictionPolicy; import com.hazelcast.config.MapConfig; import com.hazelcast.config.MapStoreConfig; import com.hazelcast.core.Hazelcast; import com.hazelcast.core.HazelcastInstance; import com.hazelcast.map.IMap; import com.hazelcast.map.MapStore; import com.hazelcast.query.impl.predicates.TruePredicate; import com.nm.test.hazelcast.utils.AsyncUtils; import java.util.Collection; import java.util.Map; import java.util.concurrent.atomic.AtomicInteger; import org.junit.jupiter.api.AfterEach; import org.junit.jupiter.api.BeforeEach; import org.junit.jupiter.api.Test; public class TestMap23 { private static final String mapName = "testMap" + TestMap23.class.getSimpleName(); private HazelcastInstance hazelcastInstance; private IMap<String, String> iMap; private RecordingMapStore store; @BeforeEach public void setUp() throws Exception { // create map store config store = new RecordingMapStore(); MapStoreConfig mapStoreConfig = new MapStoreConfig(); mapStoreConfig.setEnabled(true); mapStoreConfig.setWriteDelaySeconds(1); mapStoreConfig.setWriteCoalescing(true); mapStoreConfig.setImplementation(store); // create config Config config = new Config(); MapConfig mapConfig = config.getMapConfig(mapName); mapConfig.setMapStoreConfig(mapStoreConfig); mapConfig.getEvictionConfig().setEvictionPolicy(EvictionPolicy.LRU); mapConfig.setTimeToLiveSeconds(1); // start Hazelcast and init map hazelcastInstance = Hazelcast.newHazelcastInstance(config); iMap = hazelcastInstance.getMap(mapName); } @AfterEach public void tearDown() throws Exception { hazelcastInstance.getLifecycleService().terminate(); } @Test public void testRemoveAll() { // add some data to the distributed map for (int i = 0; i < 10; i++) { iMap.put("k" + i, "v" + i); } // wait until the data is stored AsyncUtils.waitUntil(() -> store.getStoreCount() == 10, 60 * 1000); assertEquals(10, iMap.size()); assertEquals(10, store.getStoreCount()); // wait until the data is evicted AsyncUtils.waitUntil(() -> iMap.size() == 0, 60 * 1000); assertEquals(0, iMap.size()); // remove the data iMap.removeAll(new TruePredicate<>()); // wait until the data was removed from the store AsyncUtils.waitUntil(() -> store.getDeleteCount() == 10, 60 * 1000); // check that the data was removed from store assertEquals(10, store.getDeleteCount()); } private static class RecordingMapStore implements MapStore<String, String> { private final AtomicInteger storeCount = new AtomicInteger(0); private final AtomicInteger deleteCount = new AtomicInteger(0); public int getStoreCount() { return storeCount.get(); } public int getDeleteCount() { return deleteCount.get(); } @Override public void store(String key, String value) { storeCount.incrementAndGet(); } @Override public void storeAll(Map<String, String> map) { storeCount.addAndGet(map.size()); } @Override public void delete(String key) { deleteCount.incrementAndGet(); } @Override public void deleteAll(Collection<String> keys) { storeCount.addAndGet(keys.size()); } @Override public String load(String key) { return null; } @Override public Map<String, String> loadAll(Collection<String> keys) { return null; } @Override public Iterable<String> loadAllKeys() { return null; } } } ``` Thank you!
defect
imap removeall does not work when the map store and map eviction are enabled hello it seems that imap removeall predicate does not remove the entries from the mapstore when eviction is enabled on a distributed map here is a test that reproduces the issue could you please check package test import static org junit jupiter api assertions assertequals import com hazelcast config config import com hazelcast config evictionpolicy import com hazelcast config mapconfig import com hazelcast config mapstoreconfig import com hazelcast core hazelcast import com hazelcast core hazelcastinstance import com hazelcast map imap import com hazelcast map mapstore import com hazelcast query impl predicates truepredicate import com nm test hazelcast utils asyncutils import java util collection import java util map import java util concurrent atomic atomicinteger import org junit jupiter api aftereach import org junit jupiter api beforeeach import org junit jupiter api test public class private static final string mapname testmap class getsimplename private hazelcastinstance hazelcastinstance private imap imap private recordingmapstore store beforeeach public void setup throws exception create map store config store new recordingmapstore mapstoreconfig mapstoreconfig new mapstoreconfig mapstoreconfig setenabled true mapstoreconfig setwritedelayseconds mapstoreconfig setwritecoalescing true mapstoreconfig setimplementation store create config config config new config mapconfig mapconfig config getmapconfig mapname mapconfig setmapstoreconfig mapstoreconfig mapconfig getevictionconfig setevictionpolicy evictionpolicy lru mapconfig settimetoliveseconds start hazelcast and init map hazelcastinstance hazelcast newhazelcastinstance config imap hazelcastinstance getmap mapname aftereach public void teardown throws exception hazelcastinstance getlifecycleservice terminate test public void testremoveall add some data to the distributed map for int i i i imap put k i v i wait until the data is stored asyncutils waituntil store getstorecount assertequals imap size assertequals store getstorecount wait until the data is evicted asyncutils waituntil imap size assertequals imap size remove the data imap removeall new truepredicate wait until the data was removed from the store asyncutils waituntil store getdeletecount check that the data was removed from store assertequals store getdeletecount private static class recordingmapstore implements mapstore private final atomicinteger storecount new atomicinteger private final atomicinteger deletecount new atomicinteger public int getstorecount return storecount get public int getdeletecount return deletecount get override public void store string key string value storecount incrementandget override public void storeall map map storecount addandget map size override public void delete string key deletecount incrementandget override public void deleteall collection keys storecount addandget keys size override public string load string key return null override public map loadall collection keys return null override public iterable loadallkeys return null thank you
1
9,104
2,615,130,088
IssuesEvent
2015-03-01 05:59:55
chrsmith/google-api-java-client
https://api.github.com/repos/chrsmith/google-api-java-client
closed
Poor error message when trying to batch media requests
auto-migrated Component-Google-APIs Milestone-Version1.13.0 Priority-Medium Type-Defect
``` Version of google-api-java-client (e.g. 1.5.0-beta)? 1.12.0-beta Java environment (e.g. Java 6, Android 2.3, App Engine)? All Describe the problem. Details here: https://groups.google.com/forum/?fromgroups=#!topic/google-api-java-client/fv0x9 GADX8Y Stack trace copied here: 11-11 14:03:59.742: E/AndroidRuntime(14339): java.lang.IllegalArgumentException 11-11 14:03:59.742: E/AndroidRuntime(14339): at com.google.common.base.Preconditions.checkArgument(Preconditions.java:76) 11-11 14:03:59.742: E/AndroidRuntime(14339): at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.buildHttpR equest(AbstractGoogleClientRequest.java:287) 11-11 14:03:59.742: E/AndroidRuntime(14339): at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.buildHttpR equest(AbstractGoogleClientRequest.java:267) 11-11 14:03:59.742: E/AndroidRuntime(14339): at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.queue(Abst ractGoogleClientRequest.java:568) 11-11 14:03:59.742: E/AndroidRuntime(14339): at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.q ueue(AbstractGoogleJsonClientRequest.java:109) IllegalArgumentException is correct, but there is no text to explain what's wrong. How would you expect it to be fixed? Better error message to explain that batching media requests is not supported. ``` Original issue reported on code.google.com by `yan...@google.com` on 12 Nov 2012 at 2:57
1.0
Poor error message when trying to batch media requests - ``` Version of google-api-java-client (e.g. 1.5.0-beta)? 1.12.0-beta Java environment (e.g. Java 6, Android 2.3, App Engine)? All Describe the problem. Details here: https://groups.google.com/forum/?fromgroups=#!topic/google-api-java-client/fv0x9 GADX8Y Stack trace copied here: 11-11 14:03:59.742: E/AndroidRuntime(14339): java.lang.IllegalArgumentException 11-11 14:03:59.742: E/AndroidRuntime(14339): at com.google.common.base.Preconditions.checkArgument(Preconditions.java:76) 11-11 14:03:59.742: E/AndroidRuntime(14339): at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.buildHttpR equest(AbstractGoogleClientRequest.java:287) 11-11 14:03:59.742: E/AndroidRuntime(14339): at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.buildHttpR equest(AbstractGoogleClientRequest.java:267) 11-11 14:03:59.742: E/AndroidRuntime(14339): at com.google.api.client.googleapis.services.AbstractGoogleClientRequest.queue(Abst ractGoogleClientRequest.java:568) 11-11 14:03:59.742: E/AndroidRuntime(14339): at com.google.api.client.googleapis.services.json.AbstractGoogleJsonClientRequest.q ueue(AbstractGoogleJsonClientRequest.java:109) IllegalArgumentException is correct, but there is no text to explain what's wrong. How would you expect it to be fixed? Better error message to explain that batching media requests is not supported. ``` Original issue reported on code.google.com by `yan...@google.com` on 12 Nov 2012 at 2:57
defect
poor error message when trying to batch media requests version of google api java client e g beta beta java environment e g java android app engine all describe the problem details here stack trace copied here e androidruntime java lang illegalargumentexception e androidruntime at com google common base preconditions checkargument preconditions java e androidruntime at com google api client googleapis services abstractgoogleclientrequest buildhttpr equest abstractgoogleclientrequest java e androidruntime at com google api client googleapis services abstractgoogleclientrequest buildhttpr equest abstractgoogleclientrequest java e androidruntime at com google api client googleapis services abstractgoogleclientrequest queue abst ractgoogleclientrequest java e androidruntime at com google api client googleapis services json abstractgooglejsonclientrequest q ueue abstractgooglejsonclientrequest java illegalargumentexception is correct but there is no text to explain what s wrong how would you expect it to be fixed better error message to explain that batching media requests is not supported original issue reported on code google com by yan google com on nov at
1
158,392
6,026,320,439
IssuesEvent
2017-06-08 10:57:49
healthlocker/healthlocker
https://api.github.com/repos/healthlocker/healthlocker
opened
Sign up Screen 3 - Align text
priority-2
Align text on 1st tickbox so the 2nd & 3rd lines of text align with the 1st line of text above, not the tick box ![screenshot 2017-06-08 11 55 24](https://user-images.githubusercontent.com/24604903/26925405-9a7dda82-4c41-11e7-9a9e-380973c5359f.png)
1.0
Sign up Screen 3 - Align text - Align text on 1st tickbox so the 2nd & 3rd lines of text align with the 1st line of text above, not the tick box ![screenshot 2017-06-08 11 55 24](https://user-images.githubusercontent.com/24604903/26925405-9a7dda82-4c41-11e7-9a9e-380973c5359f.png)
non_defect
sign up screen align text align text on tickbox so the lines of text align with the line of text above not the tick box
0
64,407
18,668,757,598
IssuesEvent
2021-10-30 09:40:02
SeleniumHQ/selenium
https://api.github.com/repos/SeleniumHQ/selenium
closed
[🐛 Bug]: Relative locator fails when the root element is an inner element
R-awaiting answer I-defect I-issue-template
### What happened? When the root element used to locate the new element from is found through another element, the relative locator fails to locate the new element. I'm using Java. ### How can we reproduce the issue? ```shell 1. Look for container element and then look for inner element inside it (element.findElement...) 2. Use relative locator locating new element next to the inner element found at the first stage. ``` ### Relevant log output ```shell Caused by: org.openqa.selenium.json.JsonException: java.lang.reflect.InvocationTargetException Build info: version: '4.0.0', revision: '3a21814679' System info: host: 'DESKTOP-JKEB3NF', ip: '192.168.10.85', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '11.0.12' Driver info: org.openqa.selenium.chrome.ChromeDriver Command: [2dc36142c232a3e869aa224f944095c4, findElement {using=relative, value={root={xpath=//p[contains(@class, 'FieldReadModeValue')]}, filters=[{kind=below, args=[[[[[ChromeDriver: chrome on ANY (2dc36142c232a3e869aa224f944095c4)] -> xpath: //div[contains(@class, 'form-wrapper')]]] -> xpath: //div[contains(@class, 'FieldLabel')]]]}]}}] Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 95.0.4638.54, chrome: {chromedriverVersion: 95.0.4638.17 (a9d0719444d4b...}, goog:chromeOptions: {debuggerAddress: localhost:3434}, javascriptEnabled: true, pageLoadStrategy: normal, platform: ANY, platformName: ANY, proxy: Proxy(), se:cdp: ws://localhost:3434/devtool..., se:cdpVersion: 95.0.4638.54, setWindowRect: false, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:virtualAuthenticators: true} Session ID: 2dc36142c232a3e869aa224f944095c4 at org.openqa.selenium.json.SimplePropertyDescriptor.lambda$getPropertyDescriptors$1(SimplePropertyDescriptor.java:107) at org.openqa.selenium.json.JsonOutput.mapObject(JsonOutput.java:392) at org.openqa.selenium.json.JsonOutput.lambda$new$31(JsonOutput.java:207) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.mapObject(JsonOutput.java:395) at org.openqa.selenium.json.JsonOutput.lambda$new$31(JsonOutput.java:207) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.lambda$new$22(JsonOutput.java:169) at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:177) at java.base/java.util.Collections$2.tryAdvance(Collections.java:4747) at java.base/java.util.Collections$2.forEachRemaining(Collections.java:4755) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:484) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:474) at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:497) at org.openqa.selenium.json.JsonOutput.lambda$new$23(JsonOutput.java:169) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.lambda$new$24(JsonOutput.java:182) at com.google.common.collect.RegularImmutableMap.forEach(RegularImmutableMap.java:185) at org.openqa.selenium.json.JsonOutput.lambda$new$25(JsonOutput.java:177) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.lambda$new$22(JsonOutput.java:169) at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:177) at java.base/java.util.Collections$2.tryAdvance(Collections.java:4747) at java.base/java.util.Collections$2.forEachRemaining(Collections.java:4755) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:484) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:474) at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:497) at org.openqa.selenium.json.JsonOutput.lambda$new$23(JsonOutput.java:169) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.lambda$new$24(JsonOutput.java:182) at com.google.common.collect.RegularImmutableMap.forEach(RegularImmutableMap.java:185) at org.openqa.selenium.json.JsonOutput.lambda$new$25(JsonOutput.java:177) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.lambda$new$24(JsonOutput.java:182) at com.google.common.collect.RegularImmutableMap.forEach(RegularImmutableMap.java:185) at org.openqa.selenium.json.JsonOutput.lambda$new$25(JsonOutput.java:177) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:278) at org.openqa.selenium.json.Json.toJson(Json.java:42) at org.openqa.selenium.remote.codec.AbstractHttpCommandCodec.encode(AbstractHttpCommandCodec.java:259) at org.openqa.selenium.remote.codec.AbstractHttpCommandCodec.encode(AbstractHttpCommandCodec.java:127) at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:172) at org.openqa.selenium.remote.service.DriverCommandExecutor.invokeExecute(DriverCommandExecutor.java:164) at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:139) at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:559) at org.openqa.selenium.remote.ElementLocation$ElementFinder$2.findElement(ElementLocation.java:162) at org.openqa.selenium.remote.ElementLocation.findElement(ElementLocation.java:66) at org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:383) at org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:375) at jdk.internal.reflect.GeneratedMethodAccessor12.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.openqa.selenium.support.events.EventFiringWebDriver.lambda$new$1(EventFiringWebDriver.java:115) at com.sun.proxy.$Proxy19.findElement(Unknown Source) at org.openqa.selenium.support.events.EventFiringWebDriver.findElement(EventFiringWebDriver.java:204) at plainid.auto.infra.web.SeleniumBot.lambda$getElementBelow$14(SeleniumBot.java:307) at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) ... 35 more Suppressed: org.openqa.selenium.json.JsonException: Attempting to close incomplete json stream ``` ### Operating System Windows 10 ### Selenium version 4.00 ### What are the browser(s) and version(s) where you see this issue? Chrome 95 ### What are the browser driver(s) and version(s) where you see this issue? Chrome driver 95 ### Are you using Selenium Grid? _No response_
1.0
[🐛 Bug]: Relative locator fails when the root element is an inner element - ### What happened? When the root element used to locate the new element from is found through another element, the relative locator fails to locate the new element. I'm using Java. ### How can we reproduce the issue? ```shell 1. Look for container element and then look for inner element inside it (element.findElement...) 2. Use relative locator locating new element next to the inner element found at the first stage. ``` ### Relevant log output ```shell Caused by: org.openqa.selenium.json.JsonException: java.lang.reflect.InvocationTargetException Build info: version: '4.0.0', revision: '3a21814679' System info: host: 'DESKTOP-JKEB3NF', ip: '192.168.10.85', os.name: 'Windows 10', os.arch: 'amd64', os.version: '10.0', java.version: '11.0.12' Driver info: org.openqa.selenium.chrome.ChromeDriver Command: [2dc36142c232a3e869aa224f944095c4, findElement {using=relative, value={root={xpath=//p[contains(@class, 'FieldReadModeValue')]}, filters=[{kind=below, args=[[[[[ChromeDriver: chrome on ANY (2dc36142c232a3e869aa224f944095c4)] -> xpath: //div[contains(@class, 'form-wrapper')]]] -> xpath: //div[contains(@class, 'FieldLabel')]]]}]}}] Capabilities {acceptInsecureCerts: false, browserName: chrome, browserVersion: 95.0.4638.54, chrome: {chromedriverVersion: 95.0.4638.17 (a9d0719444d4b...}, goog:chromeOptions: {debuggerAddress: localhost:3434}, javascriptEnabled: true, pageLoadStrategy: normal, platform: ANY, platformName: ANY, proxy: Proxy(), se:cdp: ws://localhost:3434/devtool..., se:cdpVersion: 95.0.4638.54, setWindowRect: false, strictFileInteractability: false, timeouts: {implicit: 0, pageLoad: 300000, script: 30000}, unhandledPromptBehavior: dismiss and notify, webauthn:extension:credBlob: true, webauthn:extension:largeBlob: true, webauthn:virtualAuthenticators: true} Session ID: 2dc36142c232a3e869aa224f944095c4 at org.openqa.selenium.json.SimplePropertyDescriptor.lambda$getPropertyDescriptors$1(SimplePropertyDescriptor.java:107) at org.openqa.selenium.json.JsonOutput.mapObject(JsonOutput.java:392) at org.openqa.selenium.json.JsonOutput.lambda$new$31(JsonOutput.java:207) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.mapObject(JsonOutput.java:395) at org.openqa.selenium.json.JsonOutput.lambda$new$31(JsonOutput.java:207) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.lambda$new$22(JsonOutput.java:169) at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:177) at java.base/java.util.Collections$2.tryAdvance(Collections.java:4747) at java.base/java.util.Collections$2.forEachRemaining(Collections.java:4755) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:484) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:474) at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:497) at org.openqa.selenium.json.JsonOutput.lambda$new$23(JsonOutput.java:169) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.lambda$new$24(JsonOutput.java:182) at com.google.common.collect.RegularImmutableMap.forEach(RegularImmutableMap.java:185) at org.openqa.selenium.json.JsonOutput.lambda$new$25(JsonOutput.java:177) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.lambda$new$22(JsonOutput.java:169) at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:183) at java.base/java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:177) at java.base/java.util.Collections$2.tryAdvance(Collections.java:4747) at java.base/java.util.Collections$2.forEachRemaining(Collections.java:4755) at java.base/java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:484) at java.base/java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:474) at java.base/java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:150) at java.base/java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:173) at java.base/java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234) at java.base/java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:497) at org.openqa.selenium.json.JsonOutput.lambda$new$23(JsonOutput.java:169) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.lambda$new$24(JsonOutput.java:182) at com.google.common.collect.RegularImmutableMap.forEach(RegularImmutableMap.java:185) at org.openqa.selenium.json.JsonOutput.lambda$new$25(JsonOutput.java:177) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.lambda$new$24(JsonOutput.java:182) at com.google.common.collect.RegularImmutableMap.forEach(RegularImmutableMap.java:185) at org.openqa.selenium.json.JsonOutput.lambda$new$25(JsonOutput.java:177) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:287) at org.openqa.selenium.json.JsonOutput.write(JsonOutput.java:278) at org.openqa.selenium.json.Json.toJson(Json.java:42) at org.openqa.selenium.remote.codec.AbstractHttpCommandCodec.encode(AbstractHttpCommandCodec.java:259) at org.openqa.selenium.remote.codec.AbstractHttpCommandCodec.encode(AbstractHttpCommandCodec.java:127) at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:172) at org.openqa.selenium.remote.service.DriverCommandExecutor.invokeExecute(DriverCommandExecutor.java:164) at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:139) at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:559) at org.openqa.selenium.remote.ElementLocation$ElementFinder$2.findElement(ElementLocation.java:162) at org.openqa.selenium.remote.ElementLocation.findElement(ElementLocation.java:66) at org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:383) at org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:375) at jdk.internal.reflect.GeneratedMethodAccessor12.invoke(Unknown Source) at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.base/java.lang.reflect.Method.invoke(Method.java:566) at org.openqa.selenium.support.events.EventFiringWebDriver.lambda$new$1(EventFiringWebDriver.java:115) at com.sun.proxy.$Proxy19.findElement(Unknown Source) at org.openqa.selenium.support.events.EventFiringWebDriver.findElement(EventFiringWebDriver.java:204) at plainid.auto.infra.web.SeleniumBot.lambda$getElementBelow$14(SeleniumBot.java:307) at org.openqa.selenium.support.ui.FluentWait.until(FluentWait.java:208) ... 35 more Suppressed: org.openqa.selenium.json.JsonException: Attempting to close incomplete json stream ``` ### Operating System Windows 10 ### Selenium version 4.00 ### What are the browser(s) and version(s) where you see this issue? Chrome 95 ### What are the browser driver(s) and version(s) where you see this issue? Chrome driver 95 ### Are you using Selenium Grid? _No response_
defect
relative locator fails when the root element is an inner element what happened when the root element used to locate the new element from is found through another element the relative locator fails to locate the new element i m using java how can we reproduce the issue shell look for container element and then look for inner element inside it element findelement use relative locator locating new element next to the inner element found at the first stage relevant log output shell caused by org openqa selenium json jsonexception java lang reflect invocationtargetexception build info version revision system info host desktop ip os name windows os arch os version java version driver info org openqa selenium chrome chromedriver command filters xpath div xpath div capabilities acceptinsecurecerts false browsername chrome browserversion chrome chromedriverversion goog chromeoptions debuggeraddress localhost javascriptenabled true pageloadstrategy normal platform any platformname any proxy proxy se cdp ws localhost devtool se cdpversion setwindowrect false strictfileinteractability false timeouts implicit pageload script unhandledpromptbehavior dismiss and notify webauthn extension credblob true webauthn extension largeblob true webauthn virtualauthenticators true session id at org openqa selenium json simplepropertydescriptor lambda getpropertydescriptors simplepropertydescriptor java at org openqa selenium json jsonoutput mapobject jsonoutput java at org openqa selenium json jsonoutput lambda new jsonoutput java at org openqa selenium json jsonoutput write jsonoutput java at org openqa selenium json jsonoutput mapobject jsonoutput java at org openqa selenium json jsonoutput lambda new jsonoutput java at org openqa selenium json jsonoutput write jsonoutput java at org openqa selenium json jsonoutput lambda new jsonoutput java at java base java util stream foreachops foreachop ofref accept foreachops java at java base java util stream referencepipeline accept referencepipeline java at java base java util collections tryadvance collections java at java base java util collections foreachremaining collections java at java base java util stream abstractpipeline copyinto abstractpipeline java at java base java util stream abstractpipeline wrapandcopyinto abstractpipeline java at java base java util stream foreachops foreachop evaluatesequential foreachops java at java base java util stream foreachops foreachop ofref evaluatesequential foreachops java at java base java util stream abstractpipeline evaluate abstractpipeline java at java base java util stream referencepipeline foreach referencepipeline java at org openqa selenium json jsonoutput lambda new jsonoutput java at org openqa selenium json jsonoutput write jsonoutput java at org openqa selenium json jsonoutput lambda new jsonoutput java at com google common collect regularimmutablemap foreach regularimmutablemap java at org openqa selenium json jsonoutput lambda new jsonoutput java at org openqa selenium json jsonoutput write jsonoutput java at org openqa selenium json jsonoutput lambda new jsonoutput java at java base java util stream foreachops foreachop ofref accept foreachops java at java base java util stream referencepipeline accept referencepipeline java at java base java util collections tryadvance collections java at java base java util collections foreachremaining collections java at java base java util stream abstractpipeline copyinto abstractpipeline java at java base java util stream abstractpipeline wrapandcopyinto abstractpipeline java at java base java util stream foreachops foreachop evaluatesequential foreachops java at java base java util stream foreachops foreachop ofref evaluatesequential foreachops java at java base java util stream abstractpipeline evaluate abstractpipeline java at java base java util stream referencepipeline foreach referencepipeline java at org openqa selenium json jsonoutput lambda new jsonoutput java at org openqa selenium json jsonoutput write jsonoutput java at org openqa selenium json jsonoutput lambda new jsonoutput java at com google common collect regularimmutablemap foreach regularimmutablemap java at org openqa selenium json jsonoutput lambda new jsonoutput java at org openqa selenium json jsonoutput write jsonoutput java at org openqa selenium json jsonoutput lambda new jsonoutput java at com google common collect regularimmutablemap foreach regularimmutablemap java at org openqa selenium json jsonoutput lambda new jsonoutput java at org openqa selenium json jsonoutput write jsonoutput java at org openqa selenium json jsonoutput write jsonoutput java at org openqa selenium json json tojson json java at org openqa selenium remote codec abstracthttpcommandcodec encode abstracthttpcommandcodec java at org openqa selenium remote codec abstracthttpcommandcodec encode abstracthttpcommandcodec java at org openqa selenium remote httpcommandexecutor execute httpcommandexecutor java at org openqa selenium remote service drivercommandexecutor invokeexecute drivercommandexecutor java at org openqa selenium remote service drivercommandexecutor execute drivercommandexecutor java at org openqa selenium remote remotewebdriver execute remotewebdriver java at org openqa selenium remote elementlocation elementfinder findelement elementlocation java at org openqa selenium remote elementlocation findelement elementlocation java at org openqa selenium remote remotewebdriver findelement remotewebdriver java at org openqa selenium remote remotewebdriver findelement remotewebdriver java at jdk internal reflect invoke unknown source at java base jdk internal reflect delegatingmethodaccessorimpl invoke delegatingmethodaccessorimpl java at java base java lang reflect method invoke method java at org openqa selenium support events eventfiringwebdriver lambda new eventfiringwebdriver java at com sun proxy findelement unknown source at org openqa selenium support events eventfiringwebdriver findelement eventfiringwebdriver java at plainid auto infra web seleniumbot lambda getelementbelow seleniumbot java at org openqa selenium support ui fluentwait until fluentwait java more suppressed org openqa selenium json jsonexception attempting to close incomplete json stream operating system windows selenium version what are the browser s and version s where you see this issue chrome what are the browser driver s and version s where you see this issue chrome driver are you using selenium grid no response
1
177,223
28,373,258,013
IssuesEvent
2023-04-12 18:41:20
department-of-veterans-affairs/vets-design-system-documentation
https://api.github.com/repos/department-of-veterans-affairs/vets-design-system-documentation
opened
Textarea Required symbol is unlinked in the Sketch Pattern Library
bug vsp-design-system-team
# Bug Report - [ ] I’ve searched for any related issues and avoided creating a duplicate issue. ## What happened I was trying to add a required textarea symbol to a form I was working on and noticed that the Required label textarea symbol is unlinked in Sketch. <img width="467" alt="Screenshot 2023-04-12 at 11 39 15 AM" src="https://user-images.githubusercontent.com/1631062/231553776-4c557004-6e14-4c6a-bc37-0d486db8540e.png"> <img width="374" alt="Screenshot 2023-04-12 at 11 39 38 AM" src="https://user-images.githubusercontent.com/1631062/231553850-74736449-8dc7-40d8-ac9c-62b475c2cdad.png"> ## What I expected to happen I should be able to add a textarea symbol with a required label. The symbol just needs to be created/added back. Steps to reproduce: 1. Open up any sketch document 2. Try to insert the textarea required symbol from VA Pattern Library ## Urgency How urgent is this request? Please select the appropriate option below and/or provide details - [ ] This bug is blocking work currently in progress - [ ] This bug is affecting work currently in progress but we have a workaround - [ ] This bug is blocking work planned within the next few sprints - [ ] This bug is not blocking any work - [ ] Other ### Details
1.0
Textarea Required symbol is unlinked in the Sketch Pattern Library - # Bug Report - [ ] I’ve searched for any related issues and avoided creating a duplicate issue. ## What happened I was trying to add a required textarea symbol to a form I was working on and noticed that the Required label textarea symbol is unlinked in Sketch. <img width="467" alt="Screenshot 2023-04-12 at 11 39 15 AM" src="https://user-images.githubusercontent.com/1631062/231553776-4c557004-6e14-4c6a-bc37-0d486db8540e.png"> <img width="374" alt="Screenshot 2023-04-12 at 11 39 38 AM" src="https://user-images.githubusercontent.com/1631062/231553850-74736449-8dc7-40d8-ac9c-62b475c2cdad.png"> ## What I expected to happen I should be able to add a textarea symbol with a required label. The symbol just needs to be created/added back. Steps to reproduce: 1. Open up any sketch document 2. Try to insert the textarea required symbol from VA Pattern Library ## Urgency How urgent is this request? Please select the appropriate option below and/or provide details - [ ] This bug is blocking work currently in progress - [ ] This bug is affecting work currently in progress but we have a workaround - [ ] This bug is blocking work planned within the next few sprints - [ ] This bug is not blocking any work - [ ] Other ### Details
non_defect
textarea required symbol is unlinked in the sketch pattern library bug report i’ve searched for any related issues and avoided creating a duplicate issue what happened i was trying to add a required textarea symbol to a form i was working on and noticed that the required label textarea symbol is unlinked in sketch img width alt screenshot at am src img width alt screenshot at am src what i expected to happen i should be able to add a textarea symbol with a required label the symbol just needs to be created added back steps to reproduce open up any sketch document try to insert the textarea required symbol from va pattern library urgency how urgent is this request please select the appropriate option below and or provide details this bug is blocking work currently in progress this bug is affecting work currently in progress but we have a workaround this bug is blocking work planned within the next few sprints this bug is not blocking any work other details
0
85,152
24,524,888,323
IssuesEvent
2022-10-11 12:26:26
microsoft/fluentui
https://api.github.com/repos/microsoft/fluentui
closed
[Feature]: Enable screener checks to run from the screener proxy
Area: Build System Type: Epic CI
### Library React Components / v9 (@fluentui/react-components) ### Describe the feature that you would like added Make screener checks runs to be triggered by the screener proxy instead of ADO using the GitHub API. - [x] Convert the Azure DevOps job that runs the screener checks to a GitHub Action; | https://github.com/microsoft/fluentui/pull/24106 - [x] Remove ADO jobs regarding screener checks; | https://github.com/microsoft/fluentui/pull/24178 - [ ] Trigger screener checks using the GitHub REST API. ### Have you discussed this feature with our team @ling1726 ### Additional context _No response_ ### Validations - [X] Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
1.0
[Feature]: Enable screener checks to run from the screener proxy - ### Library React Components / v9 (@fluentui/react-components) ### Describe the feature that you would like added Make screener checks runs to be triggered by the screener proxy instead of ADO using the GitHub API. - [x] Convert the Azure DevOps job that runs the screener checks to a GitHub Action; | https://github.com/microsoft/fluentui/pull/24106 - [x] Remove ADO jobs regarding screener checks; | https://github.com/microsoft/fluentui/pull/24178 - [ ] Trigger screener checks using the GitHub REST API. ### Have you discussed this feature with our team @ling1726 ### Additional context _No response_ ### Validations - [X] Check that there isn't already an issue that request the same feature to avoid creating a duplicate.
non_defect
enable screener checks to run from the screener proxy library react components fluentui react components describe the feature that you would like added make screener checks runs to be triggered by the screener proxy instead of ado using the github api convert the azure devops job that runs the screener checks to a github action remove ado jobs regarding screener checks trigger screener checks using the github rest api have you discussed this feature with our team additional context no response validations check that there isn t already an issue that request the same feature to avoid creating a duplicate
0
683,095
23,368,318,178
IssuesEvent
2022-08-10 17:20:41
codeforboston/advocacy-maps
https://api.github.com/repos/codeforboston/advocacy-maps
closed
testimony list item -- format & add features
top priority
This component is already started. It is used in profile and bill view components. At the time of writing, this lives in the UserTestimony folder, ViewTestimony file. [ ] Update Dropdown Sort By Icon [ ] change dropdown options to recency & last-first [ ] add character limit to testimony item & 'showmore' button (See imageS) ![image.png](https://images.zenhubusercontent.com/629634e091a204a8a90e18d1/771ed253-9ea1-4822-8124-0b7052fb34cd) ![image.png](https://images.zenhubusercontent.com/629634e091a204a8a90e18d1/d72b262f-acd0-4b7c-bdf0-8564c47b1f9f) ![image.png](https://images.zenhubusercontent.com/629634e091a204a8a90e18d1/0361392f-36ab-401e-9b16-94819708dc2d) ![image.png](https://images.zenhubusercontent.com/629634e091a204a8a90e18d1/e0eaecab-dc75-400f-804a-e7c445cc26fb)
1.0
testimony list item -- format & add features - This component is already started. It is used in profile and bill view components. At the time of writing, this lives in the UserTestimony folder, ViewTestimony file. [ ] Update Dropdown Sort By Icon [ ] change dropdown options to recency & last-first [ ] add character limit to testimony item & 'showmore' button (See imageS) ![image.png](https://images.zenhubusercontent.com/629634e091a204a8a90e18d1/771ed253-9ea1-4822-8124-0b7052fb34cd) ![image.png](https://images.zenhubusercontent.com/629634e091a204a8a90e18d1/d72b262f-acd0-4b7c-bdf0-8564c47b1f9f) ![image.png](https://images.zenhubusercontent.com/629634e091a204a8a90e18d1/0361392f-36ab-401e-9b16-94819708dc2d) ![image.png](https://images.zenhubusercontent.com/629634e091a204a8a90e18d1/e0eaecab-dc75-400f-804a-e7c445cc26fb)
non_defect
testimony list item format add features this component is already started it is used in profile and bill view components at the time of writing this lives in the usertestimony folder viewtestimony file update dropdown sort by icon change dropdown options to recency last first add character limit to testimony item showmore button see images
0
156,909
24,626,210,528
IssuesEvent
2022-10-16 14:56:53
dotnet/efcore
https://api.github.com/repos/dotnet/efcore
closed
Consecutive OrderBy not working
closed-by-design customer-reported
It seems that when using 2 consecutive `OrderBy` clauses, the first one is ignored. This means that the sorting isn't stable. The documentation for `Enumerable.OrderBy` says that the sort is stable: https://docs.microsoft.com/en-us/dotnet/api/system.linq.enumerable.orderby?view=netcore-3.0 but there's no mention of the stability in `Queryable.OrderBy`: https://docs.microsoft.com/en-us/dotnet/api/system.linq.queryable.orderby?view=netcore-3.0 so I guess it's up to the implementation. Should EF Core provide stability as well, or is this not supported? ### Steps to reproduce ``` C# using Microsoft.EntityFrameworkCore; using System.Linq; namespace ConsoleApp3 { public sealed class Record { public int Id { get; set; } public int A { get; set; } public int B { get; set; } } public sealed class ApplicationDbContext : DbContext { protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { base.OnConfiguring(optionsBuilder); optionsBuilder.UseSqlServer("Server=(localdb)\\mssqllocaldb;Database=aspnet-WebApplication-6E483A89-BEE6-4A76-96CC-CEB276E5E112;Trusted_Connection=True;MultipleActiveResultSets=true"); } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); } public DbSet<Record> Records { get; set; } } public static class Program { public static void Main() { using (var context = new ApplicationDbContext()) { context.Database.EnsureDeleted(); context.Database.EnsureCreated(); context.Records.Add(new Record { A = 2, B = 2 }); context.Records.Add(new Record { A = 2, B = 1 }); context.Records.Add(new Record { A = 1, B = 2 }); context.Records.Add(new Record { A = 1, B = 1 }); context.SaveChanges(); } using (var context = new ApplicationDbContext()) { var records = context.Records.OrderBy(r => r.B).OrderBy(r => r.A).ToList(); } } } } ``` I would expect the order inside `records` to be the same as when calling `OrderBy(r => r.A).ThenBy(r => r.B)`, so: ``` new Record { A = 1, B = 1 } new Record { A = 1, B = 2 } new Record { A = 2, B = 1 } new Record { A = 2, B = 2 } ``` but that's not the case because the generated SQL only has `ORDER BY [r].[A]` as opposed to `ORDER BY [r].[A], [r].[B]`. #### Why sort things in such a weird way as opposed to using `ThenBy`? I implemented a method that sorts an `IQueryable` based on a list of properties along with their sorting direction (ascending/descending). First I only used it on the client but at one point I started to use this with EF Core and later noticed that the sorting is wrong. For this method, `OrderBy` in a foreach loop is the simplest implementation. In order to use `OrderBy/ThenBy`, I had to special case the first item and also deal with the fact that in order to use `ThenBy`, I have to cast to `IOrderedQueryable` that is returned from the first `OrderBy`. ### Further technical details EF Core version: 3.0.0 Database provider: Microsoft.EntityFrameworkCore.SqlServer Target framework: .NET Core 3.0 Operating system: Windows 10 Version 1903 IDE: Visual Studio 16.4.0 Preview 5.0
1.0
Consecutive OrderBy not working - It seems that when using 2 consecutive `OrderBy` clauses, the first one is ignored. This means that the sorting isn't stable. The documentation for `Enumerable.OrderBy` says that the sort is stable: https://docs.microsoft.com/en-us/dotnet/api/system.linq.enumerable.orderby?view=netcore-3.0 but there's no mention of the stability in `Queryable.OrderBy`: https://docs.microsoft.com/en-us/dotnet/api/system.linq.queryable.orderby?view=netcore-3.0 so I guess it's up to the implementation. Should EF Core provide stability as well, or is this not supported? ### Steps to reproduce ``` C# using Microsoft.EntityFrameworkCore; using System.Linq; namespace ConsoleApp3 { public sealed class Record { public int Id { get; set; } public int A { get; set; } public int B { get; set; } } public sealed class ApplicationDbContext : DbContext { protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { base.OnConfiguring(optionsBuilder); optionsBuilder.UseSqlServer("Server=(localdb)\\mssqllocaldb;Database=aspnet-WebApplication-6E483A89-BEE6-4A76-96CC-CEB276E5E112;Trusted_Connection=True;MultipleActiveResultSets=true"); } protected override void OnModelCreating(ModelBuilder modelBuilder) { base.OnModelCreating(modelBuilder); } public DbSet<Record> Records { get; set; } } public static class Program { public static void Main() { using (var context = new ApplicationDbContext()) { context.Database.EnsureDeleted(); context.Database.EnsureCreated(); context.Records.Add(new Record { A = 2, B = 2 }); context.Records.Add(new Record { A = 2, B = 1 }); context.Records.Add(new Record { A = 1, B = 2 }); context.Records.Add(new Record { A = 1, B = 1 }); context.SaveChanges(); } using (var context = new ApplicationDbContext()) { var records = context.Records.OrderBy(r => r.B).OrderBy(r => r.A).ToList(); } } } } ``` I would expect the order inside `records` to be the same as when calling `OrderBy(r => r.A).ThenBy(r => r.B)`, so: ``` new Record { A = 1, B = 1 } new Record { A = 1, B = 2 } new Record { A = 2, B = 1 } new Record { A = 2, B = 2 } ``` but that's not the case because the generated SQL only has `ORDER BY [r].[A]` as opposed to `ORDER BY [r].[A], [r].[B]`. #### Why sort things in such a weird way as opposed to using `ThenBy`? I implemented a method that sorts an `IQueryable` based on a list of properties along with their sorting direction (ascending/descending). First I only used it on the client but at one point I started to use this with EF Core and later noticed that the sorting is wrong. For this method, `OrderBy` in a foreach loop is the simplest implementation. In order to use `OrderBy/ThenBy`, I had to special case the first item and also deal with the fact that in order to use `ThenBy`, I have to cast to `IOrderedQueryable` that is returned from the first `OrderBy`. ### Further technical details EF Core version: 3.0.0 Database provider: Microsoft.EntityFrameworkCore.SqlServer Target framework: .NET Core 3.0 Operating system: Windows 10 Version 1903 IDE: Visual Studio 16.4.0 Preview 5.0
non_defect
consecutive orderby not working it seems that when using consecutive orderby clauses the first one is ignored this means that the sorting isn t stable the documentation for enumerable orderby says that the sort is stable but there s no mention of the stability in queryable orderby so i guess it s up to the implementation should ef core provide stability as well or is this not supported steps to reproduce c using microsoft entityframeworkcore using system linq namespace public sealed class record public int id get set public int a get set public int b get set public sealed class applicationdbcontext dbcontext protected override void onconfiguring dbcontextoptionsbuilder optionsbuilder base onconfiguring optionsbuilder optionsbuilder usesqlserver server localdb mssqllocaldb database aspnet webapplication trusted connection true multipleactiveresultsets true protected override void onmodelcreating modelbuilder modelbuilder base onmodelcreating modelbuilder public dbset records get set public static class program public static void main using var context new applicationdbcontext context database ensuredeleted context database ensurecreated context records add new record a b context records add new record a b context records add new record a b context records add new record a b context savechanges using var context new applicationdbcontext var records context records orderby r r b orderby r r a tolist i would expect the order inside records to be the same as when calling orderby r r a thenby r r b so new record a b new record a b new record a b new record a b but that s not the case because the generated sql only has order by as opposed to order by why sort things in such a weird way as opposed to using thenby i implemented a method that sorts an iqueryable based on a list of properties along with their sorting direction ascending descending first i only used it on the client but at one point i started to use this with ef core and later noticed that the sorting is wrong for this method orderby in a foreach loop is the simplest implementation in order to use orderby thenby i had to special case the first item and also deal with the fact that in order to use thenby i have to cast to iorderedqueryable that is returned from the first orderby further technical details ef core version database provider microsoft entityframeworkcore sqlserver target framework net core operating system windows version ide visual studio preview
0
277,061
24,045,899,985
IssuesEvent
2022-09-16 08:18:21
r5py/r5py
https://api.github.com/repos/r5py/r5py
closed
Fiona and OpenJDK don’t get along in Windows runners
bug test
See the entire discussion in pull request https://github.com/r5py/r5py/pull/149. It seems that Fiona/GDAL/OGR and OpenJDK somehow confuse each other on the GitHub Windows runners. Could the people with access to ‘bare-metal’ Windows (@HTenkanen , @wklumpen ) please try to following minimum example: 1. Create an environment file `fionatest.yaml` with the following content: ``` name: fionatest channels: - conda-forge dependencies: - python=3.10 - fiona ``` 2. Use mamba to create a new environment using this file: ``` mamba env create --file fionatest.yaml ``` 3. try to import fiona (should be successful) ``` python -c "import fiona" ``` 4. install openjdk (in this example using mamba, in the github runners we use the appropriate github action) ``` mamba install -y openjdk=11 ``` 5. try to import fiona, again (fails!) ``` python -c "import fiona" ``` 6. Bonus step 1: uninstall the JDK ``` mamba remove -y openjdk ``` 7. Bonus step 2: try to import fiona, again (STILL fails!) ``` python -c "import fiona" ``` Not quite sure how to get out of this, as we need *both* a JDK and fiona. At least I’m my semi-certain that it’s not pytest. I’m fairly sure that it’s somehow connected to environment variables (like %PATH%, e.g.), and that installing the JDK messes them up, apparently both with the GH action and from mamba. If you try the (hopefully reproducible) example, could you compar the environment variables (or at least %PATH%) before and after every step? (e.g., `python -c "import os; print(os.environ['PATH'])"`) Thanks! _Originally posted by @christophfink in https://github.com/r5py/r5py/issues/149#issuecomment-1218061269_
1.0
Fiona and OpenJDK don’t get along in Windows runners - See the entire discussion in pull request https://github.com/r5py/r5py/pull/149. It seems that Fiona/GDAL/OGR and OpenJDK somehow confuse each other on the GitHub Windows runners. Could the people with access to ‘bare-metal’ Windows (@HTenkanen , @wklumpen ) please try to following minimum example: 1. Create an environment file `fionatest.yaml` with the following content: ``` name: fionatest channels: - conda-forge dependencies: - python=3.10 - fiona ``` 2. Use mamba to create a new environment using this file: ``` mamba env create --file fionatest.yaml ``` 3. try to import fiona (should be successful) ``` python -c "import fiona" ``` 4. install openjdk (in this example using mamba, in the github runners we use the appropriate github action) ``` mamba install -y openjdk=11 ``` 5. try to import fiona, again (fails!) ``` python -c "import fiona" ``` 6. Bonus step 1: uninstall the JDK ``` mamba remove -y openjdk ``` 7. Bonus step 2: try to import fiona, again (STILL fails!) ``` python -c "import fiona" ``` Not quite sure how to get out of this, as we need *both* a JDK and fiona. At least I’m my semi-certain that it’s not pytest. I’m fairly sure that it’s somehow connected to environment variables (like %PATH%, e.g.), and that installing the JDK messes them up, apparently both with the GH action and from mamba. If you try the (hopefully reproducible) example, could you compar the environment variables (or at least %PATH%) before and after every step? (e.g., `python -c "import os; print(os.environ['PATH'])"`) Thanks! _Originally posted by @christophfink in https://github.com/r5py/r5py/issues/149#issuecomment-1218061269_
non_defect
fiona and openjdk don’t get along in windows runners see the entire discussion in pull request it seems that fiona gdal ogr and openjdk somehow confuse each other on the github windows runners could the people with access to ‘bare metal’ windows htenkanen wklumpen please try to following minimum example create an environment file fionatest yaml with the following content name fionatest channels conda forge dependencies python fiona use mamba to create a new environment using this file mamba env create file fionatest yaml try to import fiona should be successful python c import fiona install openjdk in this example using mamba in the github runners we use the appropriate github action mamba install y openjdk try to import fiona again fails python c import fiona bonus step uninstall the jdk mamba remove y openjdk bonus step try to import fiona again still fails python c import fiona not quite sure how to get out of this as we need both a jdk and fiona at least i’m my semi certain that it’s not pytest i’m fairly sure that it’s somehow connected to environment variables like path e g and that installing the jdk messes them up apparently both with the gh action and from mamba if you try the hopefully reproducible example could you compar the environment variables or at least path before and after every step e g python c import os print os environ thanks originally posted by christophfink in
0
69,466
22,363,328,249
IssuesEvent
2022-06-15 23:22:03
jezzsantos/automate
https://api.github.com/repos/jezzsantos/automate
opened
Pattern configuration is too busy
defect-design
When viewing a pattern configuration (showing all details), the amount of data displayed makes quick reference difficult. `automate view pattern --all` Example output: ``` PS C:\Projects\github\jezzsantos\ddd-forum> automate view pattern --all Pattern 'SubDomain' (ID: 'Qps9Xgbd, v0.4.0) is configured as: - SubDomain [Qps9Xgbd] (root element) - Automation: - Go [5DhrMHhf] (CommandLaunchPoint) (ids: Gb3r11qG;XxMmzS0H;x664EbyV;eZYU0UWX;VsEhhtp3;f4m3qHck;75jm5Xj0;SaPEKz6h;VUbQMgMU;V3CskeRB;rmWtB8Mg;5M93B0Sd;KcSe1axf) - Attributes: - Name (string, required) - Elements: - Resource [YQY1UP9X] (collection) - CodeTemplates: - Resource [7R1gAwGe] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\domain\post.ts, ext: .ts) - DTO [ne5ds8AR] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\dtos\postDTO.ts, ext: .ts) - Routes [VdsjeCF0] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\infra\http\routes\post.ts, ext: .ts) - Mapper [r4VRhFkE] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\mappers\postMap.ts, ext: .ts) - RepoInterface [cTfY562u] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\repos\postRepo.ts, ext: .ts) - RepoImplementation [2CcBpTbV] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\repos\implementations\sequelizePostRepo.ts, ext: .ts) - Identifier [yZY2WRg8] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\domain\postId.ts, ext: .ts) - RepoIndex [r5vt6KT5] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\repos\index.ts, ext: .ts) - Automation: - ResourceCommand1 [Gb3r11qG] (CodeTemplateCommand) (template: 7R1gAwGe, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/domain/{{Name | string.camelsingular}}.ts) - DTOCommand2 [XxMmzS0H] (CodeTemplateCommand) (template: ne5ds8AR, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/dtos/{{Name | string.camelsingular}}DTO.ts) - RoutesCommand3 [x664EbyV] (CodeTemplateCommand) (template: VdsjeCF0, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/infra/http/routes/{{Name | string.camelsingular}}.ts) - MapperCommand5 [eZYU0UWX] (CodeTemplateCommand) (template: r4VRhFkE, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/mappers/{{Name | string.camelsingular}}Map.ts) - RepoInterfaceCommand4 [VsEhhtp3] (CodeTemplateCommand) (template: cTfY562u, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/repos/{{Name | string.camelsingular}}Repo.ts) - RepoImplementationCommand6 [f4m3qHck] (CodeTemplateCommand) (template: 2CcBpTbV, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/repos/implementations/sequelize{{Name | string.pascalsingular}}Repo.ts) - IdentifierCommand7 [75jm5Xj0] (CodeTemplateCommand) (template: yZY2WRg8, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/domain/{{Name | string.camelsingular}}Id.ts) - RepoIndexCommand8 [SaPEKz6h] (CodeTemplateCommand) (template: r5vt6KT5, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/repos/index.ts) - Attributes: - Name (string, required) - Kind (string, required, oneof: aggregate;entity, default: entity) - Elements: - UseCase [fG9N9vM6] (collection) - CodeTemplates: - UseCase [dwDXxv9G] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\useCases\post\createPost\CreatePost.ts, ext: .ts) - Controller [PmEpX6M7] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\useCases\post\createPost\CreatePostController.ts, ext: .ts) - DTO [1uxps3Sc] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\useCases\post\createPost\CreatePostDTO.ts, ext: .ts) - Errors [cd8R6rKQ] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\useCases\post\createPost\CreatePostErrors.ts, ext: .ts) - Index [Dn8BrSRK] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\useCases\post\createPost\index.ts, ext: .ts) - Automation: - UseCaseCommand1 [VUbQMgMU] (CodeTemplateCommand) (template: dwDXxv9G, oneOff: true, path: src/modules/{{Parent.Parent.Name | string.camelsingular}}/useCases/{{Parent.Name | string.camelsingular}}/{{Name | string.camelsingular}}{{Parent.Name | string.pascalsingular}}/{{Name | string.pascalsingular}}{{Parent.Name | string.pascalsingular}}.ts) - ControllerCommand2 [V3CskeRB] (CodeTemplateCommand) (template: PmEpX6M7, oneOff: true, path: src/modules/{{Parent.Parent.Name | string.camelsingular}}/useCases/{{Parent.Name | string.camelsingular}}/{{Name | string.camelsingular}}{{Parent.Name | string.pascalsingular}}/{{Name | string.pascalsingular}}{{Parent.Name | string.pascalsingular}}Controller.ts) - DTOCommand3 [rmWtB8Mg] (CodeTemplateCommand) (template: 1uxps3Sc, oneOff: true, path: src/modules/{{Parent.Parent.Name | string.camelsingular}}/useCases/{{Parent.Name | string.camelsingular}}/{{Name | string.camelsingular}}{{Parent.Name | string.pascalsingular}}/{{Name | string.pascalsingular}}{{Parent.Name | string.pascalsingular}}DTO.ts) - ErrorsCommand4 [5M93B0Sd] (CodeTemplateCommand) (template: cd8R6rKQ, oneOff: true, path: src/modules/{{Parent.Parent.Name | string.camelsingular}}/useCases/{{Parent.Name | string.camelsingular}}/{{Name | string.camelsingular}}{{Parent.Name | string.pascalsingular}}/{{Name | string.pascalsingular}}{{Parent.Name | string.pascalsingular}}Errors.ts) - IndexCommand5 [KcSe1axf] (CodeTemplateCommand) (template: Dn8BrSRK, oneOff: true, path: src/modules/{{Parent.Parent.Name | string.camelsingular}}/useCases/{{Parent.Name | string.camelsingular}}/{{Name | string.camelsingular}}{{Parent.Name | string.pascalsingular}}/index.ts) - Go [8HYpvvQc] (CommandLaunchPoint) (ids: VUbQMgMU;V3CskeRB;rmWtB8Mg;5M93B0Sd;KcSe1axf) - Attributes: - Name (string, required) - Kind (string, required, oneof: command;query, default: command) - Route (string, required, default: /) - IsAuthenticated (bool, required, default: true) ``` Perhaps we can truncate and remove some of these details? * Truncate original file path of code templates, and limit to last 120 characters in the path. * Eliminate the file extension of the code template (redundant) * have other options to show either codetemplates or the automation or both
1.0
Pattern configuration is too busy - When viewing a pattern configuration (showing all details), the amount of data displayed makes quick reference difficult. `automate view pattern --all` Example output: ``` PS C:\Projects\github\jezzsantos\ddd-forum> automate view pattern --all Pattern 'SubDomain' (ID: 'Qps9Xgbd, v0.4.0) is configured as: - SubDomain [Qps9Xgbd] (root element) - Automation: - Go [5DhrMHhf] (CommandLaunchPoint) (ids: Gb3r11qG;XxMmzS0H;x664EbyV;eZYU0UWX;VsEhhtp3;f4m3qHck;75jm5Xj0;SaPEKz6h;VUbQMgMU;V3CskeRB;rmWtB8Mg;5M93B0Sd;KcSe1axf) - Attributes: - Name (string, required) - Elements: - Resource [YQY1UP9X] (collection) - CodeTemplates: - Resource [7R1gAwGe] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\domain\post.ts, ext: .ts) - DTO [ne5ds8AR] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\dtos\postDTO.ts, ext: .ts) - Routes [VdsjeCF0] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\infra\http\routes\post.ts, ext: .ts) - Mapper [r4VRhFkE] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\mappers\postMap.ts, ext: .ts) - RepoInterface [cTfY562u] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\repos\postRepo.ts, ext: .ts) - RepoImplementation [2CcBpTbV] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\repos\implementations\sequelizePostRepo.ts, ext: .ts) - Identifier [yZY2WRg8] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\domain\postId.ts, ext: .ts) - RepoIndex [r5vt6KT5] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\repos\index.ts, ext: .ts) - Automation: - ResourceCommand1 [Gb3r11qG] (CodeTemplateCommand) (template: 7R1gAwGe, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/domain/{{Name | string.camelsingular}}.ts) - DTOCommand2 [XxMmzS0H] (CodeTemplateCommand) (template: ne5ds8AR, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/dtos/{{Name | string.camelsingular}}DTO.ts) - RoutesCommand3 [x664EbyV] (CodeTemplateCommand) (template: VdsjeCF0, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/infra/http/routes/{{Name | string.camelsingular}}.ts) - MapperCommand5 [eZYU0UWX] (CodeTemplateCommand) (template: r4VRhFkE, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/mappers/{{Name | string.camelsingular}}Map.ts) - RepoInterfaceCommand4 [VsEhhtp3] (CodeTemplateCommand) (template: cTfY562u, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/repos/{{Name | string.camelsingular}}Repo.ts) - RepoImplementationCommand6 [f4m3qHck] (CodeTemplateCommand) (template: 2CcBpTbV, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/repos/implementations/sequelize{{Name | string.pascalsingular}}Repo.ts) - IdentifierCommand7 [75jm5Xj0] (CodeTemplateCommand) (template: yZY2WRg8, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/domain/{{Name | string.camelsingular}}Id.ts) - RepoIndexCommand8 [SaPEKz6h] (CodeTemplateCommand) (template: r5vt6KT5, oneOff: true, path: src/modules/{{Parent.Name | string.camelsingular}}/repos/index.ts) - Attributes: - Name (string, required) - Kind (string, required, oneof: aggregate;entity, default: entity) - Elements: - UseCase [fG9N9vM6] (collection) - CodeTemplates: - UseCase [dwDXxv9G] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\useCases\post\createPost\CreatePost.ts, ext: .ts) - Controller [PmEpX6M7] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\useCases\post\createPost\CreatePostController.ts, ext: .ts) - DTO [1uxps3Sc] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\useCases\post\createPost\CreatePostDTO.ts, ext: .ts) - Errors [cd8R6rKQ] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\useCases\post\createPost\CreatePostErrors.ts, ext: .ts) - Index [Dn8BrSRK] (file: C:\Projects\github\stemmlerjs\ddd-forum\src\modules\forum\useCases\post\createPost\index.ts, ext: .ts) - Automation: - UseCaseCommand1 [VUbQMgMU] (CodeTemplateCommand) (template: dwDXxv9G, oneOff: true, path: src/modules/{{Parent.Parent.Name | string.camelsingular}}/useCases/{{Parent.Name | string.camelsingular}}/{{Name | string.camelsingular}}{{Parent.Name | string.pascalsingular}}/{{Name | string.pascalsingular}}{{Parent.Name | string.pascalsingular}}.ts) - ControllerCommand2 [V3CskeRB] (CodeTemplateCommand) (template: PmEpX6M7, oneOff: true, path: src/modules/{{Parent.Parent.Name | string.camelsingular}}/useCases/{{Parent.Name | string.camelsingular}}/{{Name | string.camelsingular}}{{Parent.Name | string.pascalsingular}}/{{Name | string.pascalsingular}}{{Parent.Name | string.pascalsingular}}Controller.ts) - DTOCommand3 [rmWtB8Mg] (CodeTemplateCommand) (template: 1uxps3Sc, oneOff: true, path: src/modules/{{Parent.Parent.Name | string.camelsingular}}/useCases/{{Parent.Name | string.camelsingular}}/{{Name | string.camelsingular}}{{Parent.Name | string.pascalsingular}}/{{Name | string.pascalsingular}}{{Parent.Name | string.pascalsingular}}DTO.ts) - ErrorsCommand4 [5M93B0Sd] (CodeTemplateCommand) (template: cd8R6rKQ, oneOff: true, path: src/modules/{{Parent.Parent.Name | string.camelsingular}}/useCases/{{Parent.Name | string.camelsingular}}/{{Name | string.camelsingular}}{{Parent.Name | string.pascalsingular}}/{{Name | string.pascalsingular}}{{Parent.Name | string.pascalsingular}}Errors.ts) - IndexCommand5 [KcSe1axf] (CodeTemplateCommand) (template: Dn8BrSRK, oneOff: true, path: src/modules/{{Parent.Parent.Name | string.camelsingular}}/useCases/{{Parent.Name | string.camelsingular}}/{{Name | string.camelsingular}}{{Parent.Name | string.pascalsingular}}/index.ts) - Go [8HYpvvQc] (CommandLaunchPoint) (ids: VUbQMgMU;V3CskeRB;rmWtB8Mg;5M93B0Sd;KcSe1axf) - Attributes: - Name (string, required) - Kind (string, required, oneof: command;query, default: command) - Route (string, required, default: /) - IsAuthenticated (bool, required, default: true) ``` Perhaps we can truncate and remove some of these details? * Truncate original file path of code templates, and limit to last 120 characters in the path. * Eliminate the file extension of the code template (redundant) * have other options to show either codetemplates or the automation or both
defect
pattern configuration is too busy when viewing a pattern configuration showing all details the amount of data displayed makes quick reference difficult automate view pattern all example output ps c projects github jezzsantos ddd forum automate view pattern all pattern subdomain id is configured as subdomain root element automation go commandlaunchpoint ids vubqmgmu attributes name string required elements resource collection codetemplates resource file c projects github stemmlerjs ddd forum src modules forum domain post ts ext ts dto file c projects github stemmlerjs ddd forum src modules forum dtos postdto ts ext ts routes file c projects github stemmlerjs ddd forum src modules forum infra http routes post ts ext ts mapper file c projects github stemmlerjs ddd forum src modules forum mappers postmap ts ext ts repointerface file c projects github stemmlerjs ddd forum src modules forum repos postrepo ts ext ts repoimplementation file c projects github stemmlerjs ddd forum src modules forum repos implementations sequelizepostrepo ts ext ts identifier file c projects github stemmlerjs ddd forum src modules forum domain postid ts ext ts repoindex file c projects github stemmlerjs ddd forum src modules forum repos index ts ext ts automation codetemplatecommand template oneoff true path src modules parent name string camelsingular domain name string camelsingular ts codetemplatecommand template oneoff true path src modules parent name string camelsingular dtos name string camelsingular dto ts codetemplatecommand template oneoff true path src modules parent name string camelsingular infra http routes name string camelsingular ts codetemplatecommand template oneoff true path src modules parent name string camelsingular mappers name string camelsingular map ts codetemplatecommand template oneoff true path src modules parent name string camelsingular repos name string camelsingular repo ts codetemplatecommand template oneoff true path src modules parent name string camelsingular repos implementations sequelize name string pascalsingular repo ts codetemplatecommand template oneoff true path src modules parent name string camelsingular domain name string camelsingular id ts codetemplatecommand template oneoff true path src modules parent name string camelsingular repos index ts attributes name string required kind string required oneof aggregate entity default entity elements usecase collection codetemplates usecase file c projects github stemmlerjs ddd forum src modules forum usecases post createpost createpost ts ext ts controller file c projects github stemmlerjs ddd forum src modules forum usecases post createpost createpostcontroller ts ext ts dto file c projects github stemmlerjs ddd forum src modules forum usecases post createpost createpostdto ts ext ts errors file c projects github stemmlerjs ddd forum src modules forum usecases post createpost createposterrors ts ext ts index file c projects github stemmlerjs ddd forum src modules forum usecases post createpost index ts ext ts automation codetemplatecommand template oneoff true path src modules parent parent name string camelsingular usecases parent name string camelsingular name string camelsingular parent name string pascalsingular name string pascalsingular parent name string pascalsingular ts codetemplatecommand template oneoff true path src modules parent parent name string camelsingular usecases parent name string camelsingular name string camelsingular parent name string pascalsingular name string pascalsingular parent name string pascalsingular controller ts codetemplatecommand template oneoff true path src modules parent parent name string camelsingular usecases parent name string camelsingular name string camelsingular parent name string pascalsingular name string pascalsingular parent name string pascalsingular dto ts codetemplatecommand template oneoff true path src modules parent parent name string camelsingular usecases parent name string camelsingular name string camelsingular parent name string pascalsingular name string pascalsingular parent name string pascalsingular errors ts codetemplatecommand template oneoff true path src modules parent parent name string camelsingular usecases parent name string camelsingular name string camelsingular parent name string pascalsingular index ts go commandlaunchpoint ids vubqmgmu attributes name string required kind string required oneof command query default command route string required default isauthenticated bool required default true perhaps we can truncate and remove some of these details truncate original file path of code templates and limit to last characters in the path eliminate the file extension of the code template redundant have other options to show either codetemplates or the automation or both
1