Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for path2 (0.06 sec)

  1. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/s3/S3ClientTest.java

        public void test_parsePath() {
            String[] values;
    
            values = s3Client.parsePath("bucket/path");
            assertEquals("bucket", values[0]);
            assertEquals("path", values[1]);
    
            values = s3Client.parsePath("bucket/path1/path2");
            assertEquals("bucket", values[0]);
            assertEquals("path1/path2", values[1]);
    
            values = s3Client.parsePath("bucket/");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 07:57:44 UTC 2025
    - 20.5K bytes
    - Viewed (0)
  2. fess-crawler/src/test/resources/org/codelibs/fess/crawler/helper/robots_malformed.txt

    Disallow: /test/
    
    # Case 9: Special characters in paths
    User-agent: SpecialCharBot
    Disallow: /path with spaces/
    Disallow: /path%20encoded/
    Disallow: /path?query=value
    Disallow: /path#fragment
    Allow: /unicode/日本語/
    
    # Case 10: Multiple User-agents in sequence
    User-agent: Bot1
    User-agent: Bot2
    User-agent: Bot3
    Disallow: /shared/
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Fri Nov 14 12:52:01 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/gcs/GcsClientTest.java

            String[] values;
    
            values = gcsClient.parsePath("bucket/path");
            assertEquals("bucket", values[0]);
            assertEquals("path", values[1]);
    
            values = gcsClient.parsePath("bucket/path1/path2");
            assertEquals("bucket", values[0]);
            assertEquals("path1/path2", values[1]);
    
            values = gcsClient.parsePath("bucket/");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Thu Dec 11 08:38:29 UTC 2025
    - 19.6K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java

            String[] values;
    
            values = storageClient.parsePath("bucket/path");
            assertEquals("bucket", values[0]);
            assertEquals("path", values[1]);
    
            values = storageClient.parsePath("bucket/path1/path2");
            assertEquals("bucket", values[0]);
            assertEquals("path1/path2", values[1]);
    
            values = storageClient.parsePath("bucket/");
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.9K bytes
    - Viewed (0)
  5. fess-crawler/src/test/java/org/codelibs/fess/crawler/helper/RobotsTxtHelperTest.java

            assertFalse(robotsTxt.allows("/test/", longBotName));
    
            // Test SpecialCharBot - special characters in paths
            assertFalse(robotsTxt.allows("/path with spaces/", "SpecialCharBot"));
            assertFalse(robotsTxt.allows("/path%20encoded/", "SpecialCharBot"));
            assertFalse(robotsTxt.allows("/path?query=value", "SpecialCharBot"));
    
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Mon Nov 24 03:59:47 UTC 2025
    - 20.6K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                return pathLC;
            }
    
            final String pathL = getLocalizedPagePath(page, lang, null);
            final String pL = pageCacheMap.get(pathL);
            if (pL != null) {
                return pL;
            }
            if (existsPage(pathL)) {
                pageCacheMap.put(pathLC, pathL);
                return pathL;
            }
    
            final String path = getLocalizedPagePath(page, null, null);
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Fri Nov 28 16:29:12 UTC 2025
    - 52.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/core/io/FileUtilTest.java

        }
    
        /**
         * Test isPathSafe with path outside base directory
         *
         * @throws Exception
         */
        @Test
        public void testIsPathSafe_PathOutsideBase() throws Exception {
            final Path baseDir = tempFolder.getRoot().toPath();
            final Path outsidePath = Paths.get("/tmp/outside.txt");
    
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 10.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/core/io/FileUtil.java

         * <pre>
         * Path baseDir = Paths.get("/var/app/data");
         * Path userPath = Paths.get(userInput);
         * if (!FileUtil.isPathSafe(userPath, baseDir)) {
         *     throw new SecurityException("Path traversal attempt detected");
         * }
         * </pre>
         *
         * @param pathToCheck the path to validate (must not be {@literal null})
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Nov 22 11:21:59 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  9. 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;
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sun Nov 23 12:34:02 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  10. pom.xml

    						<data>
    							<type>files</type>
    							<paths>
    								<path>${project.basedir}/src/main/assemblies/files/fess</path>
    								<path>${project.basedir}/src/main/assemblies/files/fess.in.sh</path>
    								<path>${project.basedir}/src/main/assemblies/files/generate-thumbnail</path>
    								<path>${project.basedir}/plugin.xml</path>
    							</paths>
    							<dst>${packaging.fess.bin.dir}</dst>
    							<mapper>
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Sat Dec 20 08:30:43 UTC 2025
    - 49.4K bytes
    - Viewed (0)
Back to top