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
1
vote
0 answers

Tab suppression callback

I have a tab app and I'd like to know if there is a way to get a notification or to setup a callback for when a user suppress the tab from his Facebook page? Because I noticed that even if you remove the tab, you don't necessarily deauthorize the…
Arthur Rio
  • 400
  • 4
  • 8
1
vote
1 answer

Python - Complementary suppression of 2nd/lowest value row-wise

I'm working on a data suppression script in python where I need to 1) suppress small values (between 1 and 5) and 2) make sure that there are at least 2 values suppressed at the smallest level of aggregation. I've done the first step, replacing…
s_bklyn
  • 77
  • 1
  • 6
1
vote
1 answer

Valgrind relative paths in suppression file

Valgrind can generate suppression file, but it contains absolute paths to libraries by default. But I want to share this suppression file between multiple computers, my project may be stored on different paths. How can I specify relative paths to…
Ivan Ivlev
  • 332
  • 1
  • 9
1
vote
1 answer

Retrieve my entire suppression list from Sparkpost

I hope someone can give me some guidance and maybe an example. I can't seem to find a way to do this. I need to retrieve my entire suppression list from Sparkpost using C#. I have searched all over and all I have found is what's on the API C#…
1
vote
0 answers

Crystal Report - Suppressing footer until last page - creates empty white space on other pages

I've made a new crystal report. I have some terms and conditions and a place for signature on my report footer. I have managed to suppress my report footer to only show on last page, I have used this within Section Expert TotalPageCount <>…
Kasia Wichrowska
  • 311
  • 2
  • 5
  • 16
1
vote
1 answer

maxima command line v5.43 is behaving differently than v5.41

I recently upgraded maxima from 5.41.0 to 5.43.2 and it broke my code. I could not find a solution that works in both versions the same way. Here is the simplified command line example I am executing: In version 5.41.0: user@system:~> maxima…
BReddy
  • 407
  • 3
  • 13
1
vote
1 answer

run valgrind for a single file (ignore library)

I have a main.c that's using library of 1000's of files is there a method to ask valgrnd to look for memory leaks only in main.c rather than digging through the library ? also if valgrind reports an error like this within the library vex x86->IR:…
M.A.
  • 31
  • 6
1
vote
1 answer

Are valgrind suppression files included in the installation?

The valgrind tool's source code releases (http://valgrind.org/downloads/current.html) show suppression files in the root directory, such as darwin16.supp. If I want to use these files do I have to obtain them from a source download or are they added…
Toby
  • 9,696
  • 16
  • 68
  • 132
1
vote
0 answers

Valgrind - Suppression file too general?

I'm new to valgrind and the first thing to notice was, that the standard C-Library on OS X El Capitan seems to leak memory (possibly lost). After a little bit more reading this isn't the case and it is possible to exclude the system-lib from the…
1
vote
1 answer

Valgrind memory leak what error is this?

I've been getting this error whenever i run a full valgrind memory leak check and I really can't tell where the source of this error is. My code is running and appears to be correct but i've been getting this error since. Any advice would be much…
user1610834
  • 115
  • 2
  • 13
1
vote
0 answers

Cannot suppress certain warning globally

I have VS2013 with Code Analysis turned on. I want to suppress one type of message globally, so I have following code in GlobalSuppressions.cs [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming",…
hardywang
  • 4,864
  • 11
  • 65
  • 101
1
vote
1 answer

Is there a way to circumvent CA1726:UsePreferredTerms?

I have a problem with the code analysis rule CA1726:UsePreferredTerms. Our business domain has two crucial concepts named Case and Flag. According to CA, it's apparently a deadly sin to use these names, however I really don't care since, as I said,…
Klaus Byskov Pedersen
  • 117,245
  • 29
  • 183
  • 222
1
vote
0 answers

Valgrind Suppression file for Mac OS X 10.8.3

I'm testing a third party library on Mac OS X with Valgirnd. I'm seeing lots of findings from OS X stuff, which is drowning issues with the library I am interested in (OS X appears to generate about 900 of these): ... ==11472== Use of uninitialised…
jww
  • 97,681
  • 90
  • 411
  • 885
1
vote
0 answers

Crystal Reports Details Section Suppression Blank Section Locked

I am trying to modify a report for a company but the code editor seems to be uneditable. The report has s details section where I want to conditionally suppress rows. When i click on the X-2 editor for the Suppress Blank Rows section the Non Drill…
MobileOverlord
  • 4,580
  • 3
  • 22
  • 30
0
votes
1 answer

Exception clogging up my IDE

I'm scanning for dead links on one of my pages. On one i get many "A first chance exception of type 'System.Net.WebException' occurred in System.dll" Dozens of them. How do i have MSVC# NOT display them? i am catching all of these exceptions since i…
user34537