- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 322 for concerns (0.05 sec)
-
src/main/java/org/codelibs/core/convert/BigDecimalConversionUtil.java
protected BigDecimalConversionUtil() { } /** * Converts to {@link BigDecimal}. * * @param o * The object to convert * @return The converted {@link BigDecimal} */ public static BigDecimal toBigDecimal(final Object o) { return toBigDecimal(o, null); } /** * Converts to {@link BigDecimal}. * * @param o
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BigIntegerConversionUtil.java
protected BigIntegerConversionUtil() { } /** * Converts to {@link BigInteger}. * * @param o * The object to convert * @return The converted {@link BigInteger} */ public static BigInteger toBigInteger(final Object o) { return toBigInteger(o, null); } /** * Converts to {@link BigInteger}. * * @param o
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.8K bytes - Viewed (0) -
docs/em/docs/tutorial/extra-data-types.md
* `datetime.timedelta`: * π `datetime.timedelta`. * π¨ & π¨ π π¨ `float` π π₯. * Pydantic β π¦ β«οΈ "πΎ 8οΈβ£6οΈβ£0οΈβ£1οΈβ£ π° β π’", <a href="https://docs.pydantic.dev/latest/concepts/serialization/#json_encoders" class="external-link" target="_blank">π π©Ί π βΉ</a>. * `frozenset`: * π¨ & π¨, π₯ π `set`: * π¨, π π β, β β & π β«οΈ `set`. * π¨, `set` π π `list`.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BooleanConversionUtil.java
* * @author higa */ public abstract class BooleanConversionUtil { /** * Do not instantiate. */ protected BooleanConversionUtil() { } /** * Converts to {@link Boolean}. * * @param o * The object to convert * @return The converted {@link Boolean} */ public static Boolean toBoolean(final Object o) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.8K bytes - Viewed (0) -
docs/fr/docs/deployment/index.md
cloud** qui fait une partie du travail pour vous, ou encore d'autres options possibles. Je vais vous montrer certains des principaux concepts que vous devriez probablement avoir Γ l'esprit lors du dΓ©ploiement d'une application **FastAPI** (bien que la plupart de ces concepts s'appliquent Γ tout autre type d'application web).
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sat Jun 24 14:47:15 UTC 2023 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/WildcardQueryCommand.java
import org.lastaflute.core.message.UserMessages; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Query command for handling wildcard queries. * Converts Lucene WildcardQuery objects to OpenSearch QueryBuilder objects, * supporting wildcard pattern matching with configurable case sensitivity. */ public class WildcardQueryCommand extends QueryCommand { /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/BooleanQueryCommand.java
import org.opensearch.index.query.BoolQueryBuilder; import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Query command implementation for handling Boolean queries. * Converts Lucene BooleanQuery objects to OpenSearch BoolQueryBuilder objects. */ public class BooleanQueryCommand extends QueryCommand { /** * Default constructor for BooleanQueryCommand. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java
@Experimental public interface DependencyResolver extends Service { /** * Collects the transitive dependencies of some artifacts and builds a dependency graph for the given path scope. * Note that this operation is only concerned about determining the coordinates of the transitive dependencies and * does not actually resolve the artifact files. * * @param session the {@link Session}, must not be {@code null}
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Oct 16 14:15:37 UTC 2024 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/SerializeUtil.java
assertArgumentNotNull("obj", obj); final byte[] binary = fromObjectToBinary(obj); return fromBinaryToObject(binary); } /** * Converts an object to a byte array. * * @param obj the object to serialize (must not be {@literal null}) * @return the byte array of the object */ public static byte[] fromObjectToBinary(final Object obj) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0) -
docs/en/docs/deployment/docker.md
## Deployment Concepts { #deployment-concepts } Let's talk again about some of the same [Deployment Concepts](concepts.md){.internal-link target=_blank} in terms of containers. Containers are mainly a tool to simplify the process of **building and deploying** an application, but they don't enforce a particular approach to handle these **deployment concepts**, and there are several possible strategies.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Sun Aug 31 09:15:41 UTC 2025 - 29.5K bytes - Viewed (1)