- Sort Score
- Result 10 results
- Languages All
Results 391 - 400 of 1,772 for instants (5.12 sec)
-
src/main/java/org/codelibs/fess/app/job/ScriptExecutorJob.java
/** * Processes the job. * @param runtime The job runtime. */ protected void process(final LaJobRuntime runtime) { if (!runtime.getParameterMap().containsKey(Constants.SCHEDULED_JOB)) { logger.warn("{} is empty.", Constants.SCHEDULED_JOB); return; } runtime.stopIfNeeds(); final SystemHelper systemHelper = ComponentUtil.getSystemHelper();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/ExecJobTest.java
assertEquals(2, cmdList.size()); assertTrue(cmdList.contains("-D" + Constants.FESS_CONFIG_PREFIX + "test1=value1")); assertTrue(cmdList.contains("-D" + Constants.FESS_CONFIG_PREFIX + "test2=value2")); // Clean up System.clearProperty(Constants.FESS_CONFIG_PREFIX + "test1"); System.clearProperty(Constants.FESS_CONFIG_PREFIX + "test2"); System.clearProperty("non.fess.property"); }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 24.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stopwords/StopwordsFile.java
import java.util.Date; import java.util.List; import org.codelibs.core.io.CloseableUtil; import org.codelibs.core.lang.StringUtil; import org.codelibs.curl.CurlResponse; import org.codelibs.fess.Constants; import org.codelibs.fess.dict.DictionaryException; import org.codelibs.fess.dict.DictionaryFile; import org.codelibs.fess.util.ComponentUtil; import org.dbflute.optional.OptionalEntity; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 12.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
.prefixLength(fessConfig.getQueryFuzzyPrefixLengthAsInteger()) .transpositions(Constants.TRUE.equalsIgnoreCase(fessConfig.getQueryFuzzyTranspositions())); } final String origQuery = term.toString(); context.addFieldLog(Constants.DEFAULT_FIELD, origQuery); context.addHighlightedQuery(origQuery); return buildDefaultQueryBuilder(fessConfig, context,
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/FessFileTransformer.java
} /** * Gets the Fess configuration instance. * * @return the Fess configuration */ @Override public FessConfig getFessConfig() { return fessConfig; } /** * Gets the logger instance for this transformer. * * @return the logger instance */ @Override public Logger getLogger() { return logger;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/net/SmbShareInfoTest.java
assertEquals(TEST_NET_NAME, info.getName()); } @Test @DisplayName("Test getFileIndex always returns 0") void testGetFileIndex() { // Default instance assertEquals(0, shareInfo.getFileIndex()); // Instance with values SmbShareInfo info = new SmbShareInfo(TEST_NET_NAME, TEST_TYPE, TEST_REMARK); assertEquals(0, info.getFileIndex()); } @ParameterizedTest
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.3K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/FuturesGetChecked.java
for (Constructor<X> constructor : preferringStringsThenThrowables(constructors)) { X instance = newFromConstructor(constructor, cause); if (instance != null) { if (instance.getCause() == null) { instance.initCause(cause); } return instance; } } throw new IllegalArgumentException( "No appropriate constructor for exception of type "
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Aug 09 01:14:59 UTC 2025 - 11.8K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/interpolation/AbstractStringBasedModelInterpolator.java
} /** * Serialize the inbound Model instance to a StringWriter, perform the regex replacement to resolve * POM expressions, then re-parse into the resolved Model instance. * <p> * <b>NOTE:</b> This will result in a different instance of Model being returned!!! * * @param model The inbound Model instance, to serialize and reference for expression resolution
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 13.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/KeyMatchService.java
op.setRefreshPolicy(Constants.TRUE); }); } /** * Delete a key match. * * @param keyMatch The key match to delete. */ public void delete(final KeyMatch keyMatch) { keyMatchBhv.delete(keyMatch, op -> { op.setRefreshPolicy(Constants.TRUE); }); } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
dateFormat = Constants.MAPPING_TYPE_PDF_DATE; } else { dateFormat = Constants.DATE_OPTIONAL_TIME; } final Date dt = FessFunctions.parseDate(values[0], dateFormat);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 25.6K bytes - Viewed (0)