Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 771 for pagh (0.02 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/webauth/AdminWebauthAction.java

        //                                                                      ==============
        /**
         * Displays the web authentication management index page.
         *
         * @param form the search form for filtering
         * @return HTML response for the web authentication list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index(final SearchForm form) {
            return asListHtml();
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 20.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/PathMappingHelper.java

        protected static final String GROOVY_MATCHER = "groovy:";
    
        /** Map of path mappings by process type. */
        protected final Map<String, List<PathMapping>> pathMappingMap = new HashMap<>();
    
        /** Cached list of path mappings. */
        protected volatile List<PathMapping> cachedPathMappingList = null;
    
        /**
         * Initializes the path mapping helper.
         */
        @PostConstruct
        public void init() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/ResourceHandler.java

     *
     * @author taedium
     */
    public interface ResourceHandler {
    
        /**
         * Processes a resource.
         *
         * @param path the path
         * @param is the {@link InputStream} to read the resource
         */
        void processResource(String path, InputStream is);
    
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 997 bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/view/admin/dict/stemmeroverride/admin_dict_stemmeroverride.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8" %><!DOCTYPE html>
    <html>
    <head>
        <meta charset="UTF-8">
        <title><la:message key="labels.admin_brand_title"/> | <la:message
                key="labels.dict_stemmeroverride_configuration"/></title>
        <jsp:include page="/WEB-INF/view/common/admin/head.jsp"></jsp:include>
    </head>
    <body class="hold-transition sidebar-mini">
    <div class="wrapper">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 10.2K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/CrawlingInfoPager.java

        }
    
        /**
         * Checks if a previous page exists before the current page.
         *
         * @return true if a previous page exists, false otherwise
         */
        public boolean isExistPrePage() {
            return existPrePage;
        }
    
        /**
         * Sets whether a previous page exists before the current page.
         *
         * @param existPrePage true if a previous page exists, false otherwise
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.9K bytes
    - Viewed (0)
  6. okhttp/src/jvmTest/kotlin/okhttp3/CookieTest.kt

          parse("http://example.com/foo/bar".toHttpUrl(), "a=b; path=quux")!!.path,
        ).isEqualTo("/foo")
        assertThat(parse("http://example.com/foo/bar".toHttpUrl(), "a=b; path=")!!.path)
          .isEqualTo("/foo")
      }
    
      @Test fun pathAttributeDoesntNeedToMatch() {
        assertThat(parse("http://example.com/".toHttpUrl(), "a=b; path=/quux")!!.path)
          .isEqualTo("/quux")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 24.4K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java

            // Test task creation with null document map
            String path = "/path/to/document.pdf";
    
            Tuple3<String, String, String> task = thumbnailGenerator.createTask(path, null);
            assertNull(task);
        }
    
        public void test_createTask_withEmptyDocMap() {
            // Test task creation with empty document map
            String path = "/path/to/document.pdf";
            Map<String, Object> docMap = new HashMap<>();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/pager/AccessTokenPager.java

        /**
         * Whether a next page exists.
         */
        private boolean existNextPage;
    
        /**
         * The list of page numbers for navigation.
         */
        private List<Integer> pageNumberList;
    
        /**
         * The number of records per page.
         */
        private int pageSize;
    
        /**
         * The current page number.
         */
        private int currentPageNumber;
    
        /**
         * The ID.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.7K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/base/FessAdminAction.java

         */
        protected abstract String getActionRole();
    
        /**
         * Writes data to the specified file path.
         *
         * @param path the file path to write to
         * @param data the data to write
         */
        protected void write(final String path, final byte[] data) {
            LdiFileUtil.write(path, data);
        }
    
        /**
         * Gets the servlet context.
         *
         * @return the servlet context
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 7.1K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/StopwordsPager.java

        /** A flag indicating if a previous page exists. */
        private boolean existPrePage;
    
        /** A flag indicating if a next page exists. */
        private boolean existNextPage;
    
        /** A list of page numbers for navigation. */
        private List<Integer> pageNumberList;
    
        /** The number of records per page. */
        private int pageSize;
    
        /** The current page number. */
        private int currentPageNumber;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.6K bytes
    - Viewed (0)
Back to top