- Sort Score
- Num 10 results
- Language All
Results 41 - 50 of 359 for apatah (0.03 seconds)
-
src/main/java/org/codelibs/fess/validation/UriTypeValidator.java
final String[] paths = value.split("[\r\n]"); for (final String path : paths) { if (StringUtil.isNotBlank(path) && !path.trim().startsWith("#")) { boolean flag = false; for (final String protocol : protocols) { if (path.trim().startsWith(protocol.trim())) { flag = true; break;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Nov 23 12:34:02 GMT 2025 - 3.1K bytes - Click Count (0) -
build-logic-commons/code-quality-rules/src/main/resources/codenarc/codenarc-integtests.xml
<!--<ruleset-ref path='rulesets/basic.xml'>--> <!--<exclude name='ExplicitHashSetInstantiation'/>--> <!--<exclude name='ExplicitCallToAndMethod'/>--> <!--<exclude name='ExplicitCallToOrMethod'/>--> <!--</ruleset-ref>--> <ruleset-ref path='rulesets/braces.xml'/> <ruleset-ref path='rulesets/imports.xml'> <exclude name="ImportFromSunPackages"/>
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Dec 09 08:14:05 GMT 2020 - 2.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/pathmap/SearchBody.java
/** * Search request body for path mapping administration API. */ public class SearchBody extends BaseSearchBody { /** * Default constructor. */ public SearchBody() { super(); } /** Regular expression pattern for path mapping */ public String regex; /** Replacement pattern for path mapping */ public String replacement;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java
/** The path of the HTML: /error/busy.jsp */ HtmlNext path_Error_BusyJsp = new HtmlNext("/error/busy.jsp"); /** The path of the HTML: /error/error.jsp */ HtmlNext path_Error_ErrorJsp = new HtmlNext("/error/error.jsp"); /** The path of the HTML: /error/notFound.jsp */ HtmlNext path_Error_NotFoundJsp = new HtmlNext("/error/notFound.jsp"); /** The path of the HTML: /error/redirect.jsp */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Tue Feb 10 04:24:02 GMT 2026 - 26.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java
} @Test public void test_writeThreadDump_withSpecialCharacters() throws IOException { // Test with file path containing special characters Path tempDir = Files.createTempDirectory("test-スレッドダンプ-dir"); Path tempFile = tempDir.resolve("thread-dump-テスト.txt"); try { ThreadDumpUtil.writeThreadDump(tempFile.toString());Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 15.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java
/** * Form class for handling tag operations in storage management. * This form represents tag data including path, name, and associated metadata. */ public class TagForm { /** * The file or directory path associated with this tag. */ @Required public String path; /** * The name of the tag with a maximum length of 100 characters. */ @Required @Size(max = 100)Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.5K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java
/** The key of the configuration. e.g. //HTML/@lang */ String CRAWLER_DOCUMENT_HTML_LANG_XPATH = "crawler.document.html.lang.xpath"; /** The key of the configuration. e.g. //META[@name='description']/@content */ String CRAWLER_DOCUMENT_HTML_DIGEST_XPATH = "crawler.document.html.digest.xpath";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 28 06:59:19 GMT 2026 - 576.9K bytes - Click Count (2) -
src/test/java/org/codelibs/fess/api/WebApiManagerTest.java
private final String path; public ExactMatchWebApiManager(String path) { this.path = path; } @Override public boolean matches(HttpServletRequest request) { if (request == null) { return false; } return path.equals(request.getRequestURI()); } @OverrideCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 21 06:04:58 GMT 2026 - 26.9K bytes - Click Count (0) -
.teamcity/subprojects.json
[ { "name": "ant", "path": "platforms/software/ant", "unitTests": false, "functionalTests": false, "crossVersionTests": false }, { "name": "ant-api", "path": "platforms/software/ant-api", "unitTests": false, "functionalTests": false, "crossVersionTests": false }, { "name": "ant-impl", "path": "platforms/software/ant-impl", "unitTests": true,Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 27 15:03:00 GMT 2026 - 42K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/app/web/admin/design/AdminDesignActionTest.java
Boolean result = invokeIsValidUploadPath(validFile, baseDir); assertTrue("Valid path in subdirectory should be allowed", result); } @Test public void test_isValidUploadPath_pathTraversal_simple() throws Exception { // Test simple path traversal attack File baseDir = new File(tempDir.toFile(), "images"); baseDir.mkdirs();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 13.6K bytes - Click Count (0)