- Sort Score
- Result 10 results
- Languages All
Results 1041 - 1050 of 1,909 for Long (0.03 sec)
-
src/main/java/org/codelibs/fess/exception/CommandExecutionException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class CommandExecutionException extends FessSystemException { private static final long serialVersionUID = 1L; public CommandExecutionException(final String message) { super(message); } public CommandExecutionException(final String message, final Throwable e) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 991 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/PluginException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class PluginException extends FessSystemException { private static final long serialVersionUID = 1L; public PluginException(final String message, final Throwable cause) { super(message, cause); } public PluginException(final String message) { super(message);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 969 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ThemeException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class ThemeException extends FessSystemException { private static final long serialVersionUID = 1L; public ThemeException(final String message, final Throwable cause) { super(message, cause); } public ThemeException(final String message) { super(message); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 966 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ThumbnailGenerationException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class ThumbnailGenerationException extends FessSystemException { private static final long serialVersionUID = 1L; public ThumbnailGenerationException(final String message, final Exception cause) { super(message, cause); } public ThumbnailGenerationException(final String message) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1021 bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/UnsupportedEncodingRuntimeException.java
import java.io.UnsupportedEncodingException; /** * @author shinsuke * */ public class UnsupportedEncodingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 1L; public UnsupportedEncodingRuntimeException(final UnsupportedEncodingException 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/app/web/admin/labeltype/CreateForm.java
@Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer sortOrder; @Size(max = 1000) public String createdBy; @ValidateTypeFailure public Long createdTime; public void initialize() { crudMode = CrudMode.CREATE; sortOrder = 0; createdBy = ComponentUtil.getSystemHelper().getUsername();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java
@Required @Min(value = 0) @Max(value = 2147483647) @ValidateTypeFailure public Integer sortOrder; @Size(max = 1000) public String createdBy; @ValidateTypeFailure public Long createdTime; public void initialize() { target = Constants.DEFAULT_JOB_TARGET; cronExpression = Constants.DEFAULT_CRON_EXPRESSION; scriptType = Constants.DEFAULT_JOB_SCRIPT_TYPE;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 2.2K bytes - Viewed (0) -
guava/src/com/google/common/base/FunctionalEquivalence.java
* * @author Bob Lee * @since 10.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault final class FunctionalEquivalence<F, T> extends Equivalence<F> implements Serializable { private static final long serialVersionUID = 0; private final Function<? super F, ? extends @Nullable T> function; private final Equivalence<T> resultEquivalence; FunctionalEquivalence(
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon May 01 19:48:29 UTC 2023 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbComOpenAndXResponse.java
int fid, fileAttributes, dataSize, grantedAccess, fileType, deviceState, action, serverFid; long lastWriteTime; SmbComOpenAndXResponse() { } int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) { return 0; } int writeBytesWireFormat( byte[] dst, int dstIndex ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsItem.java
import org.codelibs.fess.dict.DictionaryItem; public class ProtwordsItem extends DictionaryItem { private final String input; private String newInput; public ProtwordsItem(final long id, final String input) { this.id = id; this.input = input; if (id == 0) { // create newInput = input; } } public String getNewInput() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.4K bytes - Viewed (0)