Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 544 for formed (0.04 sec)

  1. src/test/java/jcifs/SmbResourceLocatorTest.java

                return false;
            }
    
            @Override
            public boolean isRoot() {
                return "/".equals(path);
            }
        }
    
        @Nested
        @DisplayName("Happy path – well-formed SMB URL")
        class HappyPath {
            @Test
            void testBasicProperties() throws Exception {
                String url = "smb://server/share/path/file.txt";
    Registered: Sat Dec 20 13:44:44 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 8K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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
         */
        @Execute
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu Nov 20 13:56:35 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  6. 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)
  7. src/main/config/openapi/openapi-user.yaml

                        type: integer
                        format: int64
                        example: 0
                      page_size:
                        type: integer
                        example: 20
                      page_number:
                        type: integer
                        example: 1
                      record_count:
                        type: integer
                        format: int64
                        example: 31625
    Registered: Sat Dec 20 09:19:18 UTC 2025
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top