Questions tagged [suppression]

Suppression is a form of technical filtering (e.g. of alert messages, signals, ...) where some output is withheld from being displayed after being generated in order to reduce the overall amount of information. Compared to filtering, the suppressed items are not thrown away, they get just not displayed. This could be due to user's configuration/customization in some system settings or profile, configured by a set of rules.

67 questions
0
votes
1 answer

Valgrind: still reachable memory leaks found in dl-init.c. Are these real memory leaks?

Leak Summary I'm still new to valgrind and I don't have enough knowledge to evaluate this result. I was able to fix memory leaks in the past but the location of the leaks in my code were indicated, this time I have no idea how to fix a leak found…
chuvz
  • 11
0
votes
0 answers

Silently share calendar with MS Graph

Is it possible to share a calendar to a mail-enabled security group via graph API without sending an email notification to the distribution? I am attempting to automate our onboarding process and need to share the calendar with every user in the…
0
votes
1 answer

Supress misra warning with function instead of macro

I want to ask if there is a way to suppress misra warnings using a custom function without having to write \\ Misra Warning Suppression (always the same derivation) everywhere. I often use throw std::runtime_error("Custom Error") on many places in…
Lukas
  • 3
  • 1
0
votes
1 answer

Please help me with this particular suppression error

I am trying to suppress certain vulnerabilities via a suppression.xml file. I am following the instructions of the assignment prompt by adding in the complete xml documentation to copy and paste into my suppression file. I am getting an error of…
Aaron535
  • 1
  • 3
0
votes
1 answer

Suppression tool help. Need to know how to not delete a row if it is empty

So in my code I am deleting duplicates. The problem is some of my data has no entry's. because it deletes duplicates the ones with no entrys get deleted. The problem with this is I am running millions of entrys so I couldnt just go in and add a fake…
Ben D
  • 1
0
votes
0 answers

Nonblocking ncurses: prevent stdout

what I am trying to do and the problem I am trying to use nonblocking ncurses getch() and output data to stdout. The problem is that cnurses also writes to stdout. It writes [?1l>[?1h=[17;1H[?1049l[23;0;0t tens of thousands of times. What I have…
onflante
  • 80
  • 5
0
votes
2 answers

SSRS 2008 R2 Remove White Space if Null

I have a simple SQL Server 2008 R2 report with a textbox containing a few fields. I want to suppress the line if the value of a field is null. What would be the syntax for the expression? So my fields…
2boolORNOT2bool
  • 557
  • 3
  • 9
  • 23
0
votes
2 answers

Suppress a field and its placeholder in Crystal Reports

I am working in Crystal Reports to generate a report, and I would like to add a note/remark for some records, so the record should be double-lined for these specific records and a single-line for others the issue is that the row should be in its…
0
votes
0 answers

Multiple group header suppression based on formula

I'm new to CR but am head report maker/editor. I have a report where I have multiple headers (4) and a detail section that goes with each respective header. i.e. GH3a goes with Details a, GH3b goes with details b, etc. There is a previous formula…
0
votes
0 answers

Is __asan_memcpy insuppressible by design or by accident?

I'm running clang 4.0.0 asan built on Linux x86_64. I built my code using clang++ -fsanitize=address. I can't suppress the following memory issue reported by asan outside my code: (I have abridged the stack trace and modified some…
hpcmmp
  • 23
  • 3
0
votes
0 answers

Surpress Observer in PHP

I am working on a pair of services that will update two systems through REST API calls. The first is for location 1, executing update calls on classes that make use of the observer pattern in php, to trigger an update service. This update service…
brian
  • 1
0
votes
1 answer

Is there a program to help manage error suppression in TFS?

I recently inherited a large solution containing a lot of suppressed messages in its code base. Waiting to simply run across each of these messages one by one as I happen to touch parts of the code is a terrible way of handling all of these…
obizues
  • 1,473
  • 5
  • 16
  • 30
0
votes
0 answers

Crystal reports Sum if a previous field is the same to current field on section 3(details)

Hi im just a newbie programmer and I have a problem in my crystal reports. I have a table named "payroll" and has this fields(ID,FullName,NetSalary) I have inserted 3 records on my mysql table: ID|FullName|Netsalary 1 |Cris Tiu|500 2 |Mat Joe |100 3…
0
votes
1 answer

AVAudioRecorder cutting out on low sounds

I'm using AVAudioRecorder for an IPad app to capture sound from a speaker who is doing a presentation. It works great as long as the speaker is close to the IPad and speaking at a good volume. If the speaker's volume decreases or if the speaker…
Feta
  • 522
  • 1
  • 5
  • 11
0
votes
1 answer

Should I Suppress? If so How To Suppress from Makefile

I have several tests that run and in the end I run Valgrind to verify my libraries memory usage. Valgrind consistently complains about: ==27022== HEAP SUMMARY: ==27022== in use at exit: 6,139 bytes in 3 blocks ==27022== total heap usage: 609…
Matthew Hoggan
  • 7,402
  • 16
  • 75
  • 140