- Sort Score
- Result 10 results
- Languages All
Results 381 - 390 of 4,989 for STRING (0.09 sec)
-
src/test/java/org/codelibs/fess/suggest/analysis/SuggestAnalyzerTest.java
private String reading; public TestAnalyzeToken(String term, int position, int startOffset, int endOffset, int positionIncrement, String type, java.util.Map<String, Object> attributes) { super(term, position, startOffset, endOffset, positionIncrement, type, attributes); } public String getReading() { return reading; }
Registered: Fri Sep 19 09:08:11 UTC 2025 - Last Modified: Mon Sep 01 13:33:03 UTC 2025 - 15.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/FileTypeHelper.java
*/ public void add(final String mimetype, final String filetype) { mimetypeMap.put(mimetype, filetype); } /** * Retrieves the file type for a given MIME type. * * @param mimetype the MIME type to look up * @return the corresponding file type, or the default value if not found */ public String get(final String mimetype) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/DcerpcBindingTest.java
{ "\\pipe\\samr", "samr", "12345778-1234-ABCD-EF00-0123456789AC", 1, 0 } }; for (Object[] data : testData) { String endpoint = (String) data[0]; String pipeName = (String) data[1]; String expectedUuid = (String) data[2]; int expectedMajor = (int) data[3]; int expectedMinor = (int) data[4]; // The interfaces are added in setUp()
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/helper/ViewHelperTest.java
} private void assertUrlLink(String url, String expected) { Map<String, Object> doc = new HashMap<>(); doc.put("doc_id", "docId"); doc.put("url", url); assertEquals(expected, viewHelper.getUrlLink(doc)); } public void test_replaceHighlightQueries() { String text; String[] queries; text = "<a>123<b>456<c>";
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 27.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrawlTestBase.java
} protected static String getJsonResponse(final String path) { final Map<String, Object> searchBody = new HashMap<>(); final String response = checkMethodBase(searchBody).get(path).asString(); return response; } protected static String buildWebConfigJobScript(final String webCofigId) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 10K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/exception/JobNotFoundExceptionTest.java
} public void test_constructorWithScheduledJob_emptyToString() { // Test with scheduled job that returns empty string from toString ScheduledJob scheduledJob = new ScheduledJob() { @Override public String toString() { return ""; } }; JobNotFoundException exception = new JobNotFoundException(scheduledJob);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 9K bytes - Viewed (0) -
src/main/java/jcifs/internal/dfs/Referral.java
// Default constructor } int version; int size; int serverType; int rflags; int proximity; String altPath; int ttl; String rpath = null; String node = null; String specialName = null; String[] expandedNames = {}; /** * Gets the DFS referral version number. * * @return the version */
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/project/artifact/ActiveProjectArtifact.java
public void setVersion(String version) { artifact.setVersion(version); } /** {@inheritDoc} */ @Override public String getScope() { return artifact.getScope(); } /** {@inheritDoc} */ @Override public String getType() { return artifact.getType(); } /** {@inheritDoc} */ @Override public String getClassifier() {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 9.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/query/TermQueryCommandTest.java
public String[] getQueryAdditionalCacheResponseFields(String... fields) { return baseConfig.getQueryAdditionalCacheResponseFields(fields); } @Override public String[] getQueryAdditionalHighlightedFields(String... fields) { return baseConfig.getQueryAdditionalHighlightedFields(fields); } @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 20.4K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/FreshValueGeneratorTest.java
FloatBuffer.class, DoubleBuffer.class, String[].class, Object[].class, int[].class); } public void testStringArray() { FreshValueGenerator generator = new FreshValueGenerator(); String[] a1 = generator.generateFresh(String[].class); String[] a2 = generator.generateFresh(String[].class); assertFalse(a1[0].equals(a2[0])); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 17.3K bytes - Viewed (0)