- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 20 for nerede (0.16 sec)
-
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/HostIntervalController.java
synchronized (lastTime) { final long lastValue = lastTime.get(); if (lastValue == 0) { // First access to this host - no delay needed // Set current time to allow proper delay for next access lastTime.set(SystemUtil.currentTimeMillis()); return; }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 5.2K bytes - Viewed (0) -
CLAUDE.md
- **Admin Login**: `admin/admin` ## Log Message Guidelines - Format parameters as `key=value` (e.g., `sessionId={}`, `url={}`) - Prefix with `[name]` when context identification is needed - Use full words, not abbreviations (e.g., "documents" not "docs")Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 4.8K bytes - Viewed (0) -
CLAUDE.md
- [ ] Java conventions followed - [ ] JavaDoc for public APIs - [ ] Tests pass (`mvn test`) - [ ] No compiler warnings - [ ] Proper exception handling - [ ] Resource cleanup (AutoCloseable) - [ ] Thread-safe if needed - [ ] Code formatted (`mvn formatter:format`) - [ ] License headers (`mvn license:format`) --- ## Quick Reference ### Key File Locations
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Fri Nov 28 17:31:34 UTC 2025 - 10.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
|| url.startsWith("s3:") || url.startsWith("gcs:"); } /** * Checks if the given URL represents a file system path for content serving. * Used to determine if special handling is needed for file system URLs. * * @param url the URL to check * @return true if the URL is a file system path (file, smb, smb1, ftp, storage, s3, gcs) */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Dec 12 13:58:40 UTC 2025 - 12.4K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CsvExtractor.java
try (BufferedReader reader = new BufferedReader(new InputStreamReader(in, charset))) { String line; Character detectedDelimiter = delimiter; // Read header row if needed if (hasHeader) { while ((line = reader.readLine()) != null) { if (StringUtil.isBlank(line)) { continue; }Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 12.8K bytes - Viewed (0) -
CLAUDE.md
} ``` ### Testing Best Practices - Minimize `Thread.sleep()` - use only when absolutely necessary - For timestamp tests: use minimal delays (50-100ms) - Clean only test-specific indices (not `_all` unless needed) - Use `runner.refresh()` after index operations - Test with realistic multilingual content ### Key Test Classes - `SuggesterRefactoringTest` - Index lifecycle, alias management
Registered: Sat Dec 20 13:04:59 UTC 2025 - Last Modified: Mon Nov 24 03:40:05 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java
// ============ /** * Sets up HTML data for admin pages. * <p> * This method configures common data needed for admin pages including * editable flags, user roles, and forum links. * </p> * * @param runtime the action runtime context */ @OverrideRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 27 07:01:25 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/storage/GcsStorageClient.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Dec 13 02:21:17 UTC 2025 - 10.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryCommand.java
return QueryBuilders.prefixQuery(f, text); } return QueryBuilders.matchPhraseQuery(f, text); } /** * Gets the actual search field, replacing default field placeholder if needed. * @param defaultField The default field to use if field is the default placeholder. * @param field The field name to check. * @return The actual field name to use for searching. */
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sun Nov 23 11:39:05 UTC 2025 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/auth/chain/CommandChain.java
this.process = process; this.timeout = timeout; } /** * Runs the monitor thread, sleeping for the timeout duration and terminating the process if needed. */ @Override public void run() { ThreadUtil.sleepQuietly(timeout); if (!finished) { try { process.destroy();Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 14.4K bytes - Viewed (0)