- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 277 for fpPattern (0.47 sec)
-
src/main/java/org/codelibs/fess/opensearch/config/exbhv/CrawlingInfoParamBhv.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.config.exbhv; import java.util.regex.Pattern; import org.codelibs.fess.opensearch.config.bsbhv.BsCrawlingInfoParamBhv; import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/ElevateWordBhv.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.config.exbhv; import java.util.regex.Pattern; import org.codelibs.fess.opensearch.config.bsbhv.BsElevateWordBhv; import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class ElevateWordBhv extends BsElevateWordBhv {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/KeyMatchBhv.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.config.exbhv; import java.util.regex.Pattern; import org.codelibs.fess.opensearch.config.bsbhv.BsKeyMatchBhv; import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class KeyMatchBhv extends BsKeyMatchBhv {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/LabelTypeBhv.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.config.exbhv; import java.util.regex.Pattern; import org.codelibs.fess.opensearch.config.bsbhv.BsLabelTypeBhv; import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class LabelTypeBhv extends BsLabelTypeBhv {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/RelatedQueryBhv.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.config.exbhv; import java.util.regex.Pattern; import org.codelibs.fess.opensearch.config.bsbhv.BsRelatedQueryBhv; import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class RelatedQueryBhv extends BsRelatedQueryBhv {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/RoleTypeBhv.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.config.exbhv; import java.util.regex.Pattern; import org.codelibs.fess.opensearch.config.bsbhv.BsRoleTypeBhv; import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class RoleTypeBhv extends BsRoleTypeBhv {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/WebConfigBhv.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.opensearch.config.exbhv; import java.util.regex.Pattern; import org.codelibs.fess.opensearch.config.bsbhv.BsWebConfigBhv; import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class WebConfigBhv extends BsWebConfigBhv {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
} /** * Converts a GSA URL pattern into a regular expression pattern suitable for Fess. * Handles various GSA pattern formats including regexp, contains, and URL-based patterns. * * @param s the input GSA pattern string * @return a regular expression pattern string, or empty string for comments/invalid patterns */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/exentity/PathMapping.java
public class PathMapping extends BsPathMapping { private static final Logger logger = LogManager.getLogger(PathMapping.class); private static final long serialVersionUID = 1L; protected Pattern userAgentPattern; protected Pattern regexPattern; protected BiFunction<String, Matcher, String> pathMapperFunc; public String getId() { return asDocMeta().id(); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 3.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
* Test that all label constants follow the naming convention */ public void test_labelConstantsNamingConvention() throws Exception { Field[] fields = FessLabels.class.getDeclaredFields(); Pattern labelPattern = Pattern.compile("^LABELS_[A-Za-z0-9_]+$"); for (Field field : fields) { if (Modifier.isStatic(field.getModifiers()) && Modifier.isFinal(field.getModifiers()) && Modifier.isPublic(field.getModifiers())
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 13.8K bytes - Viewed (0)