- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for new_schema (0.05 sec)
-
fastapi/_compat/v2.py
return new_mapping, new_definitions def _replace_refs( *, schema: dict[str, Any], old_name_to_new_name_map: dict[str, str], ) -> dict[str, Any]: new_schema = deepcopy(schema) for key, value in new_schema.items(): if key == "$ref": value = schema["$ref"] if isinstance(value, str): ref_name = schema["$ref"].split("/")[-1]
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sat Dec 27 12:54:56 UTC 2025 - 19.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/xml/SchemaUtil.java
assertArgumentNotNull("factory", factory); assertArgumentNotNull("schema", schema); try { return factory.newSchema(schema); } catch (final SAXException e) { throw new SAXRuntimeException(e); } } /** * Creates a {@link Schema} using the specified {@link SchemaFactory}. *
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.5K bytes - Viewed (0)