- Sort Score
- Result 10 results
- Languages All
Results 101 - 110 of 2,938 for rreturn (0.33 sec)
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/connection/RealConnectionPool.kt
return 0L } earliestEvictableConnection != null -> { // A connection will be ready to evict soon. return earliestEvictableIdleAtNs + keepAliveDurationNs - now } inUseConnectionCount > 0 -> { // All connections are in use. It'll be at least the keep alive duration 'til we run again. return keepAliveDurationNs }
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Jun 03 17:10:08 UTC 2025 - 16.1K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java
Entry<Class<? extends @NonNull B>, B> entry) { return new ForwardingMapEntry<Class<? extends @NonNull B>, B>() { @Override protected Entry<Class<? extends @NonNull B>, B> delegate() { return entry; } @Override @ParametricNullness public B setValue(@ParametricNullness B value) { cast(getKey(), value); return super.setValue(value); } }; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:10:29 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
*/ public static char[] asCharArray(final char... elements) { return elements; } /** * Returns an array of {@literal byte}. * * @param elements the elements of the array * @return the array */ public static byte[] asByteArray(final byte... elements) { return elements; } /** * Returns an array of {@literal short}. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 41.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/group/AdminGroupAction.java
}); }); } /** * Returns HTML response for the edit page. * * @return HTML response for the edit page */ private HtmlResponse asEditHtml() { return asHtml(path_AdminGroup_AdminGroupEditJsp); } /** * Returns HTML response for the details page. * * @return HTML response for the details page */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 16.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessLoginAction.java
super(); } /** * Returns the appropriate HTML response for login handling. * If a user is already authenticated, redirects to the appropriate admin interface. * Otherwise, displays the login page. * * @return HTML response for login page or redirect to admin interface */ protected HtmlResponse getHtmlResponse() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.6K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/RetryAndFollowUpInterceptor.kt
if (!client.retryOnConnectionFailure) return false // We can't send the request body again. if (requestSendStarted && requestIsOneShot(e, userRequest)) return false // This exception is fatal. if (!isRecoverable(e, requestSendStarted)) return false // No more routes to attempt. if (!call.retryAfterFailure()) return false
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 14:58:02 UTC 2025 - 12.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/FessUserTest.java
public String getName() { return name; } @Override public String[] getRoleNames() { return roleNames; } @Override public String[] getGroupNames() { return groupNames; } @Override public String[] getPermissions() { return permissions; } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.1K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/AbstractExecutionThreadService.java
* to the string returned by {@link #serviceName} */ protected Executor executor() { return command -> newThread(serviceName(), command).start(); } @Override public String toString() { return serviceName() + " [" + state() + "]"; } @Override public final boolean isRunning() { return delegate.isRunning(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 7.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/LocaleUtil.java
} } return locale; } private static Supplier<Locale> defaultLocaleSupplier; /** * Returns the default locale. * * @return the default locale */ public static Locale getDefault() { if (defaultLocaleSupplier != null) { return defaultLocaleSupplier.get(); } return Locale.ENGLISH; } /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 2.2K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Platform.java
* @param string the string to test and possibly return * @return {@code string} if it is not null; {@code ""} otherwise */ static String nullToEmpty(@Nullable String string) { return (string == null) ? "" : string; } /** * Returns the string if it is not empty, or a null string otherwise. * * @param string the string to test and possibly return * @return {@code string} if it is not empty; {@code null} otherwise
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 4.1K bytes - Viewed (0)