Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for testField (0.05 sec)

  1. 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)
  2. src/test/java/org/codelibs/fess/suggest/SuggesterTest.java

        }
    
        @Test
        @SuppressWarnings("unchecked")
        public void test_indexFromDocumentWithFieldAnalyzer() throws Exception {
            String field = "testField";
    
            Map<String, String> analyzerMapping = new HashMap<>();
            analyzerMapping.put(FieldNames.ANALYZER_SETTINGS_TYPE, AnalyzerSettings.FIELD_ANALYZER_MAPPING);
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 37.2K bytes
    - Viewed (0)
  3. statement.go

    					destValue = destValue.Elem()
    				}
    				if descSchema, err := schema.Parse(stmt.Dest, stmt.DB.cacheStore, stmt.DB.NamingStrategy); err == nil {
    					if destField := descSchema.LookUpField(field.DBName); destField != nil {
    						changedValue, zero := destField.ValueOf(stmt.Context, destValue)
    						if v {
    							return !utils.AssertEqual(changedValue, fieldValue)
    						}
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Sep 04 13:13:16 UTC 2025
    - 20.8K bytes
    - Viewed (0)
Back to top