Questions tagged [breakpoints]

A breakpoint is a mechanism offered by a development environment that allows to interrupt and suspend the execution of a program for debugging purpose, in view of resuming the execution.

A breakpoint is a mechanism offered by a development environment that allows to interrupt and suspend the execution of a program for debugging purpose, in view of resuming the execution.

External reference:

2934 questions
1
vote
2 answers

Debugging timeouts in IntelliJ IDEA

In my application I'm using timeouts to exit out of certain endless loops if it is uncertain if the condition will be met in reasonable time. For the timekeeping I'm using the system's time since it's straightforward: public class BenchmarkTimer { …
BullyWiiPlaza
  • 17,329
  • 10
  • 113
  • 185
1
vote
0 answers

Octave crashes due to clearing variables in script without breakpoints - Attempts to write to last memory block

On my system (Windows, 8 GB RAM 64-bit i7), Octave is having this problem handling medium sized arrays. I have task manager open, and the memory never going beyond 200 MB before the graphing section. It will often crash around 150 MB. The…
Ben
  • 25
  • 6
1
vote
0 answers

Execute C# code with side effects on breakpoint

I would like to use a breakpoint to execute code in Visual Studio 2017 and have the side effects of that code affect the program. It appears from Execute code when breakpoint is hit? that this was possible in a past version of Visual Studio. But…
mbabramo
  • 2,573
  • 2
  • 20
  • 24
1
vote
0 answers

Why are my breakpoints not working in spring with IntellIJ Run Dashboard?

I'm rusing Spring and when I debug with the Run Dashboard, my breakpoints are not halting (there is also no checkmark on the breakpoint circles). When I debug "normally" (without Run Dashboard, just an Application in the Debug Window) it works and…
AmazingTurtle
  • 1,187
  • 1
  • 15
  • 31
1
vote
1 answer

How to hit break point in c++ app if it is not start-up project

I have a VS2010 solution that contain two projects: C# windows form & C++ console app. C# project is start-up project and it will call C++ app, I also set build priority and dependency correctly, but break point in c++ project won't get hit at…
DaveG
  • 491
  • 1
  • 6
  • 19
1
vote
2 answers

VSCode python 'Unverified breakpoint' during debugging?

I'm debugging my python application using VSCode. I have a main python file from where I start the debugger. I'm able to put breakpoints in this file, but if I want to put breakpoints in other files which are called by the main file, I get them as…
locke14
  • 1,335
  • 3
  • 15
  • 36
1
vote
2 answers

Can I set more than one breakpoint on the same line in IntelliJ?

I would like to add two breakpoints on the same line in IntelliJ: one always logs a message, and the other suspends the program if a certain condition is true. Is this somehow possible to do in IntelliJ?
user1779715
1
vote
2 answers

Getting count of rows from breakpoints of different column

Consider there are two columns A and B in a dataframe. How can I decile column A and use those breakpoints of column A deciles to calculate the count of rows in column B?? import pandas as pd import numpy as…
Venky
  • 31
  • 5
1
vote
1 answer

$vuetify.breakpoint is empty

On any of the VueJS projects I generate and install Vuetify I can't use this.$vuetify.breakpoint.ANYTHING because this.$vuetify.breakpoint is empty. I tried with any versions of Vuetify from 1.0.10 to 1.0.17. I don't understand why. My main.ts file…
Victor Castro
  • 1,232
  • 21
  • 40
1
vote
1 answer

No executable code found at line …. Android

I know this question was asked here sometimes, but all solutions which I found didn't work for me. When I want to debug my program I'm getting information "No executable code found at line (...)". I've tried: Clean project Disable instant run Add…
1
vote
1 answer

Property of class being displayed differently when I print it through a breakpoint or through console.warn

This is quite bizarre. I have an object with a boolean property. I want to see how it's doing so I do a console.warn, which gives me the expected result. However, if I put a breakpoint on the console.warn and display the variable through my dev…
theJuls
  • 6,788
  • 14
  • 73
  • 160
1
vote
0 answers

No tick on breakpoint in eclipse

so I'm trying to debug a project (written in c) with eclipse. I added the project with the "makefile project with existing code" option and entered the location of the source-code. Also I chose Linux GCC. When I click on the debug-button, the code…
uc14
  • 11
  • 3
1
vote
1 answer

VB6 IDE Breakpointing at weird Locations, and Jumping to Random Lines with "Step Into"

I've been experiencing some weird things in the VB6 IDE. When I set a breakpoint on one of the functions, The IDE Pauses on the wrong Sub. If I "Step Into" and follow the code. It "Appears" to be running the correct sub, based on the property gets…
Jason Brown
  • 127
  • 2
  • 13
1
vote
1 answer

bootstrap 3.3.7 xs breakpoint doesn't work

Why when do I go below 480px the four column doesn't stack one above another? The other three breakpoints work well but when I go below 480px the colums remain as they are located at sm breakpoint.
Salvio
  • 100
  • 2
  • 15
1
vote
0 answers

Eclipse debugger not working properly. Not opening perspective and not stopping at breakpoints

I am using eclipse(Eclipse Java EE IDE for Web Developers. Version: Oxygen.1 Release (4.7.1)). Currently I am experiencing problems debugging my project. When I run a junit in debug mode, it doesn't go into debug perspective and doesn't stop at…