- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 138 for exclude3 (0.04 seconds)
-
src/main/java/org/codelibs/fess/app/service/CrawlingInfoService.java
} /** * Deletes crawling sessions that expired before the specified date. * Excludes the active session and optionally filters by name. * This method performs batch deletion of both parameters and session records. * * @param activeSessionId the session ID to exclude from deletion (can be null) * @param name optional name filter for sessions to delete (can be null or blank)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 19.9K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
tasks = "clean sanityCheck test ${extraTasks.joinToString( " ", )} -PflakyTests=${FlakyTestStrategy.EXCLUDE} --no-configuration-cache" gradleHome = "%teamcity.build.checkoutDir%/dogfood-second" gradleParams = defaultParameters } }, ) })Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 7.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/helper/CrawlingConfigHelper.java
* Retrieves a list of URLs that should be excluded from crawling based on failure counts. * URLs are excluded if they have failed more than the configured failure count threshold. * URLs can also be filtered by failure type using a regular expression pattern. * * @param configId the configuration ID to get excluded URLs for * @return a list of URLs that should be excluded from crawling, or an empty list if none */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 19.5K bytes - Click Count (1) -
build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts
doFirst { // workaround for https://github.com/gradle/gradle/issues/12247 systemProperty("package.cycle.exclude.patterns", excludePatterns.get().joinToString(",")) } extensions.findByType<DevelocityTestConfiguration>()?.apply {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 10 08:11:56 GMT 2026 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/protwords/AdminDictProtwordsAction.java
@Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse search(final SearchForm form) { validate(form, messages -> {}, this::asDictIndexHtml); copyBeanToBean(form, protwordsPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE)); return asHtml(path_AdminDictProtwords_AdminDictProtwordsJsp).renderWith(data -> { searchPaging(data, form); }); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 20.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/AdminBadwordAction.java
* @return The HTML response. */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse search(final SearchForm form) { copyBeanToBean(form, badWordPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE)); return asHtml(path_AdminBadword_AdminBadwordJsp).renderWith(data -> { searchPaging(data, form); }); } /** * Reset the search form.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 23 23:57:26 GMT 2026 - 18K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/searchlist/AdminSearchlistActionTest.java
assertFalse(extraFieldNames.contains("_version"), "Reserved field _version should be excluded"); assertFalse(extraFieldNames.contains("_seq_no"), "Reserved field _seq_no should be excluded"); assertFalse(extraFieldNames.contains("_primary_term"), "Reserved field _primary_term should be excluded"); } @Test
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:38:39 GMT 2026 - 34.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/reqheader/AdminReqheaderAction.java
*/ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse search(final SearchForm form) { copyBeanToBean(form, reqHeaderPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE)); return asHtml(path_AdminReqheader_AdminReqheaderJsp).renderWith(data -> { searchPaging(data, form); }); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 17.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/fileauth/AdminFileauthAction.java
*/ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse search(final SearchForm form) { copyBeanToBean(form, fileAuthenticationPager, op -> op.exclude(Constants.PAGER_CONVERSION_RULE)); return asHtml(path_AdminFileauth_AdminFileauthJsp).renderWith(data -> { searchPaging(data, form); }); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 18.7K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/common/help.jsp
If you want to find documents whose content_length fields have values between 1000 and 10000, inclusive, you can enter: <pre>content_length:[1000 TO 10000]</pre> If you want to exclude the upper and lower bounds, use "{}". </dd> <dt>Boost</dt> <dd> To boost a term use the "^" symbol with a boost factor (a number) at the end of the term you are searching. <pre>Fess^100</pre> </dd>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 26 14:01:31 GMT 2018 - 2.4K bytes - Click Count (0)