- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 46 for isStrict (0.04 sec)
-
compat/maven-embedder/src/main/java/org/apache/maven/cli/internal/extension/model/io/xpp3/CoreExtensionsXpp3Reader.java
* @param strict a strict object. * @throws XmlPullParserException XmlPullParserException if * any. * @throws IOException IOException if any. */ private void checkUnknownElement(XmlPullParser parser, boolean strict) throws XmlPullParserException, IOException { if (strict) { throw new XmlPullParserException("Unrecognised tag: '" + parser.getName() + "'", parser, null);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Mon Oct 27 13:24:03 UTC 2025 - 25.3K bytes - Viewed (0) -
fastapi/params.py
"alias_priority": alias_priority, "validation_alias": validation_alias, "serialization_alias": serialization_alias, "strict": strict, "json_schema_extra": current_json_schema_extra, } ) kwargs["pattern"] = pattern or regex use_kwargs = {k: v for k, v in kwargs.items() if v is not _Unset}
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 12:54:56 UTC 2025 - 26.3K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvn/CommonsCliMavenOptions.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Sep 25 17:39:57 UTC 2025 - 14.8K bytes - Viewed (0) -
src/main/java/jcifs/util/PathValidator.java
* * @param maxPathLength maximum total path length * @param maxComponentLength maximum length for path components * @param allowUncPaths whether to allow UNC paths * @param strictMode strict validation mode */ public PathValidator(int maxPathLength, int maxComponentLength, boolean allowUncPaths, boolean strictMode) { this.maxPathLength = maxPathLength;Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 14.5K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/CLIManager.java
.build()); options.addOption(Option.builder(STRICT_ARTIFACT_DESCRIPTOR_POLICY) .longOpt("strict-artifact-descriptor-policy") .hasArg() .desc("Defines 'strict' artifact descriptor policy. Supported values are 'true', 'false' (default).") .build()); options.addOption(Option.builder(IGNORE_TRANSITIVE_REPOSITORIES)
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Aug 06 04:56:48 UTC 2025 - 17.8K bytes - Viewed (0) -
src/test/java/jcifs/util/PathValidatorTest.java
validator.validatePath("//server\0/share"); }); // Test path with control characters in strict mode PathValidator strictValidator = new PathValidator(260, 255, true, true); assertThrows(SmbException.class, () -> { // Control character will be caught in strict mode strictValidator.validatePath("//server\u0001/share"); });
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/plugin/prefix/internal/DefaultPluginPrefixResolver.java
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 17 13:14:10 UTC 2025 - 11.9K bytes - Viewed (0) -
fastapi/security/oauth2.py
know that that it is application specific, it's not part of the specification. grant_type: the OAuth2 spec says it is required and MUST be the fixed string "password". This dependency is strict about it. If you want to be permissive, use instead the OAuth2PasswordRequestForm dependency class. username: username string. The OAuth2 spec requires the exact field name "username".
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 21:25:59 UTC 2025 - 22K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelBuildingRequest.java
/** * Denotes validation as performed by Maven 3.1. This validation level is meant for new projects. */ int VALIDATION_LEVEL_MAVEN_3_1 = 31; /** * Denotes strict validation as recommended by the current Maven version. */ int VALIDATION_LEVEL_STRICT = VALIDATION_LEVEL_MAVEN_3_0; /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Sat Apr 05 11:52:05 UTC 2025 - 12.8K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/plugin/version/internal/DefaultPluginVersionResolver.java
if (metadata != null && metadata.getFile() != null && metadata.getFile().isFile()) { try { Map<String, ?> options = Collections.singletonMap(MetadataReader.IS_STRICT, Boolean.FALSE); Metadata repoMetadata = metadataReader.read(metadata.getFile(), options); mergeMetadata(versions, repoMetadata, repository); } catch (IOException e) {
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jan 29 08:17:07 UTC 2025 - 17.6K bytes - Viewed (0)