- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 284 for back (0.01 sec)
-
android/guava/src/com/google/common/util/concurrent/AbstractFutureState.java
* Unsafe on modern JVMs (if perhaps not quite as fast as VarHandle?). However, I'm not sure * exactly what we've benchmarked, and we certainly haven't benchmarked as far back as JDK 8. * (We also haven't benchmarked under Android. We continue to use UnsafeAtomicHelper there so * that we don't change the performance there, for better or for worse.) Fortunately, JVM
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 33.2K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/dict/DictionaryItemTest.java
item.id = 50L; assertEquals(50L, item.getId()); // Second modification item.id = 100L; assertEquals(100L, item.getId()); // Third modification back to 0 item.id = 0L; assertEquals(0L, item.getId()); } /** * Concrete implementation of DictionaryItem for testing purposes.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.1K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_details.jsp
</table> </div> <div class="card-footer"> <button type="submit" class="btn btn-default" name="list" value="back"> <em class="fa fa-arrow-circle-left"> <la:message key="labels.crud_button_back"/> </button>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Wed Feb 12 20:25:27 UTC 2020 - 12K bytes - Viewed (0) -
src/main/webapp/WEB-INF/orig/view/profile/index.jsp
</div> </div> <div class="text-center"> <la:link href="/" styleClass="btn btn-default"> <em class="fa fa-arrow-circle-left"> <la:message key="labels.profile.back" /> </la:link> <button type="submit" name="changePassword" class="btn btn-success" value="<la:message key="labels.profile.update"/>"> <em class="fa fa-pencil-alt">
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jan 18 12:09:07 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/searchlog/AdminSearchlogAction.java
* * @param form the search form containing current state * @return HTML response for the search log list page */ @Execute @Secured({ ROLE, ROLE + VIEW }) public HtmlResponse back(final SearchForm form) { saveToken(); return asHtml(path_AdminSearchlog_AdminSearchlogJsp).renderWith(data -> { searchPaging(data, form); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSet.java
* expectedCapacity)) rather than O(calls to add). * * <p>This implementation attempts to detect hash flooding, and if it's identified, falls back to * JdkBackedSetBuilderImpl. */ private static final class RegularSetBuilderImpl<E> extends SetBuilderImpl<E> { // null until at least two elements are present
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.2K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Call.kt
* * The [dispatcher][OkHttpClient.dispatcher] defines when the request will run: usually * immediately unless there are several other requests currently being executed. * * This client will later call back `responseCallback` with either an HTTP response or a failure * exception. * * @throws IllegalStateException when the call has already been executed. */ fun enqueue(responseCallback: Callback)
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 3.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/base/EquivalenceTest.java
/* * We use large numbers to avoid the integer cache. Normally, we'd accomplish that merely by using * `new Integer` (as we do) instead of `Integer.valueOf`. However, under J2KT, `new Integer` * gets translated back to `Integer.valueOf` because that is the only thing J2KT can support. And * anyway, it's nice to avoid `Integer.valueOf` because the Android toolchain optimizes multiple
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/base/EquivalenceTest.java
/* * We use large numbers to avoid the integer cache. Normally, we'd accomplish that merely by using * `new Integer` (as we do) instead of `Integer.valueOf`. However, under J2KT, `new Integer` * gets translated back to `Integer.valueOf` because that is the only thing J2KT can support. And * anyway, it's nice to avoid `Integer.valueOf` because the Android toolchain optimizes multiple
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 6.5K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/NullnessCasts.java
* ParametricNullness parametric nullness}. Sometimes, code may receive a null {@code T} but store * a "null sentinel" to take its place. When the time comes to convert it back to a {@code T} to * return to a caller, the code needs to a way to return {@code null} from a method that returns * "plain {@code T}." This API provides that. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 13 20:49:47 UTC 2025 - 4K bytes - Viewed (0)