- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 289 for pattern1 (0.04 sec)
-
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/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) -
src/main/java/org/codelibs/fess/opensearch/config/exbhv/PathMappingBhv.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.BsPathMappingBhv; import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class PathMappingBhv extends BsPathMappingBhv {
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/core/convert/BigIntegerConversionUtil.java
/** * Converts to {@link BigInteger}. * * @param o * The object to convert * @param pattern * The pattern string * @return The converted {@link BigInteger} */ public static BigInteger toBigInteger(final Object o, final String pattern) { if (o == null) { return null; } else if (o instanceof BigInteger) { return (BigInteger) o;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ResourceUtil.java
if (value == null) { return null; } final StringBuffer tunedText = new StringBuffer(value.length()); final Pattern pattern = Pattern.compile("(\\$\\{([\\w\\.]+)\\})"); final Matcher matcher = pattern.matcher(value); while (matcher.find()) { final String key = matcher.group(2); String replacement = System.getProperty(key);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/BigDecimalConversionUtil.java
/** * Converts to {@link BigDecimal}. * * @param o * The object to convert * @param pattern * The pattern string * @return The converted {@link BigDecimal} */ public static BigDecimal toBigDecimal(final Object o, final String pattern) { if (o == null) { return null; } else if (o instanceof BigDecimal) { return (BigDecimal) o;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/badword/CreateForm.java
import org.codelibs.fess.util.ComponentUtil; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Pattern; import jakarta.validation.constraints.Size; /** * The create form for Bad Word. */ public class CreateForm { /** * Creates a new CreateForm instance. */ public CreateForm() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.9K bytes - Viewed (0)