- Sort Score
- Result 10 results
- Languages All
Results 1091 - 1100 of 4,663 for returned (0.45 sec)
-
src/main/java/org/codelibs/core/lang/ClassLoaderIterator.java
/** * Returns an {@link Iterable} that wraps a {@link ClassLoaderIterator} for use in a for-each statement. * * @param classLoader the class loader (must not be {@literal null}) * @return an {@link Iterable} wrapping a {@link ClassLoaderIterator} */ public static Iterable<ClassLoader> iterable(final ClassLoader classLoader) { return () -> new ClassLoaderIterator(classLoader); }Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 2.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/pager/JobLogPager.java
* * @return the default current page number */ protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } /** * Gets the total number of records across all pages. * * @return the total number of records */ public int getAllRecordCount() { return allRecordCount; } /**Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
guava-testlib/src/com/google/common/testing/DummyProxy.java
DummyHandler that = (DummyHandler) obj; return identity().equals(that.identity()); } else { return false; } } private DummyProxy identity() { return DummyProxy.this; } @Override public String toString() { return "Dummy proxy for " + interfaceType; } // Since type variables aren't serializable, reduce the type down to raw type beforeRegistered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 22:10:29 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/webapp/js/admin/popper.min.js.map
Internet Explorer\n * @method\n * @memberof Popper.Utils\n * @param {Number} version to check\n * @returns {Boolean} isIE\n */\nexport default function isIE(version) {\n if (version === 11) {\n return isIE11;\n }\n if (version === 10) {\n return isIE10;\n }\n return isIE11 || isIE10;\n}\n","import getStyleComputedProperty from './getStyleComputedProperty';\nimport isIE from './isIE';\n/**\n * Returns the offset parent of the given element\n * @method\n * @memberof Popper.Utils\n * @argument {Element}...Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 26 01:49:09 UTC 2024 - 120.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactory.java
this.componentName = componentName; } /** * Returns the onDestroy listener. * @return The onDestroy listener. */ public OnDestroyListener<T> getOnDestroyListener() { return onDestroyListener; } /** * Sets the onDestroy listener. * @param onDestroyListener The OnDestroyListener to set. */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/AbstractXmlExtractor.java
*/ public AbstractXmlExtractor() { // NOP } /** * Returns the pattern used to extract encoding information from content. * @return The encoding pattern. */ protected abstract Pattern getEncodingPattern(); /** * Returns the pattern used to identify tags in the content. * @return The tag pattern. */ protected abstract Pattern getTagPattern(); @OverrideRegistered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 8.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/CopyOptions.java
return false; } } return true; } return true; } /** * Returns {@literal true} if the value is a target for copying. * * @param value * The source value to be copied * @return {@literal true} if the value is a target for copying */Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat Jul 05 00:11:05 UTC 2025 - 17.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/joblog/ApiAdminJoblogAction.java
* @param id the job log ID * @return JSON response containing the job log details */ @Execute public JsonResponse<ApiResult> get$log(final String id) { return asJson(new ApiLogResponse().log(jobLogService.getJobLog(id).map(this::createEditBody).orElseGet(() -> { throwValidationErrorApi(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id)); return null;Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/FaultTolerantClient.java
*/ @Override public void close() throws Exception { client.close(); } /** * Returns the underlying CrawlerClient. * @return The CrawlerClient instance. */ public CrawlerClient getCrawlerClient() { return client; } /** * Sets the underlying CrawlerClient. * @param client The CrawlerClient instance to set. */Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 7.8K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComWriteTest.java
/** * Test readParameterWordsWireFormat always returns 0 */ @Test public void testReadParameterWordsWireFormat() { SmbComWrite write = new SmbComWrite(); byte[] buffer = new byte[10]; int result = write.readParameterWordsWireFormat(buffer, 0); assertEquals(0, result, "readParameterWordsWireFormat should always return 0"); } /**Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 5.8K bytes - Viewed (0)