Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 398 for basedir (0.03 sec)

  1. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

                    out.write(in);
                }
            });
        }
    
        /**
         * Determines the MIME type of an image file based on its file extension.
         *
         * @param imageFile the image file
         * @return the MIME type string
         */
        protected String getImageMimeType(final File imageFile) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  2. guava/src/com/google/common/hash/HashingInputStream.java

       * @throws IOException this operation is not supported
       */
      @Override
      public void reset() throws IOException {
        throw new IOException("reset not supported");
      }
    
      /**
       * Returns the {@link HashCode} based on the data read from this stream. The result is unspecified
       * if this method is called more than once on the same instance.
       */
      public HashCode hash() {
        return hasher.hash();
      }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/util/PrunedTag.java

    import org.codelibs.fess.exception.FessSystemException;
    import org.w3c.dom.Node;
    
    /**
     * Represents a tag configuration for pruning HTML content during document processing.
     * This class defines tag patterns that match HTML elements based on tag name, CSS class, ID, or custom attributes.
     * It is used to identify and remove unwanted HTML elements from crawled documents.
     */
    public class PrunedTag {
        /** The HTML tag name to match (e.g., "div", "span", "p") */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/service/DataConfigService.java

         * including CRUD operations and search functionality.
         */
        public DataConfigService() {
            super();
        }
    
        /**
         * Retrieves a paginated list of data configurations based on search criteria.
         *
         * <p>This method performs a paginated search through all data configurations,
         * applying any search filters specified in the pager. The results are sorted
         * by sort order and name.</p>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/helper/SuggestHelper.java

                logger.warn("Failed to delete all words.", response.getErrors().get(0));
                return false;
            }
            refresh();
            return true;
        }
    
        /**
         * Deletes all document-based words from the suggest index.
         *
         * @return true if the operation was successful, false otherwise.
         */
        public boolean deleteDocumentWords() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 22.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.script.Script;
    
    /**
     * Job class for updating label information in the search index.
     * This job processes documents and updates their label fields based on URL pattern matching.
     */
    public class UpdateLabelJob {
    
        private static final Logger logger = LogManager.getLogger(UpdateLabelJob.class);
    
        /**
         * Query builder for filtering documents to be processed.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/hash/AbstractNonStreamingHashFunction.java

      @Override
      public HashCode hashBytes(ByteBuffer input) {
        return newHasher(input.remaining()).putBytes(input).hash();
      }
    
      /** In-memory stream-based implementation of Hasher. */
      private final class BufferingHasher extends AbstractHasher {
        final ExposedByteArrayOutputStream stream;
    
        BufferingHasher(int expectedInputSize) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/ForwardingObject.java

     * the backing object, but relies on {@code Object}'s implementation. This is necessary to preserve
     * the symmetry of {@code equals}. Custom definitions of equality are usually based on an interface,
     * such as {@code Set} or {@code List}, so that the implementation of {@code equals} can cast the
     * object being tested for equality to the custom interface. {@code ForwardingObject} implements no
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Dec 21 03:10:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/NavigableSetTestSuiteBuilder.java

    import java.util.Collection;
    import java.util.Collections;
    import java.util.List;
    import java.util.NavigableSet;
    import java.util.Set;
    import java.util.SortedSet;
    import junit.framework.TestSuite;
    
    /**
     * Creates, based on your criteria, a JUnit test suite that exhaustively tests a NavigableSet
     * implementation.
     */
    @GwtIncompatible
    public final class NavigableSetTestSuiteBuilder<E> extends SortedSetTestSuiteBuilder<E> {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java

                }
            });
            this.keyMatchQueryMap = keyMatchQueryMap;
            return keyMatchQueryMap.size();
        }
    
        /**
         * Retrieves a list of documents based on the KeyMatch query.
         *
         * @param keyMatch The KeyMatch instance.
         * @return A list of documents.
         */
        protected List<Map<String, Object>> getDocumentList(final KeyMatch keyMatch) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 10K bytes
    - Viewed (0)
Back to top