- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 4,835 for Republic (0.05 seconds)
-
build-logic-commons/publishing/src/main/kotlin/gradlebuild.publish-public-libraries.gradle.kts
Justin Van Dort <******@****.***> 1739558135 -0500
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 30 16:56:31 GMT 2025 - 5.7K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 7.3K bytes - Click Count (1) -
okhttp/src/jvmTest/kotlin/okhttp3/CacheControlJvmTest.kt
} @Test fun parseCacheControlAndPragmaAreCombined() { val headers = headersOf("Cache-Control", "max-age=12", "Pragma", "must-revalidate", "Pragma", "public") val cacheControl = parse(headers) assertThat(cacheControl.toString()).isEqualTo("max-age=12, public, must-revalidate") } @Test fun parseCacheControlHeaderValueIsRetained() { val value = "max-age=12"
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 7.4K bytes - Click Count (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/-CacheControlCommon.kt
} return CacheControl( noCache = noCache, noStore = noStore, maxAgeSeconds = maxAgeSeconds, sMaxAgeSeconds = sMaxAgeSeconds, isPrivate = isPrivate, isPublic = isPublic, mustRevalidate = mustRevalidate, maxStaleSeconds = maxStaleSeconds, minFreshSeconds = minFreshSeconds, onlyIfCached = onlyIfCached, noTransform = noTransform, immutable = immutable,
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 7.2K bytes - Click Count (0) -
src/test/java/org/codelibs/core/lang/ModifierUtilTest.java
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 2.4K 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: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 5.3K bytes - Click Count (0) -
src/test/java/jcifs/internal/dtyp/SecurityInfoTest.java
} @Test @DisplayName("Test all constants are public static final") void testConstantsArePublicStaticFinal() { Field[] fields = SecurityInfo.class.getDeclaredFields(); for (Field field : fields) { int modifiers = field.getModifiers(); assertTrue(Modifier.isPublic(modifiers), "Field " + field.getName() + " should be public");Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Thu Aug 14 07:14:38 GMT 2025 - 7.5K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ClassMap.java
methodKey.append(arg.getClass().getName()); } return methodKey.toString(); } /** * Retrieves public methods for a class. In case the class is not * public, retrieves methods with same signature as its public methods * from public superclasses and interfaces (if they exist). Basically * upcasts every method to the nearest acccessible method. */
Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Sat Apr 05 11:52:05 GMT 2025 - 13.5K bytes - Click Count (0) -
src/test/java/org/codelibs/core/beans/impl/MethodDescTest.java
assertThat(bar.getMethodName(), is("bar")); assertThat(bar.isPublic(), is(true)); assertThat(bar.isStatic(), is(true)); assertThat(bar.isFinal(), is(not(true))); assertThat(bar.isAbstract(), is(not(true))); assertThat(bar.invokeStatic("moge"), is((Object) "moge")); } /** */ public static class MyBean { /** * @return String */
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/core/lang/ConstructorUtil.java
/** * Returns whether the constructor is <code>public</code>. * * @param constructor the constructor (must not be {@literal null} or empty string) * @return whether the constructor is <code>public</code> */ public static boolean isPublic(final Constructor<?> constructor) { assertArgumentNotNull("constructor", constructor); return Modifier.isPublic(constructor.getModifiers()); }Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 3.1K bytes - Click Count (0)