- Sort Score
- Result 10 results
- Languages All
Results 1081 - 1090 of 4,096 for long (0.1 sec)
-
guava/src/com/google/common/collect/AllEqualOrdering.java
return (Ordering<S>) this; } private Object readResolve() { return INSTANCE; } @Override public String toString() { return "Ordering.allEqual()"; } private static final long serialVersionUID = 0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jul 22 19:24:26 UTC 2024 - 1.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/EmptyImmutableListMultimap.java
public ImmutableMap<Object, Collection<Object>> asMap() { return super.asMap(); } private Object readResolve() { return INSTANCE; // preserve singleton property } private static final long serialVersionUID = 0;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Aug 18 16:48:17 UTC 2022 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/curl/CurlException.java
* governing permissions and limitations under the License. */ package org.codelibs.curl; public class CurlException extends RuntimeException { private static final long serialVersionUID = 1L; public CurlException(final String message, final Throwable cause) { super(message, cause); } public CurlException(final String message) { super(message); }
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Mon Nov 14 21:05:19 UTC 2022 - 950 bytes - Viewed (0) -
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/core/exception/NoSuchConstructorRuntimeException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; import java.lang.reflect.Constructor; import org.codelibs.core.lang.MethodUtil; /** * {@link Constructor}が見つからない場合にスローされる{@link NoSuchMethodException}をラップする例外です。 * * @author higa */ public class NoSuchConstructorRuntimeException extends ClRuntimeException { private static final long serialVersionUID = 8688818589925114466L;
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.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)