- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 98 for anonymous (0.15 sec)
-
src/main/java/jcifs/smb/Kerb5Authenticator.java
this.contextLifetime = time; } /** * {@inheritDoc} * * @see jcifs.smb.CredentialsInternal#isAnonymous() */ @Override public boolean isAnonymous() { return this.getSubject() == null && super.isAnonymous(); } /** * {@inheritDoc} *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 13.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/synonym/CreateForm.java
@Required public String dictId; /** The CRUD operation mode for form processing */ @ValidateTypeFailure public Integer crudMode; /** The input terms that should be considered synonymous */ @Required @Size(max = 1000) public String inputs; /** The output synonyms that should be matched for the input terms */ @Required @Size(max = 1000) public String outputs;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndX.java
final ServerData server = negotiated.getServerData(); if (server.security == SmbConstants.SECURITY_USER) { if (cred instanceof final NtlmPasswordAuthenticator a) { if (a.isAnonymous()) { this.lmHash = new byte[0]; this.ntHash = new byte[0]; this.capabilities &= ~SmbConstants.CAP_EXTENDED_SECURITY; if (a.isGuest()) {
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/smb/JAASAuthenticator.java
this.configuration = new StaticJAASConfiguration(properties); } /** * {@inheritDoc} * * @see jcifs.smb.Kerb5Authenticator#isAnonymous() */ @Override public boolean isAnonymous() { return false; } /** * {@inheritDoc} * * @see jcifs.smb.NtlmPasswordAuthenticator#isGuest() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 8.3K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.26.md
- Bump runc to v1.1.4. ([#113719](https://github.com/kubernetes/kubernetes/pull/113719), [@pacoxu](https://github.com/pacoxu)) - Callers using `DelegatingAuthenticationOptions` can now use `DisableAnonymous` to disable Anonymous authentication. ([#112181](https://github.com/kubernetes/kubernetes/pull/112181), [@xueqzhan](https://github.com/xueqzhan))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Mar 14 16:24:51 UTC 2024 - 425.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.13.md
* fix Azure Container Registry anonymous repo image pull error ([#74715](https://github.com/kubernetes/kubernetes/pull/74715), [@andyzhangx](https://github.com/andyzhangx))
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 273.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/NtlmContext.java
this.ntlmsspFlags = this.ntlmsspFlags | NtlmFlags.NTLMSSP_REQUEST_TARGET | NtlmFlags.NTLMSSP_NEGOTIATE_EXTENDED_SESSIONSECURITY | NtlmFlags.NTLMSSP_NEGOTIATE_128; if (!auth.isAnonymous()) { this.ntlmsspFlags |= NtlmFlags.NTLMSSP_NEGOTIATE_SIGN | NtlmFlags.NTLMSSP_NEGOTIATE_ALWAYS_SIGN | NtlmFlags.NTLMSSP_NEGOTIATE_KEY_EXCH; } else if (auth.isGuest()) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 17.3K bytes - Viewed (0) -
src/main/java/jcifs/context/AbstractCIFSContext.java
* * @see jcifs.CIFSContext#hasDefaultCredentials() */ @Override public boolean hasDefaultCredentials() { return this.getDefaultCredentials() != null && !this.getDefaultCredentials().isAnonymous(); } /** * Gets the default credentials for this context. * * @return the default credentials for this context */ protected abstract Credentials getDefaultCredentials();
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 4K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXTest.java
} @Test void anonymousGuestCredentials() throws Exception { setupNegotiateStubs(); NtlmPasswordAuthenticator auth = mock(NtlmPasswordAuthenticator.class); when(auth.isAnonymous()).thenReturn(true); when(auth.isGuest()).thenReturn(true); when(auth.getUsername()).thenReturn("guest"); when(auth.getUserDomain()).thenReturn("dom"); // Construct
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.10.md
* VM creation, but the usage of the sync.RWMutex type is incorrect, * plus is placed in a defer call so the locking is effectively * nonexistent. This patch adds an anonymous function call inside * the loop to correctly handle acquiring the write lock with deferred * unlock to run at that function's completion, following the normal * golang lock/deferred-unlock pattern.
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu May 05 13:44:43 UTC 2022 - 341.8K bytes - Viewed (0)