- Sort Score
- Result 10 results
- Languages All
Results 811 - 820 of 2,810 for created (0.04 sec)
-
android/guava/src/com/google/common/util/concurrent/TrustedListenableFutureTask.java
static <V extends @Nullable Object> TrustedListenableFutureTask<V> create( AsyncCallable<V> callable) { return new TrustedListenableFutureTask<>(callable); } static <V extends @Nullable Object> TrustedListenableFutureTask<V> create(Callable<V> callable) { return new TrustedListenableFutureTask<>(callable); } /** * Creates a {@code ListenableFutureTask} that will upon running, execute the given {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Fri Jul 11 18:52:30 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/log/bsbhv/BsClickLogBhv.java
public int selectCount(CBCall<ClickLogCB> cbLambda) { return facadeSelectCount(createCB(cbLambda)); } public OptionalEntity<ClickLog> selectEntity(CBCall<ClickLogCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<ClickLog> facadeSelectEntity(ClickLogCB cb) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/user/bsbhv/BsRoleBhv.java
return facadeSelectList(createCB(cbLambda)); } public PagingResultBean<Role> selectPage(CBCall<RoleCB> cbLambda) { // #pending same? return (PagingResultBean<Role>) facadeSelectList(createCB(cbLambda)); } public void selectCursor(CBCall<RoleCB> cbLambda, EntityRowHandler<Role> entityLambda) { facadeSelectCursor(createCB(cbLambda), entityLambda); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsFailureUrlBhv.java
public int selectCount(CBCall<FailureUrlCB> cbLambda) { return facadeSelectCount(createCB(cbLambda)); } public OptionalEntity<FailureUrl> selectEntity(CBCall<FailureUrlCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<FailureUrl> facadeSelectEntity(FailureUrlCB cb) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsRequestHeaderBhv.java
public int selectCount(CBCall<RequestHeaderCB> cbLambda) { return facadeSelectCount(createCB(cbLambda)); } public OptionalEntity<RequestHeader> selectEntity(CBCall<RequestHeaderCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<RequestHeader> facadeSelectEntity(RequestHeaderCB cb) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsbhv/BsThumbnailQueueBhv.java
public int selectCount(CBCall<ThumbnailQueueCB> cbLambda) { return facadeSelectCount(createCB(cbLambda)); } public OptionalEntity<ThumbnailQueue> selectEntity(CBCall<ThumbnailQueueCB> cbLambda) { return facadeSelectEntity(createCB(cbLambda)); } protected OptionalEntity<ThumbnailQueue> facadeSelectEntity(ThumbnailQueueCB cb) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 9.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/TestContainerGenerator.java
SampleElements<E> samples(); /** * Creates a new container containing the given elements. TODO: would be nice to figure out how to * use E... or E[] as a parameter type, but this doesn't seem to work because Java creates an * array of the erased type. */ T create(Object... elements); /** * Helper method to create an array of the appropriate type used by this generator. The returned
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.4K bytes - Viewed (0) -
android/guava/src/com/google/common/net/MediaType.java
return create(AUDIO_TYPE, subtype); } /** * Creates a media type with the "font" type and the given subtype. * * @throws IllegalArgumentException if subtype is invalid */ static MediaType createFontType(String subtype) { return create(FONT_TYPE, subtype); } /** * Creates a media type with the "image" type and the given subtype.
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 48K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/ListMultimapTestSuiteBuilder.java
OneSizeTestContainerGenerator<ListMultimap<K, V>, Entry<K, V>> multimapGenerator) { super(multimapGenerator); } @Override public List<V> create(Object... elements) { return (List<V>) super.create(elements); } } private static final class MultimapAsMapGetGenerator<K, V> extends MultimapTestSuiteBuilder.MultimapAsMapGetGenerator<K, V, ListMultimap<K, V>>
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Jul 17 15:26:41 UTC 2025 - 5.4K bytes - Viewed (0) -
src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java
/** * Test class for SocketInputStream using JUnit 5 and Mockito. * Tests the NetBIOS session layer protocol implementation. */ @ExtendWith(MockitoExtension.class) class SocketInputStreamTest { /** * Creates a NetBIOS session message header. * The header format is: * - Byte 0: Message type (0x00 for SESSION_MESSAGE) * - Byte 1: High bit of 17-bit length field * - Bytes 2-3: Lower 16 bits of length field
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 14.2K bytes - Viewed (0)