- Sort Score
- Result 10 results
- Languages All
Results 1151 - 1160 of 3,598 for long (0.03 sec)
-
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/WagonConfigurationException.java
import org.apache.maven.wagon.TransferFailedException; /** * WagonConfigurationException */ @Deprecated public class WagonConfigurationException extends TransferFailedException { static final long serialVersionUID = 1; private final String originalMessage; private final String repositoryId; public WagonConfigurationException(String repositoryId, String message, Throwable cause) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/mapping/CharMappingFile.java
* @return an OptionalEntity containing the mapping item if found, empty otherwise */ @Override public OptionalEntity<CharMappingItem> get(final long id) { if (mappingItemList == null) { reload(null); } for (final CharMappingItem mappingItem : mappingItemList) { if (id == mappingItem.getId()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java
* Waits for the crawling process to terminate for a specified duration. * @param millis The maximum time to wait in milliseconds. A value of 0 means wait indefinitely. */ public void awaitTermination(final long millis) { if (parentThread != null) { try { parentThread.join(millis); } catch (final InterruptedException e) {
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 14K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/ConnectionTimeoutException.java
* * @author mbechler */ public class ConnectionTimeoutException extends TransportException { /** * */ private static final long serialVersionUID = 7327198103204592731L; /** * Constructs a new ConnectionTimeoutException with no detail message. */ public ConnectionTimeoutException() { } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/stopwords/EditForm.java
* The unique identifier of the stopwords dictionary entry being edited. * This is a required field for identifying which dictionary entry to update. */ @Required @ValidateTypeFailure public Long id; /** * Returns a display-friendly identifier combining the dictionary ID and entry ID. * This method creates a composite identifier for UI display purposes. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableKeywordMarkerFilterFactory.java
import org.opensearch.index.analysis.AbstractTokenFilterFactory; public class ReloadableKeywordMarkerFilterFactory extends AbstractTokenFilterFactory { private final Path keywordPath; private final long reloadInterval; public ReloadableKeywordMarkerFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name, final Settings settings) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun May 18 02:59:16 UTC 2025 - 2K bytes - Viewed (0) -
src/test/java/org/codelibs/opensearch/extension/analysis/ReloadableStopFilterFactory.java
import org.opensearch.index.analysis.AbstractTokenFilterFactory; public class ReloadableStopFilterFactory extends AbstractTokenFilterFactory { private final Path stopwordPath; private final long reloadInterval; private final boolean ignoreCase; public ReloadableStopFilterFactory(final IndexSettings indexSettings, final Environment environment, final String name, final Settings settings) {
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Sun May 18 02:59:16 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/StopwordsService.java
* @param id The ID of the stopword item. * @return An optional entity containing the stopword item, or empty if not found. */ public OptionalEntity<StopwordsItem> getStopwordsItem(final String dictId, final long id) { return getStopwordsFile(dictId).map(file -> file.get(id).get()); } /** * Stores a stopword item in the specified dictionary. * * @param dictId The ID of the dictionary.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/SynonymService.java
* @param id The ID of the synonym item. * @return An optional entity containing the synonym item, or empty if not found. */ public OptionalEntity<SynonymItem> getSynonymItem(final String dictId, final long id) { return getSynonymFile(dictId).map(file -> file.get(id).get()); } /** * Stores a synonym item in the specified dictionary. * * @param dictId The ID of the dictionary.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/LruHashSet.java
* </p> * @author shinsuke * @param <E> the type of elements maintained by this set */ public class LruHashSet<E> extends AbstractSet<E> implements Set<E>, java.io.Serializable { private static final long serialVersionUID = 1L; /** * The internal LRU hash map used to store elements. */ private final LruHashMap<E, Object> map; // Dummy value to associate with an Object in the backing Map
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 3.7K bytes - Viewed (0)