- Sort Score
- Result 10 results
- Languages All
Results 1241 - 1250 of 1,698 for voiced (0.1 sec)
-
src/main/java/org/codelibs/fess/app/service/DataConfigService.java
* @throws IllegalArgumentException if dataConfig is null * @throws org.dbflute.exception.EntityAlreadyDeletedException if the entity has already been deleted */ public void delete(final DataConfig dataConfig) { dataConfigBhv.delete(dataConfig, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/crawlinginfo/AdminCrawlinginfoAction.java
// Hook // ====== @Override protected void setupHtmlData(final ActionRuntime runtime) { super.setupHtmlData(runtime); runtime.registerData("helpLink", systemHelper.getHelpLink(fessConfig.getOnlineHelpNameCrawlinginfo())); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/failureurl/AdminFailureurlAction.java
// Hook // ====== @Override protected void setupHtmlData(final ActionRuntime runtime) { super.setupHtmlData(runtime); runtime.registerData("helpLink", systemHelper.getHelpLink(fessConfig.getOnlineHelpNameFailureurl())); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/joblog/AdminJoblogAction.java
/** * Sets up HTML data for rendering, including help link. * * @param runtime the action runtime */ @Override protected void setupHtmlData(final ActionRuntime runtime) { super.setupHtmlData(runtime); runtime.registerData("helpLink", systemHelper.getHelpLink(fessConfig.getOnlineHelpNameJoblog())); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 10.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/CollectorTester.java
A right = pop(stack); A left = pop(stack); push(stack, collector.combiner().apply(left, right)); } return pop(stack); } <E extends @Nullable Object> void push(List<E> stack, E value) { stack.add(value); } <E extends @Nullable Object> E pop(List<E> stack) { return stack.remove(stack.size() - 1); } };
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu May 15 21:47:56 UTC 2025 - 6.8K bytes - Viewed (0) -
api/maven-api-di/src/main/java/org/apache/maven/di/tool/DiIndexProcessor.java
*/ private void logMessage(Diagnostic.Kind kind, String message) { processingEnv.getMessager().printMessage(kind, message); } /** * Logs an error message with exception details to the annotation processing environment. * * @param message the error message * @param e the exception that occurred */ private void logError(String message, Exception e) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Thu Apr 03 13:33:59 UTC 2025 - 7.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/container/CrawlerContainer.java
/** * Cleans up resources and performs any necessary finalization tasks * before the object is destroyed. This method should be called to * ensure that all resources are properly released. */ void destroy(); /** * Initializes the CrawlerContainer by setting the system property * "java.protocol.handler.pkgs" to include the package "org.codelibs.fess.net.protocol".
Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sat Mar 15 06:52:00 UTC 2025 - 2.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
*/ public void setMaxDeleteDocumentCacheSize(final int maxDeleteDocumentCacheSize) { this.maxDeleteDocumentCacheSize = maxDeleteDocumentCacheSize; } /** * Sets the maximum number of redirects to follow when processing URLs. * * @param maxRedirectCount the maximum redirect count */ public void setMaxRedirectCount(final int maxRedirectCount) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 28.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/impl/HtmlTagBasedGeneratorTest.java
import org.codelibs.fess.unit.UnitFessTestCase; public class HtmlTagBasedGeneratorTest extends UnitFessTestCase { private static final Logger logger = LogManager.getLogger(HtmlTagBasedGeneratorTest.class); public void test_saveImage() throws Exception { // Note: This test requires FessConfig from ComponentUtil // We skip it when container is not initialized try {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.7K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/cache/LoadingCacheSingleThreadBenchmark.java
Random random = new Random(); LoadingCache<Integer, Integer> cache; int max; static AtomicLong requests = new AtomicLong(0); static AtomicLong misses = new AtomicLong(0); @BeforeExperiment void setUp() { // random integers will be generated in this range, then raised to the // power of (1/concentration) and floor()ed max = Ints.checkedCast((long) Math.pow(distinctKeys, concentration)); cache =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.4K bytes - Viewed (0)