Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 141 - 150 of 198 for pattern1 (0.04 seconds)

  1. src/test/java/org/codelibs/fess/rank/fusion/RankFusionProcessorErrorHandlingTest.java

                processor.setSearcher(new TestSearcher(100));
                processor.register(new NumericIdFieldSearcher());
                processor.init();
    
                // Should skip documents with non-string ID (pattern matching fails)
                final List<Map<String, Object>> results = processor.search("*", new TestSearchRequestParams(0, 10, 0), OptionalThing.empty());
                assertNotNull(results);
            }
        }
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 14.3K bytes
    - Click Count (0)
  2. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp

                                                                    value="${fe:date(data.lastAccessTime)}"
                                                                    pattern="yyyy-MM-dd'T'HH:mm:ss"/></td>
                                                        </tr>
                                                    </c:forEach>
                                                    </tbody>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 13.5K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/fess/job/UpdateLabelJob.java

    import org.opensearch.index.query.QueryBuilder;
    import org.opensearch.script.Script;
    
    /**
     * Job class for updating label information in the search index.
     * This job processes documents and updates their label fields based on URL pattern matching.
     */
    public class UpdateLabelJob {
    
        private static final Logger logger = LogManager.getLogger(UpdateLabelJob.class);
    
        /**
         * Query builder for filtering documents to be processed.
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 4.2K bytes
    - Click Count (0)
  4. src/main/resources/fess_message_pl.properties

    constraints.NotNull.message = {item} jest niewypełnione.
    constraints.Null.message = {item} musi być null.
    constraints.Past.message = {item} musi być wartością przeszłą.
    constraints.Pattern.message = {item} nie pasuje do "{regexp}".
    constraints.Size.message = Rozmiar {item} musi być w zakresie od {min} do {max} znaków.
    # ----------------------------------------------------------
    # Hibernate Validator
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.4K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

                }
            }
        }
    
        @Test
        public void test_constructor_isPrivate() {
            // Verify that SystemUtil has a private constructor (utility class pattern)
            try {
                Constructor<SystemUtil> constructor = SystemUtil.class.getDeclaredConstructor();
                assertTrue("Constructor should be private", java.lang.reflect.Modifier.isPrivate(constructor.getModifiers()));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/helper/WebFsIndexHelper.java

    import java.util.ArrayList;
    import java.util.Collections;
    import java.util.List;
    import java.util.Map;
    import java.util.concurrent.atomic.AtomicBoolean;
    import java.util.regex.Pattern;
    
    import org.apache.logging.log4j.LogManager;
    import org.apache.logging.log4j.Logger;
    import org.codelibs.core.lang.StringUtil;
    import org.codelibs.core.lang.ThreadUtil;
    import org.codelibs.fess.Constants;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Nov 28 16:29:12 GMT 2025
    - 25K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/util/KuromojiCSVUtilTest.java

        }
    
        @Test
        public void test_parse_escaped_quotes() {
            String value;
            String[] result;
    
            // Escaped quotes within quoted value - DOES NOT get unquoted because pattern doesn't match
            value = "\"value with \"\"escaped\"\" quotes\"";
            result = KuromojiCSVUtil.parse(value);
            assertEquals(1, result.length);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  8. src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken_details.jsp

                                            <td><fmt:formatDate value="${fe:date(updatedTime)}"
                                                                pattern="yyyy-MM-dd'T'HH:mm:ss"/></td>
                                        </tr>
                                        </tbody>
                                    </table>
                                </div>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 5.5K bytes
    - Click Count (0)
  9. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

            }
            source = source.replaceAll(Pattern.quote("${fess.dictionary.path}"), dictionaryPath)//
                    .replaceAll(Pattern.quote("${fess.index.codec}"), fessConfig.getIndexCodec())//
                    .replaceAll(Pattern.quote("${fess.index.number_of_shards}"), numberOfShards)//
                    .replaceAll(Pattern.quote("${fess.index.auto_expand_replicas}"), autoExpandReplicas);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 138.6K bytes
    - Click Count (1)
  10. src/main/resources/fess_message_pt_BR.properties

    constraints.Min.message = {item} deve ser maior ou igual a {value}.
    constraints.NotNull.message = {item} é obrigatório.
    constraints.Null.message = {item} deve ser nulo.
    constraints.Past.message = {item} deve ser uma data passada.
    constraints.Pattern.message = {item} não corresponde a "{regexp}".
    constraints.Size.message = O tamanho de {item} deve estar entre {min} e {max} caracteres.
    # ----------------------------------------------------------
    # Hibernate Validator
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 13.7K bytes
    - Click Count (0)
Back to Top