Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for smbx (0.04 sec)

  1. src/test/java/org/codelibs/fess/helper/ViewHelperTest.java

                    "file://home/taro/あ.txt");
    
            // smb->file
            assertUrlLink("smb:/home/taro/test.txt", //
                    "file://home/taro/test.txt");
            assertUrlLink("smb:/home/taro/あ.txt", //
                    "file://home/taro/あ.txt");
            assertUrlLink("smb:/home/taro/%E3%81%82.txt", //
                    "file://home/taro/%E3%81%82.txt");
    
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/util/GsaConfigParserTest.java

            assertEscapePattern("\\Qhttp://www.codelibs.org/\\E.*", "http://www.codelibs.org/");
            assertEscapePattern("\\Qsmb://server/test/\\E.*", "smb://server/test/");
            assertEscapePattern(".*\\Q?\\E.*", "contains:?");
            assertEscapePattern(".*\\Q\001\\E.*", "contains:\001");
            assertEscapePattern("(?i).*\\.exe$", "regexpIgnoreCase:\\.exe$");
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/helper/SambaHelperTest.java

    package org.codelibs.fess.helper;
    
    import org.codelibs.fess.mylasta.direction.FessConfig;
    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.codelibs.fess.util.ComponentUtil;
    
    import jcifs.SID;
    import jcifs.smb.SmbException;
    
    public class SambaHelperTest extends UnitFessTestCase {
    
        public SambaHelper sambaHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Thu Jun 27 10:55:43 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java

                final String fileName = new File(filePath).getName();
                int colonIndex = fileName.indexOf(":");
                if (colonIndex == -1) {
                    colonIndex = fileName.indexOf("\\\\"); // Windows SMB
                }
                final int backslashIndex = fileName.lastIndexOf("\\");
                if (colonIndex > -1 && backslashIndex > -1) {
                    return fileName.substring(backslashIndex + 1);
                }
    Registered: Mon Oct 28 08:04:08 UTC 2024
    - Last Modified: Wed Oct 23 13:27:21 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top