Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for assertive (0.08 seconds)

  1. src/main/webapp/js/admin/adminlte.min.js

    s:null},kt=function(){function e(e,t){this._config=t,this._prepareContainer(),n.default("body").trigger(n.default.Event("init.lte.toasts"))}var t=e.prototype;return t.create=function(){var e=n.default('<div class="toast" role="alert" aria-live="assertive" aria-atomic="true"/>');e.data("autohide",this._config.autohide),e.data("animation",this._config.fade),this._config.class&&e.addClass(this._config.class),this._config.delay&&500!=this._config.delay&&e.data("delay",this._config.delay);var t=n.default('<div...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 45.3K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

        }
    
        @Test
        public void test_constructorWithThrowableCause_AssertionError() {
            // Test with AssertionError as cause
            String message = "SSO login assertion violation";
            AssertionError error = new AssertionError("Security assertion failed");
            SsoLoginException exception = new SsoLoginException(message, error);
    
            assertEquals(message, exception.getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 14.7K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/SsoProcessExceptionTest.java

            }
        }
    
        @Test
        public void test_throwAndCatchWithCause() {
            // Test throwing and catching the exception with cause
            String expectedMessage = "SAML assertion validation failed";
            Exception expectedCause = new IllegalStateException("Invalid SAML response");
    
            try {
                throw new SsoProcessException(expectedMessage, expectedCause);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 13.8K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/ThumbnailGenerationExceptionTest.java

            assertEquals(error, exception.getCause());
        }
    
        @Test
        public void test_constructorWithThrowableCause_AssertionError() {
            // Test with AssertionError as cause
            String message = "Assertion failed during thumbnail generation";
            AssertionError error = new AssertionError("Unexpected state");
            ThumbnailGenerationException exception = new ThumbnailGenerationException(message, error);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 10.3K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

        }
    
        @Test
        public void test_constructorWithThrowableCause_AssertionError() {
            // Test with AssertionError
            String url = "http://example.com/invalid-state";
            String message = "Assertion failed during data store access";
            AssertionError error = new AssertionError("Data integrity check failed");
    
            DataStoreCrawlingException exception = new DataStoreCrawlingException(url, message, error, false);
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 16.6K bytes
    - Click Count (0)
  6. build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBrokenInternalLinks.java

                    fw.println(message);
                }
            } catch (IOException e) {
                throw UncheckedException.throwAsUncheckedException(e);
            }
            throw new GradleException("Documentation assertion failed: found invalid internal links. See " + new org.gradle.internal.logging.ConsoleRenderer().asClickableFileUrl(reportFile));
        }
    
        private void writeHeader(PrintWriter fw) {
            fw.println("# Valid links are:");
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 12 23:22:57 GMT 2026
    - 12.8K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/sso/saml/SamlAuthenticatorTest.java

            Map<String, Object> defaultSettings = createDefaultSettings();
            String supportEmail = (String) defaultSettings.get("onelogin.saml2.contacts.support.email_address");
    
            // The critical assertion: must NOT contain double @
            assertFalse("Support email must not contain @@", supportEmail.contains("@@"));
    
            // And must be the correct value
            assertEquals("******@****.***", supportEmail);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 18.4K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/sso/saml/SamlAuthenticator.java

     * </pre>
     *
     * <h3>Option 2: Set individual SP URLs</h3>
     * <pre>
     * # SP Entity ID (Audience URI in IdP)
     * saml.sp.entityid=https://your-fess-server.example.com/sso/metadata
     *
     * # Assertion Consumer Service URL
     * saml.sp.assertion_consumer_service.url=https://your-fess-server.example.com/sso/
     *
     * # Single Logout Service URL
     * saml.sp.single_logout_service.url=https://your-fess-server.example.com/sso/logout
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Jan 02 03:13:33 GMT 2026
    - 20.2K bytes
    - Click Count (3)
Back to Top