- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for expansions (0.04 sec)
-
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
/** * Query command implementation for handling fuzzy search queries. * This class converts Lucene FuzzyQuery objects into OpenSearch fuzzy query builders, * supporting configurable fuzzy matching parameters like edit distance and expansions. * */ public class FuzzyQueryCommand extends QueryCommand { private static final Logger logger = LogManager.getLogger(FuzzyQueryCommand.class); /** * Default constructor. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
guava-bom/pom.xml
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 26 00:48:38 UTC 2025 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/FessConfigTest.java
} // Test available extensions public void test_getAvailableExtensions() { String[] extensions = fessConfig.getAvailableExtensions(); assertEquals(4, extensions.length); assertEquals("jpg", extensions[0]); assertEquals("jpeg", extensions[1]); assertEquals("gif", extensions[2]); assertEquals("png", extensions[3]); } */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.8K bytes - Viewed (0) -
pom.xml
</execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> </configuration> </plugin> </plugins> </build> <dependencies> <dependency>
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 03:01:32 UTC 2025 - 4.9K bytes - Viewed (0) -
android/guava-bom/pom.xml
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Aug 26 00:48:38 UTC 2025 - 2K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Utf8.java
} else { utf8Length += encodedLengthGeneral(sequence, i); break; } } if (utf8Length < utf16Length) { // Necessary and sufficient condition for overflow because of maximum 3x expansion throw new IllegalArgumentException( "UTF-8 length does not fit in int: " + (utf8Length + (1L << 32))); } return utf8Length; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 7K bytes - Viewed (0) -
android/pom.xml
</plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> </plugin> </plugins> </build> </profile> <profile> <id>suppress-open-jre-modules-for-toolchain-1.8</id> <activation> <property>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 24.3K bytes - Viewed (0) -
pom.xml
</plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.8.0</version> <extensions>true</extensions> </plugin> </plugins> </build> </profile> <profile> <id>suppress-open-jre-modules-for-toolchain-1.8</id> <activation> <property>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Sep 04 21:35:58 UTC 2025 - 23.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/QueryStringBuilder.java
queryBuf.append(')'); } } /** * Builds the base query string from search parameters. * Handles both condition-based queries and simple text queries, including related query expansion. * * @return the base query string */ protected String buildBaseQuery() { final StringBuilder queryBuf = new StringBuilder(255); if (params.hasConditionQuery()) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 12.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/CommandGeneratorTest.java
} generator.setCommandList(Collections.singletonList(longCommand.toString())); assertTrue("Long commands should be settable", true); } // Test path expansion logic public void test_path_expansion() throws Exception { // Test the expandPath functionality indirectly through variable replacement
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 16.4K bytes - Viewed (0)