- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 338 for fpPattern (0.23 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/pathmap/CreateForm.java
*/ @ValidateTypeFailure public Integer crudMode; /** * The regular expression pattern to match request paths. */ @Required @Size(max = 1000) public String regex; /** * The replacement pattern for matched paths. */ @Size(max = 1000) public String replacement; /** * The processing type for path mapping.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideCreator.java
* from files that match the pattern "stemmer_override.*\\.txt". */ public class StemmerOverrideCreator extends DictionaryCreator { private static final Logger logger = LogManager.getLogger(StemmerOverrideCreator.class); /** * Constructs a new creator for stemmer override dictionaries. * It sets the file pattern to match files starting with "stemmer_override" * and ending with ".txt".
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/jcifs/smb/DosFileFilter.java
* Supports filtering files based on DOS wildcards and file attributes. * */ public class DosFileFilter implements SmbFileFilter { /** * The wildcard pattern for filtering file names. */ protected String wildcard; /** * The DOS file attributes to filter on. */ protected int attributes; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java
import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Max; import jakarta.validation.constraints.Min; import jakarta.validation.constraints.Pattern; import jakarta.validation.constraints.Size; /** * The create form for Label Type. */ 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 - 3K bytes - Viewed (0) -
src/main/assemblies/extension/kibana/README.md
1. Click **Management**. 1. Click **Index Patterns**. 1. Click **Create index pattern** button 1. Input "fess\_log\*" to the textbox of **index pattern**. 1. Click **Next step**. 1. Set "requestedAt" to the **Time Filter field name**. 1. Click **Create index pattern**. 1. Click **Saved Objects**. 1. Click **Import** and select "fess\_log.ndjson" to import example settings. 1. Click **Dashboard**.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Aug 12 01:26:21 UTC 2019 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/ParameterUtil.java
public static Map<String, String> parse(final String value) { final Map<String, String> paramMap = new LinkedHashMap<>(); if (value != null) { int unknownKey = 0; final Pattern properyPattern = Pattern.compile(ComponentUtil.getFessConfig().getAppEncryptPropertyPattern()); final PrimaryCipher cipher = ComponentUtil.getPrimaryCipher(); final String[] lines = value.split("[\r\n]");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/PathMatcherFactory.java
* <p> * The path matchers created by this service support Maven's traditional include/exclude * pattern syntax, which is compatible with the behavior of Maven 3 plugins like * maven-compiler-plugin and maven-clean-plugin. * <p> * Pattern syntax supports: * <ul> * <li>Standard glob patterns with {@code *}, {@code ?}, and {@code **} wildcards</li>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Mon Jul 21 19:37:56 UTC 2025 - 7.5K bytes - Viewed (0) -
compat/maven-artifact/src/test/java/org/apache/maven/artifact/versioning/ComparableVersionIT.java
import java.nio.file.attribute.BasicFileAttributes; import java.util.regex.Pattern; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; class ComparableVersionIT { @Test void test() throws Exception { Files.walkFileTree(Paths.get("target"), new SimpleFileVisitor<Path>() { Pattern mavenArtifactJar = Pattern.compile("maven-artifact-[\\d.]+(-SNAPSHOT)?\\.jar");
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
import org.codelibs.fess.validation.CustomSize; import org.lastaflute.web.validation.Required; import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure; import jakarta.validation.constraints.Pattern; import jakarta.validation.constraints.Size; /** * Form class for creating access tokens in the admin interface. * This form handles the creation of API access tokens with configurable permissions and expiration dates.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.4K bytes - Viewed (0) -
README.md
### Key Architectural Patterns - **Factory Pattern** - `BeanDescFactory` for creating bean descriptors, `ParameterizedClassDescFactory` for generic type handling - **Builder Pattern** - `CopyOptions` for configuring bean copying operations with fluent API - **Adapter Pattern** - Logging adapters (`JclLoggerAdapter`, `JulLoggerAdapter`) for different logging frameworks
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0)