Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 223 for z_param (0.03 sec)

  1. module.xml

    			<param name="module.groupId" value="org/codelibs/opensearch/module" />
    			<param name="module.name.prefix" value="" />
    			<param name="module.name" value="mapper-extras" />
    			<param name="module.version" value="${opensearch.version}" />
    			<param name="module.zip.version" value="${opensearch.version}" />
    		</antcall>
    		<!-- transport-netty4 -->
    		<antcall target="install.module">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/crawler/transformer/FessXpathTransformer.java

         *
         * @param dataMap the data map to populate
         * @param responseData the response data from crawling
         * @param fessConfig the Fess configuration
         * @param crawlingConfig the crawling configuration
         * @param documentHelper the document helper for content processing
         * @param body the extracted body content
         * @param fileName the file name if applicable
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 54.4K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java

                }, () -> asListHtml(dictId));
            }
        }
    
        /**
         * Validate the protected word string.
         * @param action The action.
         * @param values The values.
         * @param propertyName The property name.
         * @param hook The error hook.
         */
        private static void validateProtwordsString(final FessBaseAction action, final String values, final String propertyName,
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 20.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            try (CurlResponse response = ComponentUtil.getCurlHelper()
                    .post("/_reindex")
                    .param("refresh", refresh)
                    .param("requests_per_second", requestsPerSecond)
                    .param("scroll", scroll)
                    .param("max_docs", maxDocs)
                    .param("wait_for_completion", Boolean.toString(waitForCompletion))
                    .body(source)
                    .execute()) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  5. plugin.xml

    			<param name="plugin.groupId" value="org/codelibs/opensearch" />
    			<param name="plugin.name.prefix" value="opensearch-" />
    			<param name="plugin.name" value="configsync" />
    			<param name="plugin.version" value="3.2.0" />
    			<param name="plugin.zip.version" value="3.2.0" />
    		</antcall>
    		<!-- minhash -->
    		<antcall target="install.plugin">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  6. 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)
  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