- Sort Score
- Result 10 results
- Languages All
Results 891 - 900 of 1,982 for wong (0.02 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/dataconfig/EditForm.java
*/ public class EditForm extends CreateForm { @Required @Size(max = 1000) public String id; @Size(max = 1000) public String updatedBy; @ValidateTypeFailure public Long updatedTime; @Required @ValidateTypeFailure public Integer versionNo;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/CrawlerSystemException.java
*/ package org.codelibs.fess.crawler.exception; /** * @author shinsuke * */ public class CrawlerSystemException extends RuntimeException { private static final long serialVersionUID = 1L; public CrawlerSystemException(final String message, final Throwable cause) { super(message, cause); } public CrawlerSystemException(final String message) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/transport/Response.java
package jcifs.smb1.util.transport; public abstract class Response { public long expiration; public boolean isReceived;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 130 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/CreateForm.java
@Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer depth; @Min(value = 0) @Max(value = 9223372036854775807L) @ValidateTypeFailure public Long maxAccessCount; @Required @Size(max = 200) public String userAgent; @Required @Min(value = 1) @Max(value = 2147483647) @ValidateTypeFailure public Integer numOfThread;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.2K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/RequestBody.kt
/** * Returns the number of bytes that will be written to sink in a call to [writeTo], * or -1 if that count is unknown. */ @Throws(IOException::class) open fun contentLength(): Long = commonContentLength() /** Writes the content of this request to [sink]. */ @Throws(IOException::class) abstract fun writeTo(sink: BufferedSink) /**
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Thu Jan 25 14:41:37 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
// ============ public static OptionalEntity<FileAuthentication> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new FileAuthentication()).map(entity -> { entity.setCreatedBy(username);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 15.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java
// ============ public static OptionalEntity<RequestHeader> getEntity(final CreateForm form, final String username, final long currentTime) { switch (form.crudMode) { case CrudMode.CREATE: return OptionalEntity.of(new RequestHeader()).map(entity -> { entity.setCreatedBy(username);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 14.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/BadPaddingRuntimeException.java
package org.codelibs.core.exception; import javax.crypto.BadPaddingException; /** * @author shinsuke * */ public class BadPaddingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L; public BadPaddingRuntimeException(final BadPaddingException cause) { super("ECL0105", new Object[] { cause.getMessage() }, cause); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1008 bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/IllegalBlockSizeRuntimeException.java
import javax.crypto.IllegalBlockSizeException; /** * @author shinsuke * */ public class IllegalBlockSizeRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L; public IllegalBlockSizeRuntimeException(final IllegalBlockSizeException cause) { super("ECL0105", new Object[] { cause.getMessage() }, cause); }
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/QueryParseException.java
*/ package org.codelibs.fess.exception; import org.apache.lucene.queryparser.classic.ParseException; public class QueryParseException extends FessSystemException { private static final long serialVersionUID = 1L; public QueryParseException(final ParseException cause) { super(cause); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 931 bytes - Viewed (0)