- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 512 for formed (0.04 sec)
-
src/test/java/jcifs/SmbResourceLocatorTest.java
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
assertTrue(result >= 8); assertNotNull(response.getResults()); } @Test @DisplayName("Test readBytesWireFormat with properly formed empty response") void testReadBytesWireFormatProperlyFormedEmpty() throws Exception { response = new Smb2QueryDirectoryResponse(mockConfig, Smb2QueryDirectoryRequest.FILE_BOTH_DIRECTORY_INFO);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/ftp/FtpClientTest.java
assertEquals(1, urlSet.size()); String childUrl = urlSet.iterator().next().getUrl(); assertTrue("Child URL should be properly formed", childUrl.contains("dir1/test3.txt")); assertTrue("Child URL should contain 'child' not 'chile'", childUrl.matches(".*dir1/test3\\.txt")); } } finally { if (server != null) {
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 21.5K bytes - Viewed (0) -
ADDING_NEW_LANGUAGE.md
- Check if your language appears in the language dropdown - Force your language by adding URL parameter: `?browser_lang=[locale]` - Example: `http://localhost:8080/admin/?browser_lang=sv` 4. **Verify translations:** - Navigate through different admin pages - Check that labels and messages appear in your language - Test error messages by submitting invalid forms ## Configuration Details ### Key Configuration Files
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 06 11:36:30 UTC 2025 - 10.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java
form.name = null; }); form.crudMode = CrudMode.CREATE; }); }); } /** * Displays the form for editing an existing web crawler configuration. * * @param form the edit form containing web config ID * @return HTML response for the web config edit form */ @ExecuteRegistered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Nov 20 13:56:35 UTC 2025 - 20.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/RequestParameter.java
public String[] getValues() { return values; } /** * Returns a string representation of this RequestParameter. * The format includes the parameter name and its values in array format. * * @return a string representation of this object in the format "[name, [value1, value2, ...]]" */ @Override public String toString() { return "[" + name + ", " + Arrays.toString(values) + "]";
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/UploadForm.java
import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form for uploading Kuromoji dictionary files to the Fess search engine. * Kuromoji is a Japanese morphological analyzer used for tokenizing Japanese text. * This form is used in the admin interface to upload custom user dictionaries for Kuromoji. */ public class UploadForm { /**Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/taglib/FessFunctions.java
* @param format the date format pattern or "pdf_date" for PDF date format * @return parsed Date object, or null if parsing fails */ public static Date parseDate(final String value, final String format) { if (value == null) { return null; } try { if (PDF_DATE.equals(format)) { final Calendar cal = DateConverter.toCalendar(value);
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25.4K bytes - Viewed (1) -
src/main/java/org/codelibs/core/net/URLUtil.java
* Converts a string into <code>application/x-www-form-urlencoded</code> * format using the specified encoding scheme. * * @param s * The string to be converted. Must not be {@literal null} or empty. * @param enc * The encoding scheme. Must not be {@literal null} or empty. * @return The string encoded in <code>application/x-www-form-urlencoded</code> format. */
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 6.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/FessSearchAction.java
* and form inputs for the given parameters. * * @param paramMap the parameter map to process * @param queryKey the key for storing query string parameters * @param formKey the key for storing form input parameters */ protected void buildInitParamMap(final Map<String, String> paramMap, final String queryKey, final String formKey) { if (!paramMap.isEmpty()) {Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.8K bytes - Viewed (0)