- Sort Score
- Result 10 results
- Languages All
Results 51 - 60 of 215 for related2 (0.08 sec)
-
src/main/java/org/codelibs/core/convert/NumberConversionUtil.java
import java.text.DecimalFormatSymbols; import java.util.Locale; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.text.DecimalFormatSymbolsUtil; /** * Utility class for conversions related to {@link Number}. * * @author higa */ public abstract class NumberConversionUtil { /** * Do not instantiate. */ protected NumberConversionUtil() { } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/multichannel/LoadBalancingStrategy.java
*/ LEAST_LOADED, /** * Weighted random selection based on channel scores */ WEIGHTED_RANDOM, /** * Affinity-based selection for related operations */ AFFINITY_BASED, /** * Adaptive selection based on operation type and performance */ ADAPTIVE
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 11:13:46 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BinaryConversionUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.core.convert; import static org.codelibs.core.misc.AssertionUtil.assertArgument; /** * Utility class for conversions related to byte arrays. * * @author higa */ public abstract class BinaryConversionUtil { /** * Do not instantiate. */ protected BinaryConversionUtil() { } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedcontent/CreateBody.java
*/ package org.codelibs.fess.app.web.api.admin.relatedcontent; import org.codelibs.fess.app.web.admin.relatedcontent.CreateForm; /** * Request body for creating related content via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1021 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/relatedquery/CreateBody.java
*/ package org.codelibs.fess.app.web.api.admin.relatedquery; import org.codelibs.fess.app.web.admin.relatedquery.CreateForm; /** * Request body for creating related query via REST API. * Extends CreateForm to inherit validation and field definitions. */ public class CreateBody extends CreateForm { /** * Creates a new CreateBody instance. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1015 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryException.java
/** * Exception thrown when dictionary operations encounter errors. * This exception is typically used for issues during dictionary file * reading, writing, parsing, or other dictionary-related operations. */ public class DictionaryException extends FessSystemException { /** Serial version UID for serialization. */ private static final long serialVersionUID = 1L; /**
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/fess/exception/StorageException.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.exception; /** * This exception is thrown when a storage-related error occurs. * It can be used to wrap underlying storage exceptions, providing a * consistent error handling mechanism for storage operations. */ public class StorageException extends FessSystemException {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SearchQueryException.java
* * This exception is typically thrown when query parsing, serialization, * or processing fails during search operations. It extends FessSystemException * to provide specific handling for search query-related errors. */ public class SearchQueryException extends FessSystemException { /** Serial version UID for serialization. */ private static final long serialVersionUID = 1L; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BigIntegerConversionUtil.java
* governing permissions and limitations under the License. */ package org.codelibs.core.convert; import java.math.BigInteger; /** * Utility class for conversions related to {@link BigInteger}. * * @author higa */ public abstract class BigIntegerConversionUtil { /** * Do not instantiate. */ protected BigIntegerConversionUtil() { } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/cache/CacheForm.java
package org.codelibs.fess.app.web.cache; import java.util.HashMap; import java.util.Map; import org.lastaflute.web.validation.Required; import jakarta.validation.constraints.Size; /** * Form class for cache-related operations. * Contains parameters for document caching and error page display. */ public class CacheForm { /** Document ID for cache operations. */ @Required @Size(max = 100)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0)