Defects are anything that have to be changed in order for a product to work as designed or meet expectations.
Questions tagged [defects]
64 questions
3
votes
1 answer
Possible VBA AND Operator Anomaly
On my 32-Bit PC, running Office 2003 Excel VBA, the following code
Debug.Print ""
Debug.Print Hex(&HFF00000 And &HF00000)
Debug.Print Hex(&HFF0000 And &HF0000)
Debug.Print Hex(&HFF000 And &HF000)
Debug.Print Hex(&HFF00 And &HF00)
Debug.Print…

mikebinz
- 370
- 1
- 4
- 17
2
votes
1 answer
Updating an Array that's present inside an Object
I'm trying to update an array (Array name is "Variables" please refer the attached screenshot) which presents inside an Object, so I want to update that array if there is word called "placeholder" in alertMessage(it's a different property presents…

Noob
- 25
- 6
2
votes
0 answers
computer vision/ defect detection/ python
I want to get the row of the red box abnormal object, I divide the rows seperately, and then use the first object as the base, mse and ssim methods are adopted to compare the rest targets of each row with the defined base object, aims to find the…

junjie zhao
- 21
- 1
2
votes
5 answers
How should one measure Defect Density?
Is there a standard way of measuring Defect Density? Most sites online state that it should be measured as:
number of defects discovered / the code size
My questions are:
Should defects "fixed" during the period be subtracted from the defects…

Nishith
- 593
- 3
- 6
- 16
2
votes
1 answer
Drawing Convexity Defects C++ OpenCV
From the code below, I am able to draw the biggest contour with the centroid marked as a small circle and the hull as a yellow line. How do I draw the convexity defects? Should I use the circle() function or the drawContours() function?
Mat bw;
Mat…

Og Namdik
- 823
- 4
- 14
- 22
1
vote
2 answers
Rally software cardboard with only a iteration dropdown and defects cards
How do I create a cardboard in Rally Software that has just an iteration dropdown and a defect list. I have tried the examples on the dev site and they give me user stories and defects. I just need the defects.

DonnieCrump
- 169
- 1
- 2
- 14
1
vote
0 answers
Why call to `StreamReader.ReadAsync` with `count` parameter 0 advances `Position` of underlying stream?
While working with the System.IO.StreamReader class of the .NET Framework I noticed what seems to me to be strangely inconsistent behavior:
Calling the Read(Char[], Int32, Int32) method and passing 0 for the count parameter (i.e. read zero bytes),…

Dan Stevens
- 6,392
- 10
- 49
- 68
1
vote
0 answers
What is the REST API for HP-ALM to fetch defect history data
I am fetching data from HP ALM by using REST API. I am able to fetch audit data for tests by using /qcbin/rest/domains/{domain}/projects/{project}/audits?query={parent-type[test];parent-id[101 or 102 or 103]}.
But I am not able to fetch the audit…

Sujata
- 11
- 1
1
vote
0 answers
Unpassive change in RestSharp 106.6.2
.net Core.
Using RestSharp 106.5.4, this was valid. The Priorities endpoint supports a List priorities as a query parameter.
string server = "http://localhost:11111";
var client = new RestClient(server);
string filter =…

user2905241
- 11
- 3
1
vote
1 answer
Why would building a program fail sometimes but not others, without any changes to the source or settings? Possibly defective hardware?
I recently built a large-ish open source program in Visual Studio 2013. Initially the build failed due to a couple errors (a C1900 and a LNK2019). These errors were quite puzzling since I was following clear, simple instructions for building the…

62a
- 11
- 1
1
vote
2 answers
Is this really a bug with ConfigurationManager.OpenExeConfiguration?
The documentation for ConfigurationManager.OpenExeConfiguration(string exePath) states:
Opens the specified client configuration file as a Configuration
object.
It also states that exePath is "The path of the executable (exe) file"
The method is…

ProfK
- 49,207
- 121
- 399
- 775
1
vote
1 answer
Updating QC ALM defect Comments Section using REST API
Using REST API in Java I am trying to update QC ALM. I am getting value in html format when I am trying to extract comment section for any Defect. So, if I want to add any comment, do I need to pass as HTML content with the previous comment or is…

rohit saraf
- 37
- 1
- 8
1
vote
1 answer
ALM excel add-in error while trying to map excel fields with ALM fields
I am trying to upload test cases excel sheet to HP ALM. Below are the steps i followed to upload the sheet -
I chose the sheet to upload, opened it -> from toolbar -> clicked 'HP ALM Upload Add-in'
Clicked 'Log in to ALM' -> entered the ALM…

user2014
- 171
- 1
- 14
1
vote
2 answers
Shell session exited by itself after issuing command "exec<>5"
When issued two commands below in Linux or MacOS, the Shell session exited and no any error message displayed.
➜ ~ sh
sh-3.2$ exec<>5
sh-3.2$ exit ==> 'exit' was issued by the shell itself!
Is this a defect of '/bin/sh'? Can anyone provide any…

user940178
- 53
- 6
1
vote
2 answers
What is the category of bugs that monads prevent?
My understanding is that for the do monad, each step has a continuation and a closure.
This author writes:
We've seen that purity, strong types, and monads can:
...
Prevent bugs that might arise from confusion between different phases of…

hawkeye
- 34,745
- 30
- 150
- 304