- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 53 for getConfig (0.07 sec)
-
src/test/java/jcifs/tests/OplockTests.java
Smb2CreateRequest create = new Smb2CreateRequest(sess.getConfig(), "\\foocc"); create.setCreateDisposition(Smb2CreateRequest.FILE_OPEN_IF); create.setRequestedOplockLevel(Smb2CreateRequest.SMB2_OPLOCK_LEVEL_BATCH); tree.send(create); Smb2CreateRequest create2 = new Smb2CreateRequest(sess.getConfig(), "\\foocc"); create2.setOverrideTimeout(1000);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 6.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/crawler/util/FieldConfigsTest.java
assertTrue(fieldConfigs.getConfig("test").isEmpty()); } public void test_values() { final Map<String, String> params = Maps.of("foo", "bar"); FieldConfigs fieldConfigs = new FieldConfigs(params); assertTrue(fieldConfigs.getConfig("test").isEmpty()); assertFalse(fieldConfigs.getConfig("foo").isEmpty());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Jul 04 06:20:49 UTC 2024 - 3.3K bytes - Viewed (0) -
src/main/java/jcifs/netbios/Lmhosts.java
return getByName(new Name(tc.getConfig(), host, 0x20, null), tc); } synchronized NbtAddress getByName ( Name name, CIFSContext tc ) { NbtAddress result = null; try { if ( tc.getConfig().getLmHostsFileName() != null ) { File f = new File(tc.getConfig().getLmHostsFileName()); long lm;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
public NtlmPasswordAuthentication ( CIFSContext tc, String userInfo ) { super( userInfo, tc.getConfig().getDefaultDomain(), tc.getConfig().getDefaultUsername() != null ? tc.getConfig().getDefaultUsername() : "GUEST", tc.getConfig().getDefaultPassword() != null ? tc.getConfig().getDefaultPassword() : ""); this.context = tc; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator2.java
Smb2CreateRequest create = new Smb2CreateRequest(th.getConfig(), uncPath); create.setCreateOptions(Smb2CreateRequest.FILE_DIRECTORY_FILE); create.setDesiredAccess(SmbConstants.FILE_READ_DATA | SmbConstants.FILE_READ_ATTRIBUTES); Smb2QueryDirectoryRequest query = new Smb2QueryDirectoryRequest(th.getConfig()); query.setFileName(getWildcard()); create.chain(query);
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Dec 20 16:15:08 UTC 2020 - 5.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
*/ @Override public boolean allowChain ( CommonServerMessageBlockRequest next ) { return getConfig().isAllowCompound(getClass().getSimpleName()) && getConfig().isAllowCompound(next.getClass().getSimpleName()); } /** * {@inheritDoc} * * @see jcifs.internal.CommonServerMessageBlockRequest#createCancel()
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 6.2K bytes - Viewed (0) -
src/test/java/jcifs/tests/NamingTest.java
Assume.assumeFalse("Unicode support", getContext().getConfig().isUseUnicode()); Assume.assumeFalse("SMB2", getContext().getConfig().getMaximumVersion().isSMB2()); String oemEncoding = getContext().getConfig().getOemEncoding(); String str = null; try { switch ( oemEncoding.toLowerCase(Locale.ROOT) ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 06 10:48:05 UTC 2020 - 7K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbWatchHandleImpl.java
/* * NtTrans Notify Change Request / Response */ req = new NtTransNotifyChange(th.getConfig(), this.handle.getFid(), this.filter, this.recursive); resp = new NtTransNotifyChangeResponse(th.getConfig()); } if ( log.isTraceEnabled() ) { log.trace("Sending NtTransNotifyChange for " + this.handle); }
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/DirFileEntryEnumIterator1.java
this.response = new Trans2FindFirst2Response(th.getConfig()); try { th.send( new Trans2FindFirst2( th.getConfig(), unc, this.getWildcard(), this.getSearchAttributes(), th.getConfig().getListCount(), th.getConfig().getListSize() - FIND_OVERHEAD),
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Nov 13 15:13:49 UTC 2021 - 5.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
dstIndex += writeString(this.accountName, dst, dstIndex); dstIndex += writeString(this.primaryDomain, dst, dstIndex); } dstIndex += writeString(getConfig().getNativeOs(), dst, dstIndex); dstIndex += writeString(getConfig().getNativeLanman(), dst, dstIndex); return dstIndex - start; } @Override
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Mar 17 10:20:23 UTC 2019 - 8.8K bytes - Viewed (0)