- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 1,246 for Configuration (0.06 sec)
-
src/main/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponse.java
/** * Constructs a SMB2 query directory response with the specified configuration and expected information class * * @param config * the configuration to use for this response * @param expectInfoClass * the expected file information class in the response */ public Smb2QueryDirectoryResponse(final Configuration config, final byte expectInfoClass) { super(config);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.1K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/NetServerEnum2Test.java
import org.mockito.MockitoAnnotations; import jcifs.Configuration; import jcifs.config.BaseConfiguration; import jcifs.internal.smb1.trans.SmbComTransaction; import jcifs.internal.util.SMBUtil; /** * Test class for NetServerEnum2 */ class NetServerEnum2Test { @Mock private Configuration mockConfig; private NetServerEnum2 netServerEnum2; private Configuration realConfig; @BeforeEach
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.7K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionImplSecurityTest.java
import org.mockito.Mockito; import jcifs.CIFSContext; import jcifs.Configuration; import jcifs.Credentials; /** * Security-focused test cases for SmbSessionImpl to verify race condition fixes. */ public class SmbSessionImplSecurityTest { private CIFSContext mockContext; private SmbTransportImpl mockTransport; private Configuration mockConfig; private Credentials mockCredentials;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.internal.smb1.com; import java.security.GeneralSecurityException; import jcifs.CIFSContext; import jcifs.Configuration; import jcifs.SmbConstants; import jcifs.internal.smb1.AndXServerMessageBlock; import jcifs.internal.smb1.ServerMessageBlock; import jcifs.internal.util.SMBUtil; import jcifs.smb.NtlmPasswordAuthenticator;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/ServerMessageBlock.java
* Creates a new SMB message with default command. * * @param config the configuration to use */ protected ServerMessageBlock(final Configuration config) { this(config, (byte) 0); } /** * Creates a new SMB message with the specified command. * * @param config the configuration to use * @param command the SMB command code */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 38.9K bytes - Viewed (0) -
src/main/java/jcifs/netbios/NodeStatusRequest.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.netbios; import jcifs.Configuration; class NodeStatusRequest extends NameServicePacket { NodeStatusRequest(final Configuration cfg, final Name name) { super(cfg); this.questionName = name; this.questionType = NBSTAT; this.isRecurDesired = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 1.9K bytes - Viewed (0) -
compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/rootless.paramdoc.xml
<expressions> <expression> <syntax>localRepository</syntax> <configuration> <![CDATA[ Inside ~/.m2/settings.xml: <localRepository>/path/to/local/repository</localRepository> ]]></configuration> <description>The ArtifactRepository instance referencing the local artifact repository.</description> <cliOptions>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyResponseTest.java
class Smb2ChangeNotifyResponseTest extends BaseTest { private Configuration mockConfig; private Smb2ChangeNotifyResponse response; @BeforeEach void setUp() { mockConfig = mock(Configuration.class); response = new Smb2ChangeNotifyResponse(mockConfig); } @Test @DisplayName("Should create response with configuration") void testConstructorWithConfiguration() { // Given & When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/Smb2EchoResponse.java
* * @author mbechler */ public class Smb2EchoResponse extends ServerMessageBlock2Response { /** * Constructs an SMB2 echo response * @param config the client configuration */ public Smb2EchoResponse(final Configuration config) { super(config); } /** * {@inheritDoc} * * @see jcifs.internal.smb2.ServerMessageBlock2#writeBytesWireFormat(byte[], int) */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.1K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/trans/nt/SmbComNtTransaction.java
private final int function; /** * Constructs an NT transaction command. * * @param config the configuration * @param function the NT transaction function code */ protected SmbComNtTransaction(final Configuration config, final int function) { super(config, SMB_COM_NT_TRANSACT, (byte) 0); this.function = function;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.5K bytes - Viewed (0)