- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 47 for smb1 (0.02 sec)
-
src/main/java/org/codelibs/fess/helper/PermissionHelper.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 12.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
* either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.client.smb1; import jcifs.smb1.smb1.NtlmPasswordAuthentication; /** * @author shinsuke * */ public class SmbAuthentication { private String server; private int port; private String username;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.2K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/CrawlerClientFactoryTest.java
url = "smb:/home/hoge"; client = clientFactory.getClient(url); assertNotNull(client); assertTrue(client instanceof SmbClient); url = "smb1:/home/hoge"; client = clientFactory.getClient(url); assertNotNull(client); assertTrue(client instanceof org.codelibs.fess.crawler.client.smb1.SmbClient); url = "ftp:/home/hoge";
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 5.3K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolderTest.java
assertEquals(hogeAuth, smbAuthenticationHolder.get("smb1://hoge/")); assertEquals(fugaAuth, smbAuthenticationHolder.get("smb1://fuga/")); assertEquals(fooAuth, smbAuthenticationHolder.get("smb1://foo:1000/")); assertEquals(hogeAuth, smbAuthenticationHolder.get("smb1://hoge/text.txt")); assertEquals(fugaAuth, smbAuthenticationHolder.get("smb1://fuga/text.txt"));
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbClient.java
import org.slf4j.LoggerFactory; import jakarta.annotation.Resource; import jcifs.smb1.Config; import jcifs.smb1.smb1.ACE; import jcifs.smb1.smb1.NtlmPasswordAuthentication; import jcifs.smb1.smb1.SID; import jcifs.smb1.smb1.SmbException; import jcifs.smb1.smb1.SmbFile; import jcifs.smb1.smb1.SmbFileInputStream; import jcifs.smb1.util.LogStream; /** * @author shinsuke * */
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 18.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationTest.java
*/ package org.codelibs.fess.crawler.client.smb1; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */ public class SmbAuthenticationTest extends PlainTestCase { public void test_getPathPrefix() { SmbAuthentication smbAuthentication; smbAuthentication = new SmbAuthentication(); assertEquals("smb1://", smbAuthentication.getPathPrefix());
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/smb1/SmbClientTest.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.client.smb1; import org.codelibs.fess.crawler.entity.ResponseData; import org.codelibs.fess.crawler.exception.CrawlingAccessException; import org.dbflute.utflute.core.PlainTestCase; /** * @author shinsuke * */
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java
smbAuth.setPassword(fileAuth.getPassword()); smbAuthList.add(smbAuth); final org.codelibs.fess.crawler.client.smb1.SmbAuthentication smb1Auth = new org.codelibs.fess.crawler.client.smb1.SmbAuthentication(); smb1Auth.setDomain(domain == null ? StringUtil.EMPTY : domain); smb1Auth.setServer(fileAuth.getHostname());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 9.8K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
import jcifs.internal.smb1.com.SmbComQueryInformationResponse; import jcifs.internal.smb1.com.SmbComRename; import jcifs.internal.smb1.com.SmbComSeek; import jcifs.internal.smb1.com.SmbComSeekResponse; import jcifs.internal.smb1.com.SmbComSetInformation; import jcifs.internal.smb1.com.SmbComSetInformationResponse; import jcifs.internal.smb1.trans.nt.NtTransQuerySecurityDesc;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu May 23 01:50:13 UTC 2024 - 82.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthenticationHolder.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.client.smb1; import java.util.HashMap; import java.util.Map; /** * @author shinsuke * */ public class SmbAuthenticationHolder { private final Map<String, SmbAuthentication> authMap = new HashMap<>();
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.3K bytes - Viewed (0)