- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 52 for unique (0.03 sec)
-
src/main/java/org/codelibs/fess/helper/ProcessHelper.java
} } } /** * Starts a new process with the given session ID and command list. * Uses default buffer size and no output callback. * * @param sessionId unique identifier for the process session * @param cmdList list of command and arguments to execute * @param pbCall callback to configure the ProcessBuilder * @return JobProcess representing the started process */Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 06:54:47 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
} dictionaryManager.addCreator(this); } /** * Creates a new {@link SynonymFile} instance. * * @param id The unique identifier for the dictionary file. * @param path The file path of the dictionary. * @param timestamp The last modified timestamp of the file.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
* as well as to iterate over them. It uses a {@link MemoryDataHelper} to store the data in memory. * * <p> * The class uses a static {@code idCount} to generate unique IDs for each access result. * The {@code idCountLock} object is used to synchronize access to the {@code idCount} variable, * ensuring that IDs are generated in a thread-safe manner. * </p> * * <p>Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java
} dictionaryManager.addCreator(this); } /** * Creates a new {@link StemmerOverrideFile} instance. * * @param id The unique identifier for the dictionary file. * @param path The file path of the dictionary. * @param timestamp The last modified timestamp of the file.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
*/ public abstract class DictionaryFile<T extends DictionaryItem> { /** The dictionary manager responsible for this file. */ protected DictionaryManager dictionaryManager; /** The unique identifier for this dictionary file. */ protected String id; /** The file path of this dictionary. */ protected String path; /** The timestamp when this dictionary file was created or last modified. */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 07:09:00 UTC 2025 - 11.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsCreator.java
} dictionaryManager.addCreator(this); } /** * Creates a new {@link StopwordsFile} instance. * * @param id The unique identifier for the dictionary file. * @param path The file path of the dictionary. * @param timestamp The last modified timestamp of the file.Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/allcommon/EsAbstractEntity.java
} } // =================================================================================== // Unique Key // ========== @Override public boolean hasPrimaryKeyValue() { return asDocMeta().id() != null; }Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoParamDbm.java
return ls; } // =================================================================================== // Unique Info // =========== @Override public boolean hasPrimaryKey() { return false; } @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/JobHelper.java
}); } /** * Finds a scheduled job by its unique identifier. * * @param jobUnique the unique identifier of the job * @return an optional containing the scheduled job if found, empty otherwise */ private OptionalThing<LaScheduledJob> findJobByUniqueOf(final LaJobUnique jobUnique) { final JobManager jobManager = ComponentUtil.getJobManager(); try {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/UserService.java
}).createPageNumberList()); return userList; } /** * Retrieves a user by their unique identifier. * Loads the user through the authentication manager for complete user data. * * @param id the unique identifier of the user * @return an OptionalEntity containing the user if found */ public OptionalEntity<User> getUser(final String id) {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Mon Nov 24 02:07:40 UTC 2025 - 9.2K bytes - Viewed (0)