- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 193 for CIFSContext (0.05 sec)
-
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupRequest.java
* License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2.session; import jcifs.CIFSContext; import jcifs.internal.smb2.ServerMessageBlock2; import jcifs.internal.smb2.ServerMessageBlock2Request; import jcifs.internal.smb2.Smb2Constants; import jcifs.internal.util.SMBUtil; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/ntlm/JcifsEngine.java
protected BaseContext cifsContext; /** * Constructs a JcifsEngine with the specified properties. * * @param props the properties for configuring the CIFS context * @throws CrawlingAccessException if an error occurs during initialization */ public JcifsEngine(final Properties props) { try { cifsContext = new BaseContext(new PropertyConfiguration(props));
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Sep 18 09:30:45 UTC 2025 - 4.3K bytes - Viewed (0) -
src/main/java/jcifs/SidResolver.java
* methods. * @throws CIFSException if there is an error resolving the SIDs */ void resolveSids(CIFSContext tc, String authorityServerName, SID[] sids) throws CIFSException; /** * Resolve part of an array of SIDs using a cache and at most one MSRPC request. * * @param tc the CIFS context to use
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/info/Smb2QueryInfoRequest.java
} /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2Request#createResponse(jcifs.CIFSContext, * jcifs.internal.smb2.ServerMessageBlock2Request) */ @Override protected Smb2QueryInfoResponse createResponse(final CIFSContext tc, final ServerMessageBlock2Request<Smb2QueryInfoResponse> req) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java
} /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2Request#createResponse(jcifs.CIFSContext, * jcifs.internal.smb2.ServerMessageBlock2Request) */ @Override protected Smb2ChangeNotifyResponse createResponse(final CIFSContext tc, final ServerMessageBlock2Request<Smb2ChangeNotifyResponse> req) { return new Smb2ChangeNotifyResponse(tc.getConfig());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/Smb2EchoRequestTest.java
import org.junit.jupiter.api.Test; import org.mockito.Mock; import org.mockito.MockitoAnnotations; import jcifs.CIFSContext; import jcifs.Configuration; import jcifs.internal.util.SMBUtil; class Smb2EchoRequestTest { @Mock private Configuration mockConfig; @Mock private CIFSContext mockContext; private Smb2EchoRequest echoRequest; @BeforeEach void setUp() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/test/java/jcifs/SIDTest.java
} /** * Test the resolve method. * * @throws IOException if an I/O error occurs */ @Test void testResolve() throws IOException { CIFSContext mockContext = mock(CIFSContext.class); SidResolver mockResolver = mock(SidResolver.class); when(mockContext.getSIDResolver()).thenReturn(mockResolver); SID sid = new SID(adminSidString);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/ServerMessageBlock2Request.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb2; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import jcifs.CIFSContext; import jcifs.Configuration; import jcifs.internal.CommonServerMessageBlockRequest; import jcifs.internal.CommonServerMessageBlockResponse; import jcifs.internal.Request; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Mon Aug 25 14:34:10 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbTransportInternal.java
* @return session */ SmbSession getSmbSession(CIFSContext ctx); /** * Gets or creates an SMB session for the specified target. * * @param tf the CIFS context * @param targetHost the target host name * @param targetDomain the target domain * @return session */ SmbSession getSmbSession(CIFSContext tf, String targetHost, String targetDomain); /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/MultiChannelManager.java
// Use default local port (0 means system assigns) int localPort = 0; // Get CIFSContext from configuration - this is a simplified approach // In a real implementation, this should be passed from the session context jcifs.CIFSContext context = createDefaultContext(); // Create transport with multi-channel specific settings
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 20.5K bytes - Viewed (0)