- Sort Score
- Result 10 results
- Languages All
Results 1151 - 1160 of 4,096 for long (0.05 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/wizard/CrawlingConfigForm.java
@Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer depth; @Min(value = 0) @Max(value = 9223372036854775807L) @ValidateTypeFailure public Long maxAccessCount;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/WebApiException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class WebApiException extends FessSystemException { private static final long serialVersionUID = 1L; private final int statusCode; public int getStatusCode() { return statusCode; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.3K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/ForwardingRequestBody.kt
fun delegate(): RequestBody { return delegate } override fun contentType(): MediaType? { return delegate.contentType() } @Throws(IOException::class) override fun contentLength(): Long { return delegate.contentLength() } @Throws(IOException::class) override fun writeTo(sink: BufferedSink) { delegate.writeTo(sink) } override fun isDuplex(): Boolean {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.4K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/UncheckedTimeoutException.java
super(cause); } public UncheckedTimeoutException(@CheckForNull String message, @CheckForNull Throwable cause) { super(message, cause); } private static final long serialVersionUID = 0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Apr 04 09:45:04 UTC 2023 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/FileAccessException.java
*/ package org.codelibs.core.exception; /** * Exception while accessing a file. * * @author shinsuke * */ public class FileAccessException extends ClRuntimeException { private static final long serialVersionUID = 1L; public FileAccessException(final String messageCode, final Object[] args, final Throwable cause) { super(messageCode, args, 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) -
src/main/java/org/codelibs/core/exception/NoSuchAlgorithmRuntimeException.java
/** * {@link NoSuchAlgorithmException}をラップする例外です。 * * @author higa */ public class NoSuchAlgorithmRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3176447530746274091L; /** * {@link NoSuchAlgorithmRuntimeException}を作成します。 * * @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) -
src/main/java/org/codelibs/core/exception/ParserConfigurationRuntimeException.java
/** * {@link ParserConfigurationException}をラップする例外です。 * * @author higa */ public class ParserConfigurationRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -4610465906028959083L; /** * {@link ParserConfigurationRuntimeException}を作成します。 * * @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) -
src/test/java/org/codelibs/core/convert/LongConversionUtilTest.java
/** * @author higa * */ public class LongConversionUtilTest extends TestCase { /** * @throws Exception */ public void testToLong() throws Exception { assertEquals(new Long("1000"), LongConversionUtil.toLong("1,000")); } /** * @throws Exception */ public void testToPrimitiveLong() throws Exception {
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.4K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/activation/ProfileActivationException.java
*/ package org.apache.maven.profiles.activation; /** * ProfileActivationException */ @Deprecated public class ProfileActivationException extends Exception { private static final long serialVersionUID = -90820222109103638L; public ProfileActivationException(String message, Throwable cause) { super(message, cause); } public ProfileActivationException(String message) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/ChildUrlsException.java
/** * ChildUrlsException is thrown when having child urls. * * @author shinsuke * */ public class ChildUrlsException extends CrawlerSystemException { private static final long serialVersionUID = 1L; private final Set<RequestData> childUrlList; public ChildUrlsException(final Set<RequestData> childUrlList, final String description) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0)