Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for smb1Client (0.21 sec)

  1. fess-crawler-lasta/src/main/resources/crawler/client.xml

    		<property name="charset">"UTF-8"</property>
    	</component>
    
    	<component name="smbClient" class="org.codelibs.fess.crawler.client.smb.SmbClient"
    		instance="prototype">
    		<property name="charset">"UTF-8"</property>
    		<!-- ntlmPasswordAuthentication -->
    	</component>
    
    	<component name="smb1Client" class="org.codelibs.fess.crawler.client.smb1.SmbClient"
    		instance="prototype">
    		<property name="charset">"UTF-8"</property>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Tue Aug 08 12:54:47 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryTest.java

                    .singleton("httpClient", FaultTolerantClient.class)//
                    .singleton("fsClient", FileSystemClient.class)//
                    .singleton("smbClient", SmbClient.class)//
                    .singleton("smb1Client", org.codelibs.fess.crawler.client.smb1.SmbClient.class)//
                    .singleton("ftpClient", FtpClient.class)//
                    .singleton("storageClient", StorageClient.class)//
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java

    import org.dbflute.utflute.core.PlainTestCase;
    
    /**
     * @author shinsuke
     *
     */
    public class SmbClientTest extends PlainTestCase {
    
        public void test_doGet_accessTimeoutTarget() {
            SmbClient client = new SmbClient() {
                @Override
                protected ResponseData getResponseData(final String uri, final boolean includeContent) {
                    try {
                        Thread.sleep(10000);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb/SmbClientTest.java

    import org.dbflute.utflute.core.PlainTestCase;
    
    /**
     * @author shinsuke
     *
     */
    public class SmbClientTest extends PlainTestCase {
    
        public void test_doGet_accessTimeoutTarget() {
            SmbClient client = new SmbClient() {
                @Override
                protected ResponseData getResponseData(final String uri, final boolean includeContent) {
                    try {
                        Thread.sleep(10000);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/config/exentity/CrawlingConfig.java

        public static class Param {
            // client.*
            public static class Client {
                public static final String SMB_AUTHENTICATIONS = SmbClient.SMB_AUTHENTICATIONS_PROPERTY;
                public static final String SMB1_AUTHENTICATIONS = org.codelibs.fess.crawler.client.smb1.SmbClient.SMB_AUTHENTICATIONS_PROPERTY;
                public static final String FTP_AUTHENTICATIONS = FtpClient.FTP_AUTHENTICATIONS_PROPERTY;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top