- Sort Score
- Num 10 results
- Language All
Results 1 - 6 of 6 for blacklist (0.12 seconds)
-
src/test/java/jcifs/util/PathValidatorTest.java
public void testBlacklistPriority() throws Exception { // Add to both blacklist and whitelist validator.addToBlacklist("\\share\\test"); validator.addToWhitelist("\\share\\test"); // Blacklist should take priority try { validator.validatePath("\\share\\test\\file.txt"); fail("Blacklist should take priority over whitelist"); } catch (SmbException e) {
Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 14.6K bytes - Click Count (0) -
src/main/java/jcifs/util/PathValidator.java
} /** * Check if path is blacklisted */ private boolean isBlacklisted(String path) { String lowerPath = path.toLowerCase(); for (String blacklisted : blacklistedPaths) { if (lowerPath.startsWith(blacklisted) || lowerPath.equals(blacklisted)) { return true; } } return false; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Sat Aug 30 05:58:03 GMT 2025 - 14.5K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/builder/BuilderCommon.java
// continue the build but ban all projects that depend on the failed one buildContext.getReactorBuildStatus().blackList(mavenProject); } else if (MavenExecutionRequest.REACTOR_FAIL_FAST.equals(rootSession.getReactorFailureBehavior())) { buildContext.getReactorBuildStatus().halt(); } else {Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jan 10 08:42:00 GMT 2025 - 10.3K bytes - Click Count (0) -
TESTING.asciidoc
/rest-api-spec/test prefix is optional when files are loaded from classpath) e.g. -Dtests.rest.suite=index,get,create/10_with_id * `tests.rest.blacklist`: comma separated globs that identify tests that are blacklisted and need to be skipped e.g. -Dtests.rest.blacklist=index/*/Index document,get/10_basic/* Java REST tests can be run with the "javaRestTest" task. For example :
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Mon Jun 07 13:55:20 GMT 2021 - 32.5K bytes - Click Count (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/repository/LegacyLocalRepositoryManager.java
return true; } @Override public boolean isBlacklisted() { return false; } @Override public void setBlacklisted(boolean blackListed) {} @Override public org.apache.maven.artifact.Artifact find(org.apache.maven.artifact.Artifact artifact) { return null; } @OverrideCreated: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 13.1K bytes - Click Count (0) -
impl/maven-core/src/main/java/org/apache/maven/artifact/repository/MavenArtifactRepository.java
this.proxy = proxy; } @Override public boolean isBlacklisted() { return false; } @Override public void setBlacklisted(boolean blackListed) { // no op } @Override public boolean isUniqueVersion() { return true; } @Override public boolean isProjectAware() { return false;Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Jun 06 14:28:57 GMT 2025 - 12.1K bytes - Click Count (0)