- Sort Score
- Result 10 results
- Languages All
Results 271 - 280 of 340 for high (0.02 sec)
-
src/main/java/org/codelibs/core/exception/ClRuntimeException.java
* governing permissions and limitations under the License. */ package org.codelibs.core.exception; import org.codelibs.core.message.MessageFormatter; /** * A base exception class for CoreLib. * * @author higa * @author shinsuke */ public class ClRuntimeException extends RuntimeException { private static final long serialVersionUID = -4452607868694297329L; /** * The message code. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/MethodNotFoundRuntimeException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; import java.lang.reflect.Method; import org.codelibs.core.lang.MethodUtil; /** * Exception thrown when a {@link Method} cannot be found. * * @author higa * */ public class MethodNotFoundRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3508955801981550317L; /** * The target class. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/InputStreamUtil.java
import java.io.FileInputStream; import java.io.IOException; import java.io.InputStream; import org.codelibs.core.exception.IORuntimeException; /** * Utility class for {@link InputStream}. * * @author higa */ public abstract class InputStreamUtil { /** * Do not instantiate. */ protected InputStreamUtil() { } /** Default buffer size. */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/SerializeUtil.java
import java.io.ObjectOutputStream; import org.codelibs.core.exception.ClassNotFoundRuntimeException; import org.codelibs.core.exception.IORuntimeException; /** * Utility for serializing objects. * * @author higa */ public abstract class SerializeUtil { /** * Do not instantiate. */ protected SerializeUtil() { } private static final int BYTE_ARRAY_SIZE = 8 * 1024; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/DoubleConversionUtil.java
import java.text.SimpleDateFormat; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.text.DecimalFormatUtil; /** * Utility class for conversions related to {@link Double}. * * @author higa */ public abstract class DoubleConversionUtil { /** * Do not instantiate. */ protected DoubleConversionUtil() { } /** * Converts to {@link Double}. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/message/MessageFormatterTest.java
import java.util.Locale; import org.codelibs.core.misc.DisposableUtil; import org.codelibs.core.misc.LocaleUtil; import org.junit.After; import org.junit.Before; import org.junit.Test; /** * @author higa */ public class MessageFormatterTest { @Before public void setUp() throws Exception { LocaleUtil.setDefault(() -> Locale.JAPANESE); } @After
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/PreparedStatementUtil.java
import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import org.codelibs.core.exception.SQLRuntimeException; /** * Utility class for {@link PreparedStatement}. * * @author higa */ public abstract class PreparedStatementUtil { /** * Do not instantiate. */ protected PreparedStatementUtil() { } /** * Executes the query. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/NumberConversionUtil.java
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() { } /** * Converts to the appropriate {@link Number}.
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/org/codelibs/core/io/ResourceBundleUtil.java
import java.util.Map; import java.util.MissingResourceException; import java.util.ResourceBundle; import org.codelibs.core.misc.LocaleUtil; /** * Utility class for {@link ResourceBundle} operations. * * @author higa */ public abstract class ResourceBundleUtil { /** * Do not instantiate. */ protected ResourceBundleUtil() { } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.31.md
- Changed Linux swap handling to restrict access to swap for containers in high priority Pods. New Pods that have a node- or cluster-critical priority are prohibited from accessing swap on Linux,
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 19:49:57 UTC 2025 - 429.6K bytes - Viewed (0)