Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 21 for unneeded (0.29 sec)

  1. src/main/java/org/codelibs/fess/app/web/base/FessBaseAction.java

         *
         * @return a new access context arranger
         */
        @Override
        protected AccessContextArranger newAccessContextArranger() { // for framework
            // fess does not use DBFlute, and this is unneeded so dummy
            return resource -> {
                final AccessContext context = new AccessContext();
                context.setAccessLocalDateTimeProvider(() -> timeManager.currentDateTime());
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 15K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/curl/io/ContentOutputStream.java

     * It writes data to a temporary file once the data size exceeds a specified threshold.
     *
     * <p>This class ensures that the temporary file is deleted if it is not needed.
     * It uses a logger to log warnings if there are issues deleting the temporary file.</p>
     *
     * <p>Fields:</p>
     * <ul>
     *   <li>{@code logger} - Logger instance for logging warnings.</li>
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Thu Nov 20 13:34:13 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  3. 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)
  4. ADDING_NEW_LANGUAGE.md

        ├── stemmer_override.txt
        └── protwords.txt
    ```
    
    ## Important Notes
    
    ### No Database Changes Required
    
    - Language configuration is entirely file-based
    - No database or OpenSearch index updates needed
    - Settings are loaded at application startup and cached
    
    ### Fallback Mechanism
    
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 11:36:30 UTC 2025
    - 10.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. MIGRATION.md

                "filetype": doc.get("filetype", "html"),
                "created": doc.get("@timestamp", ""),
                "timestamp": doc.get("@timestamp", ""),
                # Add custom fields as needed
            }
    
            outfile.write(json.dumps(fess_doc) + '\n')
    ```
    
    **Step 3: Import to Fess**
    
    Option A: Via Admin UI
    1. Go to **System > Backup**
    2. Upload `fess-documents.json` (bulk format)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 12:40:11 UTC 2025
    - 23.2K bytes
    - Viewed (0)
  9. 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)
  10. src/main/java/org/codelibs/fess/util/IpAddressUtil.java

            }
            return url.toString();
        }
    
        /**
         * Builds a URL from protocol, hostname string, port, and path.
         * Properly handles IPv6 addresses by wrapping them in brackets if needed.
         *
         * @param protocol the protocol (e.g., "http", "https")
         * @param host the hostname or IP address string
         * @param port the port number
         * @param path the path (should start with "/" or be empty)
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 06 08:31:03 UTC 2025
    - 9.4K bytes
    - Viewed (0)
Back to top