162 questions
0
votes
0
answers
26
views
Angular 17 upgrade - handle ngclass.*breakpoint changes
I am upgrading my medium-sized application from Angular 16 to Angular 17. However, [ngClass.*] breakpoints are no longer supported in ngx-layout for Angular 17. Since my styles are SCSS-based, I need ...
0
votes
1
answer
55
views
Breakpoint on method call for one instance
(Java, Eclipse) I have a variable instance on which I call a method (like o.setValue(...) ) in between this and the output, something, somewhere (in the very complex legacy codebase with custom ...
0
votes
1
answer
65
views
Global Variable change tracking
Long time ago on VB6 it was possible to stop the code when a global variable was changing from 0 to 1.
With VB.net 2022 there is no way I can do that.
I look at all the documentation on Conditional ...
0
votes
1
answer
52
views
Is it possible to break when RDX changes to a certain value?
I have a bug in my code where rdx = 0x1111111111111111 and is then dereferenced leading to memory access violation. I can catch this using a first chance exception
Address=00000000C0000005
Module/...
-1
votes
1
answer
73
views
Is there a way to deactivate (but not delete) conditional breakpoints when debugging?
It might be easy to just turn them off if it's a regular breakpoint, but sometimes I want to just deactivate the conditional breakpoint for a while, and have the option to turn it back (with the ...
0
votes
1
answer
142
views
Set conditional breakpoint in lldb for integer variable
ALL,
I'm trying to debug a failure in the unit test.
The code is running a loop of 1000 iterations and the failure occur in the step 140.
I'm on OSX and so using lldb.
I tried to do:
break set -f ...
0
votes
1
answer
82
views
Conditional Breakpoint failed
I'm creating a dll in c# which will be an addin for a host application, Revit. I've set a conditional breakpoint in my code while attempting to debug some issues. This is my debugging process:
Build ...
2
votes
0
answers
272
views
Configuring a Conditional Breakpoint in Spyder to Catch When an Error is Raised
I've been using the debugger in spyder and experimenting with the 'Set/Edit Conditional Breakpoint' functionality. See the code snippet below; where I set the breakpoint condition to i==2 on line 4 ...
2
votes
1
answer
210
views
In which language should I code conditional breakpoints in gdb?
I'm very confused about conditional breakpoints in gdb.
Recently, I wanted to put a breakpoint which breaks when a specific variable is equal to "foo" in a C++ program.
To do that I typed ...
1
vote
0
answers
76
views
For which type VScode conditional breakpoints with an expression work in C++?
I'm trying to use conditional breakpoints on a C++ project but it's not easy. After a lot of tries I managed to find out conditional breakpoints works with int and double. I previously tried to use ...
1
vote
1
answer
119
views
How to create a conditional breakpoint on a socket port?
I'm working on a C# application, working with TCP sockets. In order to do this, there are following lines of source code:
using System.Net.Sockets;
...
var sock = (Socket)ar.AsyncState;
...
if (sock....
0
votes
0
answers
540
views
Segmented regression with a single, known breakpoint in R
I'm new to this community but hope that someone will be able to help me with this issue:
I am trying to find the changes of plane efficiency data after the implementation of an intervention (nudge) in ...
0
votes
1
answer
735
views
using ngClass with bootstrap class as conditional screen size breakpoint detector
good day developers...is possible to apply ngClass with the use of bootstrap class related to detection of screen sizes responsivnes.
Lets say i would like to apply an specific class to my template ...
2
votes
2
answers
233
views
Can I enable a `$DB::single =1` breakpoint conditionally from a program?
I have a case where a local variable in a sub has the wrong un-blessed value after several invocations, and I'd like to break to the Perl debugger (when the program runs under debugger control, of ...
0
votes
1
answer
3k
views
Conditional breakpoint ( or edit breakpoint) in VS code debugging is not working
I'm trying to use conditional breakpoint
like 'lessThan5' is executed if n is 3 and 'greaterThan5' is executed if n is 10.
(Please excuse this so simple example. It was just made for asking question ...