Questions tagged [defects]

Defects are anything that have to be changed in order for a product to work as designed or meet expectations.

64 questions
11
votes
2 answers

Convexity defects C++ OpenCv

I would be grateful to you if you could help me with this issue :) Relating to this question cvConvexityDefects in OpenCV 2.X / C++?, I have the same problem. The OpenCV C++ wrapper has not the function cvConvexityDefects that appears in the C…
cabreracanal
  • 924
  • 1
  • 14
  • 36
10
votes
1 answer

Why is there no header and can the non-existence of it be considered a defect?

The standard library includes an header, that (forward) declares all streams including any typedefs and defines the char_traits template, including the specializations. Sadly, there is no such header that (forward) declares all the…
Xeo
  • 129,499
  • 52
  • 291
  • 397
8
votes
7 answers

Best freeware defect tracking software for Windows?

I'm looking for a freeware defect tracking solution. I have experience with Mercury Quality Center, but I hear that comes with a five-digit pricetag. I need something for my personal projects. Webforms (i.e. ASP.NET) would be preferrable. Anything…
tsilb
  • 7,977
  • 13
  • 71
  • 98
8
votes
2 answers

Minor (unimportant) defect in the standard?

This question has no practical issues associated with it, it is more a matter of curiosity and wanting to know if I am taking things too literally ;). So I have been trying to work towards understanding as much of the c++ standard as possible.…
Evan Teran
  • 87,561
  • 32
  • 179
  • 238
5
votes
1 answer

What is a Swamp Diagram?

Someone told me about swamp diagrams explaning that they were useful to predict code quality by measuring the rate of incoming defects and outgoing fixes on a given product. Unfortunately, I am unable to find additional information on those diagrams…
David Segonds
  • 83,345
  • 10
  • 45
  • 66
4
votes
5 answers

Is it wise to generate stories for defects when using Scrum and there is no story already created?

Let's say you are working on a piece of legacy code that was written before your company started using an Agile methodology like Scrum. Now let's say you discover a bug in the field that needs to be fixed and there was never a story for that feature…
Brian T Hannan
  • 3,925
  • 18
  • 56
  • 96
4
votes
2 answers

dbFailOnError SQL Server datetime bug for time-only values

I have a linked table in SQL Server with a datetime column where I store a time-only value*. If I execute an UPDATE query without dbFailOnError it translates that command into a SELECT followed by individual UPDATE statements that execute one row…
mwolfe02
  • 23,787
  • 9
  • 91
  • 161
4
votes
1 answer

Rally Rest API....add defect to defect suite

I've done some research on this topic, but haven't found anything useful. I need to add an existing defect to an existing defect suite using the Rally rest API. Does anybody know how to do this? I've tried a number of things, none of which…
4
votes
1 answer

Fixing bugs in old releases in workflow as described by Adam Dymitruk ("branch per feature")

I've been reading up on Adam Dymitruk's git workflow, and it all makes good sense. The one thing I can't find any discussion on is fixing bugs in old releases. Picture the 'master' branch with tags at 7.0, 7.1, 7.2, 7.3, 7.4, 7.4.1, 7.4.2, 7.8, 8.2,…
N5NX
  • 135
  • 2
  • 4
3
votes
1 answer

How to show Owner of Defect in Rally

I'm using /apps/1.29/sdk.js for the custom app. And I can get fields like "FormattedID" , "State", but I can not get the "Owner" printed out. Can you advise? thanks! table.setCell(i, 5, '' + defect.Owner.LoginName + '' + defect.Owner.DisplayName); …
3
votes
3 answers

Why does using using RestClient.ExecuteAsync with await fail silently when RestClient.Execute works?

I am currently working on an integration with Personio to fetch employee data. Instead of waiting for a response, the solution below suddenly jumps out of the second method at the point commented in the code: using…
Brian Kessler
  • 2,187
  • 6
  • 28
  • 58
3
votes
2 answers

Defects of the STL

While the C++ standard libraries are very generic and efficient libraries, some minor details of their interfaces just seem disappointing. Algorithms cannot take containers directly. std::sort(myvec.begin(), myvec.end()); instead of…
log0
  • 10,489
  • 4
  • 28
  • 62
3
votes
1 answer

C++0x: conditional operator, xvalues, and decltype

I am reposting a comp.std.c++ Usenet discussion here because that group has become very unreliable. The last few posts I've submitted there have gone into the void, and activity has all but ceased. I doubt I've been banned and/or everyone else just…
Potatoswatter
  • 134,909
  • 25
  • 265
  • 421
3
votes
2 answers

Finding these spots in the image?

I have this image: I am trying to find the spots (defects) as shown in the image. I have tried thresholding, but that only helps for the really bright ones. Any suggestions on how to do it?
efn
  • 55
  • 6
3
votes
1 answer

Discrepancy in creating defect between UI and restApi

When I create a defect on UI, I cannot assign it only to test case, user story is getting assigned automatically. If I try to delete the User Story, test case also disappears. But through restApi, I can relate only to Test Case, without mentioning…
stella
  • 79
  • 1
  • 6
1
2 3 4 5