Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 50 for TOP (0.01 seconds)

  1. src/main/webapp/css/admin/style.css

    .top5 {
    	margin-top: 0.5em;
    }
    
    .top10 {
    	margin-top: 1.0em;
    }
    
    .top15 {
    	margin-top: 1.5em;
    }
    
    .top20 {
    	margin-top: 2.0em;
    }
    
    .top25 {
    	margin-top: 2.5em;
    }
    
    .top30 {
    	margin-top: 3.0em;
    }
    
    .container .text-muted {
    	margin: 20px 0;
    }
    
    .notification {
    	text-align: center;
    }
    
    ul.has-error {
    	color: #dd4b39 !important;
    	list-style-type: none;
    	padding: 0;
    }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 1.3K bytes
    - Click Count (0)
  2. src/main/webapp/css/chat.css

    }
    
    /* ============================================
       Sources section (Card style)
       ============================================ */
    .message-sources {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid #ebecf0;
    }
    
    .message-sources h6 {
        font-size: 0.75rem;
        color: #6b778c;
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/exception/ScriptEngineExceptionTest.java

            Exception intermediateCause = new IllegalStateException("Intermediate cause", rootCause);
            ScriptEngineException exception = new ScriptEngineException("Top level error", intermediateCause);
    
            assertEquals("Top level error", exception.getMessage());
            assertEquals(intermediateCause, exception.getCause());
            assertEquals("Intermediate cause", exception.getCause().getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.7K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/FessSystemExceptionTest.java

            RuntimeException middleCause = new RuntimeException("Middle cause", rootCause);
            FessSystemException topException = new FessSystemException("Top level", middleCause);
    
            assertEquals("Top level", topException.getMessage());
            assertEquals(middleCause, topException.getCause());
            assertEquals(rootCause, topException.getCause().getCause());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 7.6K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java

            Throwable middleCause = new IllegalStateException("Middle cause", rootCause);
            ScheduledJobException exception = new ScheduledJobException("Top level error", middleCause);
    
            assertEquals("Top level error", exception.getMessage());
            assertEquals(middleCause, exception.getCause());
            assertEquals("Middle cause", exception.getCause().getMessage());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 6.9K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            Exception level1 = new IOException("Level 1 error", level2);
            SsoLoginException exception = new SsoLoginException("Top level SSO error", level1);
    
            assertEquals("Top level SSO error", exception.getMessage());
    
            // Verify the exception chain
            Throwable cause1 = exception.getCause();
            assertNotNull(cause1);
    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)
  7. src/test/java/org/codelibs/fess/exception/SearchQueryExceptionTest.java

            // Test nested exception chain
            Exception rootCause = new IllegalStateException("Root cause");
            Exception middleCause = new RuntimeException("Middle cause", rootCause);
            String message = "Top level error";
    
            SearchQueryException exception = new SearchQueryException(message, middleCause);
    
            assertEquals(message, exception.getMessage());
            assertEquals(middleCause, exception.getCause());
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 10K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/llm/LlmExceptionTest.java

            final RuntimeException middleCause = new RuntimeException("Middle error", rootCause);
            final LlmException exception = new LlmException("Top level error", middleCause);
    
            assertEquals("Top level error", exception.getMessage());
            assertSame(middleCause, exception.getCause());
            assertSame(rootCause, exception.getCause().getCause());
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 05 04:19:06 GMT 2026
    - 5.7K bytes
    - Click Count (0)
  9. build-logic/documentation/src/main/groovy/gradlebuild/docs/ReleaseNotesTransformer.java

                    "             <div class=\"wistia_embed wistia_async_$2 seo=true videoFoam=true\" style=\"height:100%;position:relative;width:100%\"> \n" +
                    "              <div class=\"wistia_swatch\" style=\"height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;\"> \n" +
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Mar 03 01:59:51 GMT 2026
    - 11.3K bytes
    - Click Count (0)
  10. build-logic-settings/architecture-docs/src/main/kotlin/gradlebuild/GradleArchitecture.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package gradlebuild
    
    import org.gradle.api.initialization.Settings
    
    /**
     * Defines a top-level architecture module.
     */
    fun Settings.module(moduleName: String, moduleConfiguration: ArchitectureModuleBuilder.() -> Unit) {
        val module = ArchitectureModuleBuilder(moduleName, this)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jan 30 15:37:56 GMT 2026
    - 1.9K bytes
    - Click Count (0)
Back to Top