- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 250 for compiler (0.04 sec)
-
.gitignore
# JUnit test output from ginkgo e2e tests /junit*.xml # Mercurial files **/.hg **/.hg* # Vagrant .vagrant network_closure.sh # Local cluster env variables /cluster/env.sh # Compiled binaries in third_party /third_party/pkg # Also ignore etcd installed by hack/install-etcd.sh /third_party/etcd* /default.etcd # Also ignore protoc installed by hack/install-protoc.sh /third_party/protoc*
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Thu Feb 29 08:22:06 UTC 2024 - 2.1K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CustomSizeValidatorTest.java
} catch (final Exception e) { fail("Initialize should not throw exception with valid annotation: " + e.getMessage()); } } // Test parameter validation without relying on complex configuration public void test_validateParameters_basic() { // Test that parameter validation can be performed final CustomSize validAnnotation = createBasicAnnotation(); try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 5.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
} searchRenderData.setDocumentItems(documents); searchRenderData.setSearchQuery("complex search query"); searchRenderData.setQueryTime(150L); searchRenderData.setExecTime("0.15 sec"); searchRenderData.setRequestedTime(System.currentTimeMillis()); searchRenderData.setQueryId("complex-query-id"); searchRenderData.setAppendHighlightParams("&hl=true&hl.fl=title,content");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/ViewHelper.java
/** Pattern for matching local file paths */ protected static final Pattern LOCAL_PATH_PATTERN = Pattern.compile("^file:/+[a-zA-Z]:"); /** Pattern for matching shared folder paths */ protected static final Pattern SHARED_FOLDER_PATTERN = Pattern.compile("^file:/+[^/]\\."); /** Ellipsis string for text truncation */ protected static final String ELLIPSIS = "...";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 52.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/JvmUtil.java
/** * Utility class for JVM-related operations. * This class provides methods for handling JVM options and version detection. */ public final class JvmUtil { private static final Pattern VERSION_PREFIX_PATTERN = Pattern.compile("([0-9]+)(\\-?):(.*)"); private JvmUtil() { // nothing } /** * Filters JVM options based on the current Java version.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.9K bytes - Viewed (0) -
okhttp/src/androidMain/kotlin/okhttp3/internal/platform/android/StandardAndroidSocketAdapter.kt
* * It's assumed to always be present with known class names on Android devices, so we build * optimistically via [buildIfSupported]. But it also doesn't assume a compile time API. */ class StandardAndroidSocketAdapter( sslSocketClass: Class<in SSLSocket>, private val sslSocketFactoryClass: Class<in SSLSocketFactory>, private val paramClass: Class<*>,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.7K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java
WebResourceRoot.class.isAssignableFrom(FessWebResourceRoot.class)); } public void test_classStructure() { // Basic class structure tests that don't require complex mocking assertEquals("FessWebResourceRoot should be in correct package", "org.codelibs.fess.tomcat.webresources.FessWebResourceRoot", FessWebResourceRoot.class.getName());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/ScheduledJobExceptionTest.java
// Test that the exception is serializable ScheduledJobException exception = new ScheduledJobException("Serialization test"); // Verify that the exception has serialVersionUID field (won't compile if not present) assertTrue(exception instanceof java.io.Serializable); } public void test_longMessage() { // Test with very long message StringBuilder sb = new StringBuilder();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6.8K bytes - Viewed (0) -
android/guava/src/com/google/common/io/PatternFilenameFilter.java
* @param patternStr the pattern string on which to filter file names * @throws PatternSyntaxException if pattern compilation fails (runtime) */ public PatternFilenameFilter(String patternStr) { this(Pattern.compile(patternStr)); } /** * Constructs a pattern file name filter object. * * @param pattern the pattern on which to filter file names */ public PatternFilenameFilter(Pattern pattern) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/LabelTypeHelper.java
if (StringUtil.isNotBlank(normalizePath)) { buf.append(normalizePath); } } this.includedPaths = Pattern.compile(buf.toString()); } if (StringUtil.isNotBlank(excludedPaths)) { final StringBuilder buf = new StringBuilder(100); char split = 0;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 14.8K bytes - Viewed (0)