- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 67 for guess (0.02 sec)
-
src/test/java/jcifs/tests/SessionTest.java
CIFSContext ctx = getContext(); ctx = withConfig(ctx, new DelegatingConfiguration(ctx.getConfig()) { @Override public String getGuestUsername () { return "jcifs-guest"; } }).withGuestCrendentials(); try ( SmbResource f = new SmbFile(getTestShareGuestURL(), ctx) ) { checkConnection(f); } catch ( SmbAuthException e ) {
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Thu Jan 05 13:09:03 UTC 2023 - 15.8K bytes - Viewed (0) -
src/main/java/jcifs/Credentials.java
*/ String getUserDomain (); /** * @return whether these are anonymous credentials */ boolean isAnonymous (); /** * @return whether these are guest credentials */ boolean isGuest ();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/tests/TestProperties.java
static final String TEST_SHARE_URL_DFSROOT = "test.share.dfsroot.url"; static final String TEST_SHARE_MAIN = "test.share.main"; static final String TEST_SHARE_GUEST = "test.share.guest"; static final String TEST_USER_NAME = "test.user.name"; static final String TEST_USER_PASSWORD = "test.user.password"; static final String TEST_USER_DOMAIN = "test.user.domain";
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Feb 29 16:38:58 UTC 2020 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmPasswordAuthentication.java
super( userInfo, tc.getConfig().getDefaultDomain(), tc.getConfig().getDefaultUsername() != null ? tc.getConfig().getDefaultUsername() : "GUEST", tc.getConfig().getDefaultPassword() != null ? tc.getConfig().getDefaultPassword() : ""); this.context = tc; } /** * Create an <tt>NtlmPasswordAuthentication</tt> object from a
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/context/AbstractCIFSContext.java
* @see jcifs.CIFSContext#withGuestCrendentials() */ @Override public CIFSContext withGuestCrendentials () { return withCredentials(new NtlmPasswordAuthenticator(null, null, null, AuthenticationType.GUEST)); } /** * {@inheritDoc} * * @see jcifs.CIFSContext#getCredentials() */ @Override public Credentials getCredentials () { return getDefaultCredentials();
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Tue Jul 07 10:50:16 UTC 2020 - 3.7K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/index.jsp
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 26 01:07:52 UTC 2024 - 6.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/CrawlingInfoHelperTest.java
"e6cc9514d288fff4553187be8800b54efe3229054b1acbf64d3132e1982162576113939c790e8d6f56e2fa0d6655ba520c44ad0b71adc4061cf6b42e975b4904", crawlingInfoHelper.generateId(dataMap)); roleTypeList.add("guest"); assertEquals( "dce588fe68813d59cce9a5b087f81d63406123492cb120027ca9ed765ba6501f7b07bb36569afd2fb7b10ac53c4a9a3764b0d7619a8059c071b1a20f8ae42fa3", crawlingInfoHelper.generateId(dataMap));
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 8.5K bytes - Viewed (0) -
src/main/java/jcifs/CIFSContext.java
/** * @return a child context using anonymous credentials */ CIFSContext withAnonymousCredentials (); /** * * @return a child context using guest credentials */ CIFSContext withGuestCrendentials (); /** * * @param creds * @return a child context using using the given credentials */
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 3.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/session/Smb2SessionSetupResponse.java
bufferIndex += pad; bufferIndex += securityBufferLength; return bufferIndex - start; } /** * @return whether the session is either anonymous or a guest session */ public boolean isLoggedInAsGuest () { return ( this.sessionFlags & ( SMB2_SESSION_FLAGS_IS_GUEST | SMB2_SESSION_FLAGS_IS_NULL ) ) != 0; } /**
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/NtlmPasswordAuthentication.java
} static final NtlmPasswordAuthentication NULL = new NtlmPasswordAuthentication( "", "", "" ); static final NtlmPasswordAuthentication GUEST = new NtlmPasswordAuthentication( "?", "GUEST", "" ); static final NtlmPasswordAuthentication DEFAULT = new NtlmPasswordAuthentication( null ); String domain; String username; String password;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 21:10:40 UTC 2019 - 22.5K bytes - Viewed (0)