Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 406 for authentication (0.05 sec)

  1. src/test/java/org/codelibs/fess/exception/SsoMessageExceptionTest.java

        }
    
        public void test_complexMessageCode() {
            // Setup - test with a complex message code that has parameters
            final String errorDetail = "Authentication failed";
            final VaMessenger<FessMessages> complexMessageCode =
                    messages -> messages.addErrorsFailedToProcessSsoRequest(UserMessages.GLOBAL_PROPERTY_KEY, errorDetail);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 10.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbTransportImpl.java

                    // Reset hash on error to maintain integrity
                    resetPreauthHash();
                    throw new CIFSException("Pre-authentication integrity hash update failed", e);
                }
            }
        }
    
        /**
         * Reset the pre-authentication integrity hash to initial state.
         * This should be called on negotiation failures or security errors.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 69.8K bytes
    - Viewed (0)
  3. src/test/java/jcifs/util/AuthenticationRateLimiterTest.java

        public void tearDown() {
            if (rateLimiter != null) {
                rateLimiter.close();
            }
        }
    
        @Test
        public void testNormalAuthentication() throws Exception {
            // Normal authentication should be allowed
            assertTrue(rateLimiter.checkAttempt("user1", "192.168.1.1"), "First attempt should be allowed");
    
            // Record success
            rateLimiter.recordSuccess("user1", "192.168.1.1");
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.8K bytes
    - Viewed (0)
  4. okhttp-logging-interceptor/src/test/java/okhttp3/logging/HttpLoggingInterceptorTest.kt

      }
    
      @Test
      fun preserveQueryParamsAfterRedacted() {
        url =
          server.url(
            """/api/login?
          |user=test_user&
          |authentication=basic&
          |password=confidential_password&
          |authentication=rather simple login method
            """.trimMargin(),
          )
        val networkInterceptor =
          HttpLoggingInterceptor(networkLogs).setLevel(
            Level.BASIC,
          )
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Thu Aug 21 14:27:04 UTC 2025
    - 37.5K bytes
    - Viewed (0)
  5. src/main/java/jcifs/pac/PacLogonInfo.java

    import java.io.IOException;
    import java.util.Date;
    
    import jcifs.smb.SID;
    
    /**
     * Contains user logon information from a PAC (Privilege Attribute Certificate).
     * This class parses and provides access to user authentication and authorization
     * data from Kerberos tickets, including user identity, group memberships, and
     * logon metadata.
     */
    public class PacLogonInfo {
    
        private Date logonTime;
        private Date logoffTime;
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 14.3K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.30.md

    - JWT authenticator config set via the --authentication-config flag is now dynamically reloaded as the file changes on disk. ([#123525](https://github.com/kubernetes/kubernetes/pull/123525), [@enj](https://github.com/enj)) [SIG API Machinery, Auth and Testing]
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Wed Jun 18 18:59:10 UTC 2025
    - 398.1K bytes
    - Viewed (0)
  7. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealRoutePlanner.kt

       * This avoids sending potentially sensitive data like HTTP cookies to the proxy unencrypted.
       *
       * In order to support preemptive authentication we pass a fake "Auth Failed" response to the
       * authenticator. This gives the authenticator the option to customize the CONNECT request. It can
       * decline to do so by returning null, in which case OkHttp will use it as-is.
       */
      @Throws(IOException::class)
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed May 28 23:28:25 UTC 2025
    - 12K bytes
    - Viewed (0)
  8. docs/changelogs/changelog_1x.md

     * Fix: Drop `Content-Length` header when redirected from POST to GET.
     * Fix: Correctly read cached header entries with malformed header names.
     * Fix: Do not directly support any authentication schemes other than "Basic".
     * Fix: Respect read timeouts on recycled connections.
     * Fix: Transmit multiple cookie values as a single header with delimiter.
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  9. docs/features/events.md

    A single HTTP call may require follow-up requests to be made to handle authentication challenges, redirects, and HTTP-layer timeouts. In such cases multiple connections, requests, and responses may be attempted. Follow-ups are another reason a single call may trigger multiple events of the same type.
    
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sun Feb 06 02:19:09 UTC 2022
    - 7.7K bytes
    - Viewed (0)
  10. src/test/java/jcifs/config/BaseConfigurationTest.java

            assertEquals(300L, config.getDfsTtl());
            assertFalse(config.isDfsConvertToFQDN());
            assertNull(config.getLogonShare());
        }
    
        @Test
        @DisplayName("Test authentication configuration getters")
        void testAuthenticationConfigurationGetters() {
            assertNull(config.getDefaultDomain());
            assertNull(config.getDefaultUsername());
            assertNull(config.getDefaultPassword());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 20.6K bytes
    - Viewed (0)
Back to top