- Sort Score
- Result 10 results
- Languages All
Results 681 - 690 of 6,235 for String (0.16 sec)
-
src/main/java/org/codelibs/fess/helper/SuggestHelper.java
final StringBuilder sb = new StringBuilder(100); final List<String> fields = new ArrayList<>(); final List<String> tags = new ArrayList<>(); final List<String> roles = new ArrayList<>(); for (final Pair<String, String> searchFieldLog : searchLog.getSearchFieldLogList()) { final String name = searchFieldLog.getFirst(); if (contentFieldNameSet.contains(name)) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 18.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideItem.java
import org.codelibs.fess.dict.DictionaryItem; public class StemmerOverrideItem extends DictionaryItem { private final String input; private final String output; private String newInput; private String newOutput; public StemmerOverrideItem(final long id, final String input, final String output) { this.id = id; this.input = input; this.output = output; if (id == 0) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 2.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/FileListIndexUpdateCallbackImpl.java
} } }); } protected String getParamValue(final DataStoreParams paramMap, final String key, final String defaultValue) { return paramMap.getAsString(key, defaultValue); } protected void addDocument(final DataStoreParams paramMap, final Map<String, Object> dataMap) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 16.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/CrawlerStatsHelper.java
private final String id; private String url; public StatsKeyObject(final String id) { this.id = id; } public String getId() { return id; } public void setUrl(final String url) { this.url = url; } protected String getUrl() { if (url != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 9.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/ds/callback/IndexUpdateCallbackImpl.java
} final Set<String> matchedLabelSet = ComponentUtil.getLabelTypeHelper().getMatchedLabelValueSet(url); if (!matchedLabelSet.isEmpty()) { final Set<String> newLabelSet = new HashSet<>(); final String[] oldLabels = DocumentUtil.getValue(dataMap, fessConfig.getIndexFieldLabel(), String[].class);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 7.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/SourceSinkTester.java
} @Override public String getName() { return super.getName() + " [" + suiteName + " [" + caseDesc + "]]"; } protected static ImmutableList<String> getLines(final String string) { try { return new CharSource() { @Override public Reader openStream() throws IOException { return new StringReader(string); } }.readLines();
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Apr 27 18:57:08 UTC 2022 - 4.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/storage/StorageClientTest.java
private static final Logger logger = LoggerFactory.getLogger(StorageClientTest.class); private static final String IMAGE_NAME = "minio/minio:RELEASE.2022-06-02T02-11-04Z"; private static final String SECRET_KEY = "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY"; private static final String ACCESS_KEY = "AKIAIOSFODNN7EXAMPLE"; public StorageClient storageClient; private GenericContainer minioServer;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 13.5K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCache.java
*/ @Deprecated(since = "4.0.0") public interface ModelCache { <T> T computeIfAbsent(String groupId, String artifactId, String version, String tag, Supplier<T> data); <T> T computeIfAbsent(Source path, String tag, Supplier<T> data);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/smb1/SmbAuthentication.java
import jcifs.smb1.smb1.NtlmPasswordAuthentication; /** * @author shinsuke * */ public class SmbAuthentication { private String server; private int port; private String username; private String password; private String domain; public String getPathPrefix() { final StringBuilder buf = new StringBuilder(100); buf.append("smb1://"); if (server != null) {
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.2K bytes - Viewed (0) -
guava/src/com/google/common/graph/GraphConstants.java
// Error messages static final String NODE_NOT_IN_GRAPH = "Node %s is not an element of this graph."; static final String EDGE_NOT_IN_GRAPH = "Edge %s is not an element of this graph."; static final String NODE_REMOVED_FROM_GRAPH = "Node %s that was used to generate this set is no longer in the graph."; static final String NODE_PAIR_REMOVED_FROM_GRAPH =
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 17:29:38 UTC 2024 - 3.1K bytes - Viewed (0)