- Sort Score
- Num 10 results
- Language All
Results 111 - 120 of 157 for getter (0.07 seconds)
-
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
} for (final Map.Entry<String, String> entry : conditionMap.entrySet()) { if (docMap.get(entry.getKey()) instanceof final String value && value.matches(entry.getValue())) { if (logger.isDebugEnabled()) { logger.debug("[{}] match {}:{}", entry.getKey(), name, value); } return true; } } return false; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 13.4K bytes - Click Count (0) -
src/main/webapp/js/suggestor.js
* Provides real-time search suggestions with keyboard and mouse navigation */ (function ($) { "use strict"; // Key code constants for better readability var KEY_CODES = { BACKSPACE: 8, ENTER: 13, SPACE: 32, UP: 38, DOWN: 40, DELETE: 46, NUM_0: 48, NUM_9: 57, A: 65, Z: 90, NUMPAD_0: 96, NUMPAD_9: 105,Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 11:04:08 GMT 2025 - 13.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsCrawlingInfoParam.java
return createdTime; } public void setCreatedTime(Long value) { registerModifiedProperty("createdTime"); this.createdTime = value; } public String getKey() { checkSpecifiedProperty("key"); return convertEmptyToNull(key); } public void setKey(String value) { registerModifiedProperty("key"); this.key = value; }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Mar 15 06:53:53 GMT 2025 - 5.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/HtmlIndexExportFormatter.java
html.append("<title>").append(title).append("</title>\n"); for (final Map.Entry<String, Object> entry : source.entrySet()) { final String field = entry.getKey(); if ("title".equals(field) || "content".equals(field) || "lang".equals(field)) { continue; } if (excludeFields.contains(field)) { continue;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sat Feb 07 10:31:36 GMT 2026 - 3.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/ThreadDumpUtil.java
*/ public static void processThreadDump(final Consumer<String> writer) { for (final Map.Entry<Thread, StackTraceElement[]> entry : Thread.getAllStackTraces().entrySet()) { writer.accept("Thread: " + entry.getKey()); final StackTraceElement[] trace = entry.getValue(); for (final StackTraceElement element : trace) { writer.accept("\tat " + element); } } }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 3.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java
* @return the query builder */ protected QueryBuilder convertPhraseQuery(final QueryContext context, final PhraseQuery phraseQuery, final float boost) { final Term[] terms = phraseQuery.getTerms(); if (terms.length == 0) { throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryUnknown(UserMessages.GLOBAL_PROPERTY_KEY), "Unknown phrase query: " + phraseQuery);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 4.5K bytes - Click Count (0) -
src/main/webapp/WEB-INF/view/admin/plugin/admin_plugin.jsp
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Mon Feb 23 08:03:44 GMT 2026 - 10.6K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleJavadocsPlugin.java
"<link href=\"https://fonts.cdnfonts.com/css/dejavu-sans-mono\" rel=\"stylesheet\">" ); // TODO: This would be better to model as separate options options.addStringOption("Xdoclint:syntax,html", "-quiet"); // TODO: This breaks the providerCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Sun Mar 01 05:52:34 GMT 2026 - 11.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/util/MemoryUtil.java
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 5.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/job/PythonJobTest.java
} @Override protected void tearDown(TestInfo testInfo) throws Exception { ComponentUtil.setFessConfig(null); super.tearDown(testInfo); } // Test filename setter @Test public void test_filename() { assertNull(pythonJob.filename); PythonJob result = pythonJob.filename("test.py"); assertSame(pythonJob, result);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 22.2K bytes - Click Count (0)