- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 203 for conversation (0.06 sec)
-
src/main/java/org/codelibs/fess/util/DocumentUtil.java
} /** * Converts an object to the specified type. * Supports conversion to String, Date, Long, Integer, Double, Float, and Boolean types. * * @param <T> the type to convert the value to * @param value the value to convert * @param clazz the target class type * @return the converted value or null if conversion is not supported */ @SuppressWarnings("unchecked")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 7.2K bytes - Viewed (0) -
docs/en/docs/advanced/response-directly.md
/// tip `JSONResponse` itself is a sub-class of `Response`. /// And when you return a `Response`, **FastAPI** will pass it directly. It won't do any data conversion with Pydantic models, it won't convert the contents to any type, etc. This gives you a lot of flexibility. You can return any data type, override any data declaration or validation, etc.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 3.1K bytes - Viewed (0) -
docs/en/docs/tutorial/extra-data-types.md
* `int` * `float` * `str` * `bool` But you can also use more complex data types. And you will still have the same features as seen up to now: * Great editor support. * Data conversion from incoming requests. * Data conversion for response data. * Data validation. * Automatic annotation and documentation. ## Other data types { #other-data-types } Here are some of the additional data types you can use:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 2.7K bytes - Viewed (0) -
docs/es/docs/tutorial/extra-data-types.md
* `float` * `str` * `bool` Pero también puedes usar tipos de datos más complejos. Y seguirás teniendo las mismas funcionalidades como hasta ahora: * Gran soporte de editor. * Conversión de datos de requests entrantes. * Conversión de datos para datos de response. * Validación de datos. * Anotación y documentación automática. ## Otros tipos de datos Aquí hay algunos de los tipos de datos adicionales que puedes usar:
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 2.8K bytes - Viewed (0) -
docs/en/docs/tutorial/body-nested-models.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 7.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/SearchEngineUtil.java
* * @param xContent the content object to convert * @param mediaType the media type for the conversion * @return the string representation of the content * @throws IORuntimeException if an IO error occurs during conversion */ public static String getXContentString(final ToXContent xContent, final MediaType mediaType) { try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/DuplicateHostHelper.java
import jakarta.annotation.PostConstruct; /** * Helper class for managing duplicate host configurations in the Fess search system. * This class handles URL conversion based on duplicate host rules, allowing multiple * hostnames or URLs to be treated as equivalent for crawling and indexing purposes. * It maintains a list of DuplicateHost rules and applies them to URLs. * */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.9K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/UrlComponentEncodingTesterJvm.kt
/** * Configure code points to be escaped for conversion to `java.net.URI`. That class is more * strict than the others. */ fun escapeForUri(vararg codePoints: Int) = apply { uriEscapedCodePoints.append(String(*codePoints)) } /** * Configure code points to be stripped in conversion to `java.net.URI`. That class is more * strict than the others. */
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/jcifs/util/HexdumpTest.java
// Create a larger test array byte[] data = createTestData(1024); // Test full array conversion String result = Hexdump.toHexString(data); assertEquals(2048, result.length()); // 1024 bytes * 2 chars // Test partial conversion String partial = Hexdump.toHexString(data, 512, 256); assertEquals(512, partial.length()); // 256 bytes * 2 chars
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0) -
docs/es/docs/tutorial/body-nested-models.md
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 7.5K bytes - Viewed (0)