Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 91 - 100 of 139 for extentions (0.06 seconds)

  1. dbflute_fess/_readme.txt

    The directories are for DBFlute tasks:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    dfprop     : Directory for DBFlute properties
    extlib     : Directory for Directory for library extension
    log        : Directory for log files of DBFlute tasks
    output/doc : Directory for auto-generated documents
    playsql    : Directory for ReplaceSchema task
    schema     : Directory for files of schema info
    - - - - - - - - - -/
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.5K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java

                    out.write(in);
                }
            });
        }
    
        /**
         * Determines the MIME type of an image file based on its file extension.
         *
         * @param imageFile the image file
         * @return the MIME type string
         */
        protected String getImageMimeType(final File imageFile) {
            final String path = imageFile.getAbsolutePath();
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  3. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/NullabilityBreakingChangesRule.groovy

                handleAnnotation(descriptor)
                return null
            }
    
            @Override
            MethodVisitor visitMethod(int access, String name, String methodDescriptor, String signature, String[] exceptions) {
                if (behaviorName == name && methodDescriptor == behavior.getSignature()) {
                    return new MethodVisitor(AsmConstants.ASM_LEVEL) {
    
                        @Override
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Oct 27 09:26:32 GMT 2025
    - 15.4K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/exception/DataStoreCrawlingExceptionTest.java

            assertEquals(longMessage, exception.getMessage());
            assertFalse(exception.aborted());
        }
    
        @Test
        public void test_constructor_withNestedExceptions() {
            // Test with nested exceptions
            String url = "http://example.com/test";
            String message = "Outer error message";
            Exception innerCause = new IllegalArgumentException("Inner cause");
    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)
  5. src/test/java/org/codelibs/fess/dict/protwords/ProtwordsFileTest.java

                    try {
                        updater.close();
                    } catch (Exception e) {
                        // Ignore cleanup exceptions in test
                    }
                }
            }
    
            // The ProtwordsUpdater constructor wraps exceptions in DictionaryException
            // with message "Failed to write a userDict file." - this is covered by
            // the constructor's exception handling implementation
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 21.2K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/crawler/helper/FessMimeTypeHelperTest.java

                    return ".sql=text/x-sql";
                }
            });
    
            mimeTypeHelper.init();
    
            // Filename with path should still have extension extracted correctly
            try (InputStream is = new ByteArrayInputStream(SQL_REM_CONTENT.getBytes(StandardCharsets.UTF_8))) {
                assertEquals("text/x-sql", mimeTypeHelper.getContentType(is, "/path/to/script.sql"));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 24 09:06:33 GMT 2026
    - 12.1K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/helper/MarkdownRendererTest.java

            assertFalse(result.contains(""));
        }
    
        @Test
        public void test_render_strikethrough() {
            // Note: This depends on whether the extension is enabled
            String result = markdownRenderer.render("~~strikethrough~~");
            // Just verify it doesn't break
            assertNotNull(result);
        }
    
        @Test
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  8. build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt

            Without this, daemon may keep writing to project dir after the test finishes, resulting in errors like:
    
            org.junit.platform.commons.JUnitException: Failed to close extension context
    	        at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    	        at java.base/java.util.ArrayList.forEach(ArrayList.java:1511)
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Feb 10 00:16:44 GMT 2026
    - 11.6K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/exception/SsoLoginExceptionTest.java

            assertNull(exception.getCause());
        }
    
        @Test
        public void test_constructorWithThrowableCause_ChainedErrorsAndExceptions() {
            // Test with chain containing both Errors and Exceptions
            String message = "SSO login complex error chain";
            IllegalStateException innerException = new IllegalStateException("Bad state");
    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)
  10. src/main/java/org/codelibs/fess/util/LogNotificationAppender.java

         * Constructs a new LogNotificationAppender.
         *
         * @param name the appender name
         * @param filter the filter to apply
         * @param layout the layout to use
         * @param ignoreExceptions whether to ignore exceptions
         * @param properties the appender properties
         * @param minLevel the minimum log level to capture
         */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 14:36:23 GMT 2026
    - 6K bytes
    - Click Count (0)