- Sort Score
- Result 10 results
- Languages All
Results 91 - 100 of 147 for hingga (0.08 sec)
-
src/main/java/org/codelibs/core/timer/TimeoutTask.java
* governing permissions and limitations under the License. */ package org.codelibs.core.timer; import org.codelibs.core.exception.ClIllegalStateException; /** * タイムアウトを管理するクラスです。 * * @author higa * */ public class TimeoutTask { private static final int ACTIVE = 0; private static final int STOPPED = 1; private static final int CANCELED = 2;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/factory/BeanDescFactory.java
* * <pre> * BeanDesc beanDesc = BeanDescFactory.getBeanDesc(Foo.class); * </pre> * <p> * {@link BeanDesc}はキャッシュされます。 キャッシュをクリアするには{@link DisposableUtil#dispose()} * を呼び出してください。 * </p> * * @author higa * @see BeanDesc * @see DisposableUtil */ public abstract class BeanDescFactory { /** 初期化済みなら{@literal true} */ private static volatile boolean initialized; /** {@link BeanDesc}のキャッシュ */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BigDecimalConversionUtil.java
*/ package org.codelibs.core.convert; import java.math.BigDecimal; import java.text.SimpleDateFormat; import org.codelibs.core.lang.StringUtil; /** * {@link BigDecimal}用の変換ユーティリティです。 * * @author higa */ public abstract class BigDecimalConversionUtil { /** * {@link BigDecimal}に変換します。 * * @param o * 変換元のオブジェクト * @return 変換された{@link BigDecimal} */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.8K 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; /** * {@link ResourceBundle}用のユーティリティクラスです。 * * @author higa */ public abstract class ResourceBundleUtil { /** * バンドルを返します。 見つからない場合は、<code>null</code>を返します。 * * @param name * リソースバンドの名前。{@literal null}や空文字列であってはいけません
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/FloatConversionUtil.java
package org.codelibs.core.convert; import java.text.SimpleDateFormat; import org.codelibs.core.lang.StringUtil; import org.codelibs.core.text.DecimalFormatUtil; /** * {@link Float}用の変換ユーティリティです。 * * @author higa */ public abstract class FloatConversionUtil { /** * {@link Float}に変換します。 * * @param o * 変換元のオブジェクト * @return 変換された{@link Float} */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/naming/InitialContextUtil.java
import javax.naming.InitialContext; import javax.naming.NamingException; import org.codelibs.core.exception.NamingRuntimeException; /** * {@link javax.naming.InitialContext 初期コンテキスト}を扱うためのユーティリティ・クラスです。 * * @author higa */ public abstract class InitialContextUtil { /** * 初期コンテキストを作成して返します。 * * @return 初期コンテキスト */ public static InitialContext create() { try {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ConstructorNotFoundRuntimeException.java
package org.codelibs.core.exception; import static org.codelibs.core.collection.ArrayUtil.asArray; import java.lang.reflect.Constructor; /** * {@link Constructor}が見つからなかったときにスローされる例外Vです。 * * @author higa */ public class ConstructorNotFoundRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 8584662068396978822L; private final Class<?> targetClass;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.7K 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; /** * {@link Method}が見つからなかったときにスローされる例外です。 * * @author higa * */ public class MethodNotFoundRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3508955801981550317L; private final Class<?> targetClass;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/log/LoggerTest.java
import static org.junit.Assert.assertThat; import org.codelibs.core.exception.ClIllegalArgumentException; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; /** * @author higa * */ public class LoggerTest { /** * @see org.junit.rules.ExpectedException */ @Rule public ExpectedException exception = ExpectedException.none();
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.8K bytes - Viewed (0) -
docs/pt/docs/help-fastapi.md
* Não se esqueça de adicionar o link no começo da seção correspondente. * Para ajudar [traduzir a documentação](contributing.md#traducoes){.internal-link target=_blank} para sua lingua. * Também é possivel revisar as traduções já existentes. * Para propor novas seções na documentação. * Para corrigir um bug/questão. * Para adicionar um novo recurso. ## Entre no chat
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Aug 06 04:48:30 UTC 2024 - 8.4K bytes - Viewed (0)