- Sort Score
- Result 10 results
- Languages All
Results 1191 - 1200 of 3,587 for findall (0.05 sec)
-
src/test/java/org/codelibs/fess/sso/SsoAuthenticatorTest.java
super(null); // Pass null since we're mocking } @Override public <CREDENTIAL extends LoginCredential> void resolve(final Class<CREDENTIAL> credentialType, final Function<CREDENTIAL, OptionalEntity<FessUser>> oneArgLambda) { this.resolveCalled = true; this.lastCredentialType = credentialType; this.lastFunction = oneArgLambda;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/EqualsTester.java
* </ul> * * @author Jim McMaster * @author Jige Yu * @since 10.0 */ @GwtCompatible @NullMarked public final class EqualsTester { private static final int REPETITIONS = 3; private final List<List<Object>> equalityGroups = new ArrayList<>(); private final RelationshipTester.ItemReporter itemReporter; /** Constructs an empty EqualsTester instance */ public EqualsTester() {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/webconfig/ApiAdminWebconfigAction.java
// GET /api/admin/webconfig/settings // PUT /api/admin/webconfig/settings @Execute public JsonResponse<ApiResult> settings(final SearchBody body) { validateApi(body, messages -> {}); final WebConfigPager pager = copyBeanToNewBean(body, WebConfigPager.class); final List<WebConfig> list = webConfigService.getWebConfigList(pager); return asJson(
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 8.8K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/SmbComSessionSetupAndXResponse.java
return 0; } @Override protected int writeBytesWireFormat(final byte[] dst, final int dstIndex) { return 0; } @Override protected int readParameterWordsWireFormat(final byte[] buffer, int bufferIndex) { final int start = bufferIndex; this.isLoggedInAsGuest = ((buffer[bufferIndex] & 0x01) == 0x01) == true;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/jcifs/internal/util/SMBUtil.java
* @param srcIndex the starting index in the source array * @return the time value in milliseconds since January 1, 1970 UTC */ public static long readTime(final byte[] src, final int srcIndex) { final int low = readInt4(src, srcIndex); final int hi = readInt4(src, srcIndex + 4); long t = (long) hi << 32L | low & 0xFFFFFFFFL; return t / 10000L - SmbConstants.MILLISECONDS_BETWEEN_1970_AND_1601; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/WebAuthPager.java
*/ public WebAuthPager() { // Default constructor } private static final long serialVersionUID = 1L; /** * Default page size for pagination. */ public static final int DEFAULT_PAGE_SIZE = 20; /** * Default current page number. */ public static final int DEFAULT_CURRENT_PAGE_NUMBER = 1; /** * Total number of records. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/WebConfigService.java
* * @param webConfigPager The pager containing pagination and search criteria * @return List of web configuration objects */ public List<WebConfig> getWebConfigList(final WebConfigPager webConfigPager) { final PagingResultBean<WebConfig> webConfigList = webConfigBhv.selectPage(cb -> { cb.paging(webConfigPager.getPageSize(), webConfigPager.getCurrentPageNumber());
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/RelationshipTester.java
* directly against {@code equals()} rather than through the {@code Equivalence}. */ private final Equivalence<? super T> equivalence; private final String relationshipName; private final String hashName; private final ItemReporter itemReporter; private final List<ImmutableList<T>> groups = new ArrayList<>(); RelationshipTester( Equivalence<? super T> equivalence,
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 5.9K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/PostStreamingWithPipe.java
import okhttp3.Response; import okio.BufferedSink; import okio.Okio; import okio.Pipe; public final class PostStreamingWithPipe { public static final MediaType MEDIA_TYPE_MARKDOWN = MediaType.get("text/x-markdown; charset=utf-8"); private final OkHttpClient client = new OkHttpClient(); public void run() throws Exception { final PipeBody pipeBody = new PipeBody(); Request request = new Request.Builder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Jul 06 03:18:15 UTC 2018 - 3.1K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/IntegerConversionUtil.java
*/ public static Integer toInteger(final Object o) { return toInteger(o, null); } /** * Converts to {@link Integer}. * * @param o * The object to convert * @param pattern * The pattern string * @return The converted {@link Integer} */ public static Integer toInteger(final Object o, final String pattern) { return switch (o) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.2K bytes - Viewed (0)