- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 119 for padded (0.05 seconds)
-
src/main/java/org/codelibs/fess/helper/ProtocolHelper.java
} /** * Adds a new web protocol to the supported protocols list. * If the protocol already exists, it will not be added again. * * @param protocol the protocol name to add (without colon suffix) */ public void addWebProtocol(final String protocol) { final String prefix = protocol + ":";Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Mar 26 13:59:25 GMT 2026 - 12.4K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/dict/kuromoji/KuromojiFile.java
/** The writer for the new file. */ protected Writer writer; /** The item to be added or updated. */ protected KuromojiItem item; /** * Constructs a new Kuromoji updater. * * @param newItem The new item to be added or updated. */ protected KuromojiUpdater(final KuromojiItem newItem) { FileOutputStream fos = null;Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Nov 20 07:09:00 GMT 2025 - 11.7K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/job/PurgeDocJob.java
import org.opensearch.index.query.QueryBuilder; import org.opensearch.index.query.QueryBuilders; /** * Job for purging expired documents from the search index. * This job removes documents that have passed their expiration time based on the expires field. * It helps maintain the search index by cleaning up outdated content automatically. */ public class PurgeDocJob { /** Logger instance for this class */Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 2.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/helper/VirtualHostHelperTest.java
assertEquals("/site1/search", result.getRoutingPath()); // The header remains for subsequent tests due to static request handling // Different matching header added to same request request.addHeader("X-Forwarded-Host", "test.com"); result = virtualHostHelper.getVirtualHostPath(page);
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 11.8K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java
public void test_extendsUserMessages() { assertTrue(org.lastaflute.core.message.UserMessages.class.isAssignableFrom(FessLabels.class)); } /** * Test field count to ensure no unexpected fields are added */ @Test public void test_fieldCount() throws Exception { Field[] fields = FessLabels.class.getDeclaredFields(); int labelConstantCount = 0; int serialVersionUIDCount = 0;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 14K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/accesstoken/CreateForm.java
*/ @CustomSize(maxKey = "form.admin.max.input.size") public String permissions; /** * The parameter name for the access token. * This field specifies how the token should be passed in API requests. * Maximum length is 10000 characters. */ @Size(max = 10000) public String parameterName; /** * The expiration date and time for the access token.Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.4K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
} } } } } /** * Parses primitive values from JSON parser. * * @param jsonParser the JSON parser * @return the parsed primitive value * @throws IOException if an I/O error occurs */ protected Object parsePrimitive(final JsonParser jsonParser) throws IOException { final JsonToken token = jsonParser.getCurrentToken();Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Dec 14 01:18:25 GMT 2025 - 16.5K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/util/ParameterUtilTest.java
String originalParams = "config.timeout=30\npassword=secret\nclient.host=localhost"; // First parse Map<String, String> parsed = ParameterUtil.parse(originalParams); assertEquals(3, parsed.size()); assertEquals("secret", parsed.get("password")); // Then encrypt String encrypted = ParameterUtil.encrypt(originalParams);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Wed Jan 14 14:29:07 GMT 2026 - 22.8K bytes - Click Count (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/TestFilesCleanupService.kt
fun addProjectState(projectPath: String, projectBuildDir: Provider<File>, reportOnly: Provider<Boolean>) { require(projectPath !in projectStates.keys) { "Project state already added for $projectPath" } projectStates[projectPath] = TestFilesCleanupProjectState(projectPath, projectBuildDir, reportOnly) } fun addTestBinaryResultsDir(testTaskPath: String, binaryResultsDir: Provider<File>) {Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Feb 11 11:05:07 GMT 2026 - 14.3K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/util/InputStreamThread.java
} /** * Runs the thread to continuously read lines from the input stream. * Each line is processed by the output callback (if provided) and added to the buffer. * The buffer is maintained as a circular buffer with the specified size. */ @Override public void run() { boolean running = true; while (running) { try {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 4.6K bytes - Click Count (0)