Tagged Questions
The exclusion tag has no wiki summary.
2
votes
1answer
23 views
Not within ranges from another table
I am using MSSQL 2000
I have a table with a date column containing dates, t_mydates(dateA).
I have a second table t_exlusions(start_date,end_date)
I want a query which returns all dates from ...
2
votes
1answer
523 views
Installshield Dynamic Links Question
Is there any way to exclude a folder that is located under a dynamic link in InstallShield?
So I have a dynamic link that starts at PATH_A, and the following is a small example directory structure:
...
2
votes
3answers
174 views
Best way to achieve exclusion matrix via query
What is the best way to achieve this exclusion matrix via query.
There are fixed number of products in a table and idea is if a product is sold to a customer (represented by row), the other products ...
1
vote
1answer
228 views
Exclude whole parent dependency
The parent pom has got the following dependencies
<dependencies>
<dependency>
<groupId>tv.my</groupId>
<artifactId>cable</artifactId>
...
1
vote
1answer
457 views
How to exclude dependencies from maven assembly plugin : jar-with-dependencies?
Maven's assembly plugin enables the creation of a big jar including all dependencies with descriptorRef jar-with-dependencies.
How can one exclude some of these dependencies? It seems like it does ...
1
vote
2answers
228 views
NCover 1.5.8 / NCoverExplorer 1.4.0.7 manual exclusions are very flaky
I haven't yet installed my license of NCover 3, and am still running 1.5.8 on my build server. I am trying to exclude full assemblies and specific classes that I don't want included in the report, ...
1
vote
3answers
237 views
exclude resources from android:generate-sources
Could someone give me an idea about how to exclude using maven, some resources. I have a lot of languages in my project and I want to make build only for 3 languages for example. I have create the pom ...
0
votes
2answers
42 views
Robots.txt - how to set a rule to not index pages with parameters
We recently added a new section to our webpage. Essentially it's a shopping product catalog that allows for filtering of different attributes - helping the visitor whittle down the results to what it ...
0
votes
0answers
27 views
Excluding a few options from an IIS redirect (.*)
I wasn't really sure how to phrase this question exactly, but I'll give it a shot. I'm setting up some redirects in IIS Manager - for example, mysite/orderforms/cml/cmlk(.*) redirects everything ...
0
votes
1answer
216 views
Exclude datamember when using renderJSON with play framework
I need to render objects in JSON and send them to the client but I need to exclude fields like email and password for obvious reasons.
I know play uses GSON (by google?) and you can pass a serializer ...
0
votes
0answers
68 views
Using Amazon's Product Advertising API, how do I exclude a merchant from ItemLookup/Search results?
I'm trying to use the Product Advertising API ItemLookup or ItemLookup calls to get the lowest new and used prices for the entire marketplace excluding 1 or more merchants. Does anyone know how to do ...
0
votes
0answers
12 views
Attribute uniqueness across multiple models
Is it possible to check the uniqueness of an attribute across multiple models.
Ex. I have a user and manager model that both have a username column. From the users perspective, how can i check the ...
0
votes
1answer
121 views
How to exclude some particular files in Pc-lint
While running pclint for a particular folder, its running for all the files inside that folder. If we want the pclint to omit some of the files, then how to configure it in std.lnt file.
0
votes
3answers
64 views
jquery inversion selection problem of classes
Is it possible to select a class of a page without selecting the same class which were encapsulated in a special div?
something like:
$(!".container").$(".selectedClass").dosomething..
or
...
0
votes
2answers
96 views
Ruby on rails - mutual exclusion
Ruby on rails question!
I have a model "categories":
t.string :c1
t.string :c2
t.string :c3
A category could be: Ferrari, red, maxspeed.
I created some categories, and I want to ...
0
votes
0answers
68 views
maven war compil bring back a jar already exclude
i'm facing a problem i don't understand. i have a maven project 2, who is compil as a war,(its a gwt webapp) and 2 profile, one "profile-1" active by default and another one "prod"
in prod i put some ...
0
votes
0answers
89 views
AJC option to exclude aspect from -aspectpath or -inpath?
My question is in the Title and is as simple as it look.
I can't find any way to do that from the command line - and can't work with Eclipse AJDT since it has to be run with Maven in the end.
To ...
0
votes
4answers
339 views
clone syscall and mutual exclusion
I'm trying to practice with clone syscall and a little example of an incrementing counter shared by 2 threads. Code is as follows:
#define _GNU_SOURCE
#include <sys/types.h>
#include ...
0
votes
2answers
130 views
PHP preg_replace() with exclusions
I'm trying to replace such string: "Karcher HDS-C 7/11, 9/15, 8/15-E" with "HDS-C 7/11, 9/15, 8/15-E".
I use this pattern "/[^A-Z0-9\s.\,-\/()]/" for preg_replace.
And instead of getting "HDS-C 7/11, ...
0
votes
3answers
218 views
Regular Expression to exclude substring
I'm trying to parse through a string with regular expressions (.NET) and find all custom tokens starting with [[ and ending with ]]. My first attempt was to use \[\[(.*)\]\]. This seemed to work when ...
0
votes
2answers
97 views
How can I exclude forms/inputs from a function that uses keyboard commands?
I'm using the jquery scrollTo plugin along with keydown events to scroll the window horizontally with the J and K keys. This works quite well, however, I have form inputs on the page, so I'd like to ...
0
votes
1answer
44 views
T-SQL Picking up active IDs from a comma seperated IDs list
I have two tables "Product" having following structure:
ProductID,ProductName, IsSaleTypeA, IsSaleTypeB, IsSaleTypeC
1, AAA, N, N, N
2, BBB, N, Y, N -- active
3, CCC, N, N, N
4, DDD, Y, N, N -- ...
0
votes
1answer
124 views
NCover Exclusion Rules
I have a couple of questions related to NCover
1) I'm using MSBuild to build my project, in my .proj file I specify exclusions like so:
Assembly
/Testing.*/i
...
-3
votes
1answer
108 views
Generating sequence in R [closed]
I need to generate the numbers from 2 to 100 excluding the numbers (11,21,31,41 etc).
I know to do 2 to 100 is simply 2:100 but I am uncertain how I would go about excluding certain values.
Thanks ...