Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 112 for METADATA (0.05 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

         *
         * @param query the search query string
         * @param params the search request parameters
         * @param userBean the optional user bean for access control
         * @return the search result containing documents and metadata
         */
        @Override
        protected SearchResult search(final String query, final SearchRequestParams params, final OptionalThing<FessUserBean> userBean) {
            final int pageSize = params.getPageSize();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/EditForm.java

    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing crawling information in the admin interface.
     * This form handles the editing of crawling session data, which tracks
     * the status and metadata of web crawling operations.
     *
     */
    public class EditForm {
    
        /**
         * Creates a new EditForm instance.
         */
        public EditForm() {
            // Default constructor
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.7K bytes
    - Viewed (0)
  3. CHANGELOG.md

        CANCEL`.
     *  New: Support OSGi metadata.
     *  Upgrade: [Okio 2.9.0][okio_2_9_0].
    
        ```kotlin
        implementation("com.squareup.okio:okio:2.9.0")
        ```
    
    Note that this was originally released on 2020-10-06 as 4.10.0-RC1. The only change from that
    release is the version name.
    
    
    [GraalVM]: https://www.graalvm.org/
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon Jul 07 19:32:33 UTC 2025
    - 31.6K bytes
    - Viewed (1)
  4. src/main/java/org/codelibs/fess/sso/SsoManager.java

                }
            }
            return null;
        }
    
        /**
         * Gets the appropriate response for the specified SSO response type.
         *
         * @param responseType The type of SSO response required (e.g., METADATA, LOGOUT)
         * @return The action response from the SSO authenticator, or null if SSO is not available
         */
        public ActionResponse getResponse(final SsoResponseType responseType) {
            if (available()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/indexer/IndexUpdater.java

            return target;
        }
    
        /**
         * Updates a document with additional metadata and enhancements.
         * Adds click counts, favorite counts, document boosting, and generates document ID.
         * Also applies language-specific updates through the language helper.
         *
         * @param map the document data map to update with additional metadata
         */
        protected void updateDocument(final Map<String, Object> map) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 32.7K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/pager/GroupPager.java

    import java.util.List;
    
    import org.codelibs.fess.util.ComponentUtil;
    
    /**
     * GroupPager provides pagination functionality for group management operations in Fess.
     * This class manages the state and metadata required for paginated display of group lists,
     * including page navigation, record counts, and search criteria.
     *
     */
    public class GroupPager implements Serializable {
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 7K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java

    import org.dbflute.outsidesql.OutsideSqlOption;
    import org.dbflute.outsidesql.factory.OutsideSqlExecutorFactory;
    import org.dbflute.s2dao.jdbc.TnResultSetHandlerFactory;
    import org.dbflute.s2dao.metadata.TnBeanMetaDataFactory;
    import org.dbflute.twowaysql.factory.SqlAnalyzerFactory;
    
    public class ImplementedInvokerAssistantTest extends UnitFessTestCase {
    
        private ImplementedInvokerAssistant invokerAssistant;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/util/QueryResponseList.java

    import java.util.Collection;
    import java.util.Iterator;
    import java.util.List;
    import java.util.ListIterator;
    import java.util.Map;
    
    /**
     * A response list that extends List functionality and includes pagination and search metadata.
     * This class wraps search results with pagination information, facet responses, and query statistics.
     * It implements the List interface to provide standard list operations while adding search-specific
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 14.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistant.java

    import org.dbflute.outsidesql.OutsideSqlOption;
    import org.dbflute.outsidesql.factory.OutsideSqlExecutorFactory;
    import org.dbflute.s2dao.jdbc.TnResultSetHandlerFactory;
    import org.dbflute.s2dao.metadata.TnBeanMetaDataFactory;
    import org.dbflute.twowaysql.factory.SqlAnalyzerFactory;
    
    /**
     * Implementation of DBFlute's InvokerAssistant interface for OpenSearch integration.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  10. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/cache/DiskLruCache.kt

              val clean = entry.cleanFiles[i]
              fileSystem.atomicMove(dirty, clean)
              val oldLength = entry.lengths[i]
              // TODO check null behaviour
              val newLength = fileSystem.metadata(clean).size ?: 0
              entry.lengths[i] = newLength
              size = size - oldLength + newLength
            }
          } else {
            fileSystem.deleteIfExists(dirty)
          }
        }
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 34.7K bytes
    - Viewed (0)
Back to top