- Sort Score
- Num 10 results
- Language All
Results 91 - 100 of 165 for buat (0.01 seconds)
-
src/test/java/org/codelibs/fess/helper/PopularWordHelperTest.java
// Test that clearCache doesn't throw exception popularWordHelper.clearCache(); // Verify cache is cleared (we can't directly test this without accessing the cache) // But we can test that it doesn't throw exceptions assertTrue(true); } @Test public void test_init_configuration() { PopularWordHelper testHelper = new PopularWordHelper();
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/PrunedTagTest.java
nodeWithBothIdAndClass.addAttribute("id", "main"); nodeWithBothIdAndClass.addAttribute("class", "container"); assertTrue(tagWithIdAndCss.matches(nodeWithBothIdAndClass)); // Node with correct id but different class should still match (id takes precedence) MockNode nodeWithCorrectIdWrongClass = new MockNode("div"); nodeWithCorrectIdWrongClass.addAttribute("id", "main");
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 21.1K bytes - Click Count (0) -
architecture/standards/0009-use-american-english.md
## Status - ACCEPTED on 2025-11-24 ## Context Gradle is an international open-source project with contributors from around the world. English is the primary language for code, comments, documentation, and communication, but there are variations in English spelling and terminology, specifically American English vs. British English. Inconsistency in spelling conventions can lead to several issues:
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 05 12:39:41 GMT 2026 - 3.9K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/query/QueryFieldConfigSetBasedLookupTest.java
*/ @Test public void test_isSortField_withEmptyArray_returnsFalse() { String[] emptyFields = {}; queryFieldConfig.setSortFields(emptyFields); // Set should be empty but not null assertNotNull(queryFieldConfig.sortFieldSet); assertEquals(0, queryFieldConfig.sortFieldSet.size()); // Should return false for any field, not throw exceptionCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 19.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessJsonResourceProviderTest.java
// All should be different instances assertNotSame(option1, option2); assertNotSame(option2, option3); assertNotSame(option1, option3); // But all should have the same configuration assertEquals(option1.getFieldNaming().get(), option2.getFieldNaming().get()); assertEquals(option2.getFieldNaming().get(), option3.getFieldNaming().get()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 7.1K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/opensearch/client/SearchEngineClientRebuildTest.java
} // The loadBulkData=true path triggers getResourcePath + ResourceUtil.isExist checks. // In test environment resource files don't exist, so insertBulkData won't be called, // but the overall flow should still succeed. assertTrue(testClient.calledMethods.contains("addMapping")); assertTrue(testClient.calledMethods.contains("createAlias")); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 14:36:23 GMT 2026 - 28.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/WebApiUtilTest.java
// This is verified by checking the behavior matches expected constant usage // Since the constant is private, we can't access it directly // But we can verify the behavior is consistent try { WebApiUtil.setError(400, "Test error"); WebApiUtil.validate(); // Should not throw in test environment } catch (Exception e) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 17.4K bytes - Click Count (0) -
src/main/assemblies/files/fess.in.sh
#!/bin/sh FESS_CLASSPATH=$FESS_HOME/lib/classes # JAVA_OPTS is not a built-in JVM mechanism but some people think it is so we # warn them that we are not observing the value of $JAVA_OPTS if [ ! -z "$JAVA_OPTS" ]; then echo -n "warning: ignoring JAVA_OPTS=$JAVA_OPTS; " echo "pass JVM parameters via FESS_JAVA_OPTS" fi if [ "x$FESS_MIN_MEM" = "x" ]; then FESS_MIN_MEM=256m fi if [ "x$FESS_MAX_MEM" = "x" ]; then FESS_MAX_MEM=2g
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 27 03:48:59 GMT 2025 - 5.3K bytes - Click Count (0) -
dbflute_fess/dfprop/outsideSqlMap.dfprop
# for example, when the project has SQL files for other framework. # So basically you don't need this. # # You can use variable '$$PACKAGE_BASE$$' that means 'packageBase'. # But you need to make SQL files at 'exbhv' under the set package # if you use BehaviorQueryPath (MemberBhv_selectSimpleMember.sql). # #; sqlPackage = $$PACKAGE_BASE$$ # - - - - - - - - - -/ }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Jul 25 06:04:16 GMT 2015 - 8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java
assertTrue(rule.isTarget(12, 30, 1)); // 12:30 on Sunday assertTrue(rule.isTarget(12, 30, 3)); // 12:30 on Tuesday assertTrue(rule.isTarget(12, 30, 5)); // 12:30 on Thursday // Within time range but not matching day assertFalse(rule.isTarget(12, 30, 2)); // 12:30 on Monday assertFalse(rule.isTarget(12, 30, 4)); // 12:30 on Wednesday assertFalse(rule.isTarget(12, 30, 6)); // 12:30 on Friday
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.6K bytes - Click Count (0)