Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 1,629 for republic (0.1 seconds)

  1. build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts

    Justin Van Dort <******@****.***> 1739558135 -0500
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Oct 30 16:56:31 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  2. architecture/standards/0003-avoid-introducing-Groovy-types-to-public-api.md

    # ADR-0003 - Avoid introducing Groovy types to public API
    
    ## Status
    
    - ACCEPTED on 2024-01-12
    
    ## Context
    
    Gradle's public API requires equal access from all JVM-based languages.
    Kotlin, Groovy, Java, and other JVM-based languages should be able to use the Gradle API without relying on another language's standard library.
    
    Historically, Gradle has shipped with some Groovy types in very prominent APIs.
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/timer/HotThreadMonitorTargetTest.java

            }
        }
    
        @Test
        public void test_package_structure() {
            assertEquals("Should be in timer package", "org.codelibs.fess.timer", HotThreadMonitorTarget.class.getPackage().getName());
        }
    
        @Test
        public void test_class_is_public() {
            assertTrue("Class should be public", java.lang.reflect.Modifier.isPublic(HotThreadMonitorTarget.class.getModifiers()));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 4.3K bytes
    - Click Count (0)
  4. src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    import org.junit.jupiter.api.Test;
    import org.lastaflute.web.response.next.HtmlNext;
    
    public class FessHtmlPathTest extends UnitFessTestCase {
    
        @Test
        public void test_allPathsInitialized() throws Exception {
            // Get all public static final fields of HtmlNext type
            Field[] fields = FessHtmlPath.class.getDeclaredFields();
            for (Field field : fields) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 13.1K bytes
    - Click Count (0)
  5. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

         */
        @Test
        public void test_labelConstantsNamingConvention() throws Exception {
            Field[] fields = FessLabels.class.getDeclaredFields();
            Pattern labelPattern = Pattern.compile("^LABELS_[A-Za-z0-9_]+$");
    
            for (Field field : fields) {
                if (Modifier.isStatic(field.getModifiers()) && Modifier.isFinal(field.getModifiers()) && Modifier.isPublic(field.getModifiers())
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 14K bytes
    - Click Count (0)
  6. src/test/java/org/codelibs/fess/util/ThreadDumpUtilTest.java

                assertTrue("processThreadDump should be public", java.lang.reflect.Modifier.isPublic(processMethod.getModifiers()));
                assertEquals("processThreadDump should return void", void.class, processMethod.getReturnType());
    
            } catch (NoSuchMethodException e) {
                fail("All expected public methods should exist: " + e.getMessage());
            }
        }
    
        @Test
        public void test_utilityClass_pattern() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 15.6K bytes
    - Click Count (0)
  7. src/test/java/org/codelibs/fess/timer/SystemMonitorTargetTest.java

        }
    
        @Test
        public void test_package_structure() {
            assertEquals("Should be in timer package", "org.codelibs.fess.timer", SystemMonitorTarget.class.getPackage().getName());
        }
    
        @Test
        public void test_class_is_public() {
            assertTrue("Class should be public", java.lang.reflect.Modifier.isPublic(SystemMonitorTarget.class.getModifiers()));
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 9.2K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/tomcat/webresources/FessWebResourceRootTest.java

            assertFalse("FessWebResourceRoot should not be abstract",
                    java.lang.reflect.Modifier.isAbstract(FessWebResourceRoot.class.getModifiers()));
        }
    
        @Test
        public void test_constructorSignature() {
            // Verify constructor parameter types
            try {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 4.4K bytes
    - Click Count (0)
  9. src/test/java/org/codelibs/fess/util/SystemUtilTest.java

                // Check that it's static
                assertTrue("Method should be static", java.lang.reflect.Modifier.isStatic(method.getModifiers()));
    
                // Check that it's public
                assertTrue("Method should be public", java.lang.reflect.Modifier.isPublic(method.getModifiers()));
    
                // Check parameter count
                assertEquals("Method should have no parameters", 0, method.getParameterCount());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.1K bytes
    - Click Count (0)
  10. src/test/java/org/codelibs/fess/util/WebApiUtilTest.java

                assertTrue("validate should be public", java.lang.reflect.Modifier.isPublic(validateMethod.getModifiers()));
                assertEquals("validate should return void", void.class, validateMethod.getReturnType());
    
            } catch (NoSuchMethodException e) {
                fail("All expected public methods should exist: " + e.getMessage());
            }
        }
    
        @Test
        public void test_constant_WEB_API_EXCEPTION() {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Jan 11 08:43:05 GMT 2026
    - 17.4K bytes
    - Click Count (0)
Back to Top