Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for pattern (0.05 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/filter/UrlFilterTest.java

        /**
         * Test adding invalid regex include pattern
         */
        public void test_addInclude_invalidRegex() {
            String sessionId = "test-session-004";
            urlFilter.init(sessionId);
    
            // Invalid regex pattern should be handled gracefully
            urlFilter.addInclude(".*[invalid");
            urlFilter.addInclude("https://valid.com/.*");
    
            // Valid pattern should still work
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 19K bytes
    - Viewed (0)
  2. pom.xml

    								<artifactSet>
    									<includes>
    										<include>org.dbflute:dbflute-runtime</include>
    									</includes>
    								</artifactSet>
    								<relocations>
    									<relocation>
    										<pattern>org.dbflute</pattern>
    										<shadedPattern>org.codelibs.fess.crawler.dbflute</shadedPattern>
    									</relocation>
    								</relocations>
    							</configuration>
    						</execution>
    					</executions>
    				</plugin>
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 2.8K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/RuleManagerTest.java

            @Override
            public ResponseProcessor getResponseProcessor() {
                return responseProcessor;
            }
        }
    
        /**
         * Conditional test rule that matches based on URL pattern
         */
        public static class UrlPatternRule implements Rule {
            private static final long serialVersionUID = 1L;
            private final String ruleId;
            private final String urlPattern;
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 23.8K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/transformer/TransformerTest.java

            public ContentTransformer(String name) {
                this.name = name;
            }
    
            public void addTransformationRule(String pattern, String replacement) {
                transformationRules.put(pattern, replacement);
            }
    
            @Override
            public ResultData transform(ResponseData responseData) {
                if (responseData == null) {
                    return null;
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Sep 06 04:15:37 UTC 2025
    - 28K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/common/CommonExtensions.kt

            }
            testFailure = true
            supportTestRetry = true
            add {
                failOnText {
                    conditionType = BuildFailureOnText.ConditionType.CONTAINS
                    pattern = "%unmaskedFakeCredentials%"
                    failureMessage = "This build might be leaking credentials"
                    reverse = false
                    stopBuildOnFailure = true
                }
            }
        }
    
    Registered: Wed Sep 10 11:36:15 UTC 2025
    - Last Modified: Wed Sep 10 01:37:13 UTC 2025
    - 15K bytes
    - Viewed (0)
  6. fess-crawler/src/test/java/org/codelibs/fess/crawler/rule/impl/AbstractRuleTest.java

            // Different implementations should behave differently
            conditionalRule.setUrlPattern("https://.*");
            assertFalse(conditionalRule.match(responseData)); // Doesn't match pattern
    
            testRule.setMatchResult(true);
            assertTrue(testRule.match(responseData)); // Always matches when set to true
    
            // Both should inherit same property behavior
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Wed Sep 03 14:42:53 UTC 2025
    - 21.9K bytes
    - Viewed (0)
  7. docs/en/docs/release-notes.md

    ### Docs
    
    * ✏️ Fix validation parameter name in docs, from `regex` to `pattern`. PR [#10085](https://github.com/tiangolo/fastapi/pull/10085) by [@pablodorrio](https://github.com/pablodorrio).
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Fri Sep 05 12:48:45 UTC 2025
    - 544.1K bytes
    - Viewed (0)
  8. guava-gwt/pom.xml

                <sourceFileExclude>**/ForceGuavaCompilation*</sourceFileExclude>
              </sourceFileExcludes>
              <!-- The above exclusion doesn't actually matter unless I prevent Javadoc from autodiscovering the source in the sourcepath, which defaults to the source directory :\ Boo for -sourcepath. -->
              <sourcepath>doesnotexist</sourcepath>
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Sep 04 21:35:58 UTC 2025
    - 19.4K bytes
    - Viewed (0)
Back to top