- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 18 for blacklist (0.37 seconds)
-
impl/maven-core/src/main/java/org/apache/maven/execution/ReactorManager.java
} } public String getFailureBehavior() { return failureBehavior; } public void blackList(MavenProject project) { blackList(getProjectKey(project)); } private void blackList(String id) { if (!blackList.contains(id)) { blackList.add(id); List<String> dependents = sorter.getDependents(id);Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Dec 12 11:02:17 GMT 2024 - 6K bytes - Click Count (0) -
ci/official/utilities/convert_msys_paths_to_win_paths.py
""" import argparse import os def should_convert(var_name: str, blacklist: list[str] | None, whitelist_prefix: list[str] | None): """Check the variable name against white/black lists.""" if blacklist and var_name in blacklist: return False if not whitelist_prefix: return True for prefix in whitelist_prefix:
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Wed Aug 07 23:01:25 GMT 2024 - 2.5K bytes - Click Count (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) {
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/ReactorBuildStatus.java
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Oct 25 12:31:46 GMT 2024 - 2.3K bytes - Click Count (0) -
fastapi/param_functions.py
allowed by the alias or set of aliases defined. """ ), ] = None, serialization_alias: Annotated[ 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. """ ),Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Sun Mar 15 11:44:39 GMT 2026 - 68K 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) -
impl/maven-core/src/main/java/org/apache/maven/lifecycle/internal/concurrent/BuildPlanExecutor.java
* - For FAIL_AT_END: Blacklists the project and its dependents, which causes executePlan to skip them * - For FAIL_NEVER: Does nothing special, allowing all projects to continue building * <p> * Note: TEARDOWN steps are not executed for failed or blacklisted projects, as they're designed for * successful project completions. *Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Thu Oct 16 06:12:36 GMT 2025 - 55.1K 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) -
RELEASE.md
([CVE-2020-26269](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2020-26269)) ### Other: * We have replaced uses of "whitelist" and "blacklist" with "allowlist" and "denylist" where possible. Please see [this list](https://developers.google.com/style/word-list#blacklist) for more context. * Adds `tf.config.experimental.mlir_bridge_rollout` which will help us rollout the new MLIR TPU bridge.
Created: Tue Apr 07 12:39:13 GMT 2026 - Last Modified: Mon Mar 30 18:31:38 GMT 2026 - 746.5K bytes - Click Count (3)