- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 1,326 for formas (0.03 sec)
-
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
* to extract configuration information for web and file crawling. * * @param is the input source containing the GSA configuration XML * @throws GsaConfigException if parsing fails due to XML format issues or other errors */ public void parse(final InputSource is) { try { final SAXParserFactory factory = SAXParserFactory.newInstance();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 21.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapVideo.java
* The description of the video. * Maximum 2048 characters. */ private String description; /** * A URL pointing to the actual video media file. * Must be one of the supported formats. */ private String contentLoc; /** * A URL pointing to a player for a specific video. * Usually this is the information in the src element of an <embed> tag. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 8.9K bytes - Viewed (0) -
docs/en/mkdocs.yml
- tutorial/header-param-models.md - tutorial/response-model.md - tutorial/extra-models.md - tutorial/response-status-code.md - tutorial/request-forms.md - tutorial/request-form-models.md - tutorial/request-files.md - tutorial/request-forms-and-files.md - tutorial/handling-errors.md - tutorial/path-operation-configuration.md - tutorial/encoder.md - tutorial/body-updates.mdRegistered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Wed Dec 17 10:44:55 UTC 2025 - 9.2K bytes - Viewed (0) -
guava/src/com/google/common/reflect/TypeResolver.java
} /** * Returns a new {@code TypeResolver} with type variables in {@code formal} mapping to types in * {@code actual}. * * <p>For example, if {@code formal} is a {@code TypeVariable T}, and {@code actual} is {@code * String.class}, then {@code new TypeResolver().where(formal, actual)} will {@linkplain * #resolveType resolve} {@code ParameterizedType List<T>} to {@code List<String>}, and resolveRegistered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 23 22:30:05 UTC 2025 - 25.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
+ Arrays.toString(newInputs) + ", newOutput=" + newOutput + "]"; } /** * Returns a compact string representation of this mapping item in the format "input1,input2=>output". * If the item has pending updates, the new values are used; otherwise, the current values are used. * * @return compact string representation of the mapping rule */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 7.9K bytes - Viewed (0) -
docs/uk/docs/tutorial/request-form-models.md
# Моделі форм (Form Models) У FastAPI Ви можете використовувати **Pydantic-моделі** для оголошення **полів форми**. /// info | Інформація Щоб використовувати форми, спочатку встановіть <a href="https://github.com/Kludex/python-multipart" class="external-link" target="_blank">python-multipart</a>.
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Thu Feb 20 14:16:09 UTC 2025 - 3.3K bytes - Viewed (0) -
docs/zh/docs/tutorial/request-form-models.md
/// ## 表单的 Pydantic 模型 您只需声明一个 **Pydantic 模型**,其中包含您希望接收的**表单字段**,然后将参数声明为 `Form` : {* ../../docs_src/request_form_models/tutorial001_an_py39.py hl[9:11,15] *} **FastAPI** 将从请求中的**表单数据**中**提取**出**每个字段**的数据,并提供您定义的 Pydantic 模型。 ## 检查文档 您可以在文档 UI 中验证它,地址为 `/docs` : <div class="screenshot"> <img src="/img/tutorial/request-form-models/image01.png"> </div> ## 禁止额外的表单字段Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 10 20:36:08 UTC 2024 - 2.1K bytes - Viewed (0) -
src/test/java/jcifs/netbios/LmhostsTest.java
File lmhostsFile = tempDir.resolve("lmhosts_invalid").toFile(); try (FileWriter writer = new FileWriter(lmhostsFile)) { writer.write("192.168 HOST1\n"); // Invalid IP - missing 2 octets (should be skipped) writer.write("192.168.1.100 VALIDHOST\n"); writer.write("not.an.ip HOST2\n"); // Invalid IP format
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.2K bytes - Viewed (0) -
guava/src/com/google/common/net/InetAddresses.java
return false; } } return true; } private static IllegalArgumentException formatIllegalArgumentException( String format, Object... args) { return new IllegalArgumentException(String.format(Locale.ROOT, format, args)); }Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Wed Feb 19 21:24:11 UTC 2025 - 47.4K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/transfer/FileSizeFormatTest.java
assertEquals("15 B", format.format(15L)); assertEquals("999 B", format.format(999L)); assertEquals("1.0 kB", format.format(1000L)); assertEquals("5.5 kB", format.format(5500L)); assertEquals("10 kB", format.format(10L * 1000L)); assertEquals("15 kB", format.format(15L * 1000L)); assertEquals("999 kB", format.format(999L * 1000L)); assertEquals("1.0 MB", format.format(1000L * 1000L));
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Mar 21 04:56:21 UTC 2025 - 10.5K bytes - Viewed (0)