- Sort Score
- Num 10 results
- Language All
Results 71 - 80 of 164 for compiled (0.09 seconds)
-
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
JobNotFoundException exception = new JobNotFoundException("test"); // Simply verify the exception can be created without issues // The serialVersionUID is compile-time checked assertNotNull(exception); } @Test public void test_stackTrace() { // Test that stack trace is properly captured
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 9.2K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleUserManualPlugin.java
attributes.put("jdkDownloadUrl", "https://jdk.java.net/"); // TODO: This is coupled to extension.getJavadocs().getJavaApi() attributes.put("javadocReferenceUrl", "https://docs.oracle.com/javase/8/docs/technotes/tools/windows/javadoc.html"); // TODO: This is coupled to extension.getJavadocs().getJavaApi() attributes.put("minJdkVersion", "17");
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 22:33:18 GMT 2026 - 17.8K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java
/** * Converts raw javadoc comments into docbook. */ public class JavadocConverter { private static final Pattern HEADER_PATTERN = Pattern.compile("h(\\d)", Pattern.CASE_INSENSITIVE); private static final Pattern ACCESSOR_COMMENT_PATTERN = Pattern.compile("(?:returns|sets)\\s+(the|whether)\\s+", Pattern.CASE_INSENSITIVE); private final Document document; private final JavadocLinkConverter linkConverter;Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed May 21 06:20:45 GMT 2025 - 29.3K bytes - Click Count (0) -
architecture/build-execution-model.md
5. The daemon sends the result back. For some requests, this might be a simple success/failure result, and for others this might also include a more complex object, such as a tooling API model.
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Jun 12 09:50:57 GMT 2025 - 907 bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
assertTrue(result.contains("Data Config Id: data1")); } // Test getRunningJobCount method @Test public void test_getRunningJobCount() { // Skip this test - requires complex DB setup if (true) return; // Setup test with mock ScheduledJobBhv final AtomicInteger callCount = new AtomicInteger(0);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 25K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/CrawlerLogHelperTest.java
} @Test public void test_log_method_exists() { // Test that the log method exists and can be called // We can't easily test the actual functionality without complex mocking // but we can verify the class structure assertNotNull(crawlerLogHelper); assertTrue(CrawlerLogHelper.class.getSuperclass().getSimpleName().contains("LogHelper")); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 1.5K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/FindBadMultiLangSnippets.java
} } throw new GradleException(sb.toString()); } } private static final java.util.regex.Pattern SOURCE_LANG_PATTERN = java.util.regex.Pattern.compile( "^\\[\\s*source(?:%[\\w-]+)*\\s*,\\s*([\\w.+-]+)\\s*(?:,.*)?\\]$", java.util.regex.Pattern.CASE_INSENSITIVE );Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Aug 29 10:12:17 GMT 2025 - 7.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/dict/DictionaryCreator.java
* * @param pattern the regular expression pattern to match file paths */ protected DictionaryCreator(final String pattern) { this.pattern = Pattern.compile(pattern); } /** * Creates a dictionary file for the given path and timestamp if it matches this creator's pattern. * * @param path the file path to create a dictionary file forCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java
final Pattern pattern; if (StringUtil.isBlank(getPluginVersionFilter())) { pattern = Pattern.compile("^" + Pattern.quote(ComponentUtil.getSystemHelper().getProductVersion()) + ".*"); } else { pattern = Pattern.compile(getPluginVersionFilter()); } return pattern.matcher(version).matches(); } String getQueryHighlightBoundaryChars();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 02:24:08 GMT 2026 - 92.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/sso/entraid/EntraIdAuthenticatorTest.java
} @Test public void test_setUseV2Endpoint() { EntraIdAuthenticator authenticator = new EntraIdAuthenticator(); // Test parameter accepts final boolean (compile-time verification) authenticator.setUseV2Endpoint(true); authenticator.setUseV2Endpoint(false); // Verify method signature is correct assertTrue(true); } @TestCreated: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Jan 11 08:43:05 GMT 2026 - 19.3K bytes - Click Count (0)