Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for unneeded (0.11 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. 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)
  5. 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)
  6. 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)
  7. 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)
  8. src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java

         * Compares this CharMappingItem with another object for equality.
         * Two CharMappingItem objects are equal if they have the same inputs and output.
         * Note: inputs arrays are sorted in the constructor, so no sorting is needed here.
         *
         * @param obj the object to compare with
         * @return true if the objects are equal, false otherwise
         */
        @Override
        public boolean equals(final Object obj) {
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 07:09:00 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  9. 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
         */
        @Override
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 27 07:01:25 UTC 2025
    - 9.7K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

                return false;
            }
        }
    
        @Override
        public void close() {
            // GCS Storage client doesn't require explicit close
            // but we can try to close it if needed
            try {
                storage.close();
            } catch (final Exception e) {
                if (logger.isDebugEnabled()) {
                    logger.debug("Failed to close GCS storage client", e);
                }
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 13 02:21:17 UTC 2025
    - 10.3K bytes
    - Viewed (0)
Back to top