Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 11 for assertive (0.07 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/main/webapp/js/admin/adminlte.min.js.map

    {\n  constructor(element, config) {\n    this._config = config\n    this._prepareContainer()\n\n    $('body').trigger($.Event(EVENT_INIT))\n  }\n\n  // Public\n\n  create() {\n    const toast = $('<div class=\"toast\" role=\"alert\" aria-live=\"assertive\" aria-atomic=\"true\"/>')\n\n    toast.data('autohide', this._config.autohide)\n    toast.data('animation', this._config.fade)\n\n    if (this._config.class) {\n      toast.addClass(this._config.class)\n    }\n\n    if (this._config.delay && this._config.delay...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 132.4K bytes
    - Click Count (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. src/test/java/org/codelibs/fess/helper/CoordinatorHelperTest.java

                }
            });
        }
    
        /**
         * Creates a CoordinatorHelper that captures request bodies sent via CurlHelper.
         * The mock CurlHelper records the last request path and body for assertion.
         */
        private CoordinatorHelper createCapturingHelper(final String testInstanceId, final AtomicReference<String> capturedPath,
                final AtomicReference<String> capturedBody, final CurlResponse mockResponse) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 58.6K bytes
    - Click Count (0)
Back to Top