- Sort Score
- Result 10 results
- Languages All
Results 941 - 950 of 1,916 for tong (0.04 sec)
-
android/guava-tests/test/com/google/common/base/DefaultsTest.java
assertEquals(0, Defaults.defaultValue(short.class).shortValue()); assertEquals(0, Defaults.defaultValue(int.class).intValue()); assertEquals(0, Defaults.defaultValue(long.class).longValue()); assertEquals(0.0f, Defaults.defaultValue(float.class).floatValue()); assertThat(Defaults.defaultValue(double.class).doubleValue()).isEqualTo(0.0d); assertNull(Defaults.defaultValue(void.class));
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 03 18:10:55 UTC 2024 - 1.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/ContentLengthHelperTest.java
import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class ContentLengthHelperTest extends PlainTestCase { private static long DEFAULT_MAX_LENGTH = 10L * 1024L * 1024L; public ContentLengthHelper contentLengthHelper; @Override protected void setUp() throws Exception { super.setUp();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbUnsupportedOperationException.java
*/ package jcifs.smb; /** * @author mbechler * */ public class SmbUnsupportedOperationException extends SmbException { /** * */ private static final long serialVersionUID = -5576981906065713710L; /** * */ public SmbUnsupportedOperationException () { super("Operation is not supported with the negotiated capabilities"); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/IORuntimeException.java
import java.io.IOException; /** * {@link IOException}をラップする例外です。 * * @author higa */ public class IORuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1533554330702215389L; /** * {@link IORuntimeException}を作成します。 * * @param cause * 原因となった例外 */ public IORuntimeException(final IOException cause) {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NamingRuntimeException.java
import javax.naming.NamingException; /** * {@link NamingException}をラップする例外です。 * * @author higa */ public class NamingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3176447530746274091L; /** * {@link NamingRuntimeException}を作成します。 * * @param cause * 原因となった例外 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchPaddingRuntimeException.java
/** * {@link NoSuchPaddingException}をラップする例外です。 * * @author shinsuke */ public class NoSuchPaddingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3176447530746274091L; /** * {@link NoSuchPaddingException}を作成します。 * * @param cause * 原因となった例外 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/TransportProviderException.java
import org.apache.maven.api.annotations.Experimental; /** * @since 4.0.0 */ @Experimental @Consumer public class TransportProviderException extends MavenException { @Serial private static final long serialVersionUID = -6066070072576465969L; public TransportProviderException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/IntrospectionException.java
* @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public class IntrospectionException extends Exception { /** * */ private static final long serialVersionUID = -6090771282553728784L; IntrospectionException(String message) { super(message); } IntrospectionException(Throwable cause) { super(cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/ConnectionTimeoutException.java
*/ package jcifs.util.transport; /** * @author mbechler * */ public class ConnectionTimeoutException extends TransportException { /** * */ private static final long serialVersionUID = 7327198103204592731L; /** * */ public ConnectionTimeoutException () {} /** * @param msg */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
public String getType() { return MAPPING; } @Override public String getPath() { return path; } @Override public OptionalEntity<CharMappingItem> get(final long id) { if (mappingItemList == null) { reload(null); } for (final CharMappingItem mappingItem : mappingItemList) { if (id == mappingItem.getId()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 10.2K bytes - Viewed (0)