- Sort Score
- Result 10 results
- Languages All
Results 881 - 890 of 1,909 for Long (0.02 sec)
-
src/test/java/org/codelibs/fess/suggest/settings/SuggestSettingsTest.java
settings.set(key, value); assertEquals(value, settings.getAsInt(key, -1)); } @Test public void test_setAndGetAsLong() { String key = "key"; long value = Long.MAX_VALUE; settings.set(key, value); assertEquals(value, settings.getAsLong(key, -1)); } @Test public void test_setAndGetAsFloat() { String key = "key";
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:54 UTC 2024 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/LdapConfigurationException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class LdapConfigurationException extends FessSystemException { private static final long serialVersionUID = 1L; public LdapConfigurationException(final String message) { super(message); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 878 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ResultOffsetExceededException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class ResultOffsetExceededException extends FessSystemException { private static final long serialVersionUID = 1L; public ResultOffsetExceededException(final String message) { super(message); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 884 bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/exception/MaxLengthExceededException.java
*/ package org.codelibs.fess.crawler.exception; /** * @author shinsuke * */ public class MaxLengthExceededException extends CrawlingAccessException { private static final long serialVersionUID = 1L; public MaxLengthExceededException(final String message) { super(message); }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 922 bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PdfExtractor.java
if (value != null) { extractData.putValue(name, value); } } public long getTimeout() { return timeout; } public void setTimeout(final long timeout) { this.timeout = timeout; } public void setDaemonThread(final boolean isDaemonThread) { this.isDaemonThread = isDaemonThread;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 9.8K bytes - Viewed (0) -
android/guava/src/com/google/common/hash/HashFunction.java
/** * Shortcut for {@code newHasher().putLong(input).hash()}; returns the hash code for the given * {@code long} value, interpreted in little-endian byte order. The implementation <i>might</i> * perform better than its longhand equivalent, but should not perform worse. */ HashCode hashLong(long input); /** * Shortcut for {@code newHasher().putBytes(input).hash()}. The implementation <i>might</i>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 25 18:22:59 UTC 2021 - 10.9K bytes - Viewed (0) -
guava/src/com/google/common/hash/HashFunction.java
/** * Shortcut for {@code newHasher().putLong(input).hash()}; returns the hash code for the given * {@code long} value, interpreted in little-endian byte order. The implementation <i>might</i> * perform better than its longhand equivalent, but should not perform worse. */ HashCode hashLong(long input); /** * Shortcut for {@code newHasher().putBytes(input).hash()}. The implementation <i>might</i>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue May 25 18:22:59 UTC 2021 - 10.9K bytes - Viewed (0) -
src/main/java/jcifs/spnego/SpnegoException.java
package jcifs.spnego; import jcifs.CIFSException; /** * @author mbechler * */ public class SpnegoException extends CIFSException { /** * */ private static final long serialVersionUID = -4591854684249021395L; /** * */ public SpnegoException () { super(); } /** * @param message * @param cause */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/RequestTimeoutException.java
*/ package jcifs.util.transport; /** * @author mbechler * */ public class RequestTimeoutException extends TransportException { /** * */ private static final long serialVersionUID = -8825922797594232534L; /** * */ public RequestTimeoutException () { super(); } /** * @param msg * @param rootCause */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/relatedquery/CreateForm.java
@Size(max = 10000) public String queries; @Size(max = 1000) public String virtualHost; @Size(max = 1000) public String createdBy; @ValidateTypeFailure public Long createdTime; public void initialize() { crudMode = CrudMode.CREATE; createdBy = ComponentUtil.getSystemHelper().getUsername(); createdTime = ComponentUtil.getSystemHelper().getCurrentTimeAsLong();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.5K bytes - Viewed (0)