- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 7,223 for Republic (0.09 seconds)
-
okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
gift // gifts : Binky Moon, LLC // https://www.iana.org/domains/root/db/gifts.html gifts // gives : Public Interest Registry // https://www.iana.org/domains/root/db/gives.html gives // giving : Public Interest Registry // https://www.iana.org/domains/root/db/giving.html giving // glass : Binky Moon, LLC // https://www.iana.org/domains/root/db/glass.html
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Fri Dec 27 13:39:56 GMT 2024 - 309.7K bytes - Click Count (1) -
apache-maven/src/main/appended-resources/licenses/Public-Domain.txt
Public Domain...
Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri May 17 19:14:22 GMT 2024 - 13 bytes - Click Count (0) -
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) -
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) -
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) -
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) -
src/main/java/org/codelibs/core/lang/ModifierUtil.java
return isPublic(method.getModifiers()); } /** * Checks if the specified field is public. * * @param field * the field to check. Must not be null. * @return true if public, false otherwise */ public static boolean isPublic(final Field field) { assertArgumentNotNull("field", field); return isPublic(field.getModifiers()); }Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 5.3K bytes - Click Count (0) -
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) -
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) -
src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 7.3K bytes - Click Count (1)