- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for blacklisted (0.05 sec)
-
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; }Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0) -
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) {
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.6K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
shouldExecute = true; } else { // For regular steps: // Don't run for halted builds, blacklisted projects, or if predecessors failed shouldExecute = !status.isHalted() && !status.isBlackListed(step.project) && allPredecessorsExecuted; } // 2. Either schedule the step or mark it as skipped based on the decisionRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Oct 16 06:12:36 UTC 2025 - 55.1K bytes - Viewed (0) -
fastapi/param_functions.py
allowed by the alias or set of aliases defined. """ ), ] = None, serialization_alias: Annotated[ Union[str, None], Doc( """ 'Blacklist' validation step. The vanilla parameter field will be the single one of the alias' or set of aliases' fields and all the other fields will be ignored at serialization time. """ ),Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 12:54:56 UTC 2025 - 63K bytes - Viewed (0)