Skip to main content

Questions tagged [filter]

A program or routine that rejects or accepts data that meets a given criterion. An example would be a filter that removed entries less than a given limit from a set of values. Do NOT use this tag for: Signal or image processing, use [filtering]. Java servlet filters. Use [servlet-filters]. For Bloom filters, use [bloom-filter]. For CSS filters use [css-filters].

filter
9,529 questions with no upvoted or accepted answers
19 votes
0 answers
915 views

Chrome Dev tools - Is there a way to persist the filter in Chrome Dev Tools?

Is there a way to preserve the filter on the Network tab in Chrome Dev tools??? E.g. if I use a filter like "-status-code:204" to exclude all responses with 204 status, it works as long as the tool ...
Jignesh's user avatar
  • 201
14 votes
2 answers
495 views

ListAdapter Filter other than using Strings?

It seems that the use case for an Adapter that is Filterable is to filter by a String or CharSequence that might be entered by the user in an EditText, but is this really the only criteria the ...
sethro's user avatar
  • 2,127
11 votes
0 answers
145 views

Send SC_UNAUTHORIZED for an authenticated request

I want to put some additional checks (in a filter) to some parameters after the request is authenticated by Spring and based on those checks want to allow or block the login. If the checks fails then ...
Saqeeb Shaikh's user avatar
11 votes
1 answer
16k views

wireshark search tcp stream for string

I need to be able to search all tcp streams that contain a particular string, not just a particular packet. Something like: tcp.stream contains "string" I need to do this in order to filter out all ...
Zach Ogden's user avatar
8 votes
0 answers
394 views

How to filter out a value that contains whitespace in Chrome console?

The string we need to filter out is: Unchecked runtime.lastError: "sync" is not available in this instance of Chrome There's no single unique word we can target here for removal, nor is ...
Slbox's user avatar
  • 12k
8 votes
0 answers
4k views

Swagger How to enable Filter by tag as case insensitive

I am using Swagger-UI implemented through Springfox 2.9.2. I have enabled "Filter By tag" by setting "filter" as true in UiConfiguration. @Configuration @EnableSwagger2 @Import({...
Unni's user avatar
  • 171
8 votes
0 answers
1k views

Map Filtered XML to an Excel Table

I have the below code that maps an XML Schema to Excel Tables (as in ListObjects). Sub MapXMLFieldsToExcelCells(wb As Workbook, sLOB As String) '*****************************************************...
Scott Holtzman's user avatar
8 votes
1 answer
3k views

Where to clear the requestId from MDC

I'm trying to add a requestId to my web app's logs, as shown here. public class MDCFilter implements ContainerRequestFilter, ContainerResponseFilter { private static final String CLIENT_ID = "...
garci560's user avatar
  • 3,133
8 votes
1 answer
582 views

Nibernate / Fluent NHibernate : Using Filter with SubclassMap

Using Fluent NHibernate, I have succeeded in setting up a global Filter on my NHibernate session, and using it in ClassMap classes. The Filter WHERE clause is appended to queries using that map ...
Bob Snyder's user avatar
7 votes
1 answer
551 views

How can 2 people use the same Gmail account and filter incoming e-mails for each user considering Labels are applied per message?

So this one is a serious head-scratcher that is proving much more difficult to resolve than at first glance. I have a Client that runs a small business. They are a husband and wife team and use ...
ProgrammerGirl's user avatar
7 votes
1 answer
15k views

How to disable DefaultSecurityFilterChain in a Spring Boot app?

In my Spring Boot application, I have: @Configuration @EnableWebSecurity public class WebSecurityConfig extends WebSecurityConfigurerAdapter { ... @Override protected void configure(...
user1408140's user avatar
7 votes
0 answers
5k views

How to apply video effects (filters like sepia, vintage, etc.) on TextureView in android?

How can we apply filters like sepia, vintage, etc. to a video, and consequently post the same on our servers? Likewise, we can bluff user by creating a filter layer on TextureView, and consequently ...
Bharat's user avatar
  • 904
7 votes
2 answers
815 views

rbind tbl and df gives errors with filter

I am using dplyr and loving it, but found a strange behavior. I am cleaning some data from different sources and putting them together in a data frame. Part of it required more cleaning, done with ...
JG11235's user avatar
  • 559
7 votes
1 answer
3k views

whoosh MultifieldParser field search or query parser concatenation

I'm trying to use whoosh to add search functionality to my blogapp on appengine but I don't understand some stuff. The blogentries are indexed with title, content and status fields. I would like to ...
aschmid00's user avatar
  • 7,138
6 votes
0 answers
140 views

Is it possible to use Smart::Comments:from<Perl5> in a raku program?

#!/usr/bin/env raku use Inline::Perl5; use Smart::Comments:from<Perl5>; my $foo = 42; ### $foo say "Done"; Expected output: ### $foo: 42 Done Actual output: Done zsh: ...
Jim Bollinger's user avatar

15 30 50 per page
1
2 3 4 5
636