- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 207 for mypass (0.73 sec)
-
src/main/java/jcifs/smb1/smb1/SmbFile.java
* * <tr><td ><code>smb1://users-nyc;miallen:mypass@angus/tmp/</code></td><td> * This URL references a share called <code>tmp</code> on the server * <code>angus</code> as user <code>miallen</code> who's password is * <code>mypass</code>. * </td></tr> * * <tr><td > * <code>smb1://Administrator:P%40ss@msmith1/c/WINDOWS/Desktop/foo.txt</code></td><td> * A relativly sophisticated example that references a file
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
* <td ><code>smb://users-nyc;miallen:mypass@angus/tmp/</code></td> * <td> * This URL references a share called <code>tmp</code> on the server * <code>angus</code> as user <code>miallen</code> who's password is * <code>mypass</code>. * </td> * </tr> * * <tr> * <td > * <code>smb://Administrator:P%40ss@msmith1/c/WINDOWS/Desktop/foo.txt</code></td> * <td> * A relatively sophisticated example that references a file
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistantTest.java
assertSame(names1, names2); // Test assistByPassInvokeNames consistency String[] bypass1 = invokerAssistant.assistByPassInvokeNames(); String[] bypass2 = invokerAssistant.assistByPassInvokeNames(); assertSame(bypass1, bypass2); // Test assistBehaviorExceptionThrower returns new instance each time
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 10.6K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/SMB1SigningDigest.java
this(macSigningKey, bypass, 0); } /** * Constructs a signing digest with bypass option and initial sequence number * * @param macSigningKey * The MAC signing key used for generating signatures * @param bypass * Whether to bypass signature verification * @param initialSequence * The initial sequence number for signing
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SigningDigest.java
private MessageDigest digest; private byte[] macSigningKey; private boolean bypass = false; private int updates; private int signSequence; /** * Constructs a new signing digest with the specified MAC signing key. * * @param macSigningKey the MAC signing key for message authentication * @param bypass whether to bypass MAC signing * @throws SmbException if MD5 algorithm is not available */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/common/ImplementedInvokerAssistant.java
*/ @Override public String[] assistClientInvokeNames() { return DEFAULT_CLIENT_INVOKE_NAMES; } /** * Assists bypass invoke names for DBFlute behavior invocation. * * @return array of default bypass invoke names */ @Override public String[] assistByPassInvokeNames() { return DEFAULT_BYPASS_INVOKE_NAMES; } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.1K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbFileFilterTest.java
* tests focus on the contract that implementations should honour and the * interaction with {@link SmbFile} instances. The tests make heavy use of * Mockito to guarantee that implementation classes do not inadvertently * bypass the filter logic. */ public class SmbFileFilterTest { /** * A minimal implementation that accepts every {@link SmbFile}. */ private final SmbFileFilter ALWAYSACTIVE = new SmbFileFilter() {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.2K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/SMB1SigningDigestTest.java
@Test @DisplayName("Test constructor with MAC signing key and bypass flag") void testConstructorWithBypass() { SMB1SigningDigest digest = new SMB1SigningDigest(testMacSigningKey, true); assertNotNull(digest); assertTrue(digest.toString().contains("MacSigningKey=")); } @Test @DisplayName("Test constructor with MAC signing key, bypass flag and initial sequence")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.1K bytes - Viewed (0) -
compat/maven-compat/src/test/java/org/apache/maven/project/EmptyLifecycleExecutor.java
import org.apache.maven.model.Plugin; import org.apache.maven.model.PluginExecution; import org.apache.maven.plugin.MojoExecution; /** * A stub implementation that assumes an empty lifecycle to bypass interaction with the plugin manager and to avoid * plugin artifact resolution from repositories. * */ @Deprecated public class EmptyLifecycleExecutor implements LifecycleExecutor { @Override
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 3.6K bytes - Viewed (0) -
src/test/java/jcifs/pac/kerberos/KerberosPacAuthDataTest.java
KerberosKey kdcKey = new KerberosKey(null, keyBytes, PacSignature.HMAC_SHA1_96_AES256, 1); keys.put(PacSignature.ETYPE_AES256_CTS_HMAC_SHA1_96, kdcKey); // Mock Pac construction to bypass complex validation try (MockedConstruction<Pac> pacMock = Mockito.mockConstruction(Pac.class, (mock, context) -> { // Setup mock behavior PacLogonInfo mockLogonInfo = Mockito.mock(PacLogonInfo.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 6.3K bytes - Viewed (0)