Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 975 for a_param (0.03 sec)

  1. src/main/java/org/codelibs/core/log/Logger.java

         * Outputs INFO information.
         *
         * @param message
         *            Message
         */
        public void info(final Object message) {
            if (isInfoEnabled()) {
                log.info(toString(message));
            }
        }
    
        /**
         * Outputs WARN information.
         *
         * @param message
         *            Message
         * @param throwable
         *            Exception
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jun 19 09:12:22 UTC 2025
    - 12.4K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    		<span class="brand-text">
    		<c:if test="${empty param.brandName or empty param.logoPath}"><img src="${fe:url('/images/logo-head.png')}" alt="<la:message key="labels.header_brand_name" />" /></c:if
    		><c:if test="${not empty param.brandName and not empty param.logoPath}"><img src="${fe:url(param.logoPath)}" alt="${f:h(param.brandName)}" /></c:if>
    		</span>
    	</la:link>
    	<div class="sidebar">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.java

         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    
        /**
         * Set the value of jobname, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param jobname The parameter value of jobname. (NotNull)
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 10K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/io/FileUtil.java

        }
    
        /**
         * Reads text from a file with the specified encoding.
         *
         * @param path
         *            The file path. Must not be {@literal null} or empty.
         * @param encoding
         *            The encoding. Must not be {@literal null} or empty.
         * @return The text read from the file.
         */
        public static String readText(final String path, final String encoding) {
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

            /**
             * Sets the ID of the updated item.
             * @param id The ID to set.
             * @return This ApiUpdateResponse instance.
             */
            public ApiUpdateResponse id(final String id) {
                this.id = id;
                return this;
            }
    
            /**
             * Sets whether the item was created or updated.
             * @param created True if created, false if updated.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 24.9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/core/misc/Tuple5.java

         *
         * @param <T1>
         *            The type of the first value
         * @param <T2>
         *            The type of the second value
         * @param <T3>
         *            The type of the third value
         * @param <T4>
         *            The type of the fourth value
         * @param <T5>
         *            The type of the fifth value
         * @param value1
         *            The first value
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 6.5K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/dict/DictionaryFile.java

            /**
             * Creates a new PagingList with the specified parameters.
             *
             * @param list the underlying list of items for this page
             * @param offset the starting offset for this page
             * @param size the page size
             * @param allRecordCount the total number of records across all pages
             */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

        /**
         * Adds a search log to the queue.
         *
         * @param params The search request parameters.
         * @param requestedTime The time the search was requested.
         * @param queryId The ID of the search query.
         * @param query The search query.
         * @param pageStart The starting page number.
         * @param pageSize The size of the page.
         * @param queryResponseList The list of query responses.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/SystemHelper.java

         *
         * @param name The role name.
         * @return The search role.
         */
        public String getSearchRoleByRole(final String name) {
            return createSearchRole(ComponentUtil.getFessConfig().getRoleSearchRolePrefix(), name);
        }
    
        /**
         * Creates a search role string.
         *
         * @param type The type of the role.
         * @param name The name of the role.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 36.6K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java

        @Secured({ ROLE, ROLE + VIEW })
        public HtmlResponse index() {
            return asListHtml();
        }
    
        /**
         * Displays the group list with pagination.
         *
         * @param pageNumber the page number
         * @param form the search form
         * @return HTML response for the list page
         */
        @Execute
        @Secured({ ROLE, ROLE + VIEW })
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.2K bytes
    - Viewed (0)
Back to top