Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 312 for bundling (0.04 sec)

  1. android/guava/src/com/google/common/cache/CacheStats.java

       *
       * <p><b>Note:</b> the values of the metrics are undefined in case of overflow (though it is
       * guaranteed not to throw an exception). If you require specific handling, we recommend
       * implementing your own stats collector.
       */
      public long requestCount() {
        return saturatedAdd(hitCount, missCount);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/error/ErrorForm.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.error;
    
    import java.util.HashMap;
    import java.util.Map;
    
    /**
     * Form class for handling error page data and search parameters.
     * This form captures the state of a search request when an error occurs,
     * allowing the error page to display relevant information and preserve search context.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/api/WebApiRequest.java

    import jakarta.servlet.http.HttpServletRequestWrapper;
    
    /**
     * Wrapper for HTTP servlet requests in web API context.
     * This class extends HttpServletRequestWrapper to provide custom servlet path handling
     * for web API requests.
     */
    public class WebApiRequest extends HttpServletRequestWrapper {
        /**
         * The custom servlet path for this web API request.
         */
        protected String servletPath;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java

    import org.codelibs.fess.app.web.admin.dashboard.AdminDashboardAction;
    import org.codelibs.fess.mylasta.action.FessUserBean;
    import org.lastaflute.web.response.HtmlResponse;
    
    /**
     * Abstract base action class for handling login functionality in Fess.
     * This action provides logic for redirecting authenticated users to appropriate
     * admin interfaces based on their roles and permissions.
     */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/cors/CorsHandler.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.cors;
    
    import jakarta.servlet.ServletRequest;
    import jakarta.servlet.ServletResponse;
    
    /**
     * Abstract base class for handling CORS (Cross-Origin Resource Sharing) requests.
     * Provides common CORS header constants and defines the processing interface.
     */
    public abstract class CorsHandler {
    
        /**
         * Creates a new instance of CorsHandler.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.4K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java

     */
    public class ApiAdminDictAction extends FessApiAdminAction {
    
        /**
         * Default constructor.
         */
        public ApiAdminDictAction() {
            super();
        }
    
        /** Dictionary manager for handling dictionary file operations */
        @Resource
        protected DictionaryManager dictionaryManager;
    
        /**
         * Retrieves all available dictionary files.
         *
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  7. android/guava-testlib/src/com/google/common/collect/testing/google/BiMapTestSuiteBuilder.java

                .named(parentBuilder.getName() + " [Map]")
                .suppressing(parentBuilder.getSuppressedTests())
                .suppressing(SetCreationTester.class.getMethods())
                // BiMap.entrySet() duplicate-handling behavior is too confusing for SetCreationTester
                .withSetUp(parentBuilder.getSetUp())
                .withTearDown(parentBuilder.getTearDown())
                .createTestSuite());
        /*
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/DataIndexHelper.java

         *   <li>Error handling and failure logging</li>
         *   <li>Cleanup of old documents after successful crawling</li>
         * </ul>
         */
        protected static class DataCrawlingThread extends Thread {
    
            /** Configuration for the data store being crawled */
            private final DataConfig dataConfig;
    
            /** Callback for handling document indexing operations */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/api/admin/fileconfig/EditBody.java

    import org.codelibs.fess.app.web.admin.fileconfig.EditForm;
    
    /**
     * Request body class for file config edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for file configuration management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
        public EditBody() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/api/admin/group/EditBody.java

    import org.codelibs.fess.app.web.admin.group.EditForm;
    
    /**
     * Request body class for group edit operations in the admin REST API.
     * This class extends EditForm to inherit the necessary form validation and binding capabilities
     * for group management operations.
     */
    public class EditBody extends EditForm {
    
        /**
         * Default constructor.
         */
        public EditBody() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.1K bytes
    - Viewed (0)
Back to top