- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 251 for Conversion (0.04 sec)
-
src/test/java/jcifs/smb1/util/HexdumpTest.java
// The third parameter is the size of the output string in characters // size = number of hex characters to output // Each byte produces 2 hex characters // Test basic conversion (srcIndex is ignored in the implementation) byte[] data1 = { 0x00, 0x01, 0x02, 0x03 }; assertEquals("00", Hexdump.toHexString(data1, 0, 2)); // 2 chars = 1 byte
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.4K bytes - Viewed (0) -
docs/en/docs/tutorial/query-params.md
/// check Also notice that **FastAPI** is smart enough to notice that the path parameter `item_id` is a path parameter and `q` is not, so, it's a query parameter. /// ## Query parameter type conversion { #query-parameter-type-conversion } You can also declare `bool` types, and they will be converted: {* ../../docs_src/query_params/tutorial003_py310.py hl[7] *} In this case, if you go to: ```
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 10:29:01 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
* the conversion uses their millisecond value to create the target object. * For other types, the conversion uses the string representation of the source object. * </p> * <p> * If no pattern is specified, the pattern used for conversion depends on the locale as follows: * </p> * <table border="1"> * <caption>Conversion Patterns</caption> * <tr> * <th>Category</th>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/EditForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.searchlog; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * The edit form for Search Log. * This form handles the editing of search log entries in the administration interface. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConverterRuntimeException.java
private static final long serialVersionUID = 1L; /** * The name of the property. */ private final String propertyName; /** * The value that caused the conversion error. */ private final Object value; /** * Constructs an instance. * * @param propertyName * Property name * @param value * Value
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/TermRangeQueryCommand.java
import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; import org.opensearch.index.query.RangeQueryBuilder; /** * Command class for handling term range query execution and conversion. * This class processes Lucene TermRangeQuery objects and converts them to OpenSearch QueryBuilder instances. */ public class TermRangeQueryCommand extends QueryCommand {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/EditForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.labeltype; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for editing label types in the admin interface.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/role/EditForm.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.admin.role; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Size; /** * Form class for editing user roles in the admin interface.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/searchlist/SearchBody.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.app.web.api.admin.searchlist; import org.codelibs.fess.app.web.admin.searchlist.ListForm; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * Search request body for search list administration API. */ public class SearchBody extends ListForm { /** * Default constructor. */ public SearchBody() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlist/CreateForm.java
*/ package org.codelibs.fess.app.web.admin.searchlist; import java.util.Map; import org.codelibs.fess.app.web.CrudMode; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; /** * The create form for Search List. * */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() { }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0)