- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 3,495 for FINAL (0.02 sec)
-
src/main/java/org/codelibs/fess/suggest/settings/ElevateWordSettings.java
public class ElevateWordSettings { private static final Logger logger = LogManager.getLogger(ElevateWordSettings.class); public static final String ELEVATE_WORD_SETTINGD_KEY = "elevateword"; public static final String ELEVATE_WORD_BOOST = "boost"; public static final String ELEVATE_WORD_READING = "reading"; public static final String ELEVATE_WORD_FIELDS = "fields"; public static final String ELEVATE_WORD_TAGS = "tags";
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/LineIterator.java
* * @author koichik */ public class LineIterator implements Iterator<String> { /** {@link #line}が空であることを示す{@literal String}オブジェクト */ protected static final String EMPTY = new String(); /** {@link BufferedReader} */ protected final BufferedReader reader; /** 読み込み済みの文字列 */ protected String line = EMPTY; /** * for each構文で使用するために{@link LineIterator}をラップした{@link Iterable}を返します。 *
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/JobLog.java
import org.codelibs.fess.util.ComponentUtil; /** * @author FreeGen */ public class JobLog extends BsJobLog { private static final long serialVersionUID = 1L; private ScheduledJob scheduledJob; public JobLog() { } public JobLog(final ScheduledJob scheduledJob) { this.scheduledJob = scheduledJob; setJobName(scheduledJob.getName());
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/PropertyNotFoundRuntimeException.java
/** * プロパティが見つからなかった場合にスローされる例外です。 * * @author higa * */ public class PropertyNotFoundRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -5177019197796206774L; private final Class<?> targetClass; private final String propertyName; /** * {@link PropertyNotFoundRuntimeException}を返します。 * * @param targetClass * ターゲットクラス
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.9K bytes - Viewed (0) -
guava-tests/benchmark/com/google/common/cache/MapMakerComparisonBenchmark.java
public class MapMakerComparisonBenchmark { private static final String TEST_KEY = "test key"; private static final String TEST_VALUE = "test value"; // Non-loading versions: private final Map<Object, Object> map = new MapMaker().makeMap(); // Returns ConcurrentHashMap private final Cache<Object, Object> cache = CacheBuilder.newBuilder().recordStats().build(); private final Cache<Object, Object> cacheNoStats = CacheBuilder.newBuilder().build();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Aug 05 17:21:46 UTC 2022 - 1.9K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/ResponseData.java
} catch (final FileNotFoundException e) { throw new IORuntimeException(e); } } return null; } public void setResponseBody(final byte[] responseBody) { responseBodyBytes = responseBody; } public void setResponseBody(final File responseBody, final boolean isTemporary) { responseBodyFile = responseBody;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Sat Oct 12 01:40:57 UTC 2024 - 5.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/mapping/AdminDictMappingAction.java
try { return createCharMappingItem(this, form, hook); } catch (final ValidationErrorException e) { saveToken(); throw e; } } public static OptionalEntity<CharMappingItem> createCharMappingItem(final FessBaseAction action, final CreateForm form,
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 19.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/upgrade/AdminUpgradeAction.java
private static final String VERSION_13_10 = "13.10"; private static final String VERSION_13_11 = "13.11"; private static final String VERSION_13_12 = "13.12"; private static final String VERSION_13_13 = "13.13"; private static final String VERSION_13_14 = "13.14"; private static final String VERSION_13_15 = "13.15";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:46 UTC 2024 - 54K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/SourceSinkTester.java
.put("\\r at EOF", "hello\nworld\r") .put("lorem ipsum", LOREM_IPSUM) .buildOrThrow(); protected final F factory; protected final T data; protected final T expected; private final String suiteName; private final String caseDesc; SourceSinkTester(F factory, T data, String suiteName, String caseDesc, Method method) { super(method.getName());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 27 18:57:08 UTC 2022 - 4.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/systeminfo/AdminSysteminfoAction.java
public static List<Map<String, String>> getBugReportItems() { final List<Map<String, String>> itemList = new ArrayList<>(); for (final String label : bugReportLabels) { itemList.add(createPropItem(label)); } final DynamicProperties systemProperties = ComponentUtil.getSystemProperties(); for (final Map.Entry<Object, Object> entry : systemProperties.entrySet()) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.5K bytes - Viewed (0)