- Sort Score
- Num 10 results
- Language All
Results 221 - 230 of 703 for xtrue (0.02 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
} /** * Checks if the specified field can be used for sorting. * Uses O(1) Set lookup for improved performance. * * @param field the field name to check * @return true if the field can be used for sorting, false otherwise */ protected boolean isSortField(final String field) { return sortFieldSet != null && sortFieldSet.contains(field); } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 21.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java
caught = true; assertEquals("Test exception", e.getMessage()); } assertTrue(caught); } @Test public void test_catchAsFessSystemException() { boolean caught = false; try { throw new LlmException("Test exception"); } catch (final FessSystemException e) { caught = true;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 05 04:19:06 GMT 2026 - 5.7K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/pager/BadWordPagerTest.java
badwordpager.setAllPageCount(999); assertEquals(999, badwordpager.getAllPageCount()); badwordpager.setExistPrePage(true); assertTrue(badwordpager.isExistPrePage()); badwordpager.setExistNextPage(true); assertTrue(badwordpager.isExistNextPage()); badwordpager.setPageSize(0); assertEquals(25, badwordpager.getPageSize());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 2.6K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/XIncludeAwareXmlProvider.groovy
documentBuilder().parse(sourceFile) } private DocumentBuilder documentBuilder() { DocumentBuilderFactory.newInstance().with { namespaceAware = true XIncludeAware = true newDocumentBuilder() } }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.2K bytes - Click Count (0) -
src/main/config/openapi/openapi-user.yaml
required: false style: form explode: true schema: type: array items: type: string example: [name] - name: facet.field in: query description: Facet field name required: false style: form explode: true schema: type: array items:Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu May 09 06:31:27 GMT 2024 - 21.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/pager/GroupPager.java
* Checks whether a previous page exists in the pagination. * * @return true if a previous page exists, false otherwise */ public boolean isExistPrePage() { return existPrePage; } /** * Sets the flag indicating whether a previous page exists. * * @param existPrePage true if a previous page exists, false otherwise */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 7K bytes - Click Count (0) -
src/main/config/eclipse/formatter/java.xml
<setting id="org.eclipse.jdt.core.formatter.comment.indent_root_tags" value="true"/> <setting id="org.eclipse.jdt.core.formatter.wrap_before_or_operator_multicatch" value="true"/> <setting id="org.eclipse.jdt.core.formatter.enabling_tag" value="@formatter:on"/> <setting id="org.eclipse.jdt.core.formatter.insert_space_after_closing_brace_in_block" value="insert"/>
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Sep 17 06:39:42 GMT 2017 - 30.5K bytes - Click Count (1) -
src/test/java/org/codelibs/fess/mylasta/direction/FessEnvTest.java
FessEnv.SimpleImpl customEnv = new FessEnv.SimpleImpl() { protected Properties prepareProperties() { Properties props = new Properties(); props.setProperty("bool.true", "true"); props.setProperty("bool.false", "false"); props.setProperty("bool.yes", "yes"); props.setProperty("bool.no", "no"); props.setProperty("bool.on", "on");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
src/main/webapp/js/advance.js
adjustWidthVal: 11, searchForm: $("#searchForm") }; $("#searchForm").on("submit", function() { $searchButton.prop("disabled", true); setTimeout(function() { $searchButton.prop("disabled", false); }, BUTTON_DISABLE_DURATION); return true; }); if (typeof $.fn.suggestor === "function") { $("#as_q").suggestor(SUGGESTOR_CONFIG); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 21 13:12:50 GMT 2025 - 1.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/pager/ReqHeaderPagerTest.java
reqHeaderPager.setAllPageCount(999); assertEquals(999, reqHeaderPager.getAllPageCount()); reqHeaderPager.setExistPrePage(true); assertTrue(reqHeaderPager.isExistPrePage()); reqHeaderPager.setExistNextPage(true); assertTrue(reqHeaderPager.isExistNextPage()); reqHeaderPager.setPageSize(0); assertEquals(25, reqHeaderPager.getPageSize());
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 12:58:11 GMT 2026 - 3.2K bytes - Click Count (0)