- Sort Score
- Result 10 results
- Languages All
Results 151 - 160 of 2,153 for projectId (0.08 sec)
-
src/main/java/org/codelibs/fess/app/pager/FileConfigPager.java
boost = null; available = null; sortOrder = null; createdBy = null; createdTime = null; versionNo = null; description = null; } protected int getDefaultCurrentPageNumber() { return DEFAULT_CURRENT_PAGE_NUMBER; } public int getAllRecordCount() { return allRecordCount; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 3.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayIterator.java
* } * </pre> * * @author shot * @param <T> * 配列の要素の型 */ public class ArrayIterator<T> implements Iterator<T> { /** イテレートする要素の配列 */ protected final T[] items; /** 現在参照している要素のインデックス */ protected int index = 0; /** * for each構文で使用するために配列をラップした{@link Iterable}を返します。 * * @param <T> * 列挙する要素の型 * @param items
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/LineIterator.java
*/ 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}を返します。 * * @param reader
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 3.8K bytes - Viewed (0) -
compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java
} private MavenProject createMavenProject(String groupId, String artifactId) { MavenProject project = new MavenProject(); project.setGroupId(groupId); project.setArtifactId(artifactId); return project; } static String stripAnsiCodes(String msg) { return msg.replaceAll("\u001b\\[[;\\d]*[ -/]*[@-~]", ""); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 30.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/MatchAllQueryCommand.java
import org.opensearch.index.query.QueryBuilders; public class MatchAllQueryCommand extends QueryCommand { private static final Logger logger = LogManager.getLogger(MatchAllQueryCommand.class); @Override protected String getQueryClassName() { return MatchAllDocsQuery.class.getSimpleName(); } @Override public QueryBuilder execute(final QueryContext context, final Query query, final float boost) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/CommandGenerator.java
private static final Logger logger = LogManager.getLogger(CommandGenerator.class); protected List<String> commandList; protected long commandTimeout = 30 * 1000L;// 30sec protected long commandDestroyTimeout = 5 * 1000L;// 5sec protected File baseDir; private Timer destoryTimer; @PostConstruct public void init() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 9.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessMultipartRequestHandler.java
// keeping parsed request parameters, normal texts or uploaded files // keys are requested parameter names (treated as field name here) protected Map<String, Object> elementsAll; // lazy-loaded, then after not null protected Map<String, MultipartFormFile> elementsFile; // me too protected Map<String, String[]> elementsText; // me too // ===================================================================================
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Wed Oct 23 13:27:21 UTC 2024 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/ScoreUpdater.java
logger.warn("Failed to update scores.", e); resultBuf.append(e.getMessage()).append('\n'); } }); return resultBuf.toString(); } protected void addScoreBooster(final ScoreBooster scoreBooster) { scoreBoosterList.add(scoreBooster); scoreBoosterList.sort((b1, b2) -> b2.getPriority() - b1.getPriority()); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/protwords/ProtwordsCreator.java
if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new ProtwordsFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/synonym/SynonymCreator.java
if (logger.isInfoEnabled()) { logger.info("Load {}", this.getClass().getSimpleName()); } dictionaryManager.addCreator(this); } @Override protected DictionaryFile<? extends DictionaryItem> newDictionaryFile(final String id, final String path, final Date timestamp) { return new SynonymFile(id, path, timestamp).manager(dictionaryManager); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 1.6K bytes - Viewed (0)