- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 33 for identifiers (0.06 sec)
-
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
* Creates a new statistics key object with the specified identifier. * * @param id the unique identifier for this object */ public StatsKeyObject(final String id) { this.id = id; } /** * Gets the unique identifier for this statistics key object. * * @return the identifier */ public String getId() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/protwords/ApiAdminDictProtwordsAction.java
} /** * Retrieve a single protected words entry by ID for the specified dictionary. * * @param dictId identifier of the dictionary * @param id identifier of the entry * @return JSON response containing the entry */ // GET /api/admin/dict/protwords/setting/{dictId}/{id} @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.32.md
the `successThreshold`. ([#121206](https://github.com/kubernetes/kubernetes/pull/121206), [@mochizuki875](https://github.com/mochizuki875))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Wed Aug 13 14:49:49 UTC 2025 - 412.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/mapping/ApiAdminDictMappingAction.java
} /** * Retrieve a single character mapping entry by ID for the specified dictionary. * * @param dictId identifier of the dictionary * @param id identifier of the mapping entry * @return JSON response containing the mapping entry */ // GET /api/admin/dict/mapping/setting/{dictId}/{id} @Execute
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/script/ScriptEngineFactoryTest.java
private final String identifier; public TestScriptEngine() { this("default"); } public TestScriptEngine(String identifier) { this.identifier = identifier; } @Override public Object evaluate(String template, Map<String, Object> paramMap) { return "TestEngine[" + identifier + "]: " + template; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserInfoHelper.java
return userCode; } return null; } /** * Generates a new unique identifier for user tracking. * Creates a UUID and removes hyphens to create a clean identifier string. * * @return a new unique identifier string */ protected String getId() { return UUID.randomUUID().toString().replace("-", StringUtil.EMPTY); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/job/ExecJob.java
private static final Logger logger = LogManager.getLogger(ExecJob.class); /** The job executor responsible for running this job */ protected JobExecutor jobExecutor; /** Unique session identifier for this job execution */ protected String sessionId; /** Flag indicating whether to use local Fesen instance */ protected boolean useLocalFesen = true;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 14.2K 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: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.2K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java
return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name()); } } /** Identifies all enterXxx and tryEnterXxx methods. */ private static boolean isAnyEnter(Method method) { return method.getName().startsWith("enter") || method.getName().startsWith("tryEnter"); } /** Identifies just tryEnterXxx methods (a subset of {@link #isAnyEnter}), which never block. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 27K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
* <p> * This method looks up a character mapping item using its unique identifier * within the context of the specified dictionary. * </p> * * @param dictId the dictionary ID containing the character mapping item * @param id the unique identifier of the character mapping item * @return an OptionalEntity containing the character mapping item if found, empty otherwise
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0)