- Sort Score
- Result 10 results
- Languages All
Results 1 - 4 of 4 for test_fields (0.56 sec)
-
src/test/java/org/codelibs/fess/util/QueryStringBuilderTest.java
assertEquals("query1 query2", getQuery("", new String[] { "query1", "query2" }, Collections.emptyMap(), Collections.emptyMap(), false)); } public void test_fields() { final Map<String, String[]> fields = Collections.singletonMap("title", new String[] { "test" }); assertEquals("title:\"test\"", getQuery("", new String[0], fields, Collections.emptyMap(), false));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeTest.java
import jakarta.validation.Payload; public class CustomSizeTest extends UnitFessTestCase { // Test field with CustomSize annotation for testing @CustomSize(minKey = "test.min", maxKey = "test.max") private String testField; // Test field with only minKey @CustomSize(minKey = "test.min.only") private String testFieldMinOnly; // Test field with only maxKey @CustomSize(maxKey = "test.max.only")
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Thu Aug 07 02:41:28 UTC 2025 - 37.2K bytes - Viewed (0) -
src/bytes/bytes_test.go
{"1\u20002\u20013\u20024", []string{"1", "2", "3", "4"}}, {"\u2000\u2001\u2002", []string{}}, {"\n™\t™\n", []string{"™", "™"}}, {faces, []string{faces}}, } func TestFields(t *testing.T) { for _, tt := range fieldstests { b := []byte(tt.s) a := Fields(b) // Appending to the results should not change future results. var x []byte for _, v := range a {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jul 28 18:13:58 UTC 2025 - 62.9K bytes - Viewed (0)